Mercurial > repos > iuc > imagej2_bunwarpj_compare_raw
changeset 4:179ec099fa4b draft default tip
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/image_processing/imagej2 commit 8ea6a4271431c05c82b09c0d3e629b13e6ea7936
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_adjust_threshold_binary.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,63 @@ +#!/usr/bin/env python +import argparse +import os +import shutil +import subprocess +import tempfile +import imagej2_base_utils + +parser = argparse.ArgumentParser() +parser.add_argument( '--input', dest='input', help='Path to the input file' ) +parser.add_argument( '--input_datatype', dest='input_datatype', help='Datatype of the input image' ) +parser.add_argument( '--threshold_min', dest='threshold_min', type=float, help='Minimum threshold value' ) +parser.add_argument( '--threshold_max', dest='threshold_max', type=float, help='Maximum threshold value' ) +parser.add_argument( '--method', dest='method', help='Threshold method' ) +parser.add_argument( '--display', dest='display', help='Display mode' ) +parser.add_argument( '--black_background', dest='black_background', help='Black background' ) +parser.add_argument( '--stack_histogram', dest='stack_histogram', help='Stack histogram' ) +parser.add_argument( '--jython_script', dest='jython_script', help='Path to the Jython script' ) +parser.add_argument( '--output', dest='output', help='Path to the output file' ) +parser.add_argument( '--output_datatype', dest='output_datatype', help='Datatype of the output image' ) +args = parser.parse_args() + +tmp_dir = imagej2_base_utils.get_temp_dir() +# ImageJ expects valid image file extensions, so the Galaxy .dat extension does not +# work for some features. The following creates a symlink with an appropriate file +# extension that points to the Galaxy dataset. This symlink is used by ImageJ. +tmp_input_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.input, args.input_datatype ) +tmp_output_path = imagej2_base_utils.get_temporary_image_path( tmp_dir, args.output_datatype ) +# Define command response buffers. +tmp_out = tempfile.NamedTemporaryFile().name +tmp_stdout = open( tmp_out, 'wb' ) +tmp_err = tempfile.NamedTemporaryFile().name +tmp_stderr = open( tmp_err, 'wb' ) +# Java writes a lot of stuff to stderr, so we'll specify a file for handling actual errors. +error_log = tempfile.NamedTemporaryFile( delete=False ).name +# Build the command line. +cmd = imagej2_base_utils.get_base_command_imagej2( None, jython_script=args.jython_script ) +if cmd is None: + imagej2_base_utils.stop_err( "ImageJ not found!" ) +cmd += ' %s' % error_log +cmd += ' %s' % tmp_input_path +cmd += ' %.3f' % args.threshold_min +cmd += ' %.3f' % args.threshold_max +cmd += ' %s' % args.method +cmd += ' %s' % args.display +cmd += ' %s' % args.black_background +cmd += ' %s' % args.stack_histogram +cmd += ' %s' % tmp_output_path +cmd += ' %s' % args.output_datatype +# Run the command. +proc = subprocess.Popen( args=cmd, stderr=tmp_stderr, stdout=tmp_stdout, shell=True ) +rc = proc.wait() +# Handle execution errors. +if rc != 0: + error_message = imagej2_base_utils.get_stderr_exception( tmp_err, tmp_stderr, tmp_out, tmp_stdout ) + imagej2_base_utils.stop_err( error_message ) +# Handle processing errors. +if os.path.getsize( error_log ) > 0: + error_message = open( error_log, 'r' ).read() + imagej2_base_utils.stop_err( error_message ) +# Save the output image. +shutil.move( tmp_output_path, args.output ) +imagej2_base_utils.cleanup_before_exit( tmp_dir )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_adjust_threshold_binary_jython_script.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,49 @@ +import jython_utils +import sys +from ij import IJ + +# Fiji Jython interpreter implements Python 2.5 which does not +# provide support for argparse. +error_log = sys.argv[ -10 ] +input = sys.argv[ -9 ] +threshold_min = float( sys.argv[ -8 ] ) +threshold_max = float( sys.argv[ -7 ] ) +method = sys.argv[ -6 ] +display = sys.argv[ -5 ] +black_background = jython_utils.asbool( sys.argv[ -4 ] ) +# TODO: this is not being used. +stack_histogram = jython_utils.asbool( sys.argv[ -3 ] ) +tmp_output_path = sys.argv[ -2 ] +output_datatype = sys.argv[ -1 ] + +# Open the input image file. +input_image_plus = IJ.openImage( input ) + +# Create a copy of the image. +input_image_plus_copy = input_image_plus.duplicate() +image_processor_copy = input_image_plus_copy.getProcessor() + +try: + # Convert image to binary if necessary. + if not image_processor_copy.isBinary(): + # Convert the image to binary grayscale. + IJ.run( input_image_plus_copy, "Make Binary","iterations=1 count=1 edm=Overwrite do=Nothing" ) + # Set the options. + if black_background: + method_str = "%s dark" % method + else: + method_str = method + IJ.setAutoThreshold( input_image_plus_copy, method_str ) + if display == "red": + display_mode = "Red" + elif display == "bw": + display_mode = "Black & White" + elif display == "over_under": + display_mode = "Over/Under" + IJ.setThreshold( input_image_plus_copy, threshold_min, threshold_max, display_mode ) + # Run the command. + IJ.run( input_image_plus_copy, "threshold", "" ) + # Save the ImagePlus object as a new image. + IJ.saveAs( input_image_plus_copy, output_datatype, tmp_output_path ) +except Exception, e: + jython_utils.handle_error( error_log, str( e ) )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_analyze_particles_binary.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,81 @@ +#!/usr/bin/env python +import argparse +import os +import shutil +import subprocess +import tempfile +import imagej2_base_utils + +parser = argparse.ArgumentParser() +parser.add_argument( '--input', dest='input', help='Path to the input file' ) +parser.add_argument( '--input_datatype', dest='input_datatype', help='Datatype of the input image' ) +parser.add_argument( '--black_background', dest='black_background', help='Black background' ) +parser.add_argument( '--size', dest='size', help='Size (pixel^2)' ) +parser.add_argument( '--circularity_min', dest='circularity_min', type=float, help='Circularity minimum' ) +parser.add_argument( '--circularity_max', dest='circularity_max', type=float, help='Circularity maximum' ) +parser.add_argument( '--show', dest='show', help='Show' ) +parser.add_argument( '--display_results', dest='display_results', help='Display results' ) +parser.add_argument( '--all_results', dest='all_results', help='All results' ) +parser.add_argument( '--exclude_edges', dest='exclude_edges', help='Exclude edges' ) +parser.add_argument( '--include_holes', dest='include_holes', help='Include holes' ) +parser.add_argument( '--jython_script', dest='jython_script', help='Path to the Jython script' ) +parser.add_argument( '--results', dest='results', default=None, help='Path to the output results file' ) +parser.add_argument( '--output', dest='output', default=None, help='Path to the output image file' ) +parser.add_argument( '--output_datatype', dest='output_datatype', default='data', help='Datatype of the output image' ) +args = parser.parse_args() + +tmp_dir = imagej2_base_utils.get_temp_dir() +# ImageJ expects valid image file extensions, so the Galaxy .dat extension does not +# work for some features. The following creates a symlink with an appropriate file +# extension that points to the Galaxy dataset. This symlink is used by ImageJ. +tmp_input_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.input, args.input_datatype ) +if args.output is None: + tmp_output_path = None +else: + tmp_output_path = imagej2_base_utils.get_temporary_image_path( tmp_dir, args.output_datatype ) + +# Define command response buffers. +tmp_out = tempfile.NamedTemporaryFile().name +tmp_stdout = open( tmp_out, 'wb' ) +tmp_err = tempfile.NamedTemporaryFile().name +tmp_stderr = open( tmp_err, 'wb' ) +# Java writes a lot of stuff to stderr, so we'll specify a file for handling actual errors. +error_log = tempfile.NamedTemporaryFile( delete=False ).name + +# Build the command line. +cmd = imagej2_base_utils.get_base_command_imagej2( None, jython_script=args.jython_script ) +if cmd is None: + imagej2_base_utils.stop_err( "ImageJ not found!" ) +cmd += ' %s' % error_log +cmd += ' %s' % tmp_input_path +cmd += ' %s' % args.black_background +cmd += ' %s' % args.size +cmd += ' %.3f' % args.circularity_min +cmd += ' %.3f' % args.circularity_max +cmd += ' %s' % args.show +cmd += ' %s' % args.display_results +cmd += '%s' % imagej2_base_utils.handle_none_type( args.all_results, val_type='str' ) +cmd += ' %s' % args.exclude_edges +cmd += ' %s' % args.include_holes +cmd += '%s' % imagej2_base_utils.handle_none_type( tmp_output_path, val_type='str' ) +cmd += ' %s' % args.output_datatype +cmd += '%s' % imagej2_base_utils.handle_none_type( args.results, val_type='str' ) + +# Run the command. +proc = subprocess.Popen( args=cmd, stderr=tmp_stderr, stdout=tmp_stdout, shell=True ) +rc = proc.wait() + +# Handle execution errors. +if rc != 0: + error_message = imagej2_base_utils.get_stderr_exception( tmp_err, tmp_stderr, tmp_out, tmp_stdout ) + imagej2_base_utils.stop_err( error_message ) + +# Handle processing errors. +if os.path.getsize( error_log ) > 0: + error_message = open( error_log, 'r' ).read() + imagej2_base_utils.stop_err( error_message ) + +if tmp_output_path is not None: + # Save the output image. + shutil.move( tmp_output_path, args.output ) +imagej2_base_utils.cleanup_before_exit( tmp_dir )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_analyze_particles_binary_jython_script.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,72 @@ +import jython_utils +import sys +from ij import IJ +from ij.plugin.filter import Analyzer + +# Fiji Jython interpreter implements Python 2.5 which does not +# provide support for argparse. +error_log = sys.argv[ -14 ] +input = sys.argv[ -13 ] +black_background = jython_utils.asbool( sys.argv[ -12 ] ) +size = sys.argv[ -11 ] +circularity_min = float( sys.argv[ -10 ] ) +circularity_max = float( sys.argv[ -9 ] ) +show = sys.argv[ -8 ] +display_results = jython_utils.asbool( sys.argv[ -7 ] ) +all_results = jython_utils.asbool( sys.argv[ -6 ] ) +exclude_edges = jython_utils.asbool( sys.argv[ -5 ] ) +include_holes = jython_utils.asbool( sys.argv[ -4 ] ) +tmp_output_path = sys.argv[ -3 ] +output_datatype = sys.argv[ -2 ] +results_path = sys.argv[ -1 ] + +# Open the input image file. +input_image_plus = IJ.openImage( input ) + +# Create a copy of the image. +input_image_plus_copy = input_image_plus.duplicate() +image_processor_copy = input_image_plus_copy.getProcessor() +analyzer = Analyzer( input_image_plus_copy ) + +try: + # Set binary options. + options = jython_utils.get_binary_options( black_background=black_background ) + IJ.run( input_image_plus_copy, "Options...", options ) + + # Convert image to binary if necessary. + if not image_processor_copy.isBinary(): + # Convert the image to binary grayscale. + IJ.run( input_image_plus_copy, "Make Binary", "" ) + + # Set the options. + options = [ 'size=%s' % size ] + circularity_str = '%.3f-%.3f' % ( circularity_min, circularity_max ) + options.append( 'circularity=%s' % circularity_str ) + if show.find( '_' ) >= 0: + show_str = '[%s]' % show.replace( '_', ' ' ) + else: + show_str = show + options.append( 'show=%s' % show_str ) + if display_results: + options.append( 'display' ) + if not all_results: + options.append( 'summarize' ) + if exclude_edges: + options.append( 'exclude' ) + if include_holes: + options.append( 'include' ) + # Always run "in_situ". + options.append( 'in_situ' ) + + # Run the command. + IJ.run( input_image_plus_copy, "Analyze Particles...", " ".join( options ) ) + + # Save outputs. + if tmp_output_path not in [ None, 'None' ]: + # Save the ImagePlus object as a new image. + IJ.saveAs( input_image_plus_copy, output_datatype, tmp_output_path ) + if display_results and results_path not in [ None, 'None' ]: + results_table = analyzer.getResultsTable() + results_table.saveAs( results_path ) +except Exception, e: + jython_utils.handle_error( error_log, str( e ) )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_analyze_skeleton.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,61 @@ +#!/usr/bin/env python +import argparse +import os +import shutil +import subprocess +import tempfile +import imagej2_base_utils + +parser = argparse.ArgumentParser() +parser.add_argument( '--input', dest='input', help='Path to the input file' ) +parser.add_argument( '--input_datatype', dest='input_datatype', help='Datatype of the input image' ) +parser.add_argument( '--black_background', dest='black_background', help='Black background' ) +parser.add_argument( '--prune_cycle_method', dest='prune_cycle_method', default='none', help='Prune cycle method' ) +parser.add_argument( '--prune_ends', dest='prune_ends', default='no', help='Prune ends' ) +parser.add_argument( '--calculate_largest_shortest_path', dest='calculate_largest_shortest_path', default='no', help='Calculate largest shortest path' ) +parser.add_argument( '--show_detailed_info', dest='show_detailed_info', default='no', help='Show detailed info' ) +parser.add_argument( '--jython_script', dest='jython_script', help='Path to the Jython script' ) +parser.add_argument( '--output', dest='output', help='Path to the output file' ) +args = parser.parse_args() + +tmp_dir = imagej2_base_utils.get_temp_dir() +# ImageJ expects valid image file extensions, so the Galaxy .dat extension does not +# work for some features. The following creates a symlink with an appropriate file +# extension that points to the Galaxy dataset. This symlink is used by ImageJ. +tmp_input_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.input, args.input_datatype ) + +# Define command response buffers. +tmp_out = tempfile.NamedTemporaryFile().name +tmp_stdout = open( tmp_out, 'wb' ) +tmp_err = tempfile.NamedTemporaryFile().name +tmp_stderr = open( tmp_err, 'wb' ) +# Java writes a lot of stuff to stderr, so we'll specify a file for handling actual errors. +error_log = tempfile.NamedTemporaryFile( delete=False ).name + +# Build the command line. +cmd = imagej2_base_utils.get_base_command_imagej2( None, jython_script=args.jython_script ) +if cmd is None: + imagej2_base_utils.stop_err( "ImageJ not found!" ) +cmd += ' %s' % error_log +cmd += ' %s' % tmp_input_path +cmd += ' %s' % args.black_background +cmd += ' %s' % args.prune_cycle_method +cmd += ' %s' % args.prune_ends +cmd += ' %s' % args.calculate_largest_shortest_path +cmd += ' %s' % args.show_detailed_info +cmd += ' %s' % args.output + +# Run the command. +proc = subprocess.Popen( args=cmd, stderr=tmp_stderr, stdout=tmp_stdout, shell=True ) +rc = proc.wait() + +# Handle execution errors. +if rc != 0: + error_message = imagej2_base_utils.get_stderr_exception( tmp_err, tmp_stderr, tmp_out, tmp_stdout ) + imagej2_base_utils.stop_err( error_message ) +# Handle processing errors. +if os.path.getsize( error_log ) > 0: + error_message = open( error_log, 'r' ).read() + imagej2_base_utils.stop_err( error_message ) + +imagej2_base_utils.cleanup_before_exit( tmp_dir )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_analyze_skeleton_jython_script.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,147 @@ +import jython_utils +import math +import sys +from ij import IJ +from skeleton_analysis import AnalyzeSkeleton_ + +BASIC_NAMES = [ 'Branches', 'Junctions', 'End-point Voxels', + 'Junction Voxels', 'Slab Voxels', 'Average branch length', + 'Triple Points', 'Quadruple Points', 'Maximum Branch Length' ] +DETAIL_NAMES = [ 'Skeleton ID', 'Branch length', 'V1 x', 'V1 y', 'V1 z', 'V2 x', + 'V2 y', 'V2 z', 'Euclidean distance' ] + +def get_euclidean_distance( vertex1, vertex2 ): + x1, y1, z1 = get_points( vertex1 ) + x2, y2, z2 = get_points( vertex2 ) + return math.sqrt( math.pow( ( x2 - x1 ), 2 ) + + math.pow( ( y2 - y1 ), 2 ) + + math.pow( ( z2 - z1 ), 2 ) ) + +def get_graph_length( graph ): + length = 0 + for edge in graph.getEdges(): + length = length + edge.getLength() + return length + +def get_points( vertex ): + # An array of Point, which has attributes x,y,z. + point = vertex.getPoints()[ 0 ] + return point.x, point.y, point.z + +def get_sorted_edge_lengths( graph ): + # Return graph edges sorted from longest to shortest. + edges = graph.getEdges() + edges = sorted( edges, key=lambda edge: edge.getLength(), reverse=True ) + return edges + +def get_sorted_graph_lengths( result ): + # Get the separate graphs (skeletons). + graphs = result.getGraph() + # Sort graphs from longest to shortest. + graphs = sorted( graphs, key=lambda g: get_graph_length( g ), reverse=True ) + return graphs + +def save( result, output, show_detailed_info, calculate_largest_shortest_path, sep='\t' ): + num_trees = int( result.getNumOfTrees() ) + outf = open( output, 'wb' ) + outf.write( '# %s\n' % sep.join( BASIC_NAMES ) ) + for index in range( num_trees ): + outf.write( '%d%s' % ( result.getBranches()[ index ], sep ) ) + outf.write( '%d%s' % ( result.getJunctions()[ index ], sep ) ) + outf.write( '%d%s' % ( result.getEndPoints()[ index ], sep ) ) + outf.write( '%d%s' % ( result.getJunctionVoxels()[ index ], sep ) ) + outf.write( '%d%s' % ( result.getSlabs()[ index ], sep ) ) + outf.write( '%.3f%s' % ( result.getAverageBranchLength()[ index ], sep ) ) + outf.write( '%d%s' % ( result.getTriples()[ index ], sep ) ) + outf.write( '%d%s' % ( result.getQuadruples()[ index ], sep ) ) + outf.write( '%.3f' % result.getMaximumBranchLength()[ index ] ) + if calculate_largest_shortest_path: + outf.write( '%s%.3f%s' % ( sep, result.shortestPathList.get( index ), sep ) ) + outf.write( '%d%s' % ( result.spStartPosition[ index ][ 0 ], sep ) ) + outf.write( '%d%s' % ( result.spStartPosition[ index ][ 1 ], sep ) ) + outf.write( '%d\n' % result.spStartPosition[ index ][ 2 ] ) + else: + outf.write( '\n' ) + if show_detailed_info: + outf.write( '# %s\n' % sep.join( DETAIL_NAMES ) ) + # The following index is a placeholder for the skeleton ID. + # The terms "graph" and "skeleton" refer to the same thing. + # Also, the SkeletonResult.java code states that the + # private Graph[] graph object is an array of graphs (one + # per tree). + for index, graph in enumerate( get_sorted_graph_lengths( result ) ): + for edge in get_sorted_edge_lengths( graph ): + vertex1 = edge.getV1() + x1, y1, z1 = get_points( vertex1 ) + vertex2 = edge.getV2() + x2, y2, z2 = get_points( vertex2 ) + outf.write( '%d%s' % ( index+1, sep ) ) + outf.write( '%.3f%s' % ( edge.getLength(), sep ) ) + outf.write( '%d%s' % ( x1, sep ) ) + outf.write( '%d%s' % ( y1, sep ) ) + outf.write( '%d%s' % ( z1, sep ) ) + outf.write( '%d%s' % ( x2, sep ) ) + outf.write( '%d%s' % ( y2, sep ) ) + outf.write( '%d%s' % ( z2, sep ) ) + outf.write( '%.3f' % get_euclidean_distance( vertex1, vertex2 ) ) + if calculate_largest_shortest_path: + # Keep number of separated items the same for each line. + outf.write( '%s %s' % ( sep, sep ) ) + outf.write( ' %s' % sep ) + outf.write( ' %s' % sep ) + outf.write( ' \n' ) + else: + outf.write( '\n' ) + outf.close() + +# Fiji Jython interpreter implements Python 2.5 which does not +# provide support for argparse. +error_log = sys.argv[ -8 ] +input = sys.argv[ -7 ] +black_background = jython_utils.asbool( sys.argv[ -6 ] ) +prune_cycle_method = sys.argv[ -5 ] +prune_ends = jython_utils.asbool( sys.argv[ -4 ] ) +calculate_largest_shortest_path = jython_utils.asbool( sys.argv[ -3 ] ) +if calculate_largest_shortest_path: + BASIC_NAMES.extend( [ 'Longest Shortest Path', 'spx', 'spy', 'spz' ] ) + DETAIL_NAMES.extend( [ ' ', ' ', ' ', ' ' ] ) +show_detailed_info = jython_utils.asbool( sys.argv[ -2 ] ) +output = sys.argv[ -1 ] + +# Open the input image file. +input_image_plus = IJ.openImage( input ) + +# Create a copy of the image. +input_image_plus_copy = input_image_plus.duplicate() +image_processor_copy = input_image_plus_copy.getProcessor() + +try: + # Set binary options. + options = jython_utils.get_binary_options( black_background=black_background ) + IJ.run( input_image_plus_copy, "Options...", options ) + + # Convert image to binary if necessary. + if not image_processor_copy.isBinary(): + IJ.run( input_image_plus_copy, "Make Binary", "" ) + + # Run AnalyzeSkeleton + analyze_skeleton = AnalyzeSkeleton_() + analyze_skeleton.setup( "", input_image_plus_copy ) + if prune_cycle_method == 'none': + prune_index = analyze_skeleton.NONE + elif prune_cycle_method == 'shortest_branch': + prune_index = analyze_skeleton.SHORTEST_BRANCH + elif prune_cycle_method == 'lowest_intensity_voxel': + prune_index = analyze_skeleton.LOWEST_INTENSITY_VOXEL + elif prune_cycle_method == 'lowest_intensity_branch': + prune_index = analyze_skeleton.LOWEST_INTENSITY_BRANCH + result = analyze_skeleton.run( prune_index, + prune_ends, + calculate_largest_shortest_path, + input_image_plus_copy, + True, + True ) + # Save the results. + save( result, output, show_detailed_info, calculate_largest_shortest_path ) +except Exception, e: + jython_utils.handle_error( error_log, str( e ) )
--- a/imagej2_base_utils.py Sun Oct 11 13:32:01 2015 -0400 +++ b/imagej2_base_utils.py Fri Jul 22 23:17:07 2016 -0400 @@ -3,153 +3,161 @@ import sys import tempfile -FIJI_JAR_DIR = os.environ.get( 'FIJI_JAR_DIR', None ) -FIJI_OSX_JAVA3D_DIR = os.environ.get( 'FIJI_OSX_JAVA3D_DIR', None ) -FIJI_PLUGIN_DIR = os.environ.get( 'FIJI_PLUGIN_DIR', None ) -FIJI_ROOT_DIR = os.environ.get( 'FIJI_ROOT_DIR', None ) +FIJI_JAR_DIR = os.environ.get('FIJI_JAR_DIR', None) +FIJI_OSX_JAVA3D_DIR = os.environ.get('FIJI_OSX_JAVA3D_DIR', None) +FIJI_PLUGIN_DIR = os.environ.get('FIJI_PLUGIN_DIR', None) +FIJI_ROOT_DIR = os.environ.get('FIJI_ROOT_DIR', None) BUFF_SIZE = 1048576 -def cleanup_before_exit( tmp_dir ): + +def cleanup_before_exit(tmp_dir): """ Remove temporary files and directories prior to tool exit. """ - if tmp_dir and os.path.exists( tmp_dir ): - shutil.rmtree( tmp_dir ) + if tmp_dir and os.path.exists(tmp_dir): + shutil.rmtree(tmp_dir) + -def get_base_cmd_bunwarpj( jvm_memory ): +def get_base_cmd_bunwarpj(jvm_memory): if FIJI_JAR_DIR is not None and FIJI_PLUGIN_DIR is not None: - if jvm_memory in [ None, 'None' ]: + if jvm_memory in [None, 'None']: jvm_memory_str = '' else: jvm_memory_str = '-Xmx%s' % jvm_memory - bunwarpj_base_cmd = "java %s -cp %s/ij-1.49k.jar:%s/bUnwarpJ_-2.6.1.jar bunwarpj.bUnwarpJ_" % \ - ( jvm_memory_str, FIJI_JAR_DIR, FIJI_PLUGIN_DIR ) + # bunwarpj_base_cmd = "java %s -cp %s/ij-1.49k.jar:%s/bUnwarpJ_-2.6.1.jar bunwarpj.bUnwarpJ_" % \ + # (jvm_memory_str, FIJI_JAR_DIR, FIJI_PLUGIN_DIR) + bunwarpj_base_cmd = "bunwarpj %s" % jvm_memory_str return bunwarpj_base_cmd return None -def get_base_command_imagej2( memory_size=None, macro=None, jython_script=None ): + +def get_base_command_imagej2(memory_size=None, macro=None, jython_script=None): imagej2_executable = get_imagej2_executable() if imagej2_executable is None: return None cmd = '%s --ij2 --headless --debug' % imagej2_executable if memory_size is not None: - memory_size_cmd = ' -DXms=%s -DXmx=%s' % ( memory_size, memory_size ) + memory_size_cmd = ' -DXms=%s -DXmx=%s' % (memory_size, memory_size) cmd += memory_size_cmd if macro is not None: - cmd += ' --macro %s' % os.path.abspath( macro ) + cmd += ' --macro %s' % os.path.abspath(macro) if jython_script is not None: - cmd += ' --jython %s' % os.path.abspath( jython_script ) + cmd += ' --jython %s' % os.path.abspath(jython_script) return cmd -def get_file_extension( image_format ): + +def get_file_extension(image_format): """ Return a valid bioformats file extension based on the received - value of image_format( e.g., "gif" is returned as ".gif". + value of image_format(e.g., "gif" is returned as ".gif". """ return '.%s' % image_format -def get_file_name_without_extension( file_path ): + +def get_file_name_without_extension(file_path): """ Eliminate the .ext from the received file name, assuming that the file name consists of only a single '.'. """ - if os.path.exists( file_path ): - path, name = os.path.split( file_path ) - name_items = name.split( '.' ) - return name_items[ 0 ] + if os.path.exists(file_path): + path, name = os.path.split(file_path) + name_items = name.split('.') + return name_items[0] return None + def get_imagej2_executable(): """ Fiji names the ImageJ executable different names for different - architectures, so figure out which name we need. + architectures, but our bioconda recipe allows us to do this. """ - platform_dict = get_platform_info_dict() - if platform_dict.get( 'architecture', None ) in [ 'x86_64' ]: - if platform_dict.get( 'os', None ) in [ 'darwin' ]: - return 'ImageJ-macosx' - if platform_dict.get( 'os', None ) in [ 'linux' ]: - return 'ImageJ-linux64' - return None - -def get_input_image_path( tmp_dir, input_file, image_format ): + return 'ImageJ' + + +def get_input_image_path(tmp_dir, input_file, image_format): """ Bioformats uses file extensions (e.g., .job, .gif, etc) when reading and writing image files, so the Galaxy dataset naming convention of setting all file extensions as .dat must be handled. """ - image_path = get_temporary_image_path( tmp_dir, image_format ) + image_path = get_temporary_image_path(tmp_dir, image_format) # Remove the file so we can create a symlink. - os.remove( image_path ) - os.symlink( input_file, image_path ) + os.remove(image_path) + os.symlink(input_file, image_path) return image_path + def get_platform_info_dict(): '''Return a dict with information about the current platform.''' platform_dict = {} sysname, nodename, release, version, machine = os.uname() - platform_dict[ 'os' ] = sysname.lower() - platform_dict[ 'architecture' ] = machine.lower() + platform_dict['os'] = sysname.lower() + platform_dict['architecture'] = machine.lower() return platform_dict -def get_stderr_exception( tmp_err, tmp_stderr, tmp_out, tmp_stdout, include_stdout=False ): + +def get_stderr_exception(tmp_err, tmp_stderr, tmp_out, tmp_stdout, include_stdout=False): tmp_stderr.close() """ Return a stderr string of reasonable size. """ # Get stderr, allowing for case where it's very large. - tmp_stderr = open( tmp_err, 'rb' ) + tmp_stderr = open(tmp_err, 'rb') stderr_str = '' buffsize = BUFF_SIZE try: while True: - stderr_str += tmp_stderr.read( buffsize ) - if not stderr_str or len( stderr_str ) % buffsize != 0: + stderr_str += tmp_stderr.read(buffsize) + if not stderr_str or len(stderr_str) % buffsize != 0: break except OverflowError: pass tmp_stderr.close() if include_stdout: - tmp_stdout = open( tmp_out, 'rb' ) + tmp_stdout = open(tmp_out, 'rb') stdout_str = '' buffsize = BUFF_SIZE try: while True: - stdout_str += tmp_stdout.read( buffsize ) - if not stdout_str or len( stdout_str ) % buffsize != 0: + stdout_str += tmp_stdout.read(buffsize) + if not stdout_str or len(stdout_str) % buffsize != 0: break except OverflowError: pass tmp_stdout.close() if include_stdout: - return 'STDOUT\n%s\n\nSTDERR\n%s\n' % ( stdout_str, stderr_str ) + return 'STDOUT\n%s\n\nSTDERR\n%s\n' % (stdout_str, stderr_str) return stderr_str -def get_temp_dir( prefix='tmp-imagej-', dir=None ): + +def get_temp_dir(prefix='tmp-imagej-', dir=None): """ Return a temporary directory. """ - return tempfile.mkdtemp( prefix=prefix, dir=dir ) + return tempfile.mkdtemp(prefix=prefix, dir=dir) -def get_tempfilename( dir=None, suffix=None ): + +def get_tempfilename(dir=None, suffix=None): """ Return a temporary file name. """ - fd, name = tempfile.mkstemp( suffix=suffix, dir=dir ) - os.close( fd ) + fd, name = tempfile.mkstemp(suffix=suffix, dir=dir) + os.close(fd) return name -def get_temporary_image_path( tmp_dir, image_format ): + +def get_temporary_image_path(tmp_dir, image_format): """ Return the path to a temporary file with a valid image format file extension that can be used with bioformats. """ - file_extension = get_file_extension( image_format ) - return get_tempfilename( tmp_dir, file_extension ) + file_extension = get_file_extension(image_format) + return get_tempfilename(tmp_dir, file_extension) -def handle_none_type( val, val_type='float' ): + +def handle_none_type(val, val_type='float'): if val is None: return ' None' else: @@ -159,6 +167,7 @@ return ' %d' % val return ' %s' % val -def stop_err( msg ): - sys.stderr.write( msg ) - sys.exit( 1 ) + +def stop_err(msg): + sys.stderr.write(msg) + sys.exit(1)
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_binary_to_edm.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,65 @@ +#!/usr/bin/env python +import argparse +import os +import shutil +import subprocess +import tempfile +import imagej2_base_utils + +parser = argparse.ArgumentParser() +parser.add_argument( '--input', dest='input', help='Path to the input file' ) +parser.add_argument( '--input_datatype', dest='input_datatype', help='Datatype of the input image' ) +parser.add_argument( '--iterations', dest='iterations', type=int, help='Iterations' ) +parser.add_argument( '--count', dest='count', type=int, help='Count' ) +parser.add_argument( '--black_background', dest='black_background', help='Black background' ) +parser.add_argument( '--pad_edges_when_eroding', dest='pad_edges_when_eroding', help='Pad edges when eroding' ) +parser.add_argument( '--jython_script', dest='jython_script', help='Path to the Jython script' ) +parser.add_argument( '--output', dest='output', help='Path to the output file' ) +parser.add_argument( '--output_datatype', dest='output_datatype', help='Datatype of the output image' ) +args = parser.parse_args() + +tmp_dir = imagej2_base_utils.get_temp_dir() +# ImageJ expects valid image file extensions, so the Galaxy .dat extension does not +# work for some features. The following creates a symlink with an appropriate file +# extension that points to the Galaxy dataset. This symlink is used by ImageJ. +tmp_input_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.input, args.input_datatype ) +tmp_output_path = imagej2_base_utils.get_temporary_image_path( tmp_dir, args.output_datatype ) + +# Define command response buffers. +tmp_out = tempfile.NamedTemporaryFile().name +tmp_stdout = open( tmp_out, 'wb' ) +tmp_err = tempfile.NamedTemporaryFile().name +tmp_stderr = open( tmp_err, 'wb' ) +# Java writes a lot of stuff to stderr, so we'll specify a file for handling actual errors. +error_log = tempfile.NamedTemporaryFile( delete=False ).name + +# Build the command line. +cmd = imagej2_base_utils.get_base_command_imagej2( None, jython_script=args.jython_script ) +if cmd is None: + imagej2_base_utils.stop_err( "ImageJ not found!" ) +cmd += ' %s' % error_log +cmd += ' %s' % tmp_input_path +cmd += ' %d' % args.iterations +cmd += ' %d' % args.count +cmd += ' %s' % args.black_background +cmd += ' %s' % args.pad_edges_when_eroding +cmd += ' %s' % tmp_output_path +cmd += ' %s' % args.output_datatype + +# Run the command. +proc = subprocess.Popen( args=cmd, stderr=tmp_stderr, stdout=tmp_stdout, shell=True ) +rc = proc.wait() + +# Handle execution errors. +if rc != 0: + error_message = imagej2_base_utils.get_stderr_exception( tmp_err, tmp_stderr, tmp_out, tmp_stdout ) + imagej2_base_utils.stop_err( error_message ) + +# Handle processing errors. +if os.path.getsize( error_log ) > 0: + error_message = open( error_log, 'r' ).read() + imagej2_base_utils.stop_err( error_message ) + +# Save the output image. +shutil.move( tmp_output_path, args.output ) +imagej2_base_utils.cleanup_before_exit( tmp_dir )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_binary_to_edm_jython_script.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,44 @@ +import jython_utils +import sys +from ij import IJ +from ij import ImagePlus +from ij.plugin.filter import Analyzer +from ij.plugin.filter import EDM + +# Fiji Jython interpreter implements Python 2.5 which does not +# provide support for argparse. +error_log = sys.argv[ -8 ] +input = sys.argv[ -7 ] +iterations = int( sys.argv[ -6 ] ) +count = int( sys.argv[ -5 ] ) +black_background = jython_utils.asbool( sys.argv[ -4 ] ) +pad_edges_when_eroding = jython_utils.asbool( sys.argv[ -3 ] ) +tmp_output_path = sys.argv[ -2 ] +output_datatype = sys.argv[ -1 ] + +# Open the input image file. +input_image_plus = IJ.openImage( input ) + +# Create a copy of the image. +input_image_plus_copy = input_image_plus.duplicate() +image_processor_copy = input_image_plus_copy.getProcessor() + +try: + # Set binary options. + options = jython_utils.get_binary_options( black_background=black_background, + iterations=iterations, + count=count, + pad_edges_when_eroding=pad_edges_when_eroding ) + IJ.run( input_image_plus_copy, "Options...", options ) + + # Convert image to binary if necessary. + if not image_processor_copy.isBinary(): + # Convert the image to binary grayscale. + IJ.run( input_image_plus_copy, "Make Binary", "" ) + + # Run the command. + IJ.run( input_image_plus_copy, "Distance Map", "" ) + # Save the ImagePlus object as a new image. + IJ.saveAs( input_image_plus_copy, output_datatype, tmp_output_path ) +except Exception, e: + jython_utils.handle_error( error_log, str( e ) )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_bunwarpj_adapt_transform.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,65 @@ +#!/usr/bin/env python +import argparse +import subprocess +import tempfile +import imagej2_base_utils + +# Parse Command Line. +parser = argparse.ArgumentParser() +parser.add_argument( '--source_image', dest='source_image', help='Source image' ) +parser.add_argument( '--source_image_format', dest='source_image_format', help='Source image format' ) +parser.add_argument( '--target_image', dest='target_image', help='Target image' ) +parser.add_argument( '--target_image_format', dest='target_image_format', help='Target image format' ) +parser.add_argument( '--input_elastic_transformation', dest='input_elastic_transformation', help='Input elastic transformation matrix' ) +parser.add_argument( '--image_size_factor', dest='image_size_factor', type=float, help='Image size factor' ) +parser.add_argument( '--output', dest='output', help='Warping index' ) + +args = parser.parse_args() + +tmp_dir = imagej2_base_utils.get_temp_dir() +source_image_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.source_image, args.source_image_format ) +target_image_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.target_image, args.target_image_format ) +input_elastic_transformation_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.input_elastic_transformation, 'txt' ) + +# Define command response buffers. +tmp_out = tempfile.NamedTemporaryFile().name +tmp_stdout = open( tmp_out, 'wb' ) +tmp_err = tempfile.NamedTemporaryFile().name +tmp_stderr = open( tmp_err, 'wb' ) + +def is_power2( val ): + if val < 0: + return False + if val < 1: + val = 1.0 / val + val = int( val ) + return ( ( val & ( val - 1 ) ) == 0 ) + +# Build the command line to adapt the transformation. +cmd = imagej2_base_utils.get_base_cmd_bunwarpj( None ) +if cmd is None: + imagej2_base_utils.stop_err( "bUnwarpJ not found!" ) +cmd += ' -adapt_transform' + +# Make sure the value of image_size_factor is a power of 2 (positive or negative). +if is_power2( args.image_size_factor ): + image_size_factor = args.image_size_factor +else: + msg = "Image size factor must be a positive or negative power of 2 (0.25, 0.5, 2, 4, 8, etc)." + imagej2_base_utils.stop_err( msg ) + +# Target is sent before source. +cmd += ' %s' % target_image_path +cmd += ' %s' % source_image_path +cmd += ' %s' % input_elastic_transformation_path +cmd += ' %s' % args.output +cmd += ' %2.f' % image_size_factor + +# Adapt the transformation based on the image size factor using bUnwarpJ. +proc = subprocess.Popen( args=cmd, stderr=subprocess.PIPE, stdout=subprocess.PIPE, shell=True ) +rc = proc.wait() +if rc != 0: + error_message = imagej2_base_utils.get_stderr_exception( tmp_err, tmp_stderr, tmp_out, tmp_stdout ) + imagej2_base_utils.stop_err( error_message ) + +imagej2_base_utils.cleanup_before_exit( tmp_dir )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_bunwarpj_align.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,178 @@ +#!/usr/bin/env python +import argparse +import os +import shutil +import subprocess +import tempfile +import imagej2_base_utils + +# Parse Command Line. +parser = argparse.ArgumentParser() +parser.add_argument( '--source_image', dest='source_image', help='Source image' ) +parser.add_argument( '--source_image_format', dest='source_image_format', help='Source image format' ) +parser.add_argument( '--source_mask', dest='source_mask', default=None, help='Source mask' ) +parser.add_argument( '--source_mask_format', dest='source_mask_format', default=None, help='Source mask image format' ) +parser.add_argument( '--target_image', dest='target_image', help='Target image' ) +parser.add_argument( '--target_image_format', dest='target_image_format', help='Target image format' ) +parser.add_argument( '--target_mask', dest='target_mask', default=None, help='Target mask' ) +parser.add_argument( '--target_mask_format', dest='target_mask_format', default=None, help='Target mask image format' ) +parser.add_argument( '--min_scale_def', dest='min_scale_def', type=int, help='Initial deformation' ) +parser.add_argument( '--max_scale_def', dest='max_scale_def', type=int, help='Final deformation' ) +parser.add_argument( '--max_subsamp_fact', dest='max_subsamp_fact', type=int, help='Image sub-sample factor' ) +parser.add_argument( '--divergence_weight', dest='divergence_weight', type=float, help='Divergence weight' ) +parser.add_argument( '--curl_weight', dest='curl_weight', type=float, help='Curl weight' ) +parser.add_argument( '--image_weight', dest='image_weight', type=float, help='Image weight' ) +parser.add_argument( '--consistency_weight', dest='consistency_weight', type=float, help='Consistency weight' ) +parser.add_argument( '--landmarks_weight', dest='landmarks_weight', type=float, help='Landmarks weight' ) +parser.add_argument( '--landmarks_file', dest='landmarks_file', default=None, help='Landmarks file' ) +parser.add_argument( '--source_affine_file', dest='source_affine_file', default=None, help='Initial source affine matrix transformation' ) +parser.add_argument( '--target_affine_file', dest='target_affine_file', default=None, help='Initial target affine matrix transformation' ) +parser.add_argument( '--mono', dest='mono', default=False, help='Unidirectional registration (source to target)' ) +parser.add_argument( '--source_trans_out', dest='source_trans_out', default=None, help='Direct source transformation matrix' ) +parser.add_argument( '--target_trans_out', dest='target_trans_out', default=None, help='Inverse target transformation matrix' ) +parser.add_argument( '--source_out', help='Output source image' ) +parser.add_argument( '--source_out_datatype', help='Output registered source image format' ) +parser.add_argument( '--target_out', default=None, help='Output target image' ) +parser.add_argument( '--target_out_datatype', default=None, help='Output registered target image format' ) +parser.add_argument( '--jython_script', dest='jython_script', help='Path to the Jython script' ) + +args = parser.parse_args() + +if args.source_trans_out is not None and args.target_trans_out is not None: + save_transformation = True +else: + save_transformation = False + +tmp_dir = imagej2_base_utils.get_temp_dir() +source_image_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.source_image, args.source_image_format ) +tmp_source_out_tiff_path = imagej2_base_utils.get_temporary_image_path( tmp_dir, 'tiff' ) +tmp_source_out_path = imagej2_base_utils.get_temporary_image_path( tmp_dir, args.source_out_datatype ) +target_image_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.target_image, args.target_image_format ) +if not args.mono: + tmp_target_out_tiff_path = imagej2_base_utils.get_temporary_image_path( tmp_dir, 'tiff' ) + tmp_target_out_path = imagej2_base_utils.get_temporary_image_path( tmp_dir, args.target_out_datatype ) +if args.source_mask is not None and args.target_mask is not None: + tmp_source_mask_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.source_mask, args.source_mask_format ) + tmp_target_mask_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.target_mask, args.target_mask_format ) +if save_transformation: + # bUnwarpJ automatically names the transformation files based on the names + # of the source and target image file names. We've defined symlinks to + # temporary files with valid image extensions since ImageJ does not handle + # the Galaxy "dataset.dat" file extensions. + source_file_name = imagej2_base_utils.get_file_name_without_extension( tmp_source_out_tiff_path ) + tmp_source_out_transf_path = os.path.join( tmp_dir, '%s_transf.txt' % source_file_name ) + target_file_name = imagej2_base_utils.get_file_name_without_extension( tmp_target_out_tiff_path ) + tmp_target_out_transf_path = os.path.join( tmp_dir, '%s_transf.txt' % target_file_name ) + +# Define command response buffers. +tmp_out = tempfile.NamedTemporaryFile().name +tmp_stdout = open( tmp_out, 'wb' ) +tmp_err = tempfile.NamedTemporaryFile().name +tmp_stderr = open( tmp_err, 'wb' ) + +# Build the command line to align the two images. +cmd = imagej2_base_utils.get_base_cmd_bunwarpj( None ) +if cmd is None: + imagej2_base_utils.stop_err( "bUnwarpJ not found!" ) +cmd += ' -align' +# Target is sent before source. +cmd += ' %s' % target_image_path +if args.target_mask is None: + target_mask_str = ' NULL' +else: + target_mask_str = ' %s' % tmp_target_mask_path +cmd += target_mask_str +cmd += ' %s' % source_image_path +if args.source_mask is None: + source_mask_str = ' NULL' +else: + source_mask_str = ' %s' % tmp_source_mask_path +cmd += source_mask_str +cmd += ' %d' % args.min_scale_def +cmd += ' %d' % args.max_scale_def +cmd += ' %d' % args.max_subsamp_fact +cmd += ' %.1f' % args.divergence_weight +cmd += ' %.1f' % args.curl_weight +cmd += ' %.1f' % args.image_weight +cmd += ' %.1f' % args.consistency_weight +# Source is produced before target. +cmd += ' %s' % tmp_source_out_tiff_path +if not args.mono: + cmd += ' %s' % tmp_target_out_tiff_path +if args.landmarks_file is not None: + # We have to create a temporary file with a .txt extension here so that + # bUnwarpJ will not ignore the Galaxy "dataset.dat" file. + tmp_landmarks_file_path = imagej2_base_utils.get_input_image_path( tmp_dir, + args.landmarks_file, + 'txt' ) + cmd += ' -landmarks' + cmd += ' %.1f' % args.landmarks_weight + cmd += ' %s' % tmp_landmarks_file_path +if args.source_affine_file is not None and args.target_affine_file is not None: + # Target is sent before source. + cmd += ' -affine' + cmd += ' %s' % args.target_affine_file + cmd += ' %s' % args.source_affine_file +if args.mono: + cmd += ' -mono' +if save_transformation: + cmd += ' -save_transformation' + +# Align the two images using bUnwarpJ. +proc = subprocess.Popen( args=cmd, stderr=tmp_stderr, stdout=tmp_stdout, shell=True ) +rc = proc.wait() +if rc != 0: + error_message = imagej2_base_utils.get_stderr_exception( tmp_err, tmp_stderr, tmp_out, tmp_stdout ) + imagej2_base_utils.stop_err( error_message ) + +# bUnwarpJ produces tiff image stacks consisting of 3 slices which can be viewed in ImageJ. +# The 3 slices are:: 1) the registered image, 2) the target image and 3) the black/white +# warp image. Galaxy supports only single-layered images, so we'll convert the images so they +# can be viewed in Galaxy. + +# Define command response buffers. +tmp_out = tempfile.NamedTemporaryFile().name +tmp_stdout = open( tmp_out, 'wb' ) +tmp_err = tempfile.NamedTemporaryFile().name +tmp_stderr = open( tmp_err, 'wb' ) + +# Build the command line to handle the multi-slice tiff images. +cmd = imagej2_base_utils.get_base_command_imagej2( None, jython_script=args.jython_script ) +if cmd is None: + imagej2_base_utils.stop_err( "ImageJ not found!" ) +if args.mono: + # bUnwarpJ will produce only a registered source image. + cmd += ' %s %s %s %s' % ( tmp_source_out_tiff_path, + args.source_out_datatype, + tmp_source_out_path, + args.mono ) +else: + # bUnwarpJ will produce registered source and target images. + cmd += ' %s %s %s %s %s %s %s' % ( tmp_source_out_tiff_path, + args.source_out_datatype, + tmp_source_out_path, + tmp_target_out_tiff_path, + args.target_out_datatype, + tmp_target_out_path, + args.mono ) + +# Merge the multi-slice tiff layers into an image that can be viewed in Galaxy. +proc = subprocess.Popen( args=cmd, stderr=tmp_stderr, stdout=tmp_stdout, shell=True ) +rc = proc.wait() +if rc != 0: + error_message = imagej2_base_utils.get_stderr_exception( tmp_err, tmp_stderr, tmp_out, tmp_stdout ) + imagej2_base_utils.stop_err( error_message ) + +# Save the Registered Source Image to the output dataset. +shutil.move( tmp_source_out_path, args.source_out ) +if not args.mono: + # Move the Registered Target Image to the output dataset. + shutil.move( tmp_target_out_path, args.target_out ) + +# If requested, save matrix transformations as additional datasets. +if save_transformation: + shutil.move( tmp_source_out_transf_path, args.source_trans_out ) + if not args.mono: + shutil.move( tmp_target_out_transf_path, args.target_trans_out ) + +imagej2_base_utils.cleanup_before_exit( tmp_dir )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_bunwarpj_align_jython_script.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,37 @@ +import sys +import jython_utils +from ij import IJ + +# Fiji Jython interpreter implements Python 2.5 which does not +# provide support for argparse. + +if sys.argv[ -1 ].lower() in [ 'true' ]: + mono = True +else: + mono = False + +if mono: + # bUnwarpJ has been called with the -mono param. + source_tiff_path = sys.argv[ -4 ] + source_datatype = sys.argv[ -3 ] + source_path = sys.argv[ -2 ] +else: + source_tiff_path = sys.argv[ -7 ] + source_datatype = sys.argv[ -6 ] + source_path = sys.argv[ -5 ] + target_tiff_path = sys.argv[ -4 ] + target_datatype = sys.argv[ -3 ] + target_path = sys.argv[ -2 ] + +# Save the Registered Source Image. +registered_source_image = IJ.openImage( source_tiff_path ) +if source_datatype == 'tiff': + registered_source_image = jython_utils.convert_before_saving_as_tiff( registered_source_image ) +IJ.saveAs( registered_source_image, source_datatype, source_path ) + +if not mono: + # Save the Registered Target Image. + registered_target_image = IJ.openImage( target_tiff_path ) + if target_datatype == 'tiff': + registered_target_image = jython_utils.convert_before_saving_as_tiff( registered_target_image ) + IJ.saveAs( registered_target_image, target_datatype, target_path )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_bunwarpj_compare_elastic.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,65 @@ +#!/usr/bin/env python +import argparse +import subprocess +import tempfile +import imagej2_base_utils + +# Parse Command Line. +parser = argparse.ArgumentParser() +parser.add_argument( '--source_image', dest='source_image', help='Source image' ) +parser.add_argument( '--source_image_format', dest='source_image_format', help='Source image format' ) +parser.add_argument( '--target_image', dest='target_image', help='Target image' ) +parser.add_argument( '--target_image_format', dest='target_image_format', help='Target image format' ) +parser.add_argument( '--source_transformation', dest='source_transformation', help='Direct source transformation matrix' ) +parser.add_argument( '--target_transformation', dest='target_transformation', help='Inverse target transformation matrix' ) +parser.add_argument( '--output', dest='output', help='Warping index' ) + +args = parser.parse_args() + +tmp_dir = imagej2_base_utils.get_temp_dir() +source_image_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.source_image, args.source_image_format ) +target_image_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.target_image, args.target_image_format ) +source_transformation_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.source_transformation, 'txt' ) +target_transformation_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.target_transformation, 'txt' ) +# bUnwarpJ produces several lines of output that we need to discard, so +# we'll use a temporary output file from which we'll read only the last line. +tmp_output_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.output, 'txt' ) + +# Define command response buffers. +tmp_out = tempfile.NamedTemporaryFile().name +tmp_stdout = open( tmp_out, 'wb' ) +tmp_err = tempfile.NamedTemporaryFile().name +tmp_stderr = open( tmp_err, 'wb' ) + +# Build the command line to calculate the warping index. +cmd = imagej2_base_utils.get_base_cmd_bunwarpj( None ) +if cmd is None: + imagej2_base_utils.stop_err( "bUnwarpJ not found!" ) +cmd += ' -compare_elastic' +# Target is sent before source. +cmd += ' %s' % target_image_path +cmd += ' %s' % source_image_path +cmd += ' %s' % target_transformation_path +cmd += ' %s' % source_transformation_path +cmd += ' > %s' % tmp_output_path + +# Calculate the warping index of two elastic transformations using bUnwarpJ. +proc = subprocess.Popen( args=cmd, stderr=subprocess.PIPE, stdout=subprocess.PIPE, shell=True ) +rc = proc.wait() +if rc != 0: + error_message = imagej2_base_utils.get_stderr_exception( tmp_err, tmp_stderr, tmp_out, tmp_stdout ) + imagej2_base_utils.stop_err( error_message ) + +# Example contents of tmp_output_path: +# ['Target image : ~/tmpKAYF1P.jpg\n', +# 'Source image : ~/tmpgQX0dy.gif\n', +# 'Target Transformation file : ~/tmpZJC_4B.txt\n', +# 'Source Transformation file : ~/tmphsSojl.txt\n', +# ' Warping index = 14.87777347388348\n'] +results = open( tmp_output_path, 'r' ).readlines() +warp_index = results[ -1 ].split( ' ' )[ -1 ] +outf = open( args.output, 'wb' ) +outf.write( '%s' % warp_index ) +outf.close() + +imagej2_base_utils.cleanup_before_exit( tmp_dir )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_bunwarpj_compare_elastic_raw.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,64 @@ +#!/usr/bin/env python +import argparse +import subprocess +import tempfile +import imagej2_base_utils + +# Parse Command Line. +parser = argparse.ArgumentParser() +parser.add_argument( '--source_image', dest='source_image', help='Source image' ) +parser.add_argument( '--source_image_format', dest='source_image_format', help='Source image format' ) +parser.add_argument( '--target_image', dest='target_image', help='Target image' ) +parser.add_argument( '--target_image_format', dest='target_image_format', help='Target image format' ) +parser.add_argument( '--target_elastic_transformation', dest='target_elastic_transformation', help='Target elastic transformation matrix' ) +parser.add_argument( '--source_raw_transformation', dest='source_raw_transformation', help='Source raw transformation matrix' ) +parser.add_argument( '--output', dest='output', help='Warping index' ) + +args = parser.parse_args() + +tmp_dir = imagej2_base_utils.get_temp_dir() +source_image_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.source_image, args.source_image_format ) +target_image_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.target_image, args.target_image_format ) +target_elastic_transformation_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.target_elastic_transformation, 'txt' ) +source_raw_transformation_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.source_raw_transformation, 'txt' ) +# bUnwarpJ produces several lines of output that we need to discard, so +# we'll use a temporary output file from which we'll read only the last line. +tmp_output_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.output, 'txt' ) + +# Define command response buffers. +tmp_out = tempfile.NamedTemporaryFile().name +tmp_stdout = open( tmp_out, 'wb' ) +tmp_err = tempfile.NamedTemporaryFile().name +tmp_stderr = open( tmp_err, 'wb' ) + +# Build the command line to calculate the warping index. +cmd = imagej2_base_utils.get_base_cmd_bunwarpj( None ) +if cmd is None: + imagej2_base_utils.stop_err( "bUnwarpJ not found!" ) +cmd += ' -compare_elastic_raw' +cmd += ' %s' % target_image_path +cmd += ' %s' % source_image_path +cmd += ' %s' % target_elastic_transformation_path +cmd += ' %s' % source_raw_transformation_path +cmd += ' > %s' % tmp_output_path + +# Calculate the warping index of elastic and raw transformations using bUnwarpJ. +proc = subprocess.Popen( args=cmd, stderr=subprocess.PIPE, stdout=subprocess.PIPE, shell=True ) +rc = proc.wait() +if rc != 0: + error_message = imagej2_base_utils.get_stderr_exception( tmp_err, tmp_stderr, tmp_out, tmp_stdout ) + imagej2_base_utils.stop_err( error_message ) + +# Example contents of tmp_output_path: +# ['Target image : ~/tmpHdt9Cs.jpg\n', +# 'Source image : ~/tmpu6kyfc.gif\n', +# 'Elastic Transformation file : ~/tmp4vZurG.txt\n', +# 'Raw Transformation file : ~/tmp2PNQcT.txt\n', +# ' Warping index = 25.007467512204983\n'] +results = open( tmp_output_path, 'r' ).readlines() +warp_index = results[ -1 ].split( ' ' )[ -1 ] +outf = open( args.output, 'wb' ) +outf.write( '%s' % warp_index ) +outf.close() + +imagej2_base_utils.cleanup_before_exit( tmp_dir )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_bunwarpj_compose_elastic.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,50 @@ +#!/usr/bin/env python +import argparse +import subprocess +import tempfile +import imagej2_base_utils + +# Parse Command Line. +parser = argparse.ArgumentParser() +parser.add_argument( '--source_image', dest='source_image', help='Source image' ) +parser.add_argument( '--source_image_format', dest='source_image_format', help='Source image format' ) +parser.add_argument( '--target_image', dest='target_image', help='Target image' ) +parser.add_argument( '--target_image_format', dest='target_image_format', help='Target image format' ) +parser.add_argument( '--source_elastic_transformation', dest='source_elastic_transformation', help='Direct source transformation matrix' ) +parser.add_argument( '--target_elastic_transformation', dest='target_elastic_transformation', help='Inverse target transformation matrix' ) +parser.add_argument( '--output', dest='output', help='Warping index' ) + +args = parser.parse_args() + +tmp_dir = imagej2_base_utils.get_temp_dir() +source_image_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.source_image, args.source_image_format ) +target_image_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.target_image, args.target_image_format ) +source_elastic_transformation_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.source_elastic_transformation, 'txt' ) +target_elastic_transformation_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.target_elastic_transformation, 'txt' ) + +# Define command response buffers. +tmp_out = tempfile.NamedTemporaryFile().name +tmp_stdout = open( tmp_out, 'wb' ) +tmp_err = tempfile.NamedTemporaryFile().name +tmp_stderr = open( tmp_err, 'wb' ) + +# Build the command line to compose the transformations. +cmd = imagej2_base_utils.get_base_cmd_bunwarpj( None ) +if cmd is None: + imagej2_base_utils.stop_err( "bUnwarpJ not found!" ) +cmd += ' -compose_elastic' +# Target is sent before source. +cmd += ' %s' % target_image_path +cmd += ' %s' % source_image_path +cmd += ' %s' % target_elastic_transformation_path +cmd += ' %s' % source_elastic_transformation_path +cmd += ' %s' % args.output + +# Compose the two elastic transformations into a raw transformation using bUnwarpJ. +proc = subprocess.Popen( args=cmd, stderr=subprocess.PIPE, stdout=subprocess.PIPE, shell=True ) +rc = proc.wait() +if rc != 0: + error_message = imagej2_base_utils.get_stderr_exception( tmp_err, tmp_stderr, tmp_out, tmp_stdout ) + imagej2_base_utils.stop_err( error_message ) + +imagej2_base_utils.cleanup_before_exit( tmp_dir )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_bunwarpj_compose_raw.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,50 @@ +#!/usr/bin/env python +import argparse +import subprocess +import tempfile +import imagej2_base_utils + +# Parse Command Line. +parser = argparse.ArgumentParser() +parser.add_argument( '--source_image', dest='source_image', help='Source image' ) +parser.add_argument( '--source_image_format', dest='source_image_format', help='Source image format' ) +parser.add_argument( '--target_image', dest='target_image', help='Target image' ) +parser.add_argument( '--target_image_format', dest='target_image_format', help='Target image format' ) +parser.add_argument( '--source_raw_transformation', dest='source_raw_transformation', help='Direct source transformation matrix' ) +parser.add_argument( '--target_raw_transformation', dest='target_raw_transformation', help='Inverse target transformation matrix' ) +parser.add_argument( '--output', dest='output', help='Warping index' ) + +args = parser.parse_args() + +tmp_dir = imagej2_base_utils.get_temp_dir() +source_image_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.source_image, args.source_image_format ) +target_image_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.target_image, args.target_image_format ) +source_raw_transformation_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.source_raw_transformation, 'txt' ) +target_raw_transformation_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.target_raw_transformation, 'txt' ) + +# Define command response buffers. +tmp_out = tempfile.NamedTemporaryFile().name +tmp_stdout = open( tmp_out, 'wb' ) +tmp_err = tempfile.NamedTemporaryFile().name +tmp_stderr = open( tmp_err, 'wb' ) + +# Build the command line to compose the two raw transformations. +cmd = imagej2_base_utils.get_base_cmd_bunwarpj( None ) +if cmd is None: + imagej2_base_utils.stop_err( "bUnwarpJ not found!" ) +cmd += ' -compose_raw' +# Target is sent before source. +cmd += ' %s' % target_image_path +cmd += ' %s' % source_image_path +cmd += ' %s' % target_raw_transformation_path +cmd += ' %s' % source_raw_transformation_path +cmd += ' %s' % args.output + +# Compose the two raw transformations into another raw transformation using bUnwarpJ. +proc = subprocess.Popen( args=cmd, stderr=subprocess.PIPE, stdout=subprocess.PIPE, shell=True ) +rc = proc.wait() +if rc != 0: + error_message = imagej2_base_utils.get_stderr_exception( tmp_err, tmp_stderr, tmp_out, tmp_stdout ) + imagej2_base_utils.stop_err( error_message ) + +imagej2_base_utils.cleanup_before_exit( tmp_dir )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_bunwarpj_compose_raw_elastic.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,50 @@ +#!/usr/bin/env python +import argparse +import subprocess +import tempfile +import imagej2_base_utils + +# Parse Command Line. +parser = argparse.ArgumentParser() +parser.add_argument( '--source_image', dest='source_image', help='Source image' ) +parser.add_argument( '--source_image_format', dest='source_image_format', help='Source image format' ) +parser.add_argument( '--target_image', dest='target_image', help='Target image' ) +parser.add_argument( '--target_image_format', dest='target_image_format', help='Target image format' ) +parser.add_argument( '--source_elastic_transformation', dest='source_elastic_transformation', help='Direct source transformation matrix' ) +parser.add_argument( '--target_raw_transformation', dest='target_raw_transformation', help='Inverse target transformation matrix' ) +parser.add_argument( '--output', dest='output', help='Warping index' ) + +args = parser.parse_args() + +tmp_dir = imagej2_base_utils.get_temp_dir() +source_image_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.source_image, args.source_image_format ) +target_image_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.target_image, args.target_image_format ) +source_elastic_transformation_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.source_elastic_transformation, 'txt' ) +target_raw_transformation_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.target_raw_transformation, 'txt' ) + +# Define command response buffers. +tmp_out = tempfile.NamedTemporaryFile().name +tmp_stdout = open( tmp_out, 'wb' ) +tmp_err = tempfile.NamedTemporaryFile().name +tmp_stderr = open( tmp_err, 'wb' ) + +# Build the command line to compose the raw and elastic transformations. +cmd = imagej2_base_utils.get_base_cmd_bunwarpj( None ) +if cmd is None: + imagej2_base_utils.stop_err( "bUnwarpJ not found!" ) +cmd += ' -compose_raw_elastic' +# Target is sent before source. +cmd += ' %s' % target_image_path +cmd += ' %s' % source_image_path +cmd += ' %s' % target_raw_transformation_path +cmd += ' %s' % source_elastic_transformation_path +cmd += ' %s' % args.output + +# Compose the raw and elastic transformations into another raw transformation using bUnwarpJ. +proc = subprocess.Popen( args=cmd, stderr=subprocess.PIPE, stdout=subprocess.PIPE, shell=True ) +rc = proc.wait() +if rc != 0: + error_message = imagej2_base_utils.get_stderr_exception( tmp_err, tmp_stderr, tmp_out, tmp_stdout ) + imagej2_base_utils.stop_err( error_message ) + +imagej2_base_utils.cleanup_before_exit( tmp_dir )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_bunwarpj_convert_to_raw.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,47 @@ +#!/usr/bin/env python +import argparse +import subprocess +import tempfile +import imagej2_base_utils + +# Parse Command Line. +parser = argparse.ArgumentParser() +parser.add_argument( '--source_image', dest='source_image', help='Source image' ) +parser.add_argument( '--source_image_format', dest='source_image_format', help='Source image format' ) +parser.add_argument( '--target_image', dest='target_image', help='Target image' ) +parser.add_argument( '--target_image_format', dest='target_image_format', help='Target image format' ) +parser.add_argument( '--elastic_transformation', dest='elastic_transformation', help='Elastic transformation as saved by bUnwarpJ in elastic format' ) +parser.add_argument( '--raw_transformation', dest='raw_transformation', help='Raw transformation' ) + +args = parser.parse_args() + +tmp_dir = imagej2_base_utils.get_temp_dir() +source_image_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.source_image, args.source_image_format ) +target_image_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.target_image, args.target_image_format ) +elastic_transformation_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.elastic_transformation, 'txt' ) + +# Define command response buffers. +tmp_out = tempfile.NamedTemporaryFile().name +tmp_stdout = open( tmp_out, 'wb' ) +tmp_err = tempfile.NamedTemporaryFile().name +tmp_stderr = open( tmp_err, 'wb' ) + +# Build the command line to convert the B-spline (i.e., elastic) transformation to raw. +cmd = imagej2_base_utils.get_base_cmd_bunwarpj( None ) +if cmd is None: + imagej2_base_utils.stop_err( "bUnwarpJ not found!" ) +cmd += ' -convert_to_raw' +# Target is sent before source. +cmd += ' %s' % target_image_path +cmd += ' %s' % source_image_path +cmd += ' %s' % elastic_transformation_path +cmd += ' %s' % args.raw_transformation + +# Convert the elastic transformation to raw using bUnwarpJ. +proc = subprocess.Popen( args=cmd, stderr=tmp_stderr, stdout=tmp_stdout, shell=True ) +rc = proc.wait() +if rc != 0: + error_message = imagej2_base_utils.get_stderr_exception( tmp_err, tmp_stderr, tmp_out, tmp_stdout ) + imagej2_base_utils.stop_err( error_message ) + +imagej2_base_utils.cleanup_before_exit( tmp_dir )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_bunwarpj_elastic_transform.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,73 @@ +#!/usr/bin/env python +import argparse +import shutil +import subprocess +import tempfile +import imagej2_base_utils + +# Parse Command Line. +parser = argparse.ArgumentParser() +parser.add_argument( '--source_image', dest='source_image', help='Source image' ) +parser.add_argument( '--source_image_format', dest='source_image_format', help='Source image format' ) +parser.add_argument( '--target_image', dest='target_image', help='Target image' ) +parser.add_argument( '--target_image_format', dest='target_image_format', help='Target image format' ) +parser.add_argument( '--elastic_transformation', dest='elastic_transformation', help='Elastic transformation as saved by bUnwarpJ in elastic format' ) +parser.add_argument( '--source_out', help='Output source image' ) +parser.add_argument( '--source_out_datatype', help='Output registered source image format' ) +parser.add_argument( '--jython_script', dest='jython_script', help='Path to the Jython script' ) + +args = parser.parse_args() + +tmp_dir = imagej2_base_utils.get_temp_dir() +source_image_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.source_image, args.source_image_format ) +tmp_source_out_tiff_path = imagej2_base_utils.get_temporary_image_path( tmp_dir, 'tiff' ) +tmp_source_out_path = imagej2_base_utils.get_temporary_image_path( tmp_dir, args.source_out_datatype ) +target_image_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.target_image, args.target_image_format ) +elastic_transformation_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.elastic_transformation, 'txt' ) + +# Define command response buffers. +tmp_out = tempfile.NamedTemporaryFile().name +tmp_stdout = open( tmp_out, 'wb' ) +tmp_err = tempfile.NamedTemporaryFile().name +tmp_stderr = open( tmp_err, 'wb' ) + +# Build the command line to apply the transformation. +cmd = imagej2_base_utils.get_base_cmd_bunwarpj( None ) +if cmd is None: + imagej2_base_utils.stop_err( "bUnwarpJ not found!" ) +cmd += ' -elastic_transform' +# Target is sent before source. +cmd += ' %s' % target_image_path +cmd += ' %s' % source_image_path +cmd += ' %s' % elastic_transformation_path +cmd += ' %s' % tmp_source_out_tiff_path + +# Apply the elastic transformation using bUnwarpJ. +proc = subprocess.Popen( args=cmd, stderr=tmp_stderr, stdout=tmp_stdout, shell=True ) +rc = proc.wait() +if rc != 0: + error_message = imagej2_base_utils.get_stderr_exception( tmp_err, tmp_stderr, tmp_out, tmp_stdout ) + imagej2_base_utils.stop_err( error_message ) + +# Convert the registered image to the specified output format. +tmp_out = tempfile.NamedTemporaryFile().name +tmp_stdout = open( tmp_out, 'wb' ) +tmp_err = tempfile.NamedTemporaryFile().name +tmp_stderr = open( tmp_err, 'wb' ) + +cmd = imagej2_base_utils.get_base_command_imagej2( None, jython_script=args.jython_script ) +if cmd is None: + imagej2_base_utils.stop_err( "ImageJ not found!" ) +cmd += ' %s %s %s' % ( tmp_source_out_tiff_path, + args.source_out_datatype, + tmp_source_out_path ) + +proc = subprocess.Popen( args=cmd, stderr=tmp_stderr, stdout=tmp_stdout, shell=True ) +rc = proc.wait() +if rc != 0: + error_message = imagej2_base_utils.get_stderr_exception( tmp_err, tmp_stderr, tmp_out, tmp_stdout ) + imagej2_base_utils.stop_err( error_message ) + +# Save the Registered Source Image to the defined output. +shutil.move( tmp_source_out_path, args.source_out ) +imagej2_base_utils.cleanup_before_exit( tmp_dir )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_bunwarpj_elastic_transform_jython_script.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,16 @@ +import sys +import jython_utils +from ij import IJ + +# Fiji Jython interpreter implements Python 2.5 which does not +# provide support for argparse. + +source_tiff_path = sys.argv[ -3 ] +source_datatype = sys.argv[ -2 ] +source_path = sys.argv[ -1 ] + +# Save the Registered Source Image. +registered_source_image = IJ.openImage( source_tiff_path ) +if source_datatype == 'tiff': + registered_source_image = jython_utils.convert_before_saving_as_tiff( registered_source_image ) +IJ.saveAs( registered_source_image, source_datatype, source_path )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_bunwarpj_raw_transform.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,73 @@ +#!/usr/bin/env python +import argparse +import shutil +import subprocess +import tempfile +import imagej2_base_utils + +# Parse Command Line. +parser = argparse.ArgumentParser() +parser.add_argument( '--source_image', dest='source_image', help='Source image' ) +parser.add_argument( '--source_image_format', dest='source_image_format', help='Source image format' ) +parser.add_argument( '--target_image', dest='target_image', help='Target image' ) +parser.add_argument( '--target_image_format', dest='target_image_format', help='Target image format' ) +parser.add_argument( '--raw_transformation', dest='raw_transformation', help='Raw transformation as saved by bUnwarpJ' ) +parser.add_argument( '--source_out', help='Output source image' ) +parser.add_argument( '--source_out_datatype', help='Output registered source image format' ) +parser.add_argument( '--jython_script', dest='jython_script', help='Path to the Jython script' ) + +args = parser.parse_args() + +tmp_dir = imagej2_base_utils.get_temp_dir() +source_image_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.source_image, args.source_image_format ) +tmp_source_out_tiff_path = imagej2_base_utils.get_temporary_image_path( tmp_dir, 'tiff' ) +tmp_source_out_path = imagej2_base_utils.get_temporary_image_path( tmp_dir, args.source_out_datatype ) +target_image_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.target_image, args.target_image_format ) +raw_transformation_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.raw_transformation, 'txt' ) + +# Define command response buffers. +tmp_out = tempfile.NamedTemporaryFile().name +tmp_stdout = open( tmp_out, 'wb' ) +tmp_err = tempfile.NamedTemporaryFile().name +tmp_stderr = open( tmp_err, 'wb' ) + +# Build the command line to apply the raw transformation. +cmd = imagej2_base_utils.get_base_cmd_bunwarpj( None ) +if cmd is None: + imagej2_base_utils.stop_err( "bUnwarpJ not found!" ) +cmd += ' -raw_transform' +# Target is sent before source. +cmd += ' %s' % target_image_path +cmd += ' %s' % source_image_path +cmd += ' %s' % raw_transformation_path +cmd += ' %s' % tmp_source_out_tiff_path + +# Apply the raw transformation using bUnwarpJ. +proc = subprocess.Popen( args=cmd, stderr=tmp_stderr, stdout=tmp_stdout, shell=True ) +rc = proc.wait() +if rc != 0: + error_message = imagej2_base_utils.get_stderr_exception( tmp_err, tmp_stderr, tmp_out, tmp_stdout ) + imagej2_base_utils.stop_err( error_message ) + +# Convert the registered image to the specified output format. +tmp_out = tempfile.NamedTemporaryFile().name +tmp_stdout = open( tmp_out, 'wb' ) +tmp_err = tempfile.NamedTemporaryFile().name +tmp_stderr = open( tmp_err, 'wb' ) + +cmd = imagej2_base_utils.get_base_command_imagej2( None, jython_script=args.jython_script ) +if cmd is None: + imagej2_base_utils.stop_err( "ImageJ not found!" ) +cmd += ' %s %s %s' % ( tmp_source_out_tiff_path, + args.source_out_datatype, + tmp_source_out_path ) + +proc = subprocess.Popen( args=cmd, stderr=tmp_stderr, stdout=tmp_stdout, shell=True ) +rc = proc.wait() +if rc != 0: + error_message = imagej2_base_utils.get_stderr_exception( tmp_err, tmp_stderr, tmp_out, tmp_stdout ) + imagej2_base_utils.stop_err( error_message ) + +# Save the Registered Source Image to the defined output. +shutil.move( tmp_source_out_path, args.source_out ) +imagej2_base_utils.cleanup_before_exit( tmp_dir )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_bunwarpj_raw_transform_jython_script.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,16 @@ +import sys +import jython_utils +from ij import IJ + +# Fiji Jython interpreter implements Python 2.5 which does not +# provide support for argparse. + +source_tiff_path = sys.argv[ -3 ] +source_datatype = sys.argv[ -2 ] +source_path = sys.argv[ -1 ] + +# Save the Registered Source Image. +registered_source_image = IJ.openImage( source_tiff_path ) +if source_datatype == 'tiff': + registered_source_image = jython_utils.convert_before_saving_as_tiff( registered_source_image ) +IJ.saveAs( registered_source_image, source_datatype, source_path )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_create_image.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,40 @@ +#!/usr/bin/env python +import argparse +import shutil +import subprocess +import tempfile +import imagej2_base_utils + +if __name__=="__main__": + # Parse Command Line. + parser = argparse.ArgumentParser() + parser.add_argument( '--width', dest='width', type=int, help='Image width in pixels' ) + parser.add_argument( '--height', dest='height', type=int, help='Image height in pixels' ) + parser.add_argument( '--depth', dest='depth', type=int, help='Image depth (specifies the number of stack slices)' ) + parser.add_argument( '--image_type', dest='image_type', help='Image type' ) + parser.add_argument( '--image_title', dest='image_title', default='', help='Image title' ) + parser.add_argument( '--output_datatype', dest='output_datatype', help='Output image format' ) + parser.add_argument( '--jython_script', dest='jython_script', help='Path to the Jython script' ) + parser.add_argument( '--out_fname', help='Path to the output file' ) + args = parser.parse_args() + + tmp_dir = imagej2_base_utils.get_temp_dir() + tmp_image_path = imagej2_base_utils.get_temporary_image_path( tmp_dir, args.output_datatype ) + + # Define command response buffers. + tmp_out = tempfile.NamedTemporaryFile().name + tmp_stdout = open( tmp_out, 'wb' ) + tmp_err = tempfile.NamedTemporaryFile().name + tmp_stderr = open( tmp_err, 'wb' ) + # Build the command line. + cmd = imagej2_base_utils.get_base_command_imagej2( None, jython_script=args.jython_script ) + if cmd is None: + imagej2_base_utils.stop_err( "ImageJ not found!" ) + cmd += ' %s %d %d %d %s %s' % ( args.image_title, args.width, args.height, args.depth, args.image_type, tmp_image_path ) + proc = subprocess.Popen( args=cmd, stderr=tmp_stderr, stdout=tmp_stdout, shell=True ) + rc = proc.wait() + if rc != 0: + error_message = imagej2_base_utils.get_stderr_exception( tmp_err, tmp_stderr, tmp_out, tmp_stdout ) + imagej2_base_utils.stop_err( error_message ) + shutil.move( tmp_image_path, args.out_fname ) + imagej2_base_utils.cleanup_before_exit( tmp_dir )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_create_image_jython_script.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,14 @@ +import sys +from ij import IJ + +# Fiji Jython interpreter implements Python 2.5 which does not +# provide support for argparse. +title = sys.argv[ -6 ] +width = int( sys.argv[ -5 ] ) +height = int( sys.argv[ -4 ] ) +depth = int( sys.argv[ -3 ] ) +type = sys.argv[ -2 ].replace( '_', ' ' ) +tmp_image_path = sys.argv[ -1 ] + +imp = IJ.newImage( title, type, width, height, depth ) +IJ.save( imp, "%s" % tmp_image_path )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_enhance_contrast.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,63 @@ +#!/usr/bin/env python +import argparse +import os +import shutil +import subprocess +import tempfile +import imagej2_base_utils + +parser = argparse.ArgumentParser() +parser.add_argument( '--input', dest='input', help='Path to the input file' ) +parser.add_argument( '--input_datatype', dest='input_datatype', help='Datatype of the input image' ) +parser.add_argument( '--equalize_histogram', dest='equalize_histogram', help='Equalize_histogram' ) +parser.add_argument( '--saturated_pixels', dest='saturated_pixels', type=float, default=None, help='Saturated pixel pct' ) +parser.add_argument( '--normalize', dest='normalize', help='Normalize' ) +parser.add_argument( '--jython_script', dest='jython_script', help='Path to the Jython script' ) +parser.add_argument( '--output', dest='output', help='Path to the output file' ) +parser.add_argument( '--output_datatype', dest='output_datatype', help='Datatype of the output image' ) +args = parser.parse_args() + +tmp_dir = imagej2_base_utils.get_temp_dir() +# ImageJ expects valid image file extensions, so the Galaxy .dat extension does not +# work for some features. The following creates a symlink with an appropriate file +# extension that points to the Galaxy dataset. This symlink is used by ImageJ. +tmp_input_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.input, args.input_datatype ) +tmp_output_path = imagej2_base_utils.get_temporary_image_path( tmp_dir, args.output_datatype ) + +# Define command response buffers. +tmp_out = tempfile.NamedTemporaryFile().name +tmp_stdout = open( tmp_out, 'wb' ) +tmp_err = tempfile.NamedTemporaryFile().name +tmp_stderr = open( tmp_err, 'wb' ) +# Java writes a lot of stuff to stderr, so we'll specify a file for handling actual errors. +error_log = tempfile.NamedTemporaryFile( delete=False ).name + +# Build the command line. +cmd = imagej2_base_utils.get_base_command_imagej2( None, jython_script=args.jython_script ) +if cmd is None: + imagej2_base_utils.stop_err( "ImageJ not found!" ) +cmd += ' %s' % error_log +cmd += ' %s' % tmp_input_path +cmd += ' %s' % args.equalize_histogram +cmd += imagej2_base_utils.handle_none_type( args.saturated_pixels ) +cmd += ' %s' % args.normalize +cmd += ' %s' % tmp_output_path +cmd += ' %s' % args.output_datatype + +# Run the command. +proc = subprocess.Popen( args=cmd, stderr=tmp_stderr, stdout=tmp_stdout, shell=True ) +rc = proc.wait() + +# Handle execution errors. +if rc != 0: + error_message = imagej2_base_utils.get_stderr_exception( tmp_err, tmp_stderr, tmp_out, tmp_stdout ) + imagej2_base_utils.stop_err( error_message ) + +# Handle processing errors. +if os.path.getsize( error_log ) > 0: + error_message = open( error_log, 'r' ).read() + imagej2_base_utils.stop_err( error_message ) + +# Save the output image. +shutil.move( tmp_output_path, args.output ) +imagej2_base_utils.cleanup_before_exit( tmp_dir )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_enhance_contrast_jython_script.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,42 @@ +import jython_utils +import sys +from ij import IJ + +# Fiji Jython interpreter implements Python 2.5 which does not +# provide support for argparse. +error_log = sys.argv[ -7 ] +input = sys.argv[ -6 ] +equalize_histogram = jython_utils.asbool( sys.argv[ -5 ] ) +saturated_pixels = sys.argv[ -4 ] +normalize = jython_utils.asbool( sys.argv[ -3 ] ) +tmp_output_path = sys.argv[ -2 ] +output_datatype = sys.argv[ -1 ] + +# Open the input image file. +input_image_plus = IJ.openImage( input ) + +# Create a copy of the image. +input_image_plus_copy = input_image_plus.duplicate() +image_processor_copy = input_image_plus_copy.getProcessor() +bit_depth = image_processor_copy.getBitDepth() + +# Set the options +options = [] +# If equalize_histogram, saturated_pixels and normalize are ignored. +if equalize_histogram: + options.append( 'equalize' ) +else: + if saturated_pixels not in [ None, 'None' ]: + # Fiji allows only a single decimal place for this value. + options.append( 'saturated=%.3f' % float( saturated_pixels ) ) + # Normalization of RGB images is not supported. + if bit_depth != 24 and normalize: + options.append( 'normalize' ) +try: + # Run the command. + options = "%s" % ' '.join( options ) + IJ.run( input_image_plus_copy, "Enhance Contrast...", options ) + # Save the ImagePlus object as a new image. + IJ.saveAs( input_image_plus_copy, output_datatype, tmp_output_path ) +except Exception, e: + jython_utils.handle_error( error_log, str( e ) )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_find_edges.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,57 @@ +#!/usr/bin/env python +import argparse +import os +import shutil +import subprocess +import tempfile +import imagej2_base_utils + +parser = argparse.ArgumentParser() +parser.add_argument( '--input', dest='input', help='Path to the input file' ) +parser.add_argument( '--input_datatype', dest='input_datatype', help='Datatype of the input image' ) +parser.add_argument( '--jython_script', dest='jython_script', help='Path to the Jython script' ) +parser.add_argument( '--output', dest='output', help='Path to the output file' ) +parser.add_argument( '--output_datatype', dest='output_datatype', help='Datatype of the output image' ) +args = parser.parse_args() + +tmp_dir = imagej2_base_utils.get_temp_dir() +# ImageJ expects valid image file extensions, so the Galaxy .dat extension does not +# work for some features. The following creates a symlink with an appropriate file +# extension that points to the Galaxy dataset. This symlink is used by ImageJ. +tmp_input_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.input, args.input_datatype ) +tmp_output_path = imagej2_base_utils.get_temporary_image_path( tmp_dir, args.output_datatype ) + +# Define command response buffers. +tmp_out = tempfile.NamedTemporaryFile().name +tmp_stdout = open( tmp_out, 'wb' ) +tmp_err = tempfile.NamedTemporaryFile().name +tmp_stderr = open( tmp_err, 'wb' ) +# Java writes a lot of stuff to stderr, so we'll specify a file for handling actual errors. +error_log = tempfile.NamedTemporaryFile( delete=False ).name + +# Build the command line. +cmd = imagej2_base_utils.get_base_command_imagej2( None, jython_script=args.jython_script ) +if cmd is None: + imagej2_base_utils.stop_err( "ImageJ not found!" ) +cmd += ' %s' % error_log +cmd += ' %s' % tmp_input_path +cmd += ' %s' % tmp_output_path +cmd += ' %s' % args.output_datatype + +# Run the command. +proc = subprocess.Popen( args=cmd, stderr=tmp_stderr, stdout=tmp_stdout, shell=True ) +rc = proc.wait() + +# Handle execution errors. +if rc != 0: + error_message = imagej2_base_utils.get_stderr_exception( tmp_err, tmp_stderr, tmp_out, tmp_stdout ) + imagej2_base_utils.stop_err( error_message ) + +# Handle processing errors. +if os.path.getsize( error_log ) > 0: + error_message = open( error_log, 'r' ).read() + imagej2_base_utils.stop_err( error_message ) + +# Save the output image. +shutil.move( tmp_output_path, args.output ) +imagej2_base_utils.cleanup_before_exit( tmp_dir )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_find_edges_jython_script.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,25 @@ +import jython_utils +import sys +from ij import IJ + +# Fiji Jython interpreter implements Python 2.5 which does not +# provide support for argparse. +error_log = sys.argv[ -4 ] +input = sys.argv[ -3 ] +tmp_output_path = sys.argv[ -2 ] +output_datatype = sys.argv[ -1 ] + +# Open the input image file. +input_image_plus = IJ.openImage( input ) + +# Create a copy of the image. +input_image_plus_copy = input_image_plus.duplicate() +image_processor_copy = input_image_plus_copy.getProcessor() + +try: + # Run the command. + IJ.run( input_image_plus_copy, "Find Edges", "" ) + # Save the ImagePlus object as a new image. + IJ.saveAs( input_image_plus_copy, output_datatype, tmp_output_path ) +except Exception, e: + jython_utils.handle_error( error_log, str( e ) )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_find_maxima.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,69 @@ +#!/usr/bin/env python +import argparse +import os +import shutil +import subprocess +import tempfile +import imagej2_base_utils + +parser = argparse.ArgumentParser() +parser.add_argument( '--input', dest='input', help='Path to the input file' ) +parser.add_argument( '--input_datatype', dest='input_datatype', help='Datatype of the input image' ) +parser.add_argument( '--scale_when_converting', dest='scale_when_converting', help='Scale when converting RGB image' ) +parser.add_argument( '--weighted_rgb_conversions', dest='weighted_rgb_conversions', help='Weighted RGB conversions for RGB image' ) +parser.add_argument( '--noise_tolerance', dest='noise_tolerance', type=int, help='Noise tolerance' ) +parser.add_argument( '--output_type', dest='output_type', help='Output type' ) +parser.add_argument( '--exclude_edge_maxima', dest='exclude_edge_maxima', help='Exclude edge maxima' ) +parser.add_argument( '--light_background', dest='light_background', help='Light background' ) +parser.add_argument( '--jython_script', dest='jython_script', help='Path to the Jython script' ) +parser.add_argument( '--output', dest='output', help='Path to the output file' ) +parser.add_argument( '--output_datatype', dest='output_datatype', help='Datatype of the output image' ) +args = parser.parse_args() + +tmp_dir = imagej2_base_utils.get_temp_dir() +# ImageJ expects valid image file extensions, so the Galaxy .dat extension does not +# work for some features. The following creates a symlink with an appropriate file +# extension that points to the Galaxy dataset. This symlink is used by ImageJ. +tmp_input_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.input, args.input_datatype ) +tmp_output_path = imagej2_base_utils.get_temporary_image_path( tmp_dir, args.output_datatype ) + +# Define command response buffers. +tmp_out = tempfile.NamedTemporaryFile().name +tmp_stdout = open( tmp_out, 'wb' ) +tmp_err = tempfile.NamedTemporaryFile().name +tmp_stderr = open( tmp_err, 'wb' ) +# Java writes a lot of stuff to stderr, so we'll specify a file for handling actual errors. +error_log = tempfile.NamedTemporaryFile( delete=False ).name + +# Build the command line. +cmd = imagej2_base_utils.get_base_command_imagej2( None, jython_script=args.jython_script ) +if cmd is None: + imagej2_base_utils.stop_err( "ImageJ not found!" ) +cmd += ' %s' % error_log +cmd += ' %s' % tmp_input_path +cmd += ' %s' % args.scale_when_converting +cmd += ' %s' % args.weighted_rgb_conversions +cmd += ' %d' % args.noise_tolerance +cmd += ' %s' % args.output_type +cmd += ' %s' % args.exclude_edge_maxima +cmd += ' %s' % args.light_background +cmd += ' %s' % tmp_output_path +cmd += ' %s' % args.output_datatype + +# Run the command. +proc = subprocess.Popen( args=cmd, stderr=tmp_stderr, stdout=tmp_stdout, shell=True ) +rc = proc.wait() + +# Handle execution errors. +if rc != 0: + error_message = imagej2_base_utils.get_stderr_exception( tmp_err, tmp_stderr, tmp_out, tmp_stdout ) + imagej2_base_utils.stop_err( error_message ) + +# Handle processing errors. +if os.path.getsize( error_log ) > 0: + error_message = open( error_log, 'r' ).read() + imagej2_base_utils.stop_err( error_message ) + +# Save the output image. +shutil.move( tmp_output_path, args.output ) +imagej2_base_utils.cleanup_before_exit( tmp_dir )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_find_maxima_jython_script.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,94 @@ +import sys +import jython_utils +from ij import ImagePlus, IJ +from ij.plugin.filter import Analyzer, MaximumFinder +from ij.process import ImageProcessor +from jarray import array + +# Fiji Jython interpreter implements Python 2.5 which does not +# provide support for argparse. +error_log = sys.argv[ -10 ] +input = sys.argv[ -9 ] +scale_when_converting = jython_utils.asbool( sys.argv[ -8 ] ) +weighted_rgb_conversions = jython_utils.asbool( sys.argv[ -7 ] ) +noise_tolerance = int( sys.argv[ -6 ] ) +output_type = sys.argv[ -5 ] +exclude_edge_maxima = jython_utils.asbool( sys.argv[ -4 ] ) +light_background = jython_utils.asbool( sys.argv[ -3 ] ) +tmp_output_path = sys.argv[ -2 ] +output_datatype = sys.argv[ -1 ] + +# Open the input image file. +input_image_plus = IJ.openImage( input ) + +# Create a copy of the image. +input_image_plus_copy = input_image_plus.duplicate() +image_processor_copy = input_image_plus_copy.getProcessor() +bit_depth = image_processor_copy.getBitDepth() +analyzer = Analyzer( input_image_plus_copy ) + +try: + # Set the conversion options. + options = [] + # The following 2 options are applicable only to RGB images. + if bit_depth == 24: + if scale_when_converting: + option.append( "scale" ) + if weighted_rgb_conversions: + options.append( "weighted" ) + # Perform conversion - must happen even if no options are set. + IJ.run( input_image_plus_copy, "Conversions...", "%s" % " ".join( options ) ) + if output_type in [ 'List', 'Count' ]: + # W're generating a tabular file for the output. + # Set the Find Maxima options. + options = [ 'noise=%d' % noise_tolerance ] + if output_type.find( '_' ) > 0: + output_type_str = 'output=[%s]' % output_type.replace( '_', ' ' ) + else: + output_type_str = 'output=%s' % output_type + options.append( output_type_str ) + if exclude_edge_maxima: + options.append( 'exclude' ) + if light_background: + options.append( 'light' ) + # Run the command. + IJ.run( input_image_plus_copy, "Find Maxima...", "%s" % " ".join( options ) ) + results_table = analyzer.getResultsTable() + results_table.saveAs( tmp_output_path ) + else: + # Find the maxima of an image (does not find minima). + # LIMITATIONS: With output_type=Segmented_Particles + # (watershed segmentation), some segmentation lines + # may be improperly placed if local maxima are suppressed + # by the tolerance. + mf = MaximumFinder() + if output_type == 'Single_Points': + output_type_param = mf.SINGLE_POINTS + elif output_type == 'Maxima_Within_Tolerance': + output_type_param = mf.IN_TOLERANCE + elif output_type == 'Segmented_Particles': + output_type_param = mf.SEGMENTED + elif output_type == 'List': + output_type_param = mf.LIST + elif output_type == 'Count': + output_type_param = mf.COUNT + # Get a new byteProcessor with a normal (uninverted) LUT where + # the marked points are set to 255 (Background 0). Pixels outside + # of the roi of the input image_processor_copy are not set. No + # output image is created for output types POINT_SELECTION, LIST + # and COUNT. In these cases findMaxima returns null. + byte_processor = mf.findMaxima( image_processor_copy, + noise_tolerance, + ImageProcessor.NO_THRESHOLD, + output_type_param, + exclude_edge_maxima, + False ) + # Invert the image or ROI. + byte_processor.invert() + if output_type == 'Segmented_Particles' and not light_background: + # Invert the values in this image's LUT (indexed color model). + byte_processor.invertLut() + image_plus = ImagePlus( "output", byte_processor ) + IJ.saveAs( image_plus, output_datatype, tmp_output_path ) +except Exception, e: + jython_utils.handle_error( error_log, str( e ) )
--- a/imagej2_macros.xml Sun Oct 11 13:32:01 2015 -0400 +++ b/imagej2_macros.xml Fri Jul 22 23:17:07 2016 -0400 @@ -6,14 +6,6 @@ <requirement type="package" version="20141125">fiji</requirement> </requirements> </xml> - <xml name="python_bioformats_requirements"> - <requirements> - <requirement type="package" version="20141125">fiji</requirement> - <requirement type="package" version="1.0.11">javabridge</requirement> - <requirement type="package" version="1.9">numpy</requirement> - <requirement type="package" version="1.0.4">python_bioformats</requirement> - </requirements> - </xml> <xml name="stdio"> <stdio> <exit_code range="1:"/> @@ -111,11 +103,4 @@ <citation type="doi">10.1038/nmeth.2102</citation> </citations> </xml> - <xml name="bioformats_fiji_javabridge_citations"> - <citations> - <citation type="doi">10.1038/nmeth.2102</citation> - <citation type="doi">10.1038/nmeth.2019</citation> - <citation type="doi">10.1083/jcb.201004104</citation> - </citations> - </xml> </macros>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_make_binary.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,59 @@ +#!/usr/bin/env python +import argparse +import os +import shutil +import subprocess +import tempfile +import imagej2_base_utils + +parser = argparse.ArgumentParser() +parser.add_argument( '--input', dest='input', help='Path to the input file' ) +parser.add_argument( '--input_datatype', dest='input_datatype', help='Datatype of the input image' ) +parser.add_argument( '--iterations', dest='iterations', type=int, help='Iterations' ) +parser.add_argument( '--count', dest='count', type=int, help='Count' ) +parser.add_argument( '--black_background', dest='black_background', help='Black background' ) +parser.add_argument( '--pad_edges_when_eroding', dest='pad_edges_when_eroding', help='Pad edges when eroding' ) +parser.add_argument( '--jython_script', dest='jython_script', help='Path to the Jython script' ) +parser.add_argument( '--output', dest='output', help='Path to the output file' ) +parser.add_argument( '--output_datatype', dest='output_datatype', help='Datatype of the output image' ) +args = parser.parse_args() + +tmp_dir = imagej2_base_utils.get_temp_dir() +# ImageJ expects valid image file extensions, so the Galaxy .dat extension does not +# work for some features. The following creates a symlink with an appropriate file +# extension that points to the Galaxy dataset. This symlink is used by ImageJ. +tmp_input_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.input, args.input_datatype ) +tmp_output_path = imagej2_base_utils.get_temporary_image_path( tmp_dir, args.output_datatype ) +# Define command response buffers. +tmp_out = tempfile.NamedTemporaryFile().name +tmp_stdout = open( tmp_out, 'wb' ) +tmp_err = tempfile.NamedTemporaryFile().name +tmp_stderr = open( tmp_err, 'wb' ) +# Java writes a lot of stuff to stderr, so we'll specify a file for handling actual errors. +error_log = tempfile.NamedTemporaryFile( delete=False ).name +# Build the command line. +cmd = imagej2_base_utils.get_base_command_imagej2( None, jython_script=args.jython_script ) +if cmd is None: + imagej2_base_utils.stop_err( "ImageJ not found!" ) +cmd += ' %s' % error_log +cmd += ' %s' % tmp_input_path +cmd += ' %d' % args.iterations +cmd += ' %d' % args.count +cmd += ' %s' % args.black_background +cmd += ' %s' % args.pad_edges_when_eroding +cmd += ' %s' % tmp_output_path +cmd += ' %s' % args.output_datatype +# Run the command. +proc = subprocess.Popen( args=cmd, stderr=tmp_stderr, stdout=tmp_stdout, shell=True ) +rc = proc.wait() +# Handle execution errors. +if rc != 0: + error_message = imagej2_base_utils.get_stderr_exception( tmp_err, tmp_stderr, tmp_out, tmp_stdout ) + imagej2_base_utils.stop_err( error_message ) +# Handle processing errors. +if os.path.getsize( error_log ) > 0: + error_message = open( error_log, 'r' ).read() + imagej2_base_utils.stop_err( error_message ) +# Save the output image. +shutil.move( tmp_output_path, args.output ) +imagej2_base_utils.cleanup_before_exit( tmp_dir )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_make_binary_jython_script.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,37 @@ +import jython_utils +import sys +from ij import IJ + +# Fiji Jython interpreter implements Python 2.5 which does not +# provide support for argparse. +error_log = sys.argv[ -8 ] +input = sys.argv[ -7 ] +iterations = int( sys.argv[ -6 ] ) +count = int( sys.argv[ -5 ] ) +black_background = jython_utils.asbool( sys.argv[ -4 ] ) +pad_edges_when_eroding = jython_utils.asbool( sys.argv[ -3 ] ) +tmp_output_path = sys.argv[ -2 ] +output_datatype = sys.argv[ -1 ] + +# Open the input image file. +input_image_plus = IJ.openImage( input ) + +# Create a copy of the image. +input_image_plus_copy = input_image_plus.duplicate() +image_processor_copy = input_image_plus_copy.getProcessor() + +try: + # Set binary options. + options = jython_utils.get_binary_options( black_background=black_background, + iterations=iterations, + count=count, + pad_edges_when_eroding=pad_edges_when_eroding ) + IJ.run( input_image_plus_copy, "Options...", options ) + + # Run the command. + IJ.run( input_image_plus_copy, "Make Binary", "" ) + + # Save the ImagePlus object as a new image. + IJ.saveAs( input_image_plus_copy, output_datatype, tmp_output_path ) +except Exception, e: + jython_utils.handle_error( error_log, str( e ) )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_math.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,69 @@ +#!/usr/bin/env python +import argparse +import os +import shutil +import subprocess +import tempfile +import imagej2_base_utils + +parser = argparse.ArgumentParser() +parser.add_argument( '--input', dest='input', help='Path to the input file' ) +parser.add_argument( '--input_datatype', dest='input_datatype', help='Datatype of the input image' ) +parser.add_argument( '--operation', dest='operation', help='Operation' ) +parser.add_argument( '--expression', dest='expression', default=None, help='Expression' ) +parser.add_argument( '--bin_constant', dest='bin_constant', type=int, default=None, help='Constant of type binary integer' ) +parser.add_argument( '--float_constant', dest='float_constant', type=float, default=None, help='Constant of type float' ) +parser.add_argument( '--jython_script', dest='jython_script', help='Path to the Jython script' ) +parser.add_argument( '--output', dest='output', help='Path to the output file' ) +parser.add_argument( '--output_datatype', dest='output_datatype', help='Datatype of the output image' ) +args = parser.parse_args() + +tmp_dir = imagej2_base_utils.get_temp_dir() +# ImageJ expects valid image file extensions, so the Galaxy .dat extension does not +# work for some features. The following creates a symlink with an appropriate file +# extension that points to the Galaxy dataset. This symlink is used by ImageJ. +tmp_input_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.input, args.input_datatype ) +tmp_output_path = imagej2_base_utils.get_temporary_image_path( tmp_dir, args.output_datatype ) + +# Define command response buffers. +tmp_out = tempfile.NamedTemporaryFile().name +tmp_stdout = open( tmp_out, 'wb' ) +tmp_err = tempfile.NamedTemporaryFile().name +tmp_stderr = open( tmp_err, 'wb' ) +# Java writes a lot of stuff to stderr, so we'll specify a file for handling actual errors. +error_log = tempfile.NamedTemporaryFile( delete=False ).name + +# Build the command line. +cmd = imagej2_base_utils.get_base_command_imagej2( None, jython_script=args.jython_script ) +if cmd is None: + imagej2_base_utils.stop_err( "ImageJ not found!" ) +cmd += ' %s' % error_log +cmd += ' %s' % tmp_input_path +cmd += ' %s' % args.operation +# Handle the expression, which must be enclosed in " if not None. +if args.expression in [ None, 'None' ]: + cmd += ' None' +else: + cmd += ' "%s"' % args.expression +cmd += imagej2_base_utils.handle_none_type( args.bin_constant, val_type='int' ) +cmd += imagej2_base_utils.handle_none_type( args.float_constant ) +cmd += ' %s' % tmp_output_path +cmd += ' %s' % args.output_datatype + +# Run the command. +proc = subprocess.Popen( args=cmd, stderr=tmp_stderr, stdout=tmp_stdout, shell=True ) +rc = proc.wait() + +# Handle execution errors. +if rc != 0: + error_message = imagej2_base_utils.get_stderr_exception( tmp_err, tmp_stderr, tmp_out, tmp_stdout ) + imagej2_base_utils.stop_err( error_message ) + +# Handle processing errors. +if os.path.getsize( error_log ) > 0: + error_message = open( error_log, 'r' ).read() + imagej2_base_utils.stop_err( error_message ) + +# Save the output image. +shutil.move( tmp_output_path, args.output ) +imagej2_base_utils.cleanup_before_exit( tmp_dir )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_math_jython_script.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,78 @@ +import jython_utils +import sys +from ij import IJ + +# Fiji Jython interpreter implements Python 2.5 which does not +# provide support for argparse. +error_log = sys.argv[ -8 ] +input = sys.argv[ -7 ] +operation = sys.argv[ -6 ] +expression = sys.argv[ -5 ] +if sys.argv[ -4 ] in [ None, 'None' ]: + bin_constant = None +else: + bin_constant = int( sys.argv[ -4 ] ) +if sys.argv[ -3 ] in [ None, 'None' ]: + float_constant = None +else: + float_constant = float( sys.argv[ -3 ] ) +tmp_output_path = sys.argv[ -2 ] +output_datatype = sys.argv[ -1 ] + +# Open the input image file. +input_image_plus = IJ.openImage( input ) + +# Create a copy of the image. +input_image_plus_copy = input_image_plus.duplicate() +image_processor_copy = input_image_plus_copy.getProcessor() +bit_depth = image_processor_copy.getBitDepth() + +try: + if operation.find( '_' ) > 0: + # Square_Root. + new_operation = operation.replace( '_', ' ' ) + elif operation in [ 'Square', 'Log', 'Exp', 'Abs', 'Reciprocal' ]: + # Unfortunately some ImageJ commands require a "..." ending + # while others do not. There seems to be no pattern. + new_operation = '%s' % operation + else: + new_operation = '%s...' % operation + + if operation == 'Macro': + # Apply the macro code to the image via a call to it's + # ImageProcessor since this option does not work using + # the IJ.run() method. + new_expression = expression.lstrip( '"' ).rstrip( '"' ) + options = 'code=%s' % new_expression + image_processor_copy.applyMacro( new_expression ) + elif operation == 'Min': + # Min does not work without using the ImageProcessor. + image_processor_copy.min( float_constant ) + elif operation == 'Max': + # Max does not work without using the ImageProcessor. + image_processor_copy.max( float_constant ) + elif operation == 'Abs': + if bit_depth not in [ 16, 32 ]: + # Convert the image to 32-bit. + IJ.run( input_image_plus_copy, "32-bit", "" ) + IJ.run( input_image_plus_copy, new_operation, "" ) + elif operation == 'Reciprocal': + if bit_depth != 32: + # Convert the image to 32 bit. + IJ.run( input_image_plus_copy, "32-bit", "" ) + IJ.run( input_image_plus_copy, new_operation, "" ) + else: + if operation in [ 'AND', 'OR', 'XOR' ]: + # Value is a binary number. + options = 'value=%d' % bin_constant + elif operation in [ 'Log', 'Exp', 'Square', 'Square_Root' ]: + # No constant value. + options = '' + else: + # Value is a floating point number. + options = 'value=%.3f' % float_constant + IJ.run( input_image_plus_copy, "%s" % new_operation, "%s" % options ) + # Save the ImagePlus object as a new image. + IJ.saveAs( input_image_plus_copy, output_datatype, tmp_output_path ) +except Exception, e: + jython_utils.handle_error( error_log, str( e ) )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_noise.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,84 @@ +#!/usr/bin/env python +import argparse +import os +import shutil +import subprocess +import tempfile +import imagej2_base_utils + +if __name__=="__main__": + # Parse Command Line. + parser = argparse.ArgumentParser() + parser.add_argument( '--input', dest='input', help='Path to the input file' ) + parser.add_argument( '--input_datatype', dest='input_datatype', help='Datatype of the input image' ) + parser.add_argument( '--noise', dest='noise', help='Specified noise to add to or remove from the image' ) + parser.add_argument( '--standard_deviation', dest='standard_deviation', type=float, default=None, help='Standard deviation' ) + parser.add_argument( '--radius', dest='radius', type=float, default=None, help='Radius' ) + parser.add_argument( '--threshold', dest='threshold', type=float, default=None, help='Threshold' ) + parser.add_argument( '--which_outliers', dest='which_outliers', default=None, help='Which outliers' ) + parser.add_argument( '--randomj', dest='randomj', default=None, help='RandomJ' ) + parser.add_argument( '--trials', dest='trials', type=float, default=None, help='Trials' ) + parser.add_argument( '--probability', dest='probability', type=float, default=None, help='Probability' ) + parser.add_argument( '--lammbda', dest='lammbda', type=float, default=None, help='Lambda' ) + parser.add_argument( '--order', dest='order', type=int, default=None, help='Order' ) + parser.add_argument( '--mean', dest='mean', type=float, default=None, help='Mean' ) + parser.add_argument( '--sigma', dest='sigma', type=float, default=None, help='Sigma' ) + parser.add_argument( '--min', dest='min', type=float, default=None, help='Min' ) + parser.add_argument( '--max', dest='max', type=float, default=None, help='Max' ) + parser.add_argument( '--insertion', dest='insertion', default=None, help='Insertion' ) + parser.add_argument( '--jython_script', dest='jython_script', help='Path to the Jython script' ) + parser.add_argument( '--output', dest='output', help='Path to the output file' ) + args = parser.parse_args() + + tmp_dir = imagej2_base_utils.get_temp_dir() + # ImageJ expects valid image file extensions, so the Galaxy .dat extension does not + # work for some features. The following creates a symlink with an appropriate file + # extension that points to the Galaxy dataset. This symlink is used by ImageJ. + tmp_input_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.input, args.input_datatype ) + tmp_output_path = imagej2_base_utils.get_temporary_image_path( tmp_dir, args.input_datatype ) + + # Define command response buffers. + tmp_out = tempfile.NamedTemporaryFile().name + tmp_stdout = open( tmp_out, 'wb' ) + tmp_err = tempfile.NamedTemporaryFile().name + tmp_stderr = open( tmp_err, 'wb' ) + # Java writes a lot of stuff to stderr, so we'll specify a file for handling actual errors. + error_log = tempfile.NamedTemporaryFile( delete=False ).name + # Build the command line. + cmd = imagej2_base_utils.get_base_command_imagej2( None, jython_script=args.jython_script ) + if cmd is None: + imagej2_base_utils.stop_err( "ImageJ not found!" ) + cmd += ' %s' % error_log + cmd += ' %s' % tmp_input_path + cmd += ' %s' % args.input_datatype + cmd += ' %s ' % args.noise + cmd += imagej2_base_utils.handle_none_type( args.standard_deviation ) + cmd += imagej2_base_utils.handle_none_type( args.radius ) + cmd += imagej2_base_utils.handle_none_type( args.threshold ) + cmd += ' %s' % args.which_outliers + cmd += ' %s' % args.randomj + cmd += imagej2_base_utils.handle_none_type( args.trials ) + cmd += imagej2_base_utils.handle_none_type( args.probability ) + cmd += imagej2_base_utils.handle_none_type( args.lammbda ) + cmd += imagej2_base_utils.handle_none_type( args.order, val_type='int' ) + cmd += imagej2_base_utils.handle_none_type( args.mean ) + cmd += imagej2_base_utils.handle_none_type( args.sigma ) + cmd += imagej2_base_utils.handle_none_type( args.min ) + cmd += imagej2_base_utils.handle_none_type( args.max ) + cmd += ' %s' % args.insertion + cmd += ' %s' % tmp_output_path + + proc = subprocess.Popen( args=cmd, stderr=tmp_stderr, stdout=tmp_stdout, shell=True ) + rc = proc.wait() + + # Handle execution errors. + if rc != 0: + error_message = imagej2_base_utils.get_stderr_exception( tmp_err, tmp_stderr, tmp_out, tmp_stdout ) + imagej2_base_utils.stop_err( error_message ) + # Handle processing errors. + if os.path.getsize( error_log ) > 0: + error_message = open( error_log, 'r' ).read() + imagej2_base_utils.stop_err( error_message ) + # Save the output image. + shutil.move( tmp_output_path, args.output ) + imagej2_base_utils.cleanup_before_exit( tmp_dir )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_noise_jython_script.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,84 @@ +import sys +from ij import IJ +from ij import ImagePlus +import jython_utils + +# Fiji Jython interpreter implements Python 2.5 which does not +# provide support for argparse. +error_log = sys.argv[ -19 ] +input = sys.argv[ -18 ] +image_datatype = sys.argv[ -17 ] +noise = sys.argv[ -16 ] +standard_deviation = sys.argv[ -15 ] +radius = sys.argv[ -14 ] +threshold = sys.argv[ -13 ] +which_outliers = sys.argv[ -12 ] +randomj = sys.argv[ -11 ] +trials = sys.argv[ -10 ] +probability = sys.argv[ -9 ] +# Note the spelling - so things don't get confused due to Python lambda function. +lammbda = sys.argv[ -8 ] +order = sys.argv[ -7 ] +mean = sys.argv[ -6 ] +sigma = sys.argv[ -5 ] +min = sys.argv[ -4 ] +max = sys.argv[ -3 ] +insertion = sys.argv[ -2 ] +tmp_output_path = sys.argv[ -1 ] + +error = False + +# Open the input image file. +image_plus = IJ.openImage( input ) +bit_depth = image_plus.getBitDepth() +image_type = image_plus.getType() +# Create an ImagePlus object for the image. +image_plus_copy = image_plus.duplicate() +# Make a copy of the image. +image_processor_copy = image_plus_copy.getProcessor() + +# Perform the analysis on the ImagePlus object. +if noise == 'add_noise': + IJ.run( image_plus_copy, "Add Noise", "" ) +elif noise == 'add_specified_noise': + IJ.run( image_plus_copy, "Add Specified Noise", "standard=&standard_deviation" ) +elif noise == 'salt_and_pepper': + IJ.run( image_plus_copy, "Salt and Pepper", "" ) +elif noise == 'despeckle': + IJ.run( image_plus_copy, "Despeckle", "" ) +elif noise == 'remove_outliers': + IJ.run( image_plus_copy, "Remove Outliers", "radius=&radius threshold=&threshold which=&which_outliers" ) +elif noise == 'remove_nans': + if bit_depth == 32: + IJ.run( image_plus_copy, "Remove NaNs", "" ) + else: + # When Galaxy metadata for images is enhanced to include information like this, + # we'll be able to write tool validators rather than having to stop the job in + # an error state. + msg = "Remove NaNs requires a 32-bit image, the selected image is %d-bit" % bit_depth + jython_utils.handle_error( error_log, msg ) + error = True +elif noise == 'rof_denoise': + if image_type == ImagePlus.GRAY32: + IJ.run( image_plus_copy, "ROF Denoise", "" ) + else: + msg = "ROF Denoise requires an image of type 32-bit grayscale, the selected image is %d-bit" % ( bit_depth ) + jython_utils.handle_error( error_log, msg ) + error = True +elif noise == 'randomj': + if randomj == 'randomj_binomial': + IJ.run( image_plus_copy, "RandomJ Binomial", "trials=&trials probability=&probability insertion=&insertion" ) + elif randomj == 'randomj_exponential': + IJ.run( image_plus_copy, "RandomJ Exponential", "lambda=&lammbda insertion=&insertion" ) + elif randomj == 'randomj_gamma': + IJ.run( image_plus_copy, "RandomJ Gamma", "order=&order insertion=&insertion" ) + elif randomj == 'randomj_gaussian': + IJ.run( image_plus_copy, "RandomJ Gaussian", "mean=&mean sigma=&sigma insertion=&insertion" ) + elif randomj == 'randomj_poisson': + IJ.run( image_plus_copy, "RandomJ Poisson", "mean=&mean insertion=&insertion" ) + elif randomj == 'randomj_uniform': + IJ.run( image_plus_copy, "RandomJ Uniform", "min=&min max=&max insertion=&insertion" ) + +if not error: + # Save the ImagePlus object as a new image. + IJ.saveAs( image_plus_copy, image_datatype, tmp_output_path )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_shadows.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,59 @@ +#!/usr/bin/env python +import argparse +import os +import shutil +import subprocess +import tempfile +import imagej2_base_utils + +parser = argparse.ArgumentParser() +parser.add_argument( '--input', dest='input', help='Path to the input file' ) +parser.add_argument( '--input_datatype', dest='input_datatype', help='Datatype of the input image' ) +parser.add_argument( '--direction', dest='direction', help='Direction' ) +parser.add_argument( '--jython_script', dest='jython_script', help='Path to the Jython script' ) +parser.add_argument( '--output', dest='output', help='Path to the output file' ) +parser.add_argument( '--output_datatype', dest='output_datatype', help='Datatype of the output image' ) +args = parser.parse_args() + +tmp_dir = imagej2_base_utils.get_temp_dir() +# ImageJ expects valid image file extensions, so the Galaxy .dat extension does not +# work for some features. The following creates a symlink with an appropriate file +# extension that points to the Galaxy dataset. This symlink is used by ImageJ. +tmp_input_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.input, args.input_datatype ) +tmp_output_path = imagej2_base_utils.get_temporary_image_path( tmp_dir, args.output_datatype ) + +# Define command response buffers. +tmp_out = tempfile.NamedTemporaryFile().name +tmp_stdout = open( tmp_out, 'wb' ) +tmp_err = tempfile.NamedTemporaryFile().name +tmp_stderr = open( tmp_err, 'wb' ) +# Java writes a lot of stuff to stderr, so we'll specify a file for handling actual errors. +error_log = tempfile.NamedTemporaryFile( delete=False ).name + +# Build the command line. +cmd = imagej2_base_utils.get_base_command_imagej2( None, jython_script=args.jython_script ) +if cmd is None: + imagej2_base_utils.stop_err( "ImageJ not found!" ) +cmd += ' %s' % error_log +cmd += ' %s' % tmp_input_path +cmd += ' %s' % args.direction +cmd += ' %s' % tmp_output_path +cmd += ' %s' % args.output_datatype + +# Run the command. +proc = subprocess.Popen( args=cmd, stderr=tmp_stderr, stdout=tmp_stdout, shell=True ) +rc = proc.wait() + +# Handle execution errors. +if rc != 0: + error_message = imagej2_base_utils.get_stderr_exception( tmp_err, tmp_stderr, tmp_out, tmp_stdout ) + imagej2_base_utils.stop_err( error_message ) + +# Handle processing errors. +if os.path.getsize( error_log ) > 0: + error_message = open( error_log, 'r' ).read() + imagej2_base_utils.stop_err( error_message ) + +# Save the output image. +shutil.move( tmp_output_path, args.output ) +imagej2_base_utils.cleanup_before_exit( tmp_dir )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_shadows_jython_script.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,26 @@ +import jython_utils +import sys +from ij import IJ + +# Fiji Jython interpreter implements Python 2.5 which does not +# provide support for argparse. +error_log = sys.argv[ -5 ] +input = sys.argv[ -4 ] +direction = sys.argv[ -3 ] +tmp_output_path = sys.argv[ -2 ] +output_datatype = sys.argv[ -1 ] + +# Open the input image file. +input_image_plus = IJ.openImage( input ) + +# Create a copy of the image. +input_image_plus_copy = input_image_plus.duplicate() +image_processor_copy = input_image_plus_copy.getProcessor() + +try: + # Run the command. + IJ.run( input_image_plus_copy, direction, "" ) + # Save the ImagePlus object as a new image. + IJ.saveAs( input_image_plus_copy, output_datatype, tmp_output_path ) +except Exception, e: + jython_utils.handle_error( error_log, str( e ) )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_sharpen.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,57 @@ +#!/usr/bin/env python +import argparse +import os +import shutil +import subprocess +import tempfile +import imagej2_base_utils + +parser = argparse.ArgumentParser() +parser.add_argument( '--input', dest='input', help='Path to the input file' ) +parser.add_argument( '--input_datatype', dest='input_datatype', help='Datatype of the input image' ) +parser.add_argument( '--jython_script', dest='jython_script', help='Path to the Jython script' ) +parser.add_argument( '--output', dest='output', help='Path to the output file' ) +parser.add_argument( '--output_datatype', dest='output_datatype', help='Datatype of the output image' ) +args = parser.parse_args() + +tmp_dir = imagej2_base_utils.get_temp_dir() +# ImageJ expects valid image file extensions, so the Galaxy .dat extension does not +# work for some features. The following creates a symlink with an appropriate file +# extension that points to the Galaxy dataset. This symlink is used by ImageJ. +tmp_input_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.input, args.input_datatype ) +tmp_output_path = imagej2_base_utils.get_temporary_image_path( tmp_dir, args.output_datatype ) + +# Define command response buffers. +tmp_out = tempfile.NamedTemporaryFile().name +tmp_stdout = open( tmp_out, 'wb' ) +tmp_err = tempfile.NamedTemporaryFile().name +tmp_stderr = open( tmp_err, 'wb' ) +# Java writes a lot of stuff to stderr, so we'll specify a file for handling actual errors. +error_log = tempfile.NamedTemporaryFile( delete=False ).name + +# Build the command line. +cmd = imagej2_base_utils.get_base_command_imagej2( None, jython_script=args.jython_script ) +if cmd is None: + imagej2_base_utils.stop_err( "ImageJ not found!" ) +cmd += ' %s' % error_log +cmd += ' %s' % tmp_input_path +cmd += ' %s' % tmp_output_path +cmd += ' %s' % args.output_datatype + +# Run the command. +proc = subprocess.Popen( args=cmd, stderr=tmp_stderr, stdout=tmp_stdout, shell=True ) +rc = proc.wait() + +# Handle execution errors. +if rc != 0: + error_message = imagej2_base_utils.get_stderr_exception( tmp_err, tmp_stderr, tmp_out, tmp_stdout ) + imagej2_base_utils.stop_err( error_message ) + +# Handle processing errors. +if os.path.getsize( error_log ) > 0: + error_message = open( error_log, 'r' ).read() + imagej2_base_utils.stop_err( error_message ) + +# Save the output image. +shutil.move( tmp_output_path, args.output ) +imagej2_base_utils.cleanup_before_exit( tmp_dir )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_sharpen_jython_script.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,25 @@ +import jython_utils +import sys +from ij import IJ + +# Fiji Jython interpreter implements Python 2.5 which does not +# provide support for argparse. +error_log = sys.argv[ -4 ] +input = sys.argv[ -3 ] +tmp_output_path = sys.argv[ -2 ] +output_datatype = sys.argv[ -1 ] + +# Open the input image file. +input_image_plus = IJ.openImage( input ) + +# Create a copy of the image. +input_image_plus_copy = input_image_plus.duplicate() +image_processor_copy = input_image_plus_copy.getProcessor() + +try: + # Run the command. + IJ.run( input_image_plus_copy, "Sharpen", "" ) + # Save the ImagePlus object as a new image. + IJ.saveAs( input_image_plus_copy, output_datatype, tmp_output_path ) +except Exception, e: + jython_utils.handle_error( error_log, str( e ) )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_skeletonize3d.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,53 @@ +#!/usr/bin/env python +import argparse +import os +import shutil +import subprocess +import tempfile +import imagej2_base_utils + +parser = argparse.ArgumentParser() +parser.add_argument( '--input', dest='input', help='Path to the input file' ) +parser.add_argument( '--input_datatype', dest='input_datatype', help='Datatype of the input image' ) +parser.add_argument( '--black_background', dest='black_background', help='Black background' ) +parser.add_argument( '--jython_script', dest='jython_script', help='Path to the Jython script' ) +parser.add_argument( '--output', dest='output', help='Path to the output file' ) +parser.add_argument( '--output_datatype', dest='output_datatype', help='Datatype of the output image' ) +args = parser.parse_args() + +tmp_dir = imagej2_base_utils.get_temp_dir() +# ImageJ expects valid image file extensions, so the Galaxy .dat extension does not +# work for some features. The following creates a symlink with an appropriate file +# extension that points to the Galaxy dataset. This symlink is used by ImageJ. +tmp_input_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.input, args.input_datatype ) +tmp_output_path = imagej2_base_utils.get_temporary_image_path( tmp_dir, args.output_datatype ) +# Define command response buffers. +tmp_out = tempfile.NamedTemporaryFile().name +tmp_stdout = open( tmp_out, 'wb' ) +tmp_err = tempfile.NamedTemporaryFile().name +tmp_stderr = open( tmp_err, 'wb' ) +# Java writes a lot of stuff to stderr, so we'll specify a file for handling actual errors. +error_log = tempfile.NamedTemporaryFile( delete=False ).name +# Build the command line. +cmd = imagej2_base_utils.get_base_command_imagej2( None, jython_script=args.jython_script ) +if cmd is None: + imagej2_base_utils.stop_err( "ImageJ not found!" ) +cmd += ' %s' % error_log +cmd += ' %s' % tmp_input_path +cmd += ' %s' % args.black_background +cmd += ' %s' % tmp_output_path +cmd += ' %s' % args.output_datatype +# Run the command. +proc = subprocess.Popen( args=cmd, stderr=tmp_stderr, stdout=tmp_stdout, shell=True ) +rc = proc.wait() +# Handle execution errors. +if rc != 0: + error_message = imagej2_base_utils.get_stderr_exception( tmp_err, tmp_stderr, tmp_out, tmp_stdout ) + imagej2_base_utils.stop_err( error_message ) +# Handle processing errors. +if os.path.getsize( error_log ) > 0: + error_message = open( error_log, 'r' ).read() + imagej2_base_utils.stop_err( error_message ) +# Save the output image. +shutil.move( tmp_output_path, args.output ) +imagej2_base_utils.cleanup_before_exit( tmp_dir )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_skeletonize3d_jython_script.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,36 @@ +import jython_utils +import sys +from ij import IJ + +# Fiji Jython interpreter implements Python 2.5 which does not +# provide support for argparse. +error_log = sys.argv[ -5 ] +input = sys.argv[ -4 ] +black_background = jython_utils.asbool( sys.argv[ -3 ] ) +tmp_output_path = sys.argv[ -2 ] +output_datatype = sys.argv[ -1 ] + +# Open the input image file. +input_image_plus = IJ.openImage( input ) + +# Create a copy of the image. +input_image_plus_copy = input_image_plus.duplicate() +image_processor_copy = input_image_plus_copy.getProcessor() + +try: + # Set binary options. + options = jython_utils.get_binary_options( black_background=black_background ) + IJ.run( input_image_plus_copy, "Options...", options ) + + # Convert image to binary if necessary. + if not image_processor_copy.isBinary(): + # Convert the image to binary grayscale. + IJ.run( input_image_plus_copy, "Make Binary", "" ) + + # Run the command. + IJ.run( input_image_plus_copy, "Skeletonize (2D/3D)", "" ) + + # Save the ImagePlus object as a new image. + IJ.saveAs( input_image_plus_copy, output_datatype, tmp_output_path ) +except Exception, e: + jython_utils.handle_error( error_log, str( e ) )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_smooth.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,57 @@ +#!/usr/bin/env python +import argparse +import os +import shutil +import subprocess +import tempfile +import imagej2_base_utils + +parser = argparse.ArgumentParser() +parser.add_argument( '--input', dest='input', help='Path to the input file' ) +parser.add_argument( '--input_datatype', dest='input_datatype', help='Datatype of the input image' ) +parser.add_argument( '--jython_script', dest='jython_script', help='Path to the Jython script' ) +parser.add_argument( '--output', dest='output', help='Path to the output file' ) +parser.add_argument( '--output_datatype', dest='output_datatype', help='Datatype of the output image' ) +args = parser.parse_args() + +tmp_dir = imagej2_base_utils.get_temp_dir() +# ImageJ expects valid image file extensions, so the Galaxy .dat extension does not +# work for some features. The following creates a symlink with an appropriate file +# extension that points to the Galaxy dataset. This symlink is used by ImageJ. +tmp_input_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.input, args.input_datatype ) +tmp_output_path = imagej2_base_utils.get_temporary_image_path( tmp_dir, args.output_datatype ) + +# Define command response buffers. +tmp_out = tempfile.NamedTemporaryFile().name +tmp_stdout = open( tmp_out, 'wb' ) +tmp_err = tempfile.NamedTemporaryFile().name +tmp_stderr = open( tmp_err, 'wb' ) +# Java writes a lot of stuff to stderr, so we'll specify a file for handling actual errors. +error_log = tempfile.NamedTemporaryFile( delete=False ).name + +# Build the command line. +cmd = imagej2_base_utils.get_base_command_imagej2( None, jython_script=args.jython_script ) +if cmd is None: + imagej2_base_utils.stop_err( "ImageJ not found!" ) +cmd += ' %s' % error_log +cmd += ' %s' % tmp_input_path +cmd += ' %s' % tmp_output_path +cmd += ' %s' % args.output_datatype + +# Run the command. +proc = subprocess.Popen( args=cmd, stderr=tmp_stderr, stdout=tmp_stdout, shell=True ) +rc = proc.wait() + +# Handle execution errors. +if rc != 0: + error_message = imagej2_base_utils.get_stderr_exception( tmp_err, tmp_stderr, tmp_out, tmp_stdout ) + imagej2_base_utils.stop_err( error_message ) + +# Handle processing errors. +if os.path.getsize( error_log ) > 0: + error_message = open( error_log, 'r' ).read() + imagej2_base_utils.stop_err( error_message ) + +# Save the output image. +shutil.move( tmp_output_path, args.output ) +imagej2_base_utils.cleanup_before_exit( tmp_dir )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_smooth_jython_script.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,25 @@ +import jython_utils +import sys +from ij import IJ + +# Fiji Jython interpreter implements Python 2.5 which does not +# provide support for argparse. +error_log = sys.argv[ -4 ] +input = sys.argv[ -3 ] +tmp_output_path = sys.argv[ -2 ] +output_datatype = sys.argv[ -1 ] + +# Open the input image file. +input_image_plus = IJ.openImage( input ) + +# Create a copy of the image. +input_image_plus_copy = input_image_plus.duplicate() +image_processor_copy = input_image_plus_copy.getProcessor() + +try: + # Run the command. + IJ.run( input_image_plus_copy, "Smooth", "" ) + # Save the ImagePlus object as a new image. + IJ.saveAs( input_image_plus_copy, output_datatype, tmp_output_path ) +except Exception, e: + jython_utils.handle_error( error_log, str( e ) )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_watershed_binary.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,53 @@ +#!/usr/bin/env python +import argparse +import os +import shutil +import subprocess +import tempfile +import imagej2_base_utils + +parser = argparse.ArgumentParser() +parser.add_argument( '--input', dest='input', help='Path to the input file' ) +parser.add_argument( '--input_datatype', dest='input_datatype', help='Datatype of the input image' ) +parser.add_argument( '--black_background', dest='black_background', help='Black background' ) +parser.add_argument( '--jython_script', dest='jython_script', help='Path to the Jython script' ) +parser.add_argument( '--output', dest='output', help='Path to the output file' ) +parser.add_argument( '--output_datatype', dest='output_datatype', help='Datatype of the output image' ) +args = parser.parse_args() + +tmp_dir = imagej2_base_utils.get_temp_dir() +# ImageJ expects valid image file extensions, so the Galaxy .dat extension does not +# work for some features. The following creates a symlink with an appropriate file +# extension that points to the Galaxy dataset. This symlink is used by ImageJ. +tmp_input_path = imagej2_base_utils.get_input_image_path( tmp_dir, args.input, args.input_datatype ) +tmp_output_path = imagej2_base_utils.get_temporary_image_path( tmp_dir, args.output_datatype ) +# Define command response buffers. +tmp_out = tempfile.NamedTemporaryFile().name +tmp_stdout = open( tmp_out, 'wb' ) +tmp_err = tempfile.NamedTemporaryFile().name +tmp_stderr = open( tmp_err, 'wb' ) +# Java writes a lot of stuff to stderr, so we'll specify a file for handling actual errors. +error_log = tempfile.NamedTemporaryFile( delete=False ).name +# Build the command line. +cmd = imagej2_base_utils.get_base_command_imagej2( None, jython_script=args.jython_script ) +if cmd is None: + imagej2_base_utils.stop_err( "ImageJ not found!" ) +cmd += ' %s' % error_log +cmd += ' %s' % tmp_input_path +cmd += ' %s' % args.black_background +cmd += ' %s' % tmp_output_path +cmd += ' %s' % args.output_datatype +# Run the command. +proc = subprocess.Popen( args=cmd, stderr=tmp_stderr, stdout=tmp_stdout, shell=True ) +rc = proc.wait() +# Handle execution errors. +if rc != 0: + error_message = imagej2_base_utils.get_stderr_exception( tmp_err, tmp_stderr, tmp_out, tmp_stdout ) + imagej2_base_utils.stop_err( error_message ) +# Handle processing errors. +if os.path.getsize( error_log ) > 0: + error_message = open( error_log, 'r' ).read() + imagej2_base_utils.stop_err( error_message ) +# Save the output image. +shutil.move( tmp_output_path, args.output ) +imagej2_base_utils.cleanup_before_exit( tmp_dir )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imagej2_watershed_binary_jython_script.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,36 @@ +import jython_utils +import sys +from ij import IJ + +# Fiji Jython interpreter implements Python 2.5 which does not +# provide support for argparse. +error_log = sys.argv[ -5 ] +input = sys.argv[ -4 ] +black_background = jython_utils.asbool( sys.argv[ -3 ] ) +tmp_output_path = sys.argv[ -2 ] +output_datatype = sys.argv[ -1 ] + +# Open the input image file. +input_image_plus = IJ.openImage( input ) + +# Create a copy of the image. +input_image_plus_copy = input_image_plus.duplicate() +image_processor_copy = input_image_plus_copy.getProcessor() + +try: + # Set binary options. + options = jython_utils.get_binary_options( black_background=black_background ) + IJ.run( input_image_plus_copy, "Options...", options ) + + # Convert image to binary if necessary. + if not image_processor_copy.isBinary(): + # Convert the image to binary grayscale. + IJ.run( input_image_plus_copy, "Make Binary", "" ) + + # Run the command. + IJ.run( input_image_plus_copy, "Watershed", "" ) + + # Save the ImagePlus object as a new image. + IJ.saveAs( input_image_plus_copy, output_datatype, tmp_output_path ) +except Exception, e: + jython_utils.handle_error( error_log, str( e ) )
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/jython_utils.py Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,48 @@ +import imagej2_base_utils +from ij import IJ + +IMAGE_PLUS_IMAGE_TYPE_FIELD_VALUES = { '0':'GRAY8', '1':'GRAY16', '2':'GRAY32', + '3':'COLOR_256', '4':'COLOR_RGB' } + +def asbool( val ): + return str( val ).lower() in [ 'yes', 'true' ] + +def convert_before_saving_as_tiff( image_plus ): + # The bUnwarpJ plug-in produces TIFF image stacks consisting of 3 + # slices which can be viewed in ImageJ. The 3 slices are: 1) the + # registered image, 2) the target image and 3) the black/white warp + # image. When running bUnwarpJ from the command line (as these + # Galaxy wrappers do) the initial call to IJ.openImage() (to open the + # registered source and target images produced by bUnwarpJ) in the + # tool's jython_script.py returns an ImagePlus object with a single + # slice which is the "generally undesired" slice 3 discussed above. + # However, a call to IJ.saveAs() will convert the single-slice TIFF + # into a 3-slice TIFF image stack (as described above) if the selected + # format for saving is TIFF. Galaxy supports only single-layered + # images, so to work around this behavior, we have to convert the + # image to something other than TIFF so that slices are eliminated. + # We can then convert back to TIFF for saving. There might be a way + # to do this without converting twice, but I spent a lot of time looking + # and I have yet to discover it. + tmp_dir = imagej2_base_utils.get_temp_dir() + tmp_out_png_path = imagej2_base_utils.get_temporary_image_path( tmp_dir, 'png' ) + IJ.saveAs( image_plus, 'png', tmp_out_png_path ) + return IJ.openImage( tmp_out_png_path ) + +def get_binary_options( black_background, iterations=1, count=1, pad_edges_when_eroding='no' ): + options = [ 'edm=Overwrite', 'iterations=%d' % iterations, 'count=%d' % count ] + if asbool( pad_edges_when_eroding ): + options.append( 'pad' ) + if asbool( black_background ): + options.append( "black" ) + return " ".join( options ) + +def get_display_image_type( image_type ): + return IMAGE_PLUS_IMAGE_TYPE_FIELD_VALUES.get( str( image_type ), None ) + +def handle_error( error_log, msg ): + # Java writes a lot of stuff to stderr, so the received error_log + # will log actual errors. + elh = open( error_log, 'wb' ) + elh.write( msg ) + elh.close()
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/readme.md Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,120 @@ +Galaxy wrappers for ImageJ2 tools +================================== + +ImageJ2 is a new version of ImageJ for the next generation of multidimensional image data, with a focus on scientific imaging. Its central goal is to broaden the paradigm of ImageJ beyond the limitations of ImageJ 1.x, to support the next generation of multidimensional scientific imaging. + +Fiji is an image processing package. It can be described as a "batteries-included" distribution of ImageJ (and ImageJ2), bundling Java, Java3D and a lot of plugins organized into a coherent menu structure. Fiji compares to ImageJ as Ubuntu compares to Linux. + +More informations is available at: + +* [http://fiji.sc/ImageJ2](http://fiji.sc/ImageJ2) +* [http://fiji.sc/Fiji](http://fiji.sc/Fiji) + + +Installation +============ + +Galaxy tool wrappers use specified Fiji Lifeline versions available from [http://fiji.sc/Downloads](http://fiji.sc/Downloads). Galaxy should be able to automatically install this package. + +The wrappers are available at [https://github.com/bgruening/galaxytools/tree/master/tools/image_processing/imagej2](https://github.com/bgruening/galaxytools/tree/master/tools/image_processing/imagej2). + + +Use Docker +========== + +A docker image that installs Galaxy with these imaging tools is available at [https://github.com/bgruening/galaxy-imaging](https://github.com/bgruening/galaxy-imaging). + + +Using Fiji with Galaxy tools +============================ + +Galaxy ImageJ2 tool wrappers generate a command line that calls a Python script, passing it a series of arguments including a Jython script named jython_script.py that resides in the same directory as the tool wrapper. During tool execution, the Python script will call ImageJ2 with the --headless argument to run without the ImageJ2 GUI. The Jython script is also passed to ImageJ2 along with all command line arguments that it expects. ImageJ2 will execute the Jython script, passing the expected arguments. The command line to run ImageJ2 from a Galaxy tool wrapper looks something like this: + +`ImageJ2 --ij2 --headless --jython ~jython_script.py arg1, arg2, ...` + +Each tool execution starts the ImageJ2 application within a Java virtual machine (JVM). When ImageJ2 is finished processing the Jython script, the results are either written to a file or returned to the calling Galaxy process. The JVM is shut down, and the Galaxy job terminates. This approach provides the ability to run ImageJ2 tools from Galaxy on any supported HPC environment. + +Of course, eliminating the ImageJ2 GUI restricts us to wrapping only those ImageJ2 plugins that do not require any GUI components (i.e., the ImageJ2 window manager). Plugins are written by an open community, so not all of them are written in such a way that they can be executed from the command line and produce useful results. For example, some plugins create one or more images that can only be accessed via calls to the ImageJ2 window manager, and running in headless mode eliminates the window manager as well as other GUI components. + +Those familiar with ImageJ2 will find differences with this general pattern for executing ImageJ2 tools within Galaxy. ImageJ2 accounts for user defined global preferences which are available to tools throughout the session, and an image can be uploaded and run through any number of available tools, saving only the final image. While Galaxy currently does not account for user preferences defined in ImageJ2, enhancements to the Galaxy framework are planned that will accomodate these kinds of settings (e.g., binary image options). Also, since Galaxy initiates a new ImageJ2 session with each tool execution, initial images are uploaded to ImageJ2 and resulting images are saved for each tool execution. + +The Galaxy ImageJ2 tools currently fall into the following categories. Additional tools will be added at a steady pace. + +Working with Pixels +=================== +These Galaxy tools wrap the ImageJ2 plugins that are available in the ImageJ2 Process → Math menu. + +* **Operate on pixels** - Applies a mathematical expression (add, subtract, multiply, etc.) to each pixel in the image. When the resulting pixel value overflows/underflows the legal range of the image's data type, the value is reset to the maximum/minimum value. + +Filters and Effects +=================== +These Galaxy tools wrap the ImageJ2 plugins that are available in the ImageJ2 Process menu. + +* **Smooth** - Blurs the image by replacing each pixel with the average of its 3x3 neighborhood. +* **Sharpen** - Increases contrast and accentuates detail in the image, but may also accentuate noise. +* **Find Edges** - Uses a Sobel edge detector to highlight sharp changes in intensity in the active image. +* **Add shadow effect** - Produces a shadow effect, with light appearing to come from the selected direction (East, North, Northeast, Northwest, South, Southeast, Southwest and West). +* **Find Maxima** - Determines the local maxima in an image and creates a binary (mask-like) image of the same size with the maxima (or one segmented particle per maximum) marked. +* **Enhance contrast** - Enhances image contrast by using either normalization (contrast stretching) or histogram equalization. +* **Add or remove noise** - Adds specified noise to or removes noise from images. + +Binary Image Tools +================== +These Galaxy tools wrap the ImageJ2 plugins that are available in the ImageJ2 Process → Binary menu. + +* **Convert to binary** - Converts an image into a binary (black and white) image. +* **Adjust threshold** - Sets lower and upper threshold values, segmenting grayscale images into +features of interest and background. +* **Watershed segmentation** - Automatically separates or cuts apart particles that touch. +* **Analyze particles** - Analyzes the particles in a segmented binary image, providing information about +each particle in the image. +* **Skeletonize images** - Uses the Skeletonize3D plugin to find the centerlines (”skeleton”) of objects in the input image. Skeletonize3d is a plugin written by Ignacio Arganda-Carreras that offers several advantages over the legacy skeletonization algorithm of ImageJ available in the Process → Binary → Skeletonize menu item. Skeletonize works only with binary 2D images. Skeletonize3D works with 8-bit 2D images and stacks, expecting the image to be binary. If not, Skeletonize3D considers all pixel values above 0 to be white (255). While Skeletonize↑ relies on Black background value, the output of Skeletonize3D always has a value of 255 at the skeleton and 0 at background pixels, independently of the Black background option. +* **Analyze skeleton** - Tags all pixel/voxels in a skeleton image and then counts all its junctions, +triple and quadruple points and branches, and measures their average and maximum length. +* **Convert binary image to EDM** - Converts a binary image into a 8-bit grayscale Euclidean Distance Map (EDM). Each foreground (nonzero) pixel in the binary image is assigned a value equal to its distance from the nearest background (zero) pixel. + +**Interpreting binary Images in ImageJ2** + +Binary images are thresholded to only two values, typically 0 and 1, but often — as with ImageJ — 0 and 255, that represent black and white on an 8-bit scale. + +The interpretation of binary images is not universal. While some software packages will always perform binary operations on 255 values (or 1, or any non-zero value), ImageJ takes into account the foreground and background colors of the binary image. + +In ImageJ, the **Black background** global preference setting defines not only how new binary images will be created, but also how previously created images are interpreted. This means objects will be inferred on a image-per-image basis. As such, inverting the LUT (i.e., pixels with a value of zero are white and pixels with a value 255 are black) of a binary image without updating the black background option may lead to unexpected results. This issue can currently be avoided by properly selecting the **Black background** option available on all Galaxy binary image tools. + +BunwarpJ Plugin Tools +===================== +These Galaxy tools wrap the bUnwarpJ plugin [http://fiji.sc/BUnwarpJ](http://fiji.sc/BUnwarpJ). + +* **Adapt an elastic transformation** - Adapts an elastic transformation to a new image size by transforming the +coefficients of a specified elastic transformation according to a real image factor. +* **Align two images** - Performs a simultaneous registration of two images, A and B. Image A is elastically deformed +in order to look as similar as possible to image B, and, at the same time, the "inverse" +transformation (from B to A) is also calculated so a pseudo-invertibility of the final deformation +could be guaranteed. Two images are produced: the deformed versions of A and B images. +* **Compare opposite elastic deformations** - Calculates the warping index of two opposite elast transformations, i.e. the average of the geometrical distance between every pixel and its version after applying both transformations (direct and inverse). +* **Compare elastic and raw deformation** - Calculates the warping index of an elastic transformation and a raw transformation. +* **Compare two raw deformations** - Calculates the warping index of two raw transformations (same direction). +* **Compose two elastic transformations** - Composes two elastic transformations into a raw transformation. +* **Compose two raw transformations** - Composes two raw transformations into another raw transformation. +* **Compose a raw and an elastic transformation** - Composes a raw transformation and an elastic transformation +into a raw transformation. +* **Convert elastic transformation to raw** - Converts an elastic (i.e., B-spline ) transformation file into a raw transformation file. +* **Apply elastic transformation** - Applies an elastic transformation to an image, producing another image which is elastically +deformed according to the transformation. +* **Apply raw transformation** - Applies a raw transformation to an image, producing another image which is deformed according +to the transformation. + +Other Tools +=========== +* **Create new image** - Creates a new image of a selected type, size, depth and format. +* **Convert image format** - Converts the format of an input image file, producing an output image. + +Licence +======= + +Fiji is released as open source under the GNU General Public License: [http://www.gnu.org/licenses/gpl.html](http://www.gnu.org/licenses/gpl.html) + +Fiji builds on top of the ImageJ2 core, which is licensed under the permissive BSD 2-Clause license: [http://opensource.org/licenses/BSD-2-Clause](http://opensource.org/licenses/BSD-2-Clause) + +Plugins and other components have their own licenses. +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/adapted_transformation.txt Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,19 @@ +Intervals=4 + +X Coeffs ----------------------------------- + -68.29963348573138 6.09891156458193 86.04636146560719 144.15883318797628 222.6696172662024 268.5404350984771 343.4809799392515 + -92.95121961304761 -67.45715815993698 143.50575117781833 62.998765943058025 252.61006839164767 202.85004026282823 343.88011158248645 + -114.08988861905392 -50.28935338868982 154.73714798414153 46.236046344928994 317.7204399309421 232.5473632739255 236.18435318252722 + -49.95152093578042 46.79194413194805 115.19181925394176 60.96381027087762 281.3153521889087 291.7178589619469 452.4904614548126 + 73.55144122157424 -6.541542793976486 49.97773968946636 221.5030295518829 147.88587300058802 244.8527371774712 571.206841600859 + 3.646742451744383 -1.0493193936656087 56.57596119023832 190.93096587415607 112.68058954356229 335.16742699073444 386.4422448318592 + -67.76235298556266 15.800694750545997 83.20669583960863 144.2221864204297 222.11699443245232 296.32098085726716 363.03338579932324 + +Y Coeffs ----------------------------------- + -65.99749871290987 -9.591489676218258 -41.92225681716366 202.2261719418278 -23.43501111052179 -85.31960816550834 -82.69756041558864 + 25.10444047741359 107.12934280473927 -19.885529027870003 110.16177327599405 -24.29943796825228 -126.26092722044824 -15.293615819389508 + 40.156742347611505 21.783233700091298 -41.1253303256154 3.9501977773581927 -5.163575790747 -3.892713343168175 130.5295511257574 + 159.0282953843482 231.2316671653832 158.21003956141615 180.6582006949143 334.45269408769667 36.91708435716871 178.65545798222203 + 243.6910761415873 245.76958262175916 45.236448264092026 218.27338857363276 206.61634624583974 211.89841321823954 226.54058409965276 + 281.1737518449535 242.4997154114523 357.14765868596385 297.59578390007414 297.04014457397227 321.01360259436655 292.2111361369053 + 351.02383407086694 349.8456304498878 346.63350353932935 362.39036869941975 338.17045368933424 354.76997587815237 371.71121748122135
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/analyze_particles_nothing.tabular Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,48 @@ + Area Mean Min Max +1 86 0 0 0 +2 72 0 0 0 +3 25 0 0 0 +4 85 0 0 0 +5 157 0 0 0 +6 207 0 0 0 +7 29 0 0 0 +8 73 0 0 0 +9 143 0 0 0 +10 125 0 0 0 +11 159 0 0 0 +12 133 0 0 0 +13 85 0 0 0 +14 51 0 0 0 +15 133 0 0 0 +16 133 0 0 0 +17 81 0 0 0 +18 88 0 0 0 +19 212 0 0 0 +20 116 0 0 0 +21 172 0 0 0 +22 103 0 0 0 +23 4 0 0 0 +24 60 0 0 0 +25 198 0 0 0 +26 187 0 0 0 +27 80 0 0 0 +28 75 0 0 0 +29 103 0 0 0 +30 52 0 0 0 +31 122 0 0 0 +32 129 0 0 0 +33 77 0 0 0 +34 171 0 0 0 +35 117 0 0 0 +36 207 0 0 0 +37 119 0 0 0 +38 181 0 0 0 +39 49 0 0 0 +40 150 0 0 0 +41 191 0 0 0 +42 170 0 0 0 +43 174 0 0 0 +44 270 0 0 0 +45 87 0 0 0 +46 69 0 0 0 +47 1 0 0 0
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/basic.tabular Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,2 @@ +# Branches Junctions End-point Voxels Junction Voxels Slab Voxels Average branch length Triple Points Quadruple Points Maximum Branch Length +96 60 7 120 1246 17.344 56 3 70.882
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/blobs_count.tabular Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,2 @@ + Count +1 112
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/blobs_direct_transf.txt Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,19 @@ +Intervals=4 + +X Coeffs ----------------------------------- + -34.14981674286569 3.144052189417975 44.74398427283767 72.62900018057132 111.3348086331012 134.27021754923854 171.74048996962574 + -46.475609806523806 -28.37507243951631 71.19906566193379 30.10778479539863 122.71885776990422 109.9563576074076 171.94005579124322 + -57.04494430952696 1.8032931596380026 61.404945193416715 42.75919945626539 148.2715738833391 126.39195563069309 116.8758739961032 + -26.50696765072751 24.133275156317662 45.18779137671111 49.91727740928712 130.5425749032711 160.35055773949284 186.2385413131219 + 30.36695633747302 -3.333376652604397 35.957597759623795 86.8060703274396 102.5208634329241 126.298277744805 243.1342175649626 + -2.831201175463878 -4.836159041803193 36.263197544298954 77.65977608215381 98.47306066697166 149.98143182373533 193.72941653859635 + -33.88117649278133 7.9003473752729985 41.603347919804314 72.11109321021485 111.05849721622616 148.16049042863358 181.51669289966162 + +Y Coeffs ----------------------------------- + -32.99874935645494 -10.853014366833959 -18.11337422707787 120.45933796140201 -11.717505555260894 -42.65980408275417 -41.34878020779432 + 11.306632136922623 42.01572254879719 -18.137465736571315 41.67904406737918 -9.059457409112 -63.14804168936847 -7.646807909694754 + 20.638424092275454 35.302620259132304 1.8587715711200654 2.065183621887666 13.47064662534885 8.966817348422527 65.74329336525717 + 79.92027086396175 117.61262084713007 78.2409336472003 102.3526144171297 97.29273111510625 48.80095761073018 89.32772899111102 + 121.0699654326738 114.38154300759474 23.57251043213103 101.87328690674049 115.94282218472065 106.18526585145909 111.14979545782822 + 140.58687592247674 130.54971240393465 177.05271414686374 150.48052118800214 150.41722526235608 156.3116913517668 146.21075369002716 + 175.51191703543347 174.9228152249439 173.31675176966468 181.87538254503764 170.81399893021742 186.14994867024973 185.85560874061068
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/blobs_list.tabular Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,113 @@ + X Y +1 95 8 +2 107 24 +3 10 25 +4 34 16 +5 2 20 +6 118 11 +7 19 10 +8 132 0 +9 124 143 +10 130 139 +11 142 126 +12 140 108 +13 125 99 +14 133 80 +15 30 65 +16 46 52 +17 42 41 +18 116 34 +19 24 36 +20 136 33 +21 50 29 +22 86 29 +23 125 23 +24 143 23 +25 71 10 +26 39 8 +27 105 5 +28 5 3 +29 23 0 +30 2 0 +31 114 141 +32 31 140 +33 112 136 +34 20 133 +35 125 122 +36 28 116 +37 110 109 +38 54 105 +39 15 101 +40 142 95 +41 96 93 +42 4 88 +43 112 91 +44 86 91 +45 58 90 +46 42 90 +47 76 77 +48 102 84 +49 44 81 +50 29 75 +51 41 73 +52 57 73 +53 0 72 +54 118 66 +55 44 68 +56 16 60 +57 67 64 +58 125 63 +59 85 63 +60 108 62 +61 88 49 +62 122 47 +63 97 48 +64 64 43 +65 143 47 +66 28 44 +67 85 46 +68 1 44 +69 14 42 +70 127 40 +71 63 36 +72 93 28 +73 60 28 +74 23 26 +75 73 23 +76 62 24 +77 142 18 +78 49 15 +79 77 3 +80 101 1 +81 95 1 +82 95 140 +83 83 138 +84 69 139 +85 68 126 +86 6 133 +87 70 135 +88 52 135 +89 90 124 +90 88 116 +91 1 114 +92 51 112 +93 8 113 +94 83 112 +95 62 109 +96 31 105 +97 81 99 +98 33 99 +99 31 92 +100 59 85 +101 51 70 +102 79 57 +103 109 54 +104 112 50 +105 104 48 +106 12 48 +107 94 64 +108 43 24 +109 98 22 +110 67 78 +111 143 7 +112 143 0
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/composed_raw_transformation.txt Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,294 @@ +Width=144 +Height=144 + +X Trans ----------------------------------- + -13.825892596655287 -12.20207421413483 -10.524673457874487 -8.798047799343088 -7.026556059072026 -5.214557057592756 -3.3664096154366883 -1.486472553135273 5.255270427398132 6.643792796580835 7.9794987751453395 9.274665652677834 10.541172640221273 11.790373085981956 13.032896436027197 14.277659865816346 15.531805249124014 16.800736041261487 18.08850663369875 19.3963524015933 20.724202559878723 22.070541697347814 23.431764037228877 24.80271516423734 26.178504505595022 27.552937293408455 28.919874656932844 30.269535992975115 31.598169897297375 32.891846928788446 34.14472780752709 35.34757331042143 36.49491351160804 37.58107339380744 38.600283509272586 39.54815227415587 40.42127898480897 41.218447659556254 41.94365217425637 42.60256664389671 43.19850881324097 43.73904240602458 44.225812076523624 44.66549051784065 45.0621502287028 45.41899404765054 45.740261302559745 46.03019163373198 46.292495293924695 46.53051213717588 46.747848728080314 46.9481301564783 47.13506759690025 47.31252087137076 47.48455473351999 47.65548787033014 47.8299338962255 48.01283389259475 48.20948032421507 48.42553244242754 48.66702166263997 48.93947760150939 49.2500577291755 49.606106461080486 50.01550086397957 50.48308167847475 51.01729014896091 51.62606461883451 52.314739976143784 53.0899051634978 53.957743984700095 54.92251093116195 55.985965924769204 57.14370356784828 58.384382470531314 59.6953304416541 61.060925355884486 62.46519778127553 63.894974512449586 65.33054262614918 66.7583910995832 68.16271905653122 69.5294698256998 70.84801892766436 72.11851373238946 73.33808980277512 74.5193159956283 75.6696847769094 76.79615111884554 77.90853944404947 79.01714755937061 80.12988851527302 81.25297804401268 82.3926173865341 83.55229781999056 84.73340059923873 85.93634668080611 87.15726157542794 88.39495900611853 89.64085483354125 90.89211185396333 92.13793810304381 93.37511131448903 94.59172165473367 106.80046484139376 108.03633832203178 109.19600142682995 110.27429694703036 111.26671742651952 112.17439380323265 113.00136673531424 113.75169945185769 114.42945518195641 115.03869715470384 115.58348859919337 116.06789274451847 116.49597281977259 116.87179205404908 117.19941367644141 117.48290091604298 117.72631700194727 117.93372516324766 118.10918862903758 118.25677062841044 118.3805343904597 118.4845431442788 118.57286011896112 118.6495485436001 118.71867164728917 118.78429265912177 118.85047480819128 118.92128132359119 119.00077543441486 119.09302036975575 119.20207935870731 119.33201563036292 119.48689241381602 119.67077293816004 119.88772043248842 120.14179812589455 120.4370692474719 120.77759702631383 121.16744469151384 121.61067290447934 + -14.051635694965542 -12.416415314072813 -10.726967764737923 -8.987713904111713 -7.203075947771565 -5.377476111294912 -3.5153366102591526 -1.621079660241722 5.2104313651112495 6.611103593813984 7.956988751674311 9.260673598697442 10.53448605749526 11.790223100561452 13.038908615483596 14.289565203437071 15.549692294646183 16.82501823239696 18.119502480658056 19.43443697224912 20.769868150553375 22.12436297782611 23.494047463097505 24.873792187194105 26.25852526965712 27.640960577396868 29.016483211185772 30.374412416896547 31.709181130231908 33.008942726610286 34.265570022910815 35.47118480830603 36.620432992256724 37.70602055498279 38.72308311861545 39.667172280604284 40.5339980037909 41.32336975759897 42.039064406452496 42.685810550893464 43.26966722874721 43.794534958097636 44.265404446091374 44.687959126764866 45.0652463123199 45.40180808570736 45.70230230242125 45.970973079596305 46.21118576047887 46.426627890368486 46.621106581739156 46.798433647048384 46.96249229585679 47.11729919388786 47.26706052336869 47.41622096272214 47.56950478241062 47.731948532460834 47.908925075928565 48.10615900129231 48.32973372549365 48.58609087807151 48.88095984163429 49.22177342921582 49.616478716604064 50.07210280968329 50.59438546576739 51.192474868437465 51.87137362303415 52.63836603422076 53.49954662805982 54.45874273335528 55.51818905334073 56.67443414717496 57.91518909703912 59.22807987928536 60.59970050489471 62.01171712791823 63.4498178914145 64.90055271800648 66.3419632452483 67.76602410674444 69.15226600223858 70.4958595563309 71.79087322324763 73.03813116032893 74.24853559189354 75.42922570024844 76.58695889987177 77.73217448312444 78.87423352080205 80.02101255029864 81.17903668410823 82.35262461464733 83.54610074900637 84.76102652414961 85.99527932244355 87.24832212210396 88.51409845591697 89.78830778433851 91.06373279952973 92.33324459192015 93.58976953546215 105.74952731736381 107.06845794376997 108.3149132704151 109.4836324538799 110.56935465074503 111.56748008994501 112.47914581576266 113.30844930883516 114.05951103095035 114.73645144389599 115.34339100945996 115.88445018943008 116.36374944559427 116.78540923974033 117.15355003365603 117.47229228912931 117.74575646794796 117.97806303189984 118.17333244277279 118.33568516235464 118.4692416524332 118.5781223747964 118.66644779123203 118.7383383635279 118.79791455347191 118.84929682285187 118.89660563345564 118.943961447071 118.99548472548588 119.05529593048806 119.12751552386541 119.21626396740578 119.32566172289697 119.45982925212684 119.62288701688325 119.81895547895404 120.05215510012701 120.32660634219003 120.64642966693094 121.01574553613762 121.43867183057392 + -14.256440149121175 -12.610136358606237 -10.909024367747001 -9.157584412526452 -7.360298096357766 -5.521647022654182 -3.6461127948289 -1.7381770162951566 5.161967227311406 6.57430506438008 7.930158196414802 9.24241909755835 10.52381086877573 11.786569064630449 13.041854667198916 14.299019203655433 15.565772800091963 16.848072407818904 18.149827732379165 19.472460397432975 20.81577288199934 22.178646016164652 23.556989424578443 24.945574951993798 26.339162298298756 27.729762950701097 29.113203434997644 30.47911213434346 31.819476624430738 33.12477578408442 34.38506481782901 35.593390161378444 36.74321550756693 37.82777344939289 38.842290619201 39.78227261629457 40.643389060248325 41.42407434653917 42.13014761688013 42.766116357240676 43.336340815943466 43.84679989488958 44.3018089228758 44.70648602282719 45.0655489792559 45.38317930059487 45.66337395739327 45.9108820178196 46.129377791054324 46.32282166608407 46.49516269755806 46.650352943171086 46.792427738342 46.92550424322734 47.053901633321566 47.18218915225137 47.31520007227954 47.458064537869454 47.61623375673574 47.79549549452955 48.00198110799706 48.24216463014158 48.522740153785726 48.849441533903054 49.23049454877021 49.67413607831323 50.185278992921745 50.773230764284584 51.44294644927284 52.20224374643893 53.05708606651808 54.010566161749374 55.06661399733974 56.221432318461574 57.46314274516158 58.778186115035446 60.15380244941135 61.57535727903508 63.02196264833501 64.4849535089636 65.941902360202 67.3837659062757 68.79144202633123 70.15953745942046 71.47861839429395 72.75378633790302 73.99352326448248 75.20485629719822 76.39438964859983 77.57276695129615 78.74886025505324 79.93004779438022 81.12243638860144 82.33111619074842 83.55894831540215 84.80639685122944 86.07395529960687 87.35720983046016 88.65198742084748 89.95365862255316 91.25293973039979 92.54607480122377 93.82161074742092 106.02346588654586 107.35447103848385 108.61160105651552 109.78949348574403 110.88278587127267 111.88678779989581 112.80264104278298 113.63449695306954 114.38653026202425 115.06291570091584 115.667828001013 116.20544189358452 116.67993210989914 117.09547338122563 117.45624043883261 117.76640801398891 118.03015083796322 118.25164364202436 118.43506115744097 118.58457811548183 118.70436924741567 118.79860928451126 118.8714729580373 118.92713499926252 118.96977013945569 119.00355310988553 119.0326586418208 119.06126146653017 119.09353631528245 119.13365791934633 119.1858010099906 119.25414031848396 119.34285057609515 119.45610651409291 119.598082863746 119.77295435632311 119.98489572309299 120.23808169532442 120.53668700428608 120.88488638124676 121.28685196286963 + -14.440243995686325 -12.783188176753487 -11.070806074073198 -9.307633327574983 -7.498206953260951 -5.647063967133251 -3.758741385194006 -1.8377762234453714 5.1113062591894325 6.53476501280881 7.9002935776985765 9.221115497320483 10.510284270051919 11.780370189891247 13.042717382946098 14.306922844294135 15.580864498331714 16.870614007282995 18.180142038682483 19.51090708703956 20.86258958118749 22.233827299029876 23.620955484313114 25.018416507202154 26.4206630927229 27.819899686860648 29.210197395424064 30.58371749054178 31.929229827526907 33.23943665188669 34.502956841220225 35.71358323211618 36.863345625810865 37.946428157008356 38.95801517238023 39.89357630258921 40.74874999051799 41.521981905083216 42.217197202146764 42.842284783642164 43.399388113946756 43.895809334234684 44.33444042187396 44.7230697498789 45.06402673763229 45.36216008193511 45.62243519075742 45.849974020427126 46.04779099972439 46.22011043267123 46.37107768132439 46.504827082893144 46.62554741541338 46.737543191499164 46.84529033796815 46.95348509741279 47.0671227408265 47.19150067709065 47.331742269936676 47.493744090025196 47.68388940396293 47.90868601130667 48.174896776914956 48.48885121392889 48.85746157671693 49.28886670328575 49.789937969112664 50.36833345887827 51.02948413282363 51.78179528785278 52.63030931098074 53.57877435610888 54.63186419486026 55.7853917174928 57.0280176618509 58.345773346957316 59.725609723379364 61.154075350957356 62.611661904909234 64.08578976946565 65.559178323768 67.01792485353245 68.4473062024194 69.83888292123136 71.1825337147521 72.48573223194299 73.75492845051565 74.99713585535032 76.21902618940855 77.43077379446444 78.6408440432074 79.8569395206686 81.08463817202204 82.32798630116557 83.58936846353569 84.87122315563258 86.17043231207082 87.48379861565425 88.80847745227092 90.13597397426678 91.46088668474076 92.77529193906734 94.0699831210979 106.31421068915735 107.65735068053495 108.92523930236227 110.11241457131803 111.21341450408094 112.22345977802453 113.14369557207203 113.97832422237451 114.73157182698876 115.40766448397152 116.01082829137955 116.54528934726969 117.01527374969868 117.42500759672339 117.77871698640047 118.08062801678678 118.33496678593903 118.54595939191411 118.71783193276873 118.85481050655967 118.96112121134371 119.04099014517766 119.0986434061183 119.13830709222236 119.16420730154667 119.18057013214798 119.19162168208312 119.20158804940877 119.21469533218183 119.23516962845902 119.2672370362971 119.31512365375292 119.38305557888317 119.4752589097447 119.59595974439428 119.74938418088865 119.93975831728461 120.17130825163899 120.44826008200849 120.77483990644993 121.15527121461905 + -14.60298527122514 -12.935521597532956 -11.212275690887981 -9.437834652244995 -7.616786966911442 -5.7537211201948075 -3.8532255974025515 -1.9198888838421655 5.059902278031248 6.493856767357325 7.868719791200203 9.198016379044445 10.495083206696389 11.772726937266187 13.042513742301761 14.314206513570143 15.595809187003546 16.89340390481074 18.211118451696525 19.550363685996263 20.910786183512087 22.290483812188853 23.686309432754506 25.092594132260864 26.503271354016654 27.910890722720662 29.30762450768308 30.68834663010962 32.039540554669074 33.35358666761331 34.619729205778114 35.831703212719226 36.980917415135764 38.06209146355401 39.070404712357885 40.001218793918376 40.850230587629696 41.61587532924451 42.30206190614192 42.9143391549231 43.45995263995203 43.940946092541225 44.36563199476006 44.736979296101076 45.05976373614905 45.340241149099754 45.58179042778467 45.78909396197574 45.96637136660831 46.11798591055724 46.248515976921134 46.361748867940435 46.46203978190551 46.55384392540678 46.64182488386573 46.73097744501919 46.82610219773174 46.93250312680374 47.055783955224015 47.201782479238005 47.376294258687 47.58604192283522 47.83828677224606 48.14014319998576 48.497018988234885 48.917547941712364 49.408467897015534 49.97787091711447 50.63107803651175 51.37699435112682 52.21920259653248 53.16354656071664 54.21394123084271 55.3663112503682 56.60985006647239 57.93103680535102 59.31534362367211 60.75014219777268 62.21923659104616 63.704306328223936 65.19421161884418 66.66983195961345 68.11994897162077 69.53522038243518 70.90396876505412 72.2350720108058 73.53373593430511 74.80691912011906 76.06147360640027 77.30691521160207 78.55155089273624 79.8022227878232 81.06445597614668 82.3429056125971 83.63932352570411 84.95361699111645 86.28419197294753 87.62919480520289 88.98150090378418 90.33513028507086 91.68479944173806 93.02005118055841 94.334685518875 106.62061851313578 107.97594342492286 109.25466562998476 110.45122575949759 111.56006444463749 112.57631524598374 113.50112549140837 114.33874567110732 115.09345040775318 115.7695143240186 116.37121204257619 116.90281818609861 117.36860737725851 117.77285423872857 118.11983339318134 118.41381946328949 118.65908707172564 118.85991084116247 119.0205653942726 119.14532535372861 119.23846534220323 119.30425998236903 119.34698389689872 119.37091170846486 119.38031803974009 119.37947751339709 119.3726647521085 119.3641543785469 119.35822101538498 119.35913928529537 119.3711838109507 119.39862921502359 119.44575012018669 119.51682114911264 119.6161169244741 119.74791206894366 119.91648120519397 120.12609895589769 120.38103994372743 120.68557879135585 121.04398749907475 + -14.744602012301765 -13.067087449963037 -11.333396025362827 -9.548162389524169 -7.71602258573956 -5.841612657301537 -3.9295686475026157 -1.9845265996353347 -0.011122556992222199 6.452714919033315 7.836795334646718 9.174410243605468 10.479418814843154 11.764772074221012 13.042289394216954 14.321824800712777 15.611467948924085 16.917225758912068 18.24343967259659 19.591422113380105 20.960759568915435 22.349253000252894 23.753411700000594 25.1683988057872 26.58722627833645 28.002920140590824 29.406361343587843 30.79311733511251 32.149428915742014 33.4669204842917 34.7356116619947 35.94784175995029 37.09648620802717 38.176091722632435 39.181393202958894 40.1069959226075 40.94863596057387 41.705930513781766 42.38315659817562 42.984233645089205 43.51675015181029 43.98461810676747 44.39373806746379 44.74878935473478 45.05532592421076 45.31711582489613 45.53967813139676 45.72835418839066 45.88637515013641 46.01830670690823 46.12862118799823 46.22176330726158 46.30221405137335 46.374681114048435 46.44402866205071 46.51479310132824 46.59210461926978 46.68135204713181 46.788207831703474 46.91864444631924 47.07888443687999 47.27486127841481 47.51372248650328 47.80295292998103 48.14933170031664 48.559652186186284 49.04140317372586 49.6020591493936 50.24837163482496 50.98784772553889 51.824374975370475 52.76501814453325 53.81289847375175 54.96436539694671 56.20864531651179 57.53359318138777 58.92327949806904 60.364701608085895 61.844640425846904 63.341374639880534 64.84722519149578 66.33932312824163 67.81083859719982 69.24861009360356 70.64342208191138 72.0022487924947 73.3303847611372 74.63465739482973 75.92206744140339 77.20107897961347 78.48013570503763 79.76588431847176 81.06344429563707 82.37636188906893 83.70630905439684 85.0534809351446 86.41663160314344 87.79078559031002 89.17039380509199 90.55122294955822 91.92363656279532 93.2794335014529 94.61328958456713 106.94154614641863 108.30909582664705 109.59871766141228 110.80475709917852 111.92155958840993 112.94417342542603 113.87374688857048 114.7145758536251 115.47098068622687 116.14728175201265 116.7477994166195 117.27685404568436 117.73876600484421 118.1378556597361 118.4784433759969 118.7648495192636 119.0013944551732 119.1923985493627 119.34218216746903 119.45506567512916 119.53536943798008 119.58741382165877 119.6155191918022 119.62400591404737 119.6171943540312 119.59940487739067 119.57495784976281 119.54817363678453 119.52337260409283 119.5048751173247 119.49700154211709 119.50407224410701 119.53040758893137 119.5803279422272 119.65815366963147 119.7682051367811 119.91480270931311 120.10226675286448 120.33491763307215 120.61707571557315 120.95305872948931 + -14.865032255480346 -13.177836563062113 -11.434129884669208 -9.638590542400191 -7.795898258175629 -5.910732753916132 -3.987773751542276 -2.0317009729746776 -0.04719414013392931 6.4128498040729545 7.805706693811325 9.15161522645468 10.464530897960467 11.757665043521353 13.04311318657037 14.33075133885477 15.628716427563953 16.943028627676558 18.27779435508513 19.634676469467262 21.013013224698756 22.41038501046319 23.82327276312178 25.246116019121533 26.672832453768436 28.096168151007653 29.5068043359657 30.898147009281615 32.25938913812742 33.57945095719842 34.85011924438271 36.06261587334739 37.210540930958665 38.28818685921511 39.289703195000584 40.210167235689525 41.04513075937514 41.79372594729382 42.46057651548825 43.051579626154194 43.57129280217675 44.02550784430101 44.4199115221377 44.7597117234367 45.04860630426484 45.29364483190791 45.49885360486415 45.66834758585303 45.806984153478275 45.920013912690926 46.0113703917436 46.08548000454324 46.14698617366245 46.20096923166104 46.25198489056804 46.305031543907575 46.36534772159071 46.438267701296695 46.52950023302263 46.64507002069929 46.791293947040316 46.97459197940235 47.20126052844663 47.47871406535327 47.8145904275076 48.2153638800925 48.68898546077776 49.24107329452612 49.88111505825234 50.61403097366071 51.446147926182064 52.38342003837173 53.42924835515054 54.58022066907516 55.82562209240518 57.153369197469 58.54972714037239 59.998092327482716 61.487003789954976 62.99741112825912 64.51741093356843 66.02789445657096 67.52048231130394 68.98071754345582 70.40123845112325 71.7878977888328 73.1456742052373 74.48117109455039 75.80171235876094 77.11454896226162 78.4279854073207 79.74823252616376 81.08015983413159 82.42704670387721 83.79129723969874 85.17149157568264 86.5651033183331 87.96799943417518 89.37624277520258 90.78185176778847 92.17657307746335 93.55333934570137 94.90487715232305 107.27585037694345 108.65565444070711 109.95623301867418 111.17183863925648 112.29672383086594 113.32585353800393 114.26037585133687 115.10462932428513 115.86297734431912 116.53978329890927 117.13941057552606 117.66622256163996 118.1245826447214 118.51885421224091 118.85340065166885 119.13258535047575 119.36077169613199 119.54232307610815 119.68160287787458 119.78297448890176 119.85080129666017 119.88944668862027 119.9032740522525 119.89664677502734 119.8739282444152 119.83948184788656 119.79767097291194 119.75285900696169 119.70940933750634 119.67168535201634 119.64405043796212 119.63086798281417 119.63650137404291 119.66531399911882 119.72166924551239 119.80993050069401 119.93446115213418 120.09962458730334 120.30978419367196 120.5693033587105 120.88254281911532 + -14.964214037325029 -13.26771976584858 -11.514440075978595 -9.709093113860744 -7.856398432649971 -5.961075585501273 -4.0278441255696125 -2.06142360600999 -0.06653357997738296 6.37629710777525 7.777291253711943 9.130973840327666 10.451682438618286 11.752706994104505 13.046071743703964 14.341973700196224 15.64844015758787 16.971473023832246 18.314873465613676 19.68071999742408 21.06804730838179 22.474341077964233 23.895612818241517 25.32649906714332 26.76060590562173 28.190810761584387 29.608177005991962 31.00355266366749 32.36950419146002 33.691587768442936 34.96350581512857 36.17629064592595 37.3228766051847 38.39779915944682 39.39510836844788 40.310181900747025 41.138565116138444 41.87894678992918 42.53642300239736 43.115534834232506 43.62397902150299 44.06419072613272 44.44502173725521 44.76822585690973 45.042371041782815 45.27016936805799 45.457150587452695 45.60946338542895 45.7302986716591 45.824552542272976 45.89701333752338 45.952595379378124 45.99628018345377 46.032536112700605 46.06614784964947 46.10224400568316 46.14615745494643 46.20345883916018 46.27987519325846 46.38135793316215 46.51426036971023 46.68521213452001 46.900643507648546 47.167422257000524 47.49306908950489 47.88488368684896 48.35038059188176 48.89525240334494 49.52938222770275 50.25638049318337 51.08472533761184 52.018980189817945 53.06321593258503 54.21411970157916 55.461044720371014 56.791980686239896 58.19411002475397 59.65066743633429 61.14884000911666 62.67283233993188 64.2069365581756 65.73600395394747 67.24924303115158 68.7319940222279 70.17838986216059 71.59275779555607 72.97998533857634 74.34651469948533 75.69961747270007 77.04639845041658 78.39407220996472 79.7489557277739 81.11558810129016 82.4968445414667 83.89374825320448 85.30540490290832 86.72905582206279 88.16175456023782 89.59654419736279 91.0261430492409 92.44270176099114 93.8399579605238 95.20820662612935 107.62238799264769 109.01446582210258 110.32604932379975 111.55130042862724 112.6843810674731 113.72017480537005 114.65982846748605 115.50772063744452 116.26825506393928 116.94583549566399 117.54486568131244 118.06974936957842 118.52489030915562 118.91469224873791 119.2435589370189 119.51589412269244 119.73610155445225 119.9085849809921 120.03774815100573 120.12799481318692 120.18372871622937 120.20935360882689 120.20927323967325 120.18789135746214 120.14961171088734 120.0988380486426 120.03997411942173 119.9774236719184 119.91559045482643 119.85887821683953 119.81169070665149 119.77843167295605 119.76350486444696 119.77131402981797 119.80626291776287 119.87275527697535 119.97519485614923 120.11798540397822 120.30553066915608 120.5422344003766 120.83249768120533 + -15.042085394399958 -13.336687887340824 -11.574289406462466 -9.75964410689351 -7.897507557592907 -5.9926353275196504 -4.049782985632705 -2.07370610089107 -0.06916024225372464 6.344526481963041 7.752906194071158 9.113847745900324 10.442154145450434 11.751008630642568 13.052270295912296 14.35648834344157 15.67152995045948 17.0033434309695 18.355635741829005 19.730142099639643 21.126356257284577 22.541392684081558 23.970877413267832 25.409725499316625 26.85044227893446 28.287019463674774 29.710601578435718 31.11039792443419 32.479556273375835 33.803744580464276 35.07665931207393 36.288354533116326 37.43343895884578 38.50495671897885 39.49784719456747 40.40737670418351 41.228842091413966 41.961238037928894 42.60963221373116 43.178440294153376 43.67366576032519 44.102356808477005 44.46764159988766 44.777619932531785 45.03490383469667 45.246688545695974 45.41767131198302 45.55186499225161 45.654642939080986 45.73169303673862 45.78669037574099 45.824552425011575 45.850570110542094 45.86945666921325 45.886566452358 45.90658634864035 45.93494406139091 45.9772899354307 46.03952081342154 46.12770758072768 46.24804746601007 46.407194085864944 46.612051360305074 46.86887598794787 47.185295231895914 47.568413082021095 48.02639391207551 48.565240341375706 49.193023294431256 49.91545958552501 50.74017692114268 51.67191957458516 52.715034211044674 53.866312486328724 55.11518435005677 56.44972307301561 57.85719787692388 59.32277325017595 60.8306066323577 62.36771244739789 63.91666232707157 65.46402669871944 66.99767152456273 68.50336468340606 69.97530168865522 71.41724478224438 72.83404352050749 74.23178817678024 75.61739176638287 76.99789850127776 78.37980291988036 79.76865135927179 81.16897117068643 82.583294375724 84.01232481368895 85.45529811344846 86.90964512273344 88.37003321540328 89.83033603625167 91.28329643083565 92.72169039226699 94.13798503465125 95.52216367611427 107.98001578146885 109.384376525833 110.70700419881837 111.94197251618652 113.08335519369908 114.12595644917698 115.07092082479649 115.92266434746053 116.6856285269967 117.36425487323241 117.96298489599526 118.4862601051128 118.93852201041253 119.32421212172204 119.64777194886875 119.91364300168028 120.12626678998416 120.29008482360788 120.40953861237902 120.48906966612506 120.53311949467357 120.54612960785207 120.5325415154881 120.4967967274092 120.44333675344285 120.37660310341664 120.30103728715811 120.22108081449471 120.14117519525405 120.06576193926362 119.99928255635098 119.94617855634368 119.9108914490692 119.89786274435508 119.91153395202892 119.95634658191815 120.03674214385033 120.15716214765307 120.3220481031538 120.53584152018014 120.80298122901195 + -15.098584363269278 -13.384691756557235 -11.613640683292289 -9.790217524486176 -7.91921008143476 -6.005406155433951 -4.053593547779631 -2.068560059767714 -0.05509349269409558 6.319030199114568 7.733710922387902 9.101612550392044 10.437239035311402 11.753760798643336 13.06303500508965 14.375295613509442 15.698877335110817 17.03942212159783 18.400547860824418 19.783629384431947 21.188426449039405 22.611937531902587 24.04957999044256 25.49568003041089 26.94351976551497 28.385372583655993 29.814206209933626 31.218785281815748 32.589641979578126 33.91583091886633 35.18877648317262 36.399414591402746 37.54206027521608 38.610977748528526 39.59973985289111 40.50361240384975 41.31803124223543 42.04150045943737 42.67983273068382 43.23898793618879 43.72265850405334 44.137984867466926 44.49086066073334 44.78517461805972 45.02793395158751 45.2241425944654 45.3778255260114 45.49623249510258 45.582543667142616 45.641846343042545 45.67938944780963 45.70078904766812 45.71038204835697 45.71298565255604 45.71379779102423 45.71817582127182 45.731844251606134 45.76006906912665 45.808810859758914 45.884277589833864 45.99283280200769 46.14091518448537 46.33544207366778 46.583265342204385 46.891136016055206 47.26670483046533 47.717257265497544 48.250571843585284 48.872476131741685 49.59123347586982 50.412710552131514 51.342451542545476 52.38487811627862 53.53701954127494 54.78830067059714 56.1268788382072 57.54013960435209 59.0141940181333 60.53264403544945 62.08274711734756 63.64694395854753 65.21224869727784 66.76659899182053 68.2951323080494 69.79261382416965 71.26214205453606 72.70818492014409 74.13664828764658 75.55417860434152 76.96751498720802 78.38299777215165 79.80564955264938 81.23956103979634 82.68684917750694 84.14804849878566 85.62171387395877 87.10456754719873 88.5916884957488 90.07676895935712 91.5524357327857 93.01208501061939 94.44613123435748 95.84589350381009 108.34759053134448 109.76423310689792 111.09793526575933 112.34268495083006 113.4924701050115 114.54201769107728 115.4924690110467 116.34827500869032 117.11391241540063 117.79385796257007 118.39258838159108 118.91458040385612 119.36431076075765 119.7462561836882 120.0648934040401 120.32469915320587 120.53015016257793 120.68572316354881 120.79589488751093 120.8651420658567 120.89794142997866 120.8987697112692 120.8721036411208 120.82241995092592 120.75419537207698 120.67190663596648 120.58003047398691 120.48304361753058 120.38542279799012 120.2916447467579 120.20618619522637 120.13352387478801 120.07813451683528 120.04449485276062 120.0370816139565 120.06037153181533 120.11884133772962 120.21696776309184 120.35922753929437 120.55009739772973 120.79405137578772 + -15.13364898049714 -13.411682202516205 -11.632456713639542 -9.800787369626427 -7.921490452605852 -5.999382244706863 -4.039279028058471 -2.045997084789719 -0.02435269702963705 6.300892243281382 7.721352107926396 9.095652634116162 10.43823705062788 11.762167641176257 13.079264439155294 14.399580108949914 15.731370053676443 17.080485176156184 18.45025019127317 19.841926742229063 21.254733913032922 22.686362986546516 24.13174671483687 25.584794795271293 27.03909495031124 28.485942243618297 29.91911696530077 31.327876940657486 32.69986040390278 34.02801125561659 35.299954796153266 36.50929695035653 37.650340022658135 38.71532291827873 39.6991823581944 40.59718891449793 41.40478288943934 42.12049664320556 42.748967601082036 43.2968255310456 43.76993345461341 44.17304008850395 44.512329391116474 44.79306556807761 45.0211919489146 45.201590107931416 45.34088826751288 45.442393482856836 45.51204440593392 45.555707541831474 45.57717202750438 45.581846682120265 45.57514810927961 45.562435857442004 45.54820594875423 45.53790827372495 45.53715785461994 45.5518973643007 45.58797487076635 45.651423672780474 45.74874084913403 45.88652508416833 46.071449078346845 46.31064825659172 46.610763530441986 46.97920012068055 47.423146052055685 47.951210792284854 48.56819718677889 49.28373594931696 50.10251161426985 51.030378701580986 52.07250103158923 53.22589874468343 54.480263119111804 55.82369787720714 57.24320674499877 58.72600492751561 60.255062097504336 61.81860671071332 63.397938545750044 64.98155695305714 66.55631873801211 68.10797671347363 69.63074228103854 71.12735189130717 72.60265543167561 74.0619774317696 75.51151211316035 76.9575895013312 78.4060531737439 79.8617774737672 81.32828347581054 82.8074640763288 84.29942384274666 85.80243206707674 87.31296769765943 88.82599506201906 90.33503009979906 91.83320338470185 93.31249853023134 94.76355100867644 96.17803068031394 108.72396903021203 110.1528821202969 111.497680146652 112.7522677814536 113.91054969687801 114.96717775272354 115.92328911401518 116.78336717549111 117.55192141106053 118.23346129463258 118.83249630011649 119.35353590142145 119.80108957245666 120.17966678713137 120.49377701935462 120.74792974303575 120.94663443208388 121.09440056040823 121.195737601918 121.25515503052235 121.2771623201305 121.26626894465164 121.226984377995 121.16381809406968 121.08127956678496 120.98387827005 120.87612367777402 120.76252526386612 120.64759250223563 120.53583486679165 120.43176183144344 120.33988287010011 120.26470745667092 120.21074506506503 120.18250516919169 120.18449724295999 120.2212307602792 120.2972151950585 120.41696002120707 120.58497471263414 120.80576603478525 + -15.147217282647679 -13.417610054236121 -11.630700304675694 -9.79132764530194 -7.9043331195365045 -5.974557770801073 -4.006842642517301 -2.006028778106883 4.805401980500688 6.2913677389091855 7.717236663619339 9.09750284900011 10.4464497119449 11.777432468732782 13.10205502650388 14.430279064927625 15.770007114259588 17.127298558270557 18.50539815401178 19.905323515981866 21.32607082359535 22.76504438462822 24.217674930899157 25.677454134035514 27.137311286262015 28.589567856782924 30.025725568019684 31.43777352277845 32.81129538516578 34.13984963901879 35.410376265198245 36.619149475799524 37.75690501058373 38.81762619468263 39.79632105205553 40.688268001893405 41.488914571838464 42.19682217810798 42.81651540699084 43.35441256656517 43.81505295315337 44.20732216799562 44.533139845798054 44.80083607719825 45.01435438822224 45.181179331459795 45.304215088632255 45.39099346621454 45.44554165146691 45.47268494127508 45.47847460372339 45.468282323311556 45.44649028828034 45.41831944392482 45.389430028038824 45.365405651873125 45.35136797359771 45.35320870278536 45.377068973831875 45.42946187538507 45.516346638683515 45.64425746126431 45.820188997298786 46.05120304174173 46.34430560257944 46.70624920092682 47.14448098426736 47.66735477217677 48.280842606561826 48.993116700958915 49.8092874178493 50.736334662628664 51.77880590035697 52.933849860575236 54.1915653282949 55.53993418227491 56.96656997738699 58.45812776240149 59.998275643954216 61.57552860520352 63.17033665798917 64.77215665931327 66.3674743511145 67.94211870069991 69.48999628893858 71.01408871828065 72.51811860302305 74.00737120022099 75.48793985125229 76.966190275515 78.44707935644738 79.93508925338826 81.43337657128913 82.94350350243795 84.46528076471932 85.99672325539233 87.53411456616008 89.07217182659257 90.60444518556646 92.12394328212557 93.62172429396384 95.08923103729389 96.51755848046415 109.10800806600902 110.54917012102945 111.90507646352565 113.1695510569528 114.33641786476622 115.40025585576832 116.36219722148041 117.22675540222005 117.99847019588562 118.68188140037547 119.28152881358807 119.80195223342182 120.24769145777509 120.62328628454641 120.93327651163403 121.1822019369365 121.37460235835212 121.5150175737794 121.6079873811167 121.65805157826242 121.669749963115 121.64762233357283 121.59620848753434 121.52004822289794 121.423681337562 121.31164762942498 121.18848689638531 121.0587389363413 120.92694354719147 120.79764052683419 120.67536967316788 120.56467078409092 120.47008365750173 120.39614809129876 120.3474038833804 120.32839083164502 120.34364873399109 120.397717388317 120.49513659252113 120.64044614450196 120.83818311925711 + -15.139227306285049 -13.402426140735379 -11.60833426357222 -9.761812354500409 -7.86772253065704 -5.930926909179267 -3.9562876072042035 -1.9486667418690025 4.802526365430807 6.292332702673321 7.72282086897448 9.108441707178015 10.463285943716954 11.800752462788088 13.132494711818058 14.468246598683088 15.815781901530617 17.180644563211896 18.566632390226815 19.974355026653615 21.40265297600761 22.84843806885174 24.307650013328065 25.773555413145676 27.23856727439087 28.695362949741675 30.134313614746276 31.54857665197734 32.92393960801464 34.25144246298964 35.52130504924432 36.72784309383456 37.86187614380227 38.91802558787124 39.89146430432658 40.77766778526118 41.57114349248662 42.27067186471259 42.88179793916935 43.41018724323872 43.86053272405823 44.239751504233745 44.55444942937588 44.80762740866354 45.00921619365011 45.160581729092826 45.27044112057541 45.34202277792548 45.380959014666054 45.39412304643527 45.38494664508394 45.3593318036534 45.32322033232983 45.281270688743746 45.238585560268504 45.20081331407461 45.174160903402274 45.16412337825165 45.176937069945055 45.21866638632591 45.2958463634452 45.41469737560579 45.582135854813785 45.80529062466608 46.09172979199783 46.44800304930966 46.88127372121008 47.399451971520655 48.00991754094549 48.71912790672582 49.53373076310494 50.460647883675676 51.50391106098441 52.661137166381025 53.92251716449376 55.27645011200882 56.71016825318655 58.2110552579601 59.76285622333512 61.353425772054095 62.96441422699913 64.58460265981826 66.20024680623715 67.79811442599704 69.37106690856957 70.92161000507562 72.45432067964329 73.9737549324884 75.48528767418665 76.99451201385459 78.50653457311618 80.02551565763513 81.55456200651498 83.0946673244967 84.64525268689478 86.20409644273315 87.76728169563312 89.32946186859962 90.88420883640323 92.42351095303617 93.93891702023059 95.42178151154133 96.86355585365625 109.49856442667294 110.95194366409514 112.31896183840965 113.59336482622349 114.76889850414378 115.84007122186419 116.80800942122093 117.67725424323437 118.45237345178525 119.13793481075433 119.73850608402239 120.2586550354702 120.70294942897857 121.07595702842829 121.38224559770006 121.6263829006747 121.81293670123296 121.94647476325567 122.03156485062355 122.07277472721742 122.07467215691801 122.04182490360611 121.97880073116255 121.89016740346803 121.78049268440334 121.65434433784931 121.51629012768666 121.37089781779613 121.22273517205862 121.0763699543548 120.93636992856548 120.80730285857143 120.69373650825344 120.60023864149225 120.53137702216868 120.49171941416348 120.4858335813574 120.5182872876313 120.59364829686584 120.7164843729419 120.89136054245584 + -15.109617087973394 -13.36608129103236 -11.565321397500592 -9.712215500209508 -7.811643134397782 -5.868483835304133 -3.8876171381672555 -1.8739225782258746 4.812692268799633 6.305299440000231 7.739556815540896 9.12980779852387 10.490069364171088 11.833363789656175 13.171657900405181 14.514440741267139 15.869288523293113 17.241595867399504 18.634660158582893 20.049776035610815 21.485114375457268 22.9373338987176 24.401944246764415 25.87330855771382 27.34314778542914 28.803461027911776 30.24570563266133 31.6603889670032 33.03695924689711 34.362890885003125 35.632163944801526 36.83542614105901 37.965381751846955 39.01752561050058 39.9865340951931 40.86631052836127 41.65271205704651 42.34427456901646 42.945534905467106 43.46383801759291 43.90455183849275 44.272598145630774 44.57443195450907 44.81658788035349 45.0035911218411 45.14272991540023 45.23791606549084 45.29529431791377 45.32099555394773 45.31889289421294 45.295489486037276 45.25663133460515 45.20638206245069 45.15032441755598 45.09501007656257 45.0449992392111 45.00607143867612 44.984647515512755 44.987217270949024 45.01908802556126 45.08683577448215 45.197400988375264 45.35719870080581 45.573296556294956 45.85329776486575 46.20448786419164 46.63331190873412 47.147548742383044 47.75525976592569 48.46231971995189 49.27627083191252 50.20328824654353 51.24788508773294 52.407832750018294 53.67341827861503 55.03339596648759 56.47473630354069 57.98507954712504 59.548868900382615 61.15326177225884 62.78053210932382 64.41904308791548 66.0552622770968 67.67618124027294 69.2737122505911 70.85130867910055 72.41180115583845 73.9599983141347 75.50195064847853 77.04198873966719 78.58482007990649 80.13423586949799 81.69275300964425 83.26135679266548 84.83934981003173 86.42430810594858 88.0121410984124 89.59724738611446 91.17275437376635 92.73082579579066 94.26301781430932 95.76043503789836 97.21456297340576 109.8944949001413 111.36004930449354 112.73817389333331 114.02253913816133 115.20681551047834 116.28544307266377 117.25954180101523 118.13367825289127 118.91244586066881 119.60043805672474 120.20224827343607 120.72246994317973 121.1656964983327 121.53652137127195 121.83953799437434 122.07933980001692 122.26052022057658 122.38767268843033 122.46539063595509 122.49826749552781 122.49089669952545 122.44787168032497 122.37378587030331 122.27323270183741 122.15080560730425 122.01109801908078 121.85870336954396 121.6982150910707 121.53422661603798 121.37133137682281 121.21412280580205 121.0671943353527 120.93513939785169 120.82255142567598 120.73402385120255 120.67415010680833 120.64752362487027 120.65873783776533 120.71238617787047 120.81306207756265 120.96535621763407 + -15.058324664276856 -13.30852633414546 -11.501624513632287 -9.642511085416931 -7.736079379189051 -5.78722272463836 -3.8008344514545365 -1.7818078893272964 4.837410268010701 6.33190120431198 7.7688878486657575 9.162963695517771 10.527918271547602 11.876646538967531 13.220600449779141 14.569799517802071 15.931269972594055 17.310499527385456 18.71045600114661 20.132030626792634 21.57382353643213 23.03207185095774 24.501623808849967 25.97691236648782 27.45084842429903 28.914061962508942 30.35885225317382 31.773920409840102 33.15044893672362 34.47471778229057 35.74242852888192 36.942016509134305 38.06817689076875 39.11655652542407 40.07980839267645 40.95314885162018 41.732093399694875 42.415933261554194 43.00887878191366 43.516742564496646 43.946818997031244 44.30477798165009 44.59463476474736 44.824804705240325 44.99970397001533 45.12554012319449 45.20736525858043 45.25199804102764 45.26303312908199 45.24821336127274 45.2115080493251 45.15847007131309 45.09553049366973 45.027312668118434 44.95907918693836 44.89691303088941 44.847119639193444 44.81550214638314 44.80764137333271 44.830418211575946 44.88974596463354 44.992296915822855 45.14523406998559 45.35509500655997 45.62911129101771 45.975631070900434 46.400802500036086 46.91155372484757 47.51717792585505 48.22279095254064 49.0366062735486 49.96406666877589 51.01047438137352 52.17369615050103 53.44409145403672 54.81068024099736 56.26026113105724 57.78062348786055 59.35666816010091 60.97513595318221 62.61892582418373 64.27599055232074 65.93252546532904 67.57629716703332 69.19878502033764 70.80206118790566 72.39062136244976 73.96772806723087 75.5382038639202 77.10783664883448 78.68047826208166 80.25923494911204 81.84624654238829 83.44234621483882 85.04660319772702 86.65638209196071 88.26742471756114 89.87400162075251 91.46915285565673 93.04494500938651 94.59283089723911 96.10402763896461 97.5697902479331 110.29465627435158 111.77233359722413 113.16155025032597 114.4559040416621 115.64899277923752 116.73519062981957 117.7156104486418 118.59484198554792 119.37750210444554 120.06820766924226 120.67157554384565 121.19222259216339 121.63476567810304 122.00382166557227 122.30400741847863 122.53993980072977 122.71623567623324 122.83751190889673 122.90838536262781 122.93347290133408 122.91739138892318 122.8647576893027 122.78018866638027 122.66830118406348 122.53371210625993 122.38103829687725 122.2148966198231 122.03990393900496 121.86067711833057 121.68183302170748 121.50798851304329 121.34376045624566 121.19376571522214 121.0626211538804 120.95494363612802 120.87535002587259 120.82845718702175 120.81888198348311 120.85124127916427 120.93015193797285 121.06022805804434 + -14.985288071759584 -13.229712099093067 -11.417206419138772 -9.552673113110353 -7.641015713461168 -5.687137752644633 -3.6959427631141253 -1.6723342773230654 4.87821970021721 6.373521231528839 7.81230722694378 9.209255570272862 10.578080572814564 11.931465578392437 13.280659549931775 14.634917808415288 16.002463763768137 17.388005615828515 18.794211725413177 20.221519660365594 21.668891293853527 23.132382261036472 24.606653851692094 26.085362425812765 27.56181246374338 29.027694499919544 30.473822637319802 31.8891467647976 33.2645068754967 34.58779345888184 35.85220614841125 37.04773851150682 38.17088272406776 39.21397923772421 40.17126912227076 41.038030464093865 41.80969387232711 42.485557364812145 43.07022635281301 43.569107680179606 43.988650743902944 44.33564917155101 44.615375566987176 44.83265679727158 44.99669914531633 45.109222383571606 45.17961946754269 45.210245242152595 45.209697791897604 45.18144688516803 45.131344060307605 45.06679036411345 44.991117731622104 44.91013684641772 44.830982900258306 44.75790203511585 44.69722049602894 44.65580227609639 44.63894471087 44.65274100894408 44.70420788743753 44.799773543822674 44.94608932792629 45.15051634765673 45.41964518054654 45.761655940323884 46.18362798892761 46.692050305568756 47.29576470239595 48.00038876784199 48.814513990821474 49.74325466356988 50.79218208265871 51.95927661811259 53.23499710637597 54.60847542556963 56.066854955259565 57.59769964404084 59.18630802586695 60.819441594176666 62.47984831859221 64.15544095366157 65.83261591112922 67.49836324411383 69.14592264683668 70.77533157028986 72.39014704827422 73.99560406442086 75.59479418756938 77.19217538716055 78.79283611051748 80.39966906003252 82.0140568499415 83.63644878734377 85.26569371940187 86.89899686273368 88.53197417629397 90.15879730810671 91.77259480220116 93.36535109873027 94.92822296929 96.45234071351494 97.92927760700935 99.35164937416353 112.18764309728651 113.58792853141696 114.89228958562147 116.09425420588893 117.18813311498423 118.17503145187912 119.05955999556153 119.84635686502483 120.54006017926244 121.14530805726774 121.6667386180342 122.10898998055521 122.47670026382424 122.77450758683459 123.00705006857976 123.17896582805314 123.29489298424815 123.35946965615821 123.37733396277672 123.35312402309708 123.29147795611276 123.19703388081713 123.07442991620361 122.9283041812656 122.76329479499658 122.58403987638991 122.39517754443895 122.20134591813726 122.00718311647813 121.81732725845502 121.63641646306135 121.4690888492905 121.31998253613592 121.19373564259107 121.09498628764925 121.02837259030392 120.99853266954854 121.01010464437648 121.06772663378119 121.17603397693927 + -14.890445346985718 -13.12958941489357 -11.312029921191527 -9.442675586277462 -7.526436585644458 -5.56822309478564 -3.5729452891941023 -1.5455133443629787 4.93665082099213 6.431613943601374 7.871301877275923 9.270008271196868 10.641779938576434 11.998787627642978 13.351819769165761 14.711003755959855 16.08375251356641 17.47476239799242 18.886364262765806 20.318853599555986 21.77067874814786 23.23854864222968 24.716681735013815 26.198348069084993 27.67682282994843 29.143936048464095 30.590720446490902 32.006211214776904 33.379234792052515 34.700980466026635 35.96160990085668 37.153523827545214 38.27242297029566 39.30993351863366 40.26107119165558 41.12112361139496 41.88552974350066 42.553333066912586 43.12976966926668 43.61978165058927 44.030317717831686 44.36591391640396 44.6352894148007 44.84263376681474 44.993748845137546 45.09585836586054 45.15297131945287 45.17253083561777 45.159161749581756 45.11828356695519 45.057311520075736 44.97993143669332 44.8925553035182 44.80115740270042 44.71037292273496 44.62659321635757 44.556928120949635 44.50597275248369 44.48013255709733 44.486379830321624 44.53041814304106 44.61938139000072 44.76014181724732 44.95932305725577 45.22444208157776 45.56238792043875 45.98183907639928 46.48852685725341 47.09084802167541 47.79551927528905 48.61032913250445 49.54088361152062 50.592866675654264 51.76439785104001 53.04602377733795 54.426959699604765 55.894664809214945 57.436559700683375 59.038241341129535 60.686086913447205 62.3634713155704 64.05795044054796 65.75513022838845 67.44346800243963 69.11424482588349 70.76959526192265 72.41103451523465 74.04271417899453 75.66964993427736 77.29489302057081 78.92218616829803 80.55573640383429 82.19610306428068 83.84332604632463 85.496085779656 87.15146006823272 88.80496898799652 90.45122373591823 92.08278992514649 93.69138548506214 95.26837031599774 96.8047855313403 98.29225080135511 99.72362443021704 112.60482435968021 114.0161463586356 115.33052581893523 116.54142368590026 117.6430897498103 118.63662089850573 119.52664683728928 120.31782482431599 121.01481211774087 121.62226597571892 122.14484365640524 122.58720241795481 122.95399951852272 123.24989221626393 123.47953776933353 123.64759343588649 123.75871647407791 123.81756414206279 123.82879369799616 123.79706240003306 123.72702750632851 123.62334627503756 123.49067596431523 123.33367383231653 123.15699713719653 122.9653031371103 122.76324909021272 122.55549225465899 122.34668988860406 122.14149925020295 121.94457759761075 121.76058218898243 121.59417028247304 121.44999913623768 121.33272600843127 121.24700815720891 121.1975028407256 121.18886731713641 121.22575884459634 121.31283188757136 + -14.773734526519409 -13.008109110565359 -11.186057826962019 -9.312492507905944 -7.392326444169242 -5.430472926524067 -3.4318452457425446 -1.4013566925968328 5.014222022310077 6.507640189795849 7.947098478395529 9.346680257119798 10.719650447284328 12.078816633685845 13.435608924124566 14.798993813008275 16.17586807662091 17.571387683778443 18.98742459599815 20.424135555343874 21.87961436986072 23.350835124339756 24.831910431596075 26.315967273986782 27.795856088864163 29.262888103238062 30.709648642344543 32.12458562118747 33.49487162419006 34.814322311546114 36.07075840894756 37.25924506328901 38.372875151287616 39.40456488759138 40.34937493027147 41.203000005414296 41.96043895589979 42.619884317919116 43.18770400770426 43.66913768303206 44.07063428652005 44.39694680232884 44.65468629121954 44.852280179524556 44.992165555335326 45.08314618249498 45.12885681029135 45.1371111507301 45.11134659221707 45.06029723986863 44.98702628725115 44.898764649084534 44.80088005205021 44.6980873349028 44.59746531342221 44.504457103872184 44.425088880696954 44.365746141893446 44.332250968466134 44.3306420528352 44.368340131627804 44.45141324685029 44.586843697636525 44.78189382523159 45.04316271942313 45.37820152717689 45.79532412264918 46.300873847885825 46.90251154712645 47.607765034624094 48.42382851416019 49.35682142905642 50.412529762195874 51.58914344109777 52.87729479640732 54.266309249806724 55.74383716733058 57.297168261942886 58.91212074807927 60.57554080294272 62.270101594262215 63.98305083869983 65.70132339371743 67.41096165059832 69.10577089989361 70.78508286182628 72.45264776342938 74.11032220093242 75.7635546176816 77.41540553031568 79.06877452398314 80.7270894109674 82.39189585909129 84.0623722882583 85.73706638374725 87.41296313173 89.08608479336118 90.7504208498021 92.39828053774866 94.0215771041475 95.61159510153772 97.15939779864925 98.65669343177379 100.0962983894389 113.02272393940477 114.44504135401121 115.76944279049907 116.98932511473909 118.09887975595036 119.09919487630009 119.99491706508837 120.79072066422836 121.49128001563312 122.10126946121578 122.6253633428895 123.06823600256742 123.43456178216269 123.72901502358835 123.95627006875762 124.12100125958354 124.22788293797933 124.28158944585809 124.28679512513291 124.24817431771697 124.17040136552336 124.05815061046523 123.91609639445574 123.74891305940793 123.56127494723502 123.35785639985014 123.14333175916627 122.92237536709672 122.69966156555456 122.47986469645289 122.26765910170485 122.06771912322358 121.88471910292222 121.72333338271388 121.58823630451167 121.48410221022874 121.41560544177825 121.38742034107328 121.40422125002699 121.47067970319324 + -14.635093646924801 -12.865222015126825 -11.039252943621726 -9.16209788098348 -7.23866973746584 -5.273881423322602 -3.27264584880753 -1.239875924174424 5.112440211343246 6.603039865738962 8.041054709118443 9.439087599595437 10.812333332215276 12.173539684992955 13.53301174413514 14.89951880433263 16.27972389549999 17.678464320707285 19.09787166785135 20.537750534924136 21.996084084995093 23.46948520125654 24.95252682512435 26.43803460206647 27.918533114309007 29.385833608858675 30.830981162979466 32.24436741323413 33.61188459333409 34.927926292134245 36.1797755728652 37.364326211133836 38.47237415735873 39.49802403265834 40.436715152482144 41.28405027274671 42.03424377866991 42.685923317528584 43.24505964638047 43.71720217597427 44.10979810574545 44.427024753849594 44.674957460818625 44.86180982007063 44.99214326603931 45.071307362507426 45.10736373391268 45.10366949584942 45.06835512219546 45.005488142806385 44.92173559445261 44.823382939366525 44.714449123964314 44.602485356684646 44.49231268452221 44.389836011657664 44.302671337155154 44.23527446167728 44.19393310732948 44.18630885015955 44.217717405529676 44.29550466068766 44.4265803463058 44.617579027474505 44.87611833565066 45.208733241673755 45.62410336935615 46.12904999442576 46.730546128374904 47.43708102249853 48.25505614687372 49.191077310268234 50.25106862158029 51.433376189001464 52.72865288200718 54.12630368588766 55.61420417976962 57.179716509856135 58.80874377447259 60.48770141741843 62.19940659957636 63.93191767643413 65.67028264856225 67.40164951154502 69.11951699101994 70.82293452015203 72.51521840090189 74.19847260885493 75.87646270757861 77.55354858318194 79.23148352818465 80.91332866565956 82.60091363806688 84.29289232381787 85.98781953221456 87.68301199357265 89.37450827082232 91.05525924662466 92.7180881689062 94.3548883990229 95.95692396778924 97.51518855814984 99.02252003494365 100.47089271590954 101.85354605792011 114.87345113957315 116.20787054920875 117.43678238787311 118.554322355057 119.56156947304072 120.46318523331604 121.26385906667126 121.96828040389474 122.58113867577488 123.10712331310005 123.55092374665864 123.91722940723903 124.21072972562956 124.43611413261861 124.59807205899453 124.70129293554574 124.7504661930606 124.75028126232748 124.70542757413472 124.62059455927074 124.5004716485239 124.34974827268255 124.17311386253506 123.97525784886984 123.76086966247526 123.53463873413963 123.30125449465142 123.06540637479894 122.83178380537056 122.60507621715468 122.38997304093965 122.19116370751385 122.01333764766568 121.86118429218347 121.73939307185557 121.65265341747045 121.6056547598164 121.60308652968182 121.6496353370575 + -14.47446074476604 -12.700878957596359 -10.871578078342116 -8.991465708497755 -7.065450913964578 -5.098442760643935 -3.0953503144371415 -1.0610826412455525 5.2328893399579135 6.717789402276738 8.151825115265718 9.548826001093797 10.922043611597745 12.283957525806303 13.644908687428675 15.013339362919549 16.395727046721586 17.79653682072073 19.21814959104909 20.66005281572067 22.120126544919717 23.59472052028685 25.07870092315866 26.564680778818904 28.044970725860196 29.511725880609486 30.954487248849556 32.365656291376055 33.73036357164187 35.041904422541464 36.28912433426056 37.46885644684583 38.571059842144095 39.59046619780676 40.52312947764397 41.36353523800577 42.106427626043576 42.75045083864982 43.301417657414795 43.76463183449173 44.14800692657137 44.45634100735535 44.69537277413777 44.87143508200245 44.992517277548295 45.0614438830179 45.08732539098404 45.07340328900198 45.02797142240544 44.95418892345068 44.86160236047905 44.752629703133934 44.63480935543302 44.51354043583845 44.39387909699379 44.284262682247096 44.18885284860761 44.11380819923655 44.066607224289484 44.05239017654728 44.07857647402802 44.15182339729808 44.27867026057887 44.46686217646423 44.722630351320525 45.05393519955903 45.46787514968202 45.97290957535776 46.575020915476195 47.283231884749945 48.10379985428275 49.043598760159696 50.108619734850784 51.29726016479116 52.60032046030376 54.00730942456609 55.5062197095666 57.08428505105104 58.72752413635971 60.422419546381114 62.15236664283674 63.90386995601759 65.66230685444746 67.41571279809888 69.1557426484326 70.88303847087566 72.59887474864453 74.30655258638403 76.00830477666976 77.70913145911005 79.40999684655843 81.11386850645991 82.82228521018496 84.53407621342858 86.24758314834209 87.96134774462749 89.66908132426444 91.36477345017425 93.0412458897368 94.69076329504921 96.30516761624234 97.87455947814067 99.39091129705133 100.84680509133543 102.23533469669354 115.30021333735073 116.64463914395999 117.88261940076993 119.00823676878277 120.02256077650613 120.93026589632942 121.73605471355403 122.44462981348134 123.06069378141285 123.58894920264994 124.03409866249409 124.40084474624673 124.69389003920925 124.91793712668309 125.07768859396968 125.17784702637044 125.22311500918684 125.21819512772026 125.16778996727218 125.07660211314398 124.94933415063714 124.79068866505304 124.60536824169311 124.39807546585885 124.17351292285164 123.93638319797286 123.69138887652402 123.4432325438065 123.19661678512175 122.95624418577121 122.72681733105628 122.51303880627842 122.31961119673907 122.1512370877396 122.01261906458149 121.90845971256613 121.84346161699499 121.8223273631695 121.8497567024167 + -14.29177385660727 -12.515030766992346 -10.682996038294666 -8.800569993436453 -6.872654422095776 -4.904151113950749 -2.8999618586794544 -0.8649884459600118 5.372868798394607 6.852695123933557 8.283149133582704 9.677803297947536 11.049715964275656 12.411023148668397 13.772132452425776 15.14116960926964 16.524414914421314 17.926202166553143 19.349021484808038 20.791994187492875 22.252765287540374 23.727393939296984 25.210723383098564 26.6960241322858 28.175278255943418 29.640616680978216 31.081193392040262 32.48855420568271 33.849762329629264 35.156373247789624 36.39897536250699 37.57296413928549 38.669076487911504 39.68205053708258 40.60822616692283 41.44160336738554 42.17714672190902 42.81351461695631 43.35637382794036 43.81145564978449 44.18545754377448 44.48508732050145 44.7154274347366 44.88197114778536 44.993486125554206 45.053508181768784 45.068942550642866 45.0462217491364 44.990387516629696 44.908102259736765 44.805483035805146 44.687318440426 44.561109802618546 44.430661026991885 44.30374623513881 44.18629125781756 44.08322324926414 44.002490268300726 43.94871426205735 43.92925224842916 43.95085335163688 44.0196337771459 44.14371974884856 44.32890878133735 44.583275695450844 44.91317864573265 45.3267798076511 45.83227418703941 46.43560452110458 47.14636557077316 47.970048220478375 48.91410067765006 49.98481316408521 51.180497100846694 52.492020996330794 53.908964773772155 55.419426285793065 57.010645666368596 58.66871140153895 60.380406493124745 62.12849719281956 63.89909733437451 65.67822580814962 67.45281351373711 69.21470371439666 70.96506304492122 72.7037307802563 74.43457203804046 76.15898976484178 77.88193974728863 79.60353002301513 81.32803565622014 83.05567893117536 84.78543818552183 86.51705046304609 88.24658245359424 89.96886747619007 91.6779575630067 93.3683501900847 95.03037277916663 96.65518012056064 98.23386063483947 99.7586576355368 101.22319332299489 102.61917480511981 103.93994676623693 117.07857862364853 118.32566004889715 119.45944221878028 120.4809848744748 121.39497360848573 122.20612228678597 122.91914477534847 123.53875494014623 124.0696666471522 124.51659376233933 124.88425015168069 125.17734968114911 125.40060621671763 125.55873362435919 125.65644577004677 125.69845651975335 125.68947973945183 125.63422929511526 125.53741905271654 125.4037628782287 125.23797463762466 125.04476819687738 124.82885742195987 124.59495617884508 124.34777833350591 124.09203775191543 123.83244830004655 123.57372384387223 123.32057824936545 123.07772538249918 122.84987910924642 122.64175329558009 122.45806180747313 122.30351851089853 122.18283727182929 122.10073195623833 122.06191643009869 122.07110171252342 + -14.086971019012635 -12.307628272333183 -10.473469630650847 -8.589384738787258 -6.660264710289755 -4.6910006587057325 -2.6864836975825495 -0.6516049404676013 5.5375172446671606 7.010865986440313 8.436291605086897 9.827151035197483 11.196307572811762 12.555636794738733 13.915325766576098 15.283352257547941 16.66624739646808 18.067910979868177 19.49058740681801 20.93327349913411 22.39353143420216 23.86738795534486 25.349590499561565 26.832506505353717 28.30955738272605 29.77260131385588 31.210302815212913 32.6131653269901 33.9701858933731 35.271453636705864 36.50882780476531 37.67678200632356 38.76657224070611 39.77293943564135 40.6921458041152 41.51840468444836 42.24655808153828 42.8752759765798 43.41009021832693 43.85712826734742 44.22234469553803 44.513452878689485 44.73530346069493 44.89326428717058 44.99524443328796 45.046664947807045 45.05241155220891 45.021245072106304 44.95579087453964 44.86546224024689 44.75354734023845 44.627810849257266 44.49282569327101 44.354731069870226 44.2207357443636 44.09577147194808 43.98711011959747 43.89989531111912 43.84063908098916 43.81681735641489 43.83386859449523 43.89983789166727 44.02077401299868 44.20427719035193 44.45719027786825 44.78690924266856 45.2003330433909 45.70719053985579 46.3124984807763 47.02600256152449 47.853668826880856 48.8028426050018 49.87977108258398 51.083053868128005 52.40366391340105 53.83125154334732 55.35398705224925 56.959233601722204 58.63291605971306 60.36133737531991 62.12793573742983 63.91790816893648 65.71782587293536 67.51324179128217 69.29665264606666 71.06918667524648 72.82988759194197 74.58252467047198 76.32831292904037 78.07099367179443 79.8120255626289 81.55571657902235 83.30056637630467 85.04723921355719 86.79444046198243 88.5378489651104 90.27364110898904 91.99654722367232 93.69821874810667 95.3705434987711 97.00585912570371 98.59500444687764 100.12907622850432 101.60034518470788 103.00237580933421 104.3292908605431 105.57327759133493 118.76472822772246 119.90675792670207 120.93565785472524 121.85612292414214 122.6728764682764 123.39064182045169 124.01414231399158 124.54810128221982 124.99724205845999 125.3662879760358 125.65996236827084 125.88298856848878 126.04008991001328 126.13598972616798 126.17541135027653 126.16307811566257 126.10371335564977 126.00204040356178 125.86278259272221 125.69066325645474 125.49040572808303 125.2667333409307 125.02436942832145 124.76803732357884 124.5024603600266 124.23236187098836 123.96246518978774 123.69749364974842 123.44217058419402 123.2012193264482 122.97936320983467 122.78132556767696 122.61182973329882 122.47559904002385 122.37735682117571 122.32182641007806 122.3137282806302 + -13.859990268546285 -12.078622302637253 -10.242961662582136 -8.357883947537854 -6.42826622697684 -4.458985570371575 -2.454919047194507 -0.4209437269181187 5.728243012526018 7.193604557867419 8.612447234301875 9.997947967944071 11.362543521768913 12.717756733010853 14.07456642629393 15.440635155658086 16.821829557775665 18.221996935577874 19.643103359351358 21.08412890005808 22.542562975346584 24.01452894968823 25.494454368337262 26.97481090817164 28.447958503745987 29.90777213757483 31.341786281341896 32.739794022925025 34.091743104882376 35.38739213801344 36.61916705602352 37.78044663973317 38.86369851532747 39.86329779765762 40.77503051125907 41.594089919168376 42.314818579527085 42.93589527382331 43.46272719121067 43.90180888491154 44.2588599144114 44.54162315129624 44.75517865418595 44.904790984582164 44.997981726804916 45.04109019097713 45.03801688572692 44.998646931994216 44.924890951552214 44.826380724133145 44.706054140300076 44.57306030182535 44.43009531976161 44.285553650284946 44.14451596934439 44.013461672354204 43.89901938387507 43.80608000798109 43.74276523288619 43.714400401324546 43.72824240535045 43.79131414056748 43.91003261547104 44.09232980810008 44.34447368857073 44.67448893607947 45.08893250842568 45.59717499527363 46.20538911238862 46.92219421231508 47.75436461965537 48.70936310660627 49.79339905989872 51.005160607672394 52.33566328496368 53.774638321201586 55.31033533279687 56.930086459298025 58.61971089331473 60.36540801380515 62.150981235803 63.960757834030666 65.78117560751785 67.59729002859292 69.40183888827725 71.19558035761679 72.97743508011558 74.75017836732994 76.51541019361991 78.2767083801923 80.03635174206248 81.79641248436742 83.5567448270414 85.31871907961471 87.07888702874814 88.83545707170562 90.58390829594215 92.31743611351425 94.02992492748811 95.7135158369574 97.35840211943899 98.95564025968513 100.49901350604414 101.97912625385273 103.3881480126656 104.71950295220245 105.96828608869517 107.12619831161916 120.34900311420074 121.38539580503596 122.31252839765588 123.13513193993474 123.85793747974658 124.48567606496556 125.02307874346586 125.47487656312161 125.84580057180705 126.14058181739615 126.36395134776318 126.52064021078222 126.61537945432742 126.65290012627301 126.63793327449304 126.57520994686168 126.46946119125309 126.3254180555414 126.14781158760077 125.94137283530533 125.71083284652924 125.46092266914668 125.19637335103167 124.9219159400585 124.64228148410125 124.36220103103405 124.08640562873107 123.81962632506642 123.56659416791432 123.33204020514887 123.12069548464419 122.93729105427444 122.78655796191377 122.67322725543637 122.6020299827163 122.57769431998965 + -13.610769641772363 -11.827963686922953 -9.991434941260001 -8.106041622675923 -6.176643420587352 -4.208100024410962 -2.2052711235634033 -0.17301640746135982 5.946408860290795 7.402168315461503 8.81204890198928 10.189512830411703 11.54776445405538 12.898461063797393 14.251247143105802 15.613723148787074 16.991608686413723 18.38882315984724 19.806854378307317 21.244779910887296 22.700026763537664 24.16895309387455 25.645424660018133 27.122136343522456 28.59181169631924 30.046218545588747 31.476071269662988 32.869122763529205 34.21476123638673 35.50475553206528 36.730153644080424 37.884098003020846 38.96060937013844 39.95356774803775 40.85743528511918 41.66880962130462 42.38208397961467 42.99553085802949 43.51444235041033 43.945653188876925 44.29519032953571 44.569820600590894 44.77522539381801 44.91671355615319 45.00188118950682 45.03695346960145 45.02601490427301 44.978594245740084 44.897298694202135 44.791006152658554 44.66365083038071 44.5232027731774 44.373083587918345 44.22247677166785 44.075179399045986 43.93899534734016 43.81901967285498 43.72161575998656 43.6541970280886 43.62201870596947 43.633748599445404 43.694375798104176 43.81176107476635 43.99284095986406 44.24526701805701 44.57576011847808 44.992012029924844 45.50217433576614 46.11386802857375 46.834913116257155 47.67214988286681 48.63359154587701 49.72545301081822 50.94643182427834 52.28759859592158 53.73873572429758 55.288112251605256 56.92310182096262 58.62933604676958 60.392900893330236 62.197948846313096 64.02778867588262 65.86859410874102 67.70525259697561 69.5305092973307 71.3444087945937 73.14615092346163 74.93688652896999 76.72094521762372 78.49886452665702 80.27539379288024 82.0496115315045 83.82462332899055 85.59850950585773 87.37107443530093 89.138973079793 90.89706446071466 92.64173158302621 94.36410772790654 96.05639115386832 97.71149973721597 99.31874099255947 100.86953290496108 102.35782305293488 103.77507479527694 105.11292382007194 106.36581767833069 107.52774155115283 108.59071656580667 121.8290148131854 122.76300458338417 123.59170338367021 124.3198482841887 124.95217635508472 125.49342466650339 125.94833028858987 126.32163029148931 126.61806174534672 126.84236172030732 126.9992672865162 127.09351551411844 127.12984347325924 127.11298823408363 127.04768686673681 126.93867644136387 126.79069402810994 126.60847669712012 126.39676151853952 126.16028556251331 125.90378589918662 125.63199959870444 125.34966373121206 125.0615153668545 124.77229157577692 124.4867294281244 124.20956599404211 123.94553834367517 123.69938354716867 123.47583867466773 123.27964079631748 123.11552698226303 122.98823430264956 122.9024998276221 122.86305774385436 + -13.33924717525501 -11.555603254208663 -9.718852273855918 -7.833831767189153 -5.905380739551611 -3.9383381962865807 -1.9375431427373186 4.689616429674654 6.1905011452244265 7.634145267839078 9.034090332572921 10.4034068728256 11.754475019084953 13.098957950133522 14.445958447582752 15.803100989538807 17.175975980727102 18.56869933772576 19.982078904489477 21.41540673800839 22.866250277658867 24.330771510096703 25.8025930710378 27.274688817602613 28.739950742548473 30.188512050018037 31.61330191670882 33.000519207798064 34.33982510344686 35.62312928867142 36.84186295518737 37.98787890219671 39.05777954800903 40.04369869612266 40.94032095949117 41.74300119283734 42.44850792638409 43.054337991980134 43.565389438359254 43.98915938086797 44.33151742013564 44.59819291656191 44.79560937397537 44.92918734592952 45.007118355900175 45.03441661414813 45.01589475068777 44.96124589539925 44.872730211399734 44.759486738331255 44.625454031991715 44.47836722463112 44.32225454746452 44.165603507668614 44.01282484060668 43.87192549318954 43.74717658701722 43.64609545045754 43.57496526233356 43.540353944180865 43.54981897814569 43.608646729686576 43.725421213580375 43.90576881211445 44.15899937405894 44.49070949882388 44.90927985810784 45.422383879099804 46.037871456300614 46.76381106485022 47.607073788600815 48.5755030489907 49.67593465063978 50.90690259811047 52.25952714569183 53.723633655077684 55.28748376069978 56.93849272852556 58.662050516980216 60.444114451200456 62.2688640795228 64.11911787402606 65.98040646988315 67.8374255127477 69.68290861578033 71.51542215748402 73.33558230683364 75.14423861354805 76.94475793944231 78.73886703125027 80.52875328172932 82.31635981737983 84.1024025745671 85.88763280439355 87.6701232521778 89.44716708082976 91.21527262440104 92.96775202353713 94.69963355222022 96.40144607526568 98.06449059286656 99.68151873570778 101.2419530165723 102.73768668094196 104.16292354511799 105.50849478813295 106.76651433216095 107.93263759244238 108.99902774520989 109.96509500455063 110.83670657048971 124.0414054813922 124.77519076473361 125.4124633463656 125.9579646869454 126.41643624713029 126.79261948757753 127.09125586894427 127.31708685188785 127.47485389706543 127.5692984651343 127.60516201675172 127.58718601257489 127.52011191326106 127.40868117946751 127.25763527185147 127.07171565107016 126.8556637777808 126.6142211126407 126.35212911630711 126.07412924943715 125.78496297268819 125.48937174671744 125.19209703218212 124.89788028973948 124.61146298004672 124.33758656376119 124.08099250154008 123.84642225404059 123.63861728192 123.46231904583557 123.32226900644453 123.22320862440411 123.16987646547689 + -13.045360905558383 -11.261491833512784 -9.425176467541363 -7.541228384065228 -5.614462632299943 -3.649694261461119 -1.651738320764333 4.9750585021132325 6.462040315982838 7.893350751113227 9.282148500280206 10.641427971427433 11.983670627787925 13.319877295557284 14.659219101396122 16.009142817471215 17.37567285856016 18.762137065490005 20.16949382728076 21.596843096231783 23.04208181395851 24.50024560938054 25.966032811207487 27.432946836230137 28.892465911526358 30.335260235951463 31.753436966850828 33.13411019000804 34.46667413271105 35.742658460625094 36.954455484422986 38.093253653557476 39.15511992147256 40.13379946822455 41.023092234874646 41.81833774849618 42.51552451909059 43.11345726901503 43.617023291827564 44.033543859165 44.36801572027747 44.62687946572964 44.816488291157704 44.9426249683106 45.013859744591144 45.03363238785869 45.00850969795431 44.9467513780557 44.85131737117499 44.731961681333196 44.59158326878751 44.438674329424416 44.27692552272677 44.1151398506614 43.957544920340766 43.81232220943533 43.68355156522241 43.57920728162695 43.50513881692802 43.46871050802028 43.476400497071204 43.534424075936165 43.650758896962564 43.83147490451659 44.085624194689366 44.41943742650765 44.84068244265807 45.3573261369863 45.9773498914624 46.70884509937778 47.55882442095758 48.53515691577743 49.64486532683809 50.88662821259109 52.251543609029675 53.729470390168075 55.30863510464197 56.97649068272338 58.71812961203163 60.519360719638776 62.36408927008415 64.23559218648157 66.11694258565899 67.99410607195446 69.85866193719119 71.70912130672014 73.54658088312488 75.37220156420368 77.18716616529274 78.995202556955 80.79688346121632 82.59506499418526 84.39125212212289 86.1850037551939 87.97577717496432 89.7607502361755 91.53626716903689 93.29723909874998 95.0362258673474 96.7470967722159 98.4193293157454 100.04478350568921 101.61455097558525 103.11954457149524 104.55297014701824 105.90624392530178 107.17105712047076 108.34274968062128 109.41283277287909 110.38102496693807 111.25386418151348 112.03392756364465 125.22278145233695 125.86535720082487 126.415524440405 126.8780274510085 127.25761051256666 127.55901790501052 127.7869939082713 127.94628280228018 128.04162886696835 128.07777638226702 128.05946962810725 127.99145288442038 127.87847043113746 127.72526654818972 127.53658551550835 127.31717161302447 127.0717691206693 126.80512231837409 126.52197548606985 126.2270729036879 125.92515885115937 125.6209776084154 125.31927345538723 125.02479067200599 124.74227353820291 124.47646633390914 124.23211333905584 124.01395883357418 123.82674709739538 123.6752224104506 123.56412905267105 123.49820839810982 + -12.729048869246613 -10.945580253853695 -9.110370329487802 -7.2282054762918255 -5.303873547262666 -3.3421623953972603 -1.347859873692521 5.29333113215498 6.764585777445157 8.181499485525476 9.55714993578675 10.904494890417396 12.23557734775527 13.561091748187925 14.890767944125477 16.232187769663494 17.590703423358384 18.969264043763943 20.368949481979495 21.789332832543458 23.2273895833946 24.678449825116193 26.136905212815027 27.59661664272993 29.049441660328526 30.486562876862354 31.896667929082316 33.27092978588205 34.59598231819073 35.864913718759254 37.068094581817014 38.200169632218724 39.25377769255035 40.224040681946164 41.10592589455799 41.893696234620016 42.583172524075664 43.17351223140786 43.66940547506795 44.07814211750707 44.40485147489319 44.65603814085254 44.83801047731856 44.958504819318826 45.02226143051691 45.03474308433545 45.00394146633736 44.93524938339078 44.83370856145975 44.70855977846585 44.562148221676914 44.40423510532997 44.237261105689086 44.07115118893249 43.909424779641924 43.76024921007331 43.62820062507459 43.520986393860525 43.444961939521455 43.40687279304411 43.413496304658096 43.47116332526135 43.58775435005077 43.76953291478003 44.025101171527105 44.361539566904995 44.78617567647164 45.306954166016936 45.9322665268779 46.669986413514984 47.52738721779095 48.51243525061832 49.632283817539154 50.88568177331543 52.263760545418236 53.75640182876051 55.35176800005379 57.03734269562193 58.79786208695568 60.6189626833964 62.48422633191053 64.37652618165139 66.27855222617701 68.17452505436714 70.05799427796605 71.9265549577483 73.78009742621533 75.62026627357176 77.4492217356794 79.26781363350072 81.07961131333485 82.88673319460037 84.69012353427378 86.49105977167422 88.28748975712388 90.0789828873099 91.86027945812982 93.62795884454867 95.37438471012965 97.0929261440682 98.77436608911819 100.40887590004154 101.98848302739248 103.50263209695275 104.9454378862073 106.30709909974578 107.57971203992605 108.75768542063159 109.83242182540212 110.80409278545416 111.67929783142375 112.45899857673493 113.14799365350089 113.75265367883118 126.86492956249512 127.33193691249012 127.71544571895161 128.0202015703671 128.25095005522425 128.41243676201066 128.50940727921392 128.54660719532157 128.52878209882127 128.46067757820055 128.34703922194706 128.19261261854834 128.00214335649204 127.78037702426572 127.53205921035695 127.2619355032534 126.97475149144253 126.67525276341206 126.36818490764955 126.05829351264254 125.75032416687868 125.44902245884552 125.1591339770307 124.8854043099218 124.63257904600636 124.40540377377202 124.20862408170638 124.046985558297 123.92523379203152 123.84811145500574 + -12.390249102883855 -10.60781934424979 -8.77439666686671 -6.894737046856635 -4.973597932870104 -3.015736773557697 -1.025911017569967 5.6457645446937255 7.098609914640604 8.49820186857202 9.857953991288134 11.190983691264295 12.509075464170895 13.822878837569053 15.141706989064913 16.472818628096007 17.82123402549672 19.190067555842692 20.58084583667617 21.992368008666325 23.42170773765248 24.8646503543584 26.315472883035145 27.76649241349469 29.21162473996868 30.641811679571195 32.04442599251012 33.41089237647824 34.72787204613581 35.989203367017545 37.183990699883296 38.30813051122213 39.35435898099426 40.31620937964073 41.18899557487355 41.9692526365282 42.65102352859876 43.23379822155189 43.72207195564316 44.123117933018676 44.44218124707083 44.68593003179139 44.8624764636931 44.9759855313422 45.0324675564136 45.038648524521435 45.002239142132225 44.926866298907214 44.82064964679999 44.689397950767884 44.53848362929889 44.375149454234794 44.20413996810033 44.033637386586875 43.8685406579439 43.715762448794514 43.58117297498842 43.47146242860835 43.39419975037384 43.354849673518345 43.36110815391904 43.41884836359675 43.536389384160685 43.719696445624 43.977394778510046 44.31697582214918 44.745723295698205 45.27123040642728 45.90259541464109 46.64721837277351 47.5127608843283 48.507379944461874 49.63824380008892 50.904151485802196 52.29630548375565 53.80459838861401 55.41709746549877 57.12130799475201 58.90154695655481 60.74325135261279 62.629626323701096 64.54306436503963 66.46566527917142 68.38114957619972 70.28222358950481 72.1673778145515 74.03648204202082 75.8899708721305 77.72941274152842 79.55765198675697 81.37733352935278 83.19052503398687 84.99990054033775 86.80472160642562 88.60598446922099 90.401104315402 92.1873639719554 93.95988539739628 95.7129603228187 97.43890762954503 99.12925059660238 100.7734139095493 102.36329966964199 103.88795244380829 105.34021538586633 106.7118082393446 107.99296298901126 109.17887177856534 110.25964099267794 111.2371239518056 112.11490699743949 112.89522599916201 113.58529534339301 114.18748202507864 114.7050102931649 115.14557356614893 128.16496745922728 128.47366058183576 128.7078224585133 128.87219853610708 128.97153426146426 129.0105750814319 128.9940664428573 128.9267537925875 128.81338257746967 128.65869824435103 128.46744624007866 128.24437201149973 127.99422100546143 127.7217386688109 127.43167044839521 127.12876179106163 126.81775814365729 126.50340495302927 126.19044766602481 125.883631729491 125.58770259027503 125.30740569522406 125.04748649118518 124.81269042500563 124.60776294353252 124.43744949361299 124.30649552209421 124.21964354941717 + -12.028899643034249 -10.248159933719462 -8.417218286849563 -6.54079709874734 -4.6236202375525774 -2.6704115714051126 -0.6858949684447454 6.026446219699632 7.4601303959843674 8.84204596951126 10.185466227170565 11.503011550973198 12.80647001766588 14.1066784249296 15.412523243561056 16.73104997895808 18.06743461222191 19.425192165638002 20.805005856622717 22.2059075390243 23.625452342242042 25.059136011249564 26.500717504157596 27.943440926243024 29.379050168421454 30.80115654307282 32.19690678225816 33.553773009518586 34.86391787017329 36.11550845652391 37.30305476651967 38.41865094792992 39.45604020650224 40.41043500042911 41.275630522501764 42.04698842885402 42.720109974106485 43.29486935767712 43.775594782244184 44.169566135930495 44.482120936971626 44.71983076308107 44.888967504598234 44.995210622949664 45.04522258739658 45.04667381217673 45.00353112287566 44.922603921594224 44.81169345211607 44.67457968980441 44.51999099510685 44.35150460868495 44.1772432663031 44.00266813616237 43.83495836273822 43.678908626139986 43.542509497960545 43.43086212076497 43.35287305005751 43.312750112656985 43.319234915424296 43.37769655553074 43.49664585956681 43.68213005186987 43.94254612319047 44.285718122776245 44.71929504688302 45.250124725273125 45.88831936281901 46.64053425214895 47.51495495970616 48.52015997941427 49.66281098971558 50.94213759207925 52.34931765658095 53.874241544583576 55.50494284324941 57.22889768629983 59.029818449519716 60.8928903491346 62.80086613460132 64.73557934203457 66.67879700107679 68.61357690887935 70.53247160992197 72.43331111308767 74.31564585723805 76.18062289108398 78.02924900100753 79.8646213187092 81.68961835985093 83.50765524206442 85.31929335747935 87.12650869137354 88.92985977719981 90.72700586129092 92.51658300717074 94.29341201346395 96.05239684530527 97.78570251588121 99.48477472352828 101.13871981133607 102.73872016156973 104.27464899515081 105.73856888502146 107.1197618037998 108.41219400324957 109.6062151722016 110.69420523792002 111.67826888486285 112.5597035788368 113.34453345840718 114.035884973831 114.63604118351108 115.1542617588054 115.58998793547005 115.95030993235623 116.23877407006287 116.45877622841303 129.32445088441966 129.4269103733127 129.46860066611458 129.45426567835588 129.38864932556712 129.27649552327878 129.12254818702144 128.93155123232563 128.7082485747218 128.4573841297406 128.18370181291252 127.89194553976793 127.5868592258376 127.27318678665193 126.95567213774142 126.63905919463663 126.32809187286813 126.02751408796638 125.74206975546196 125.47650279088535 125.23555710976711 125.02397662763777 124.84650526002784 124.70788692246786 124.61286259459676 + -11.644938526261948 -9.866552851281101 -8.038797996607835 -6.1663596349516245 -4.253924909740414 -2.3061809644021984 -0.3278149423649403 6.4428948176008 7.8552860709002275 9.217307882540283 10.54192309883772 11.84166741644847 13.12846940022122 14.412687505586478 15.703077490178881 17.00716517813134 18.330075945713297 19.674628567142467 21.04172774871734 22.430768093647362 23.838733030680167 25.26147383308358 26.693357939819673 28.126755112107286 29.553303474238408 30.96620283375117 32.35317095137877 33.701422602777626 35.00279490933643 36.2464770589429 37.424644745519764 38.53241819070929 39.56146127359072 40.506376280129246 41.36357624696734 42.12745196477271 42.7929977154834 43.36023982242287 43.833455163022066 44.21989407569588 44.524976978249946 44.75529755748525 44.91716975920295 45.0179805734848 45.06293606202481 45.057598159408066 45.00863801243755 44.92370708847422 44.806922790368155 44.66620362071139 44.506744103721104 44.33449592260063 44.15666629267284 43.97911470414189 43.808731626649134 43.65053355103406 43.512241107045284 43.39999761733134 43.320995398287124 43.28122632765898 43.28787093081703 43.34791627892702 43.46850396852406 43.65697873624676 43.92065957877387 44.26817261304565 44.70686462121019 45.243715732110786 45.88942756649773 46.64993469197077 47.534204670355834 48.55072870961061 49.706059948286274 50.99974896610446 52.423121811023435 53.966006801305994 55.61604467737035 57.36072876270673 59.18330270974049 61.06868663594604 62.999132892000766 64.95584895125373 66.91951329570283 68.8728912565034 70.80839978716995 72.72370424192492 74.61869617336667 76.49294367262692 78.34840767193639 80.18880189566416 82.01754392789256 83.83656919238213 85.64862049432027 87.45600803216405 89.25892158749899 91.05664029178476 92.84778331007465 94.6275809512897 96.39138364436695 98.13186959388133 99.83974009084348 101.50438833856586 103.115560594866 104.66316629422924 106.13913168485797 107.53244523635294 108.83615842358768 110.03916889101467 111.13809256400278 112.12901613316691 113.0170479800206 113.80601744303763 114.49857730516047 115.10308295446491 115.61885956845654 116.0537657457964 116.41067828612277 116.69429238220717 116.91126767417998 117.06151606176338 117.15508509210483 129.91960457488608 129.90832282345752 129.84533197512528 129.73537308494775 129.58318720798331 129.39351539929032 129.17109871392722 128.92067820695235 128.64699493342408 128.3547899484008 128.04880430694087 127.73377906410272 127.41445527494469 127.09557399452515 126.78187627790251 126.47810318013518 126.18899575628153 125.91929506139984 125.67374215054856 125.45707807878611 125.27404390117081 125.12938067276112 125.02782650379704 + -11.238303789131088 -9.462948925953095 -7.639098603313 -5.771398658457173 -3.864496397863931 -1.9230391280116392 5.4446332565316755 6.895282977281319 8.283788037291108 9.623094012659918 10.926158492236773 12.205702734664401 13.473370819328592 14.739564123046007 16.01325223176157 17.30130758997362 18.6087033429943 19.938648383855504 21.291997936843682 22.667602220598937 24.06272792439792 25.47295567442828 26.893226218020665 28.316456580996775 29.734031009363385 31.135878036559923 32.51500739439747 33.85399949197129 35.1467633443449 36.38035269100435 37.55141689569813 38.649607204956375 39.669778440509695 40.60725012010254 41.45582448261961 42.21087033669758 42.867941080177 43.42707582005908 43.892736669059154 44.272042426258 44.57054161493311 44.794796257232925 44.95117158586532 45.04536964746423 45.08347879417352 45.07316952429122 45.019924653539576 44.92884842161255 44.80836242076784 44.66336816591014 44.49940754629504 44.32450687629451 44.14265023953089 43.963533140750734 43.78990035156574 43.63080553126936 43.4903869725345 43.37842327897775 43.298668310775234 43.25982521797858 43.267188733451654 43.32929512214573 43.45211424121388 43.64407381493365 43.911556374940275 44.26404620816922 44.708407355847086 45.25230174033049 45.90591297317677 46.67558633530013 47.57059200360441 48.59913834540637 49.7681265338234 51.077501286609454 52.5181399245802 54.07986301881142 55.75022344011502 57.51658488415331 59.36189835011682 61.27047584593265 63.224068379774224 65.2031286058553 67.18754739486545 69.15955459401344 71.11135579746916 73.04035628579229 74.94584447553143 76.82675560195358 78.68739914782938 80.53082343157516 82.35997939166617 84.17767648433731 85.98766687139144 87.7924240006272 89.5929305581926 91.38914675425876 93.17984310060606 94.96134553339664 96.72907647793977 98.47648099736834 100.19322241600213 101.8690414242598 103.49220761352883 105.05351082670909 106.54125816335481 107.94923150103139 109.26417872198297 110.4811892883468 111.58949299616837 112.58978302232964 113.48568392851354 114.27995568102905 114.97883147440224 115.5834646035319 116.10233473886431 116.53615189172484 116.89173182774691 117.17357703986913 117.38350793319516 117.53225061681319 117.61783821789675 117.65000332086267 117.6285210173405 117.56287242186382 117.4519717069275 130.03964006866025 129.85239580703018 129.6320144291111 129.3832328608544 129.1107880282115 128.81941685713363 128.51385627357237 128.198843203479 127.87911457280487 127.55940730750139 127.24445833351992 126.9390045768119 126.64778296332868 126.37553041902159 126.12698386984206 125.90688024174146 125.71995646067118 125.57094945258261 125.4645931902706 + -10.808933468205824 -9.037298986753832 -7.218082914136528 -5.355888172251668 -3.455319150353453 -1.5209802376961223 5.953605589465079 7.378013441576299 8.74157542921064 10.057030063704564 11.337513592592249 12.595412746038265 13.84236767424604 15.088801795641823 16.343426037125898 17.613296274691958 18.903467142090765 20.216859600540257 21.554480041649906 22.915513132068185 24.2969071234245 25.694114948243882 27.101436095761894 28.51309658633419 29.92068223338293 31.313705731271256 32.68175862888272 34.01263405179203 35.29504265843497 36.52073108279864 37.682177811863085 38.771653370528014 39.78363597316159 40.71183065054073 41.55145604519231 42.29911995741979 42.94880126214041 43.50050100665494 43.95876121639701 44.330728011269215 44.62193072989204 44.8389435808518 44.98824572655241 45.07716467354544 45.110672811689895 45.09466343975969 45.035326081146174 44.941091717012405 44.8159823273716 44.666601883781425 44.50008887441978 44.32066578797209 44.137775767508955 43.955103861469404 43.780638923023304 43.61920415960755 43.47903856150859 43.365970290321805 43.28723132931564 43.24853692090381 43.25804970677525 43.32181090583986 43.448109250247775 43.64338731356627 43.91589101077313 44.27330925928836 44.724416359963996 45.27575912169981 45.937937467557006 46.717730031408045 47.624003079629944 48.66563610460565 49.849523545926694 51.17535424369898 52.6342290061865 54.21607938689692 55.90812936166046 57.69745674228931 59.56686063516538 61.499651616559305 63.47717139949654 65.47912091006218 67.48439252230332 69.47450107722449 71.44152899705028 73.38269675327307 75.2960638030789 77.18286561118416 79.04649724082454 80.89029251030902 82.71671580490342 84.53067777992405 86.33584993449205 88.13522884382633 89.93089370010763 91.72331261999881 93.51170002507881 95.29348648744033 97.06485080379142 98.81907022828806 100.54513075306718 102.23170671656347 103.86822804617438 105.44343679932228 106.9468121601599 108.36791617288253 109.69860055005671 110.92795005511074 112.04844197863805 113.05946016074934 113.9642414047205 114.76743070429737 115.47118867936416 116.08234270031268 116.60204445274374 117.03858684849313 117.39380254978863 117.67335084537704 117.8836176588218 118.0257471171527 118.10908644302928 118.1333725212234 118.10894415571109 118.03464179138878 117.92062201321009 117.76642174954486 117.57935570558574 117.36299828835769 117.12056770808651 129.57425109514062 129.28503944880666 128.98127436493309 128.66768743225003 128.34901023948768 128.02997437537627 127.71531142864595 127.40975298802695 127.11803064224947 126.84487598004364 126.59502059013968 126.37319606126782 113.63039439267402 113.49135410222382 113.39321918147758 + -10.356765600050291 -8.589553862701704 -6.775713736249891 -4.919802179322794 -3.0263776156393 -1.0999984689183357 6.50326468296794 7.898371009590548 9.234202152300252 10.523381630351734 11.77842759130092 13.012135800482225 14.235956048075918 15.460103162378655 16.693495502031983 17.94306704760303 19.213856417957267 20.508991668037787 21.829431708980252 23.174208367032772 24.540701689399945 25.92420592219264 27.31866976253659 28.716987093479776 30.11408483438463 31.49755205769891 32.85508239582757 34.1767698483561 35.449813727282915 36.66654434343276 37.81876127290717 38.899756127422 39.90242609903538 40.82207623293012 41.65436392569417 42.3934259585519 43.03481041563812 43.57855918354528 44.029305949852215 44.39420356001925 44.67880749197945 44.889650742874394 45.0333481288155 45.11555649146013 45.14277606003984 45.122479860032925 45.05919690604646 44.959233209228245 44.83076540222116 44.67804028909122 44.507332129293104 44.32626431000996 44.13983576706477 43.95618883027608 43.77937285090254 43.61756237152394 43.47661703580977 43.364159825229926 43.28555185669829 43.24864330637738 43.25963553934298 43.32650768585186 43.455848073097684 43.65569767109577 43.93306938705889 44.29644915969226 44.75461492302033 45.314148170436354 45.98576650275768 46.77610165506388 47.69478685560228 48.75042798770757 49.94995756716255 51.29350745258206 52.77201869996141 54.37517521359298 56.08998235654019 57.90335906487831 59.797944602023236 61.75596162888289 63.75822923745345 65.78355407228617 67.80977982692546 69.81767660439778 71.79914947831301 73.75122386709302 75.67073679854776 77.5613489850443 79.42553575961419 81.26639428812508 83.08761371468125 84.89487120719566 86.69221439428301 88.48346348221105 90.271543882692 92.05773251924006 93.84206105525661 95.62362226881409 97.3978923492771 99.15829508356265 100.89378860361741 102.59229187339778 104.2420874217678 105.8320398273666 107.35162396605122 108.78912887639603 110.13526612289864 111.37948645901773 112.51454806577709 113.53866404908574 114.45475107033258 115.26659530198951 115.97850027175993 116.59469185174677 117.12067221230753 117.5585875658347 117.91620394196056 118.19644068651372 118.40423955902997 118.54557168437205 118.62450320647713 118.64735794101067 118.61632435302467 118.53915702106457 118.41781393359743 118.25913449767785 118.0673644373749 117.84450501608555 117.59950827455324 117.33237457080853 117.04916116266608 116.7546765209546 116.45289208046565 116.14772263263028 115.8434806066486 115.54388413382854 115.25397508385733 114.97859282947402 114.72120016871438 114.48626482810701 114.28167068644956 114.11027262704991 113.9755216310481 113.88688013424468 + -9.881738221228641 -8.119664382815095 -6.31195387682456 -4.46311468265823 -2.577656242151791 -0.6600879971409612 7.0864433417442765 8.45154584455146 9.757548785834592 11.018101327003338 12.245927527436132 13.45316713804845 14.651821264563058 15.852091674883537 17.062535215643116 18.290318823713587 19.540396093479846 20.81568920334074 22.117232395880443 23.44395618580913 24.79400675099894 26.16286470337355 27.54405280011781 28.930285381319077 30.314616125997123 31.688178941474753 33.03534723947475 34.347461461035174 35.61102249625789 36.818835780784475 37.96249477092498 39.034195395992505 40.027949333952044 40.939903943563024 41.763523801347176 42.494153747198936 43.12736409171531 43.66325330965078 44.106506009568875 44.464324097564734 44.74226960138431 44.946846856148156 45.08476433241589 45.161707267588476 45.18379848141163 45.157130679209196 45.08985927099934 44.98661096758736 44.85306623242022 44.69738972391594 44.523957784855696 44.339519898105 44.15204060215629 43.96552741233887 43.78833011684809 43.624941129023114 43.48484999432121 43.37216969595587 43.295107149223625 43.25934289230343 43.27312571921988 43.342670310194045 43.47622148121319 43.68050043458064 43.96369070798928 44.333275073983835 44.799201094928506 45.367621793646215 46.04917598764956 46.85114028311542 47.782893865087 48.85342632193445 50.06984136052424 51.432135578556256 52.93134046652611 54.55710251592461 56.296079848635955 58.13483349249407 60.055732167971875 62.039948938483484 64.06773647039572 66.11690925753815 68.1641550393981 70.18941487275558 72.18440666639258 74.14478730769261 76.06968885846415 77.96180850818254 79.8238823462714 81.65859177736415 83.4718212893094 85.26916276397249 87.05540717099132 88.83557377839807 90.61333631609294 92.390663045315 94.16984526722598 95.9490149580014 97.7250301861768 99.49127175766354 101.23626113184444 102.94724353155435 104.61183502753009 106.21785909222268 107.75419344625152 109.20984503540592 110.57301398540676 111.83480565737504 112.98575196887397 114.02367193296688 114.95307200198853 115.7763060783005 116.49819173695288 117.12201415888022 117.65374746980585 118.09732632130097 118.45702650543676 118.73920952926352 118.9479245079229 119.08937298582819 119.16676337935804 119.18661354516043 119.15314116083731 119.07198862273498 118.947101433114 118.78467986584411 118.58653732890203 118.36174995622937 118.11194287526946 117.84103594317503 117.55615240826319 117.2591130998767 116.95540804994457 116.64836020782124 116.3426020555356 116.04428309783813 115.75625811972935 115.4830547521693 115.23014442522965 115.00149849190102 114.8011758111103 114.6337395208341 114.50792954035111 114.42573254312259 + -9.383789368305019 -7.6275813761124045 -5.826766143032016 -3.985799685245671 -2.1091394783212554 -0.20124299782669416 7.706397143446515 9.037912017336351 10.312195263199833 11.541821576461587 12.740137913805555 13.919179885940249 15.090498836819354 16.26467256814445 17.45028786037565 18.654222564251054 19.881785426900187 21.13594668775933 22.41759192451807 23.725938755172223 25.058029073685475 26.410011052995753 27.777418161972086 29.15128633149126 30.52308564712437 31.886280841893523 33.223955028634904 34.525877461322175 35.77991858841337 36.97891803052263 38.11364805953431 39.1763849672564 40.162092475137015 41.06544150168002 41.88065762329584 42.60307789745184 43.228439309057904 43.75721860961602 44.19332784361646 44.54405559308458 44.81494731974067 45.012553054337005 45.144481569248065 45.215992668077625 45.23311799237522 45.201969377743545 45.12918683369985 45.02223865380834 44.885516285630146 44.725450192390966 44.54963790881347 44.362889829584184 44.17320539522971 43.98565830579734 43.80673932561798 43.64370240415804 43.50311362303213 43.391634784954256 43.315310375536626 43.28195892746035 43.29797515813753 43.371314188980904 43.50878516665729 43.71844834128867 44.007481842528456 44.38403215396045 44.85812367414808 45.43605652661893 46.12833311660252 46.94249913453285 47.88833243704112 48.97470037806357 50.2088994930998 51.59114281997719 53.11235571864695 54.761928635914614 56.52628007719208 58.39166647574159 60.34015020703678 62.351661146144004 64.4057236958837 66.47916556237173 68.54741810930535 70.58950678400986 72.59695443889825 74.56401159465044 76.49223145385548 78.3833587306359 80.24031759459146 82.06590716912393 83.86796373183327 85.65206183593602 87.42377377478859 89.18949929315382 90.95370254381453 92.72059723915174 94.49181196497429 96.26663091424714 98.04327447425547 99.81518959863679 101.5694692144719 103.29335561553626 104.97376709877085 106.59736183643004 108.15193166129538 109.62684924033222 111.00951798546781 112.29010970068974 113.45808670007015 114.51253988609476 115.45640327195267 116.29343705666182 117.02681138031117 117.6614140582016 118.20001826023534 118.65102111530129 119.01537456143686 119.30154468428337 119.51283692223775 119.65383045970944 119.73174700680465 119.74960547259208 119.71563131187085 119.63090978087733 119.50495344456563 119.33863721854823 119.13998540734136 118.91133049083102 118.65758076906108 118.38549937520432 118.09812591816252 117.79890943316356 117.49413372364987 117.1883115408286 116.88467626838751 116.5872946489805 116.3014497897064 116.03192981319769 115.78233288365386 115.5572364412893 115.36314176102 115.20510117344347 115.08597234870497 115.01284328871805 + -8.862857077843566 -7.113255671612014 -5.320113342043723 -3.48783119007279 -1.620811772578009 6.996095081077123 8.361326422359495 9.657811134374077 10.898358876695 12.094762167673823 13.261055970639188 14.409549958308444 15.55116284497721 16.696971611216004 17.855620956009133 19.03375104859765 20.23700506329274 21.46847101568875 22.72898777845591 24.01786695659328 25.33227909964594 26.66746843075186 28.018599457351254 29.380068116192938 30.740949493047644 32.09207612044834 33.42045511161758 34.712170353732084 35.95760441265631 37.1475532550561 38.27336597491698 39.32753130509714 40.30504253913304 41.2001316031029 42.007256465330734 42.72173156283493 43.33963660021644 43.8608460996698 44.28961589752013 44.63338826383756 44.89766645955127 45.0890301411469 45.214196489415734 45.28011868287011 45.29208503353318 45.25628525370104 45.179121180012004 45.067680343936246 44.9275202616888 44.764195169321106 44.58516896146181 44.39670348998034 44.204553384172165 44.0159046433144 43.8357868187994 43.6729410568547 43.53257881040509 43.42190423224544 43.347154026432804 43.31589852782665 43.33494407082563 43.4119141655369 43.55406451229114 43.76912619951249 44.06473881832684 44.44872401293006 44.931403652194234 45.51933059700537 46.222945093315936 47.050150373860426 48.0107728524914 49.11391473781012 50.36700355010888 51.77023885967046 53.31463132492971 54.98939678680895 56.780348190556566 58.673582345338176 60.65079323658376 62.69060124822617 64.77164968054082 66.86972465541592 68.95889159059955 71.01717148005072 73.03505393370465 75.00784771943404 76.93715170854433 78.82461062417981 80.6727084438841 82.48645788094494 84.27365148617059 86.04062129141509 87.79463400003212 89.54275422852265 91.29049160764403 93.04344104555572 94.8039657458828 96.573022332912 98.34936789783988 100.12559078396635 101.88956859439095 103.62681406137979 105.32330116780878 106.9657998859674 108.54092386374468 110.0354577245217 111.44013727290516 112.74057467977197 113.9284882480331 115.00201124379085 115.96297215021198 116.81498110661757 117.56133485854042 118.20813882033484 118.75801257670875 119.21606952224647 119.58866751434238 119.87920673270854 120.09415358717322 120.23861479037699 120.31857306730042 120.33788412501656 120.30297772466702 120.2185324465367 120.0901361399039 119.92236302496109 119.72101569042722 119.48989309140208 119.23669209609083 118.96251973914016 118.67276626476189 118.37464014053154 118.07058092714179 117.7644404797698 117.46111288745641 117.16666456060089 116.8841501436076 116.61821286333787 116.37437402695366 116.15689777128807 115.9698377925108 115.81788074906055 115.70775559759201 115.64427377098531 + -8.318883146528147 -6.576641810466717 -4.791961939016434 -2.9691867980236513 -1.1126611054441398 7.722028913650388 9.04757511259601 10.305807157797064 11.509806083956803 12.671102022750913 13.803638603504208 14.91986702820506 16.030372400833254 17.146508386590707 18.276968076037484 19.428151731145952 20.60578930717949 21.81294736424053 23.050339644475645 24.31889098863717 25.61500145899096 26.93376244448543 28.269123816858862 29.616461370787412 30.966673015608027 32.30570329229964 33.625255125142026 34.90687987059881 36.14421431281472 37.32524857112634 38.44257012150127 39.48860632964551 40.457950768634575 41.34516818644006 42.144551049853824 42.851376465801934 43.461486145697556 43.97529423840701 44.39679673264905 44.73365508563004 44.99130077104782 45.17635420033154 45.29538326090283 45.3554674960563 45.36212276138416 45.32161157975819 45.24000895007617 45.12416183164205 44.98030098508684 44.813802963070586 44.63159641758608 44.441206090382025 44.24707040277477 44.056985607655996 43.87621233771782 43.71324973421244 43.57341250333623 43.46349944435244 43.3905484108296 43.36151119037851 43.38381095858075 43.46465344804259 43.6117292538432 43.83255678898842 44.13502739533926 44.52696566319841 45.01856895369823 45.617152919783855 46.33262415018354 47.17356757018128 48.14978929289086 49.27054328425209 50.543559494625526 51.968851776564684 53.537583328574414 55.238726464980374 57.05750842501367 58.97980316792376 60.986865708020254 63.05570735793616 65.16436376929379 67.28737415376541 69.39728586755857 71.47102410926406 73.49769976745004 75.47467948790353 77.40269075133982 79.28365333726411 81.11965834538702 82.91803706871934 84.68662232090176 86.43248027397696 88.16460983738386 89.8908913922426 91.61904430728374 93.35508342430852 95.10267801038715 96.86374220769838 98.63824830668628 100.41964687414287 102.19302853227117 103.94330308904338 105.65564458580869 107.31766361902393 108.91435479000091 110.43151901766095 111.85862383201487 113.18126998012241 114.39185145588685 115.48554957273537 116.4658339992615 117.3353890555817 118.0981197801126 118.75778307101906 119.32067631215423 119.78949716555422 120.17100352369484 120.46849023372003 120.69045932093586 120.83965552550613 120.92235032771377 120.94425656989141 120.9103405271824 120.82723472842353 120.6986451121392 120.53174622208476 120.32961513389127 120.09895802347246 119.84357711777868 119.56883908233283 119.28129789627583 118.98277132950663 118.67812074680343 118.37465254812425 118.07528751692365 117.78372771337015 117.50531847865676 117.24511573081149 117.0067602485156 116.79495150117181 116.61495441102943 116.47369086782949 116.37362676202943 116.3200873354727 + -7.752361184186455 -6.018239010811353 -4.242814998345046 -2.4303717273194443 -0.5851932261477284 8.478272140246933 9.76378452189262 10.982857738410468 12.148678682557641 13.272259995251906 14.368364194218824 15.449552957993912 16.526706206179362 17.611179082847546 18.7115074663077 19.83426247858268 20.98540995560053 22.16792981283829 23.38241485578464 24.628570694800956 25.904704111639113 27.206917748674623 28.527960001651483 29.859656817583204 31.1997426697549 32.52899238377729 33.83817762280397 35.11048843755141 36.33984582308681 37.512501746104505 38.62158523063599 39.65997078237103 40.62136157923447 41.50112572600036 42.29314164784043 42.99263522494675 43.595144688823446 44.10140130911918 44.51572854226086 44.84573804293049 45.09675504408671 45.2754461843587 45.38883062581908 45.44302192170612 45.44421873060981 45.39860945058419 45.31234259357488 45.19235282871688 45.04454504420697 44.87462149361372 44.68984435425772 44.496954717479845 44.30093155083485 44.10930542762754 43.9280575313088 43.76488965786077 43.62545243310993 43.51653120061391 43.445324418710406 43.418757981343056 43.44434112465389 43.52934277384115 43.681471160227126 43.90839743442962 44.21796549246331 44.61824751045752 45.119126001325704 45.728843960870606 46.45669642516448 47.31197488628763 48.30450388211537 49.44370573155191 50.7374462794107 52.18583577740992 53.780032844272604 55.508447175569096 57.35623041414518 59.30872876522858 61.34645348332602 63.44485793162602 65.5817010507124 67.72983874116356 69.86021432668575 71.94827468906766 73.9817738689407 75.96048678693533 77.88433015669588 79.755556455233 81.57592598440948 83.35518174017737 85.10130007764268 86.82219650175203 88.52870069744682 90.22963654285022 91.93477334979345 93.65055834969549 95.38205250281074 97.132740706381 98.90495149777458 100.68950889396046 102.47168761937537 104.23500925348148 105.96472728458811 107.64608970410333 109.26524614481905 110.80677706921563 112.25767826298446 113.60555336983955 114.8397584148374 115.9559166490694 116.95788246394659 117.8473487009098 118.62882956209508 119.30545714817173 119.88214743116399 120.36492213281234 120.75689687102359 121.06551912514553 121.29497715232311 121.4506620965438 121.53871484912939 121.56551521283264 121.53510818563055 121.45464804397685 121.3278819058796 121.16192637653535 120.96093857576534 120.7318700409049 120.47733911556112 120.20453825453916 119.91662357392154 119.6195139695608 119.31915105250285 119.01793855378436 118.72091249044921 118.43414175098495 118.16091095199089 117.90599302593989 117.67465944529144 117.47201510369928 117.30189676270216 117.16912214656392 117.07898102578349 117.0382366927341 + -7.16484961078508 -5.439597536098275 -3.6742110501625307 -1.8729093395324887 -0.039913034028074 9.259244079156463 10.499475062339952 11.676117968384487 12.800654927134334 13.885683947028225 14.945211240636889 15.990404294311032 17.03365698107596 18.085709571786033 19.15439798217667 20.24757298260823 21.371358234936785 22.528147819654404 23.719619404120273 24.945045633532395 26.200831652152498 27.48462865541778 28.79180805347526 30.111530785086103 31.438678161392094 32.75915956187177 34.05808874337924 35.32289432937722 36.54362091844426 37.70847809475353 38.80973546163705 39.841042972778304 40.79550121159465 41.66754438719373 42.45258320570735 43.14507865598846 43.740534216616915 44.239712666436425 44.64671390897732 44.96988933976905 45.214423286610106 45.38703256659282 45.49426085599544 45.542514894906155 45.53809846361423 45.48724413076867 45.39626241559847 45.272123538561615 45.12018037436577 44.94663696355859 44.75942824991918 44.56385615004253 44.36586331052398 44.17268921245275 43.99100827495185 43.827610586240056 43.688501696255706 43.58066482321562 43.51119622880483 43.48721286257575 43.51615082160442 43.60545238342289 43.76279362007218 43.995995512418176 44.31292125891763 44.72176645422838 45.23227761320493 45.85341347253357 46.594156495717236 47.46428976351379 48.473642454780865 49.63206759423708 50.94704110565303 52.419464580114834 54.03988261551905 55.79633271544704 57.67411624276168 59.6574739150715 61.725856250005286 63.85482096039684 66.0201894450887 68.19281111730308 70.3421357545678 72.44240105914395 74.48217930043897 76.46074146172504 78.37800371641092 80.23579599814937 82.0371745336559 83.79329175964652 85.51254680709293 87.20451179189965 88.88120055044386 90.55306672063351 92.23102320102811 93.92283675879631 95.63471994830311 97.37418620865672 99.14124409813472 100.92753916239458 102.71759361077696 104.49395729213425 106.24107619328854 107.9434275674311 109.58504950284782 111.15206695723097 112.62898723849928 114.00342859327759 115.26313523277491 116.40433105574581 117.430222216909 118.34236961864235 119.14537283668504 119.84144120434067 120.43597620862731 120.93406214561054 121.34063975387919 121.66149202528777 121.9010619363114 122.06676181593885 122.16328380907333 122.19651238434561 122.17187468090611 122.09585561296565 121.97342930589915 121.81065366461496 121.61267962927289 121.38504937968527 121.13295884610223 120.86292103530678 120.57780130331754 120.28427589746256 119.98583975137721 119.68884109574932 119.39687263108813 119.11519427162335 118.84805378419873 118.60107090473198 118.37785065586569 118.18322497990393 118.022049005176 117.90066299937321 117.82359742374048 117.79502991336956 + -6.558030236316725 -4.842389443893728 -3.0878086121765165 -1.298440975022081 8.780480041614616 10.05263055980577 11.249369563218165 12.383873225061715 13.465926172206043 14.510309315779546 15.530008043398542 16.537568615254084 17.54571540671627 18.563768552621553 19.600951941338604 20.665036221555585 21.76037967352168 22.890489235564278 24.058253712128103 25.26261002630397 26.50023196610431 27.766464868989253 29.057919892072967 30.36696318522566 31.68143911553265 32.994144046522564 34.28343868908372 35.541472953785714 36.754282898437076 37.91180993747632 39.0061895176956 40.03099432275956 40.9788395171862 41.84399241345647 42.62191477889713 43.30775114634766 43.89643150329037 44.38896829628671 44.78918644836111 45.1056916037325 45.34370382714274 45.50992208787518 45.61094578498348 45.65323534440493 45.643146238700496 45.58701386001132 45.491711955924934 45.362852228833006 45.20665210898081 45.0298002054079 44.83973868444528 44.641374860160404 44.44147924484927 44.24657000699852 44.06447059165243 43.900779956350284 43.761988662089024 43.65521039981392 43.58752865416112 43.56626997597602 43.59894222878402 43.69234909584805 43.85488807652602 44.09439898502031 44.418960769506874 44.83642650227741 45.35692877015756 45.98957855873234 46.743696217149925 47.62869193716657 48.65561267421805 49.8335036650828 51.17037628964966 52.66764039314306 54.314098851740006 56.09974125778616 58.007842078934 60.021695382881106 62.121802575669534 64.28142035140519 66.47375319206066 68.67032178858658 70.83857665504901 72.94941560790356 74.99255162822895 76.96753707140368 78.87451953302165 80.71542472844062 82.4949651428339 84.22443759780118 85.91285216145539 87.57164866982552 89.21425140310667 90.85291631103568 92.49975481303984 94.16375637409632 95.85410797291344 97.57895020986115 99.33859833420199 101.12486470834558 102.92149621156403 104.7108573980558 106.47500326915711 108.19836037329405 109.86442367599228 111.4570031807982 112.96169331710546 114.36436966961834 115.6512787026287 116.82130923734546 117.87363918539562 118.81132818729614 119.63722668161675 120.35600423456735 120.97195293516067 121.48779736540513 121.91232380301733 122.24803316628062 122.50202221879779 122.67990942219063 122.78686484335879 122.82914567901382 122.81271735915202 122.74358694086439 122.62752259601173 122.4702268159907 122.27752093380779 122.05450205917242 121.80712835574468 121.54005910673219 121.25916163188184 120.97039910062769 120.6770030995087 120.3848545784268 120.09861030879392 119.82388075443947 119.5642418117005 119.32460552398608 119.10988243948735 118.92601717780975 118.7769241312601 118.66740119960957 118.60245542925934 118.58822582608714 + -5.933584870774102 -4.228286791763942 -2.48526620209463 -0.7086079741475153 9.633064763107745 10.855125883257259 12.003770143962376 13.090429337680108 14.129369494416533 15.132997699259231 16.113187084334875 17.08415676405904 18.056101653439914 19.039844370123316 20.04547714313391 21.079273378237474 22.14717831082549 23.252859387760534 24.39629555300498 25.577850477613005 26.798401532147583 28.049091381141018 29.324033917859406 30.623285571892083 31.928464786306883 33.23199485685204 34.51276961094112 35.764499770274085 36.97003399408107 38.120893627641586 39.20949425491798 40.228205785490694 41.169653852218225 42.02860221195978 42.8004430588837 43.479546902169105 44.06146141517003 44.54764061295579 44.94142330022709 45.25127729538187 45.48290900853775 45.6428357526976 45.73771700552562 45.77407150918438 45.75864800923506 45.69759846187023 45.59713178605318 45.463510020469556 45.303145704608134 45.12327932161394 44.92979524882711 44.728684018553636 44.52664805106946 44.33058138313825 44.14758661451857 43.983441237077116 43.8449701934746 43.73917504481702 43.673411675530495 43.65519125113311 43.6914131587957 43.78905493016984 43.95659115907176 44.202395874327436 44.534772572721906 44.960877454825265 45.49158823770208 46.13580401755234 46.903652083748156 47.80352027221303 48.848553741257774 50.045498711441276 51.405200731345154 52.92636654004728 54.600249323572775 56.414892004999004 58.35260872154241 60.39838455648509 62.52884160546921 64.71774104293644 66.93804163153233 69.15698208814594 71.34108148630904 73.46028093349118 75.50586081696991 77.47422804379646 79.36735547525839 81.18721448141503 82.94044029589327 84.63880613521827 86.29223600168848 87.91419166697747 89.51866919090331 91.11998766791446 92.73174229021147 94.36496657739653 96.03090120577478 97.73768683414075 99.48737124557135 101.27148689804494 103.0729990857926 104.87412693978314 106.65558069286581 108.39953884028654 110.08972093996934 111.70983813372057 113.24306877354404 114.67589083587282 115.99291446089553 117.19351462087737 118.27473420670074 119.24169237116266 120.0938850412278 120.83792520501163 121.47783339399626 122.01671218741038 122.46152360128298 122.81597342461949 123.08729946507731 123.28049096046158 123.40088267506911 123.45601593290405 123.45121531746851 123.39195818572342 123.28472874362738 123.13518908614928 122.94929916528568 122.73287548507184 122.49215170258066 122.23151669403629 121.95713046966722 121.67335991921883 121.3862710422203 121.10154818786674 120.82271893486597 120.55482492369916 120.30339557166413 120.07407164954422 119.87037297944838 119.69725768172025 119.55971865139924 119.46293404369868 119.41259897228443 119.41339425464409 + -5.293195324149948 -3.598961637275191 -1.8682423376245276 -0.10505167726811471 10.47701978273505 11.650027881461325 12.75127361554939 13.793680025326152 14.789437066919836 15.749559031414071 16.68997097356317 17.62171126831546 18.557742748794517 19.508910295086206 20.48195514275068 21.485987763815682 22.526647194331506 23.607030101968252 24.729092863873102 25.89129951289024 27.090507920448854 28.328001708479807 29.59158492917814 30.877388647611888 32.17600185038507 33.46961108947801 34.745117242497365 35.98935464938184 37.18871105485629 38.33353389383552 39.41729164682913 40.4303981827377 41.366257259309585 42.219285898986094 42.985459195864685 43.65874733029334 44.2345014507858 44.71443605070467 45.10190632500803 45.40519834184791 45.630633780965596 45.78449367147979 45.87350006494217 45.90422969301211 45.883148563664996 45.81664444265029 45.71105722019966 45.572898658597865 45.40847094289573 45.225155247009 45.02831373128501 44.82448410930224 44.620059699446266 44.422933512359045 44.23885398931057 44.074351520625044 43.93599625481853 43.83130740950654 43.76772852338099 43.752289638277645 43.79164729658585 43.89392538372433 44.066333596748855 44.31855763593361 44.65808401210786 45.09355833051784 45.63363905106131 46.290346462927076 47.0708278611502 47.986780823428376 49.04855097406839 50.26601447806334 51.647276314711775 53.193416911031335 54.89400310200252 56.7368301371493 58.705415547837134 60.780305621116646 62.94154750082692 65.15920543849772 67.40398833292845 69.6446929278324 71.84329072317567 73.96740865779825 76.0108559286352 77.97112695416213 79.84666024053014 81.6415406831032 83.36435614910961 85.02745491380051 86.64163212647534 88.22229269387691 89.78412639928517 91.34400846921858 92.91674693537557 94.51522550576325 96.15370178412364 97.84005922788322 99.57698210602598 101.35646336352455 103.16074700879484 104.97123242803484 106.76918347359722 108.5345429236916 110.24840088464316 111.89536881488861 113.45987317793805 114.92224562588562 116.27405970349642 117.50543473820682 118.62022878126197 119.61731566641178 120.50120597315387 121.27481760216519 121.94131174163445 122.50749108052074 122.97593223650479 123.35370444432415 123.64596354561584 123.85816203152838 123.99688294866056 124.06817849329325 124.07792774732968 124.03172431404104 123.93660286199501 123.79821718943141 123.62247013533879 123.41548741932299 123.18277405940255 122.93011635545142 122.66407812206683 122.38900901635427 122.11048399505212 121.83324540350432 121.56291772703524 121.30554311533757 121.06469493173968 120.84542554777215 120.65278254869456 120.49182202684929 120.36841396250354 120.28670508646631 120.25183029581261 120.26901326205909 + -4.638543406436928 -2.956086037993674 -1.2383955364738015 10.10922521188393 11.312293931621506 12.43501017008508 13.48690775006069 14.48037025432155 15.429756816891244 16.349608278144558 17.249247945239112 18.14438439031726 19.04519760606837 19.961677500813284 20.90500604893123 21.880874508819566 22.894656457608516 23.95037365603103 25.05055834878734 26.19457790539978 27.378537691917245 28.59877943899826 29.85281214309332 31.12651612987186 32.41922528496269 33.704933380426 34.97541803294623 36.213824593775875 37.407159470040796 38.547872709639364 39.62670885828078 40.63490921529243 41.565842341368956 42.41372507959169 43.174691712073276 43.842447664295456 44.41255334465391 44.886694815423425 45.26834863749868 45.565376434569444 45.78484585517479 45.93273419897029 46.01583168217609 46.040782235951156 46.01411784227248 45.94237930456207 45.83191140767814 45.689069674054025 45.520873858198534 45.33372919983697 45.133538963396155 44.92681495675263 44.72031173194773 44.5217771749711 44.33672794163957 44.17145706067831 44.03351263827266 43.92994244412203 43.86850063178626 43.85542978120393 43.89825273135972 44.004685231013426 44.18242857504711 44.4403483981273 44.78758094183997 45.231534965101055 45.781762259996974 46.44977101514261 47.24392035517964 48.1745457289622 49.25410695315354 50.490481762898085 51.893993169917245 53.463916110952496 55.19066156115169 57.06161823068957 59.05812467324333 61.16365098557676 63.35217809246095 65.59754993482706 67.86558066214609 70.12383805033132 72.33513034235402 74.46136806681044 76.49912029543172 78.44594232955984 80.30118487809993 82.06705895379636 83.75534128210396 85.37905027314517 86.94991148856748 88.48423002826941 89.99933061563893 91.51380592414166 93.04368790588042 94.60355737099762 96.21025153077775 97.87181417447387 99.5937340409974 101.3671667836316 103.17261554332673 104.99027603097403 106.80151620557179 108.58691091550111 110.32673261660688 111.99953409744259 113.59512688135624 115.09076721966369 116.47598626504121 117.74365993488111 118.8926582260967 119.9252942016381 120.84429914289659 121.65006794292111 122.34918349622168 122.94610085493008 123.44303661464129 123.84845547294559 124.16628448046046 124.40205761478438 124.56275817901995 124.65437308764845 124.68227003516965 124.65311237474076 124.57377610962622 124.44990592492101 124.28750938236367 124.09325848650869 123.87242830937885 123.63126641957969 123.37528750788047 123.11014564200146 122.84205582979999 122.57600966923962 122.31695685254815 122.06997932891628 121.84023136804176 121.6336320879536 121.4548176930044 121.30842283886719 121.19957471253825 121.13343958796669 121.11534795865848 121.15069345300118 + -3.971310927627803 -2.3013320514856743 -0.5973843163501213 10.97809610939489 12.124536016018318 13.192393997679682 14.19393231156692 15.142137278350251 16.048786170633235 16.925154514297788 17.786394529388122 18.643132941727263 19.50945642842163 20.395207383060463 21.307060108939645 22.25555459245555 23.24571890731138 24.279132617001093 25.35814230865718 26.483814390399193 27.65366894514877 28.86048438540639 30.10392045639359 31.371434696257502 32.65565634350247 33.93498148316664 35.201259809562174 36.433679870047946 37.622759921007216 38.75988584650294 39.83462534019675 40.83866119711905 41.765116561608 42.60862906494901 43.365051733974695 44.027785173241355 44.59283075820572 45.06140350730197 45.43758105331763 45.72857407852453 45.94235709247388 46.08453326699898 46.161964488906726 46.181363347639085 46.149327684289965 46.07237314216206 45.95696371886358 45.80958576757665 45.63761082404808 45.44665290464787 45.24319843975184 45.03340493197485 44.82524367522329 44.6252048586419 44.43857272257287 44.27307478831326 44.13504523452981 44.033167252646976 43.973365052769445 43.96261744803568 44.00885103258671 44.11922687701004 44.30224184098427 44.56566020023174 44.9203201289492 45.37275821158284 45.93245491266583 46.61206791216202 47.41870544934975 48.36459628018565 49.460263320929876 50.71617876817171 52.13999624916586 53.73385333695515 55.48498252052761 57.38288225424297 59.40649370032821 61.53888660688788 63.754623675790185 66.02343730943768 68.3134731448391 70.58600672436951 72.80433479756857 74.93085021117592 76.958989276063 78.88836379464487 80.71855050932392 82.4514375408255 84.10118004311435 85.68155589724553 87.2042708336381 88.68834522260548 90.15329554253421 91.61877813727608 93.10228860025369 94.62005558460264 96.19131845244888 97.824556856982 99.52683748023671 101.28923252111088 103.0925727661764 104.91678709457905 106.74080541268309 108.54278006249025 110.3048022232874 112.00781328668468 113.63258002580248 115.16281046619594 116.58457397152775 117.88914165519999 119.07679260607681 120.14888068014119 121.10470709533291 121.95008453036338 122.68569171683504 123.31665069162467 123.8489621570154 124.28690414673113 124.63406750960928 124.89897505810707 125.08675260775472 125.20323099097644 125.25393836327105 125.24677150547467 125.18767443061402 125.08210850273773 124.93665330924676 124.75820586991831 124.55245824242361 124.32567744259816 124.08392309873814 123.83219338796692 123.57695676916188 123.32312161581179 123.07680578568154 122.84372866739558 122.62830284741952 122.43583333641006 122.27149547958018 122.14047112507282 122.04796427804749 121.9992181615495 121.99953368416186 122.05428606475024 + -3.2931796977152348 -1.636371735317393 10.637392257517547 11.80910242152607 12.900133849139646 13.915975396893357 14.871016986591897 15.769971838426065 16.63112607630116 17.46694121621616 18.289366197128338 19.112641031151853 19.944598090858726 20.79929269798044 21.68520829829125 22.60689838080494 23.571806312041907 24.58619134774061 25.647586669464538 26.755782545334885 27.912073443941704 29.109322930092834 30.341547429137087 31.604276273258698 32.880833694629075 34.15730391057345 35.417965794377686 36.6461125876246 37.83177349824885 38.965997297380554 40.037377532861576 41.03761480498563 41.96068801903728 42.80033638243777 43.55260366128408 44.21098793578436 44.77165786030874 45.2351495183993 45.60624917716686 45.89176377688756 46.099937497573556 46.23670977960995 46.3087482191227 46.322836953250835 46.28557031847543 46.20347060512521 46.083159152925376 45.931937033369906 45.7560017164318 45.56122688063711 45.35418716174711 45.14174142417061 44.93206483719552 44.7298818164866 44.542617795934 44.376113318790104 44.23894452184002 44.13804737050566 44.07969054201068 44.07146314664594 44.1205121679952 44.235179219572494 44.42273997592484 44.691885665523266 45.05336781601431 45.513961181405364 46.083008153404414 46.77311752569799 47.59269895601329 48.5517794436527 49.66457903825804 50.9369685122328 52.38221368616672 53.99628884931737 55.77235909532597 57.693388166026175 59.743593343693895 61.89945026489487 64.14006831897798 66.42903414436893 68.73625572561336 71.02028410501804 73.241732790858 75.364095536923 77.37899394971883 79.28728513055773 81.0881549573013 82.78506629514419 84.39327903086811 85.92677627083499 87.39780308849316 88.82977093331166 90.24205565337509 91.65593536343133 93.09045268195526 94.56357496823722 96.09614753984256 97.69794401490878 99.3772593191858 101.12516950247792 102.92186885237064 104.74659367018695 106.57835218093088 108.39625970146741 110.17869937552511 111.90443720566667 113.55997687777912 115.12332754715321 116.58135298372268 117.925557508462 119.15478959537906 120.26807320968311 121.2692715866022 122.15541361016464 122.93292186159914 123.60581142896977 124.17764631225573 124.65157877014737 125.03632235723335 125.33602832698443 125.5561745997439 125.70234023544873 125.7821835016229 125.80187677976465 125.76783054385888 125.68500253689803 125.561243334913 125.40319070244057 125.2164108504735 125.00695391648605 124.78194127608455 124.54660121672806 124.30765944613269 124.06992037823873 123.83959436143574 123.6214956300607 123.42167016531772 123.24536973072414 123.09825779944028 122.98512167423891 122.91122513704468 122.88185576218865 122.90235980756219 122.97801468869939 + -2.6058315266919685 -0.962877147055101 11.48461659628926 12.599993233958546 13.634806224363645 14.598324046610179 15.498073970674636 16.35361019225691 17.171437896624475 17.968753117128415 18.75350829851169 19.54144841941778 20.34470313678006 21.169269675374522 22.028135956964064 22.92849732192697 23.872798618636185 24.86576727612942 25.911762122269327 27.00734654776725 28.148424540398874 29.33870042485407 30.56185313809535 31.821068740158815 33.09028506457814 34.366252119215204 35.621776408159334 36.84686323090068 38.030425364002 39.16231371641925 40.23025103067308 41.228057944941376 42.148027114565984 42.984425339898124 43.733503106212105 44.388207157185995 44.94470545050003 45.403399938024215 45.77003390081269 46.0508136548902 46.253505880811495 46.38523818997083 46.452174491458706 46.46117275084448 46.41897386456145 46.332233804257285 46.20792986867399 46.052468488949295 45.87232401379555 45.67406135151384 45.46411482774622 45.249271039824166 45.037421986132124 44.83387796717806 44.64483869468505 44.478446297297886 44.34168233813137 44.241769963252636 44.18480053147233 44.178669401885486 44.23079764460327 44.34905007807438 44.54129938336441 44.81594382730203 45.18348354193362 45.6521943879196 46.22914166582102 46.930589971719805 47.760219853791554 48.733729122173266 49.85971541483283 51.149934900757074 52.612292533346896 54.24728832494839 56.044011635518714 57.98754112197579 60.05976759049128 62.23742481337092 64.4976663166712 66.80504416075321 69.12529194881938 71.41781064921928 73.63929504711305 75.75371437920862 77.75261393159585 79.6371267613562 81.4053583014765 83.06401450332675 84.62851470592442 86.1110636614988 87.53022192295764 88.90844450224972 90.26648556489008 91.62584534100837 93.00852410309406 94.43427644621654 95.92567362719495 97.49363178033528 99.14759431403085 100.87873693734115 102.6666721084535 104.49000479920976 106.32676962257538 108.15410076925438 109.95211874200919 111.70047638628516 113.3804006252978 114.97367917910276 116.46563167884072 117.84608854925904 119.11511054112879 120.27245413992054 121.31615860120291 122.25056456968673 123.07675906264602 123.79411264198822 124.41125001477342 124.93079664741018 125.35894107481845 125.69817569925728 125.95612343366653 126.139533139306 126.25418982180103 126.3065135043643 126.30227690329706 126.2477180604982 126.15067703662805 126.01768320530901 125.85462137414736 125.66723521068397 125.46332930493828 125.24825816297643 125.02787814639193 124.80904699872917 124.59683333125679 124.39781453187989 124.21694893054249 124.05945938178421 123.93129431808485 123.83774029500884 123.78410529768097 123.77573665088069 123.81804044435583 123.91649915864768 + -1.9109482245507041 -0.28252034426503503 12.287251878055699 13.34398195017891 14.317843446423238 15.225687203505121 16.078382607253435 16.887370501084586 17.66216563389374 18.41827799175223 19.170464327341914 19.925572791523717 20.698857494494497 21.499563179622424 22.334217328642403 23.211603696077695 24.138760701228204 25.11655152963327 26.145782236606852 27.230587840129772 28.363723715419404 29.543793748650554 30.763791517148253 32.01632792667685 33.284276925037844 34.555765670484405 35.80855133608606 37.030541403004214 38.213834274562004 39.34303425783528 40.4092626453022 41.405181206801515 42.3223287404355 43.15667866274966 43.90314715080423 44.55396939482825 45.107353602058495 45.56200525978719 45.924817472318175 46.20144766118573 46.39933636123252 46.526237900267674 46.588473074907284 46.59272129447118 46.54579742488557 46.454684435631236 46.32652246781211 46.16746904958432 45.98364967980313 45.78160150184618 45.568457714235606 45.3526684060543 45.13812828799584 44.93287587787675 44.74329914089992 44.576067751004935 44.44076242553808 44.34077160580863 44.285723020523555 44.28114844166739 44.33643139166253 44.45769612749801 44.65478461441303 44.933699969699504 45.3081368528001 45.78245719481187 46.36854257838231 47.07770252912829 47.91895125876276 48.903524905972276 50.04319447478382 51.34878958699004 52.82656241503 54.48031022587346 56.29437954378698 58.258197027026426 60.34910171514756 62.54641137006482 64.82350417347402 67.14612564462068 69.47708727511692 71.77447937243086 73.99304387765953 76.0959861040405 78.076233075441 79.93283415589447 81.66732454195699 83.28596466010893 84.80233869112169 86.23522110501482 87.60168800207202 88.92432138424279 90.22543407378508 91.53086296430362 92.8624890410173 94.24092092117155 95.69064079895576 97.22356366506497 98.85019832507115 100.5619126884931 102.33775243811935 104.15569320829567 105.99345675909089 107.828872237256 109.64023218204157 111.40473467479164 113.10677237570505 114.72674800776288 116.247313359125 117.66206028838894 118.96701297919292 120.16306361802101 121.251311281437 122.22909496573544 123.10097412284183 123.86928542907877 124.53786982896017 125.10719909912493 125.58290881574013 125.9698176050143 126.27447216417733 126.50170835943138 126.65777023334347 126.74841642461728 126.77979165208505 126.75985205845144 126.69521804549642 126.59249538161052 126.45803921100506 126.29738394991949 126.11882070978857 125.92878768975677 125.73134167755863 125.53520453714803 125.34484154389801 125.16722939615983 125.00705123702637 124.87121500612587 124.76466892825715 124.69281980644148 124.66166366377703 124.67641510580151 124.74275319970921 124.86620382233276 + -1.210211601284151 11.959055389192438 13.038474772265891 14.026604551436822 14.94595383238974 15.8013877489789 16.604158416102926 17.363839170764027 18.09914639518711 18.817714633170468 19.533685649805992 20.259565376167625 21.004778328843816 21.780699843566545 22.595498017247042 23.45545998638499 24.365147722039815 25.329006302169397 26.34856119885115 27.420210181676914 28.54821781957313 29.718646629784608 30.938648135544554 32.185181822405525 33.45485824272328 34.72233536921325 35.97345024918272 37.19482342321428 38.37710136597842 39.5041100580018 40.56948878898684 41.56325034103026 42.479019619032 43.312171524078686 44.055664292356994 44.70393049001118 45.25497923575799 45.70621268905998 46.06579350215104 46.33856346865719 46.53247172469979 46.65480317983177 46.71278719220315 46.71306419802177 46.66240294912214 46.56751023256658 46.43524519865565 46.27228403778165 46.08530060899211 45.880615189939675 45.66486093823574 45.44662895157167 45.231253344280496 45.02385005046403 44.83332063313498 44.66691622407417 44.53089871998007 44.43276127838231 44.37792221114223 44.376440552678666 44.43298663147013 44.55860963699988 44.75815211895672 45.04272695980031 45.420923288092226 45.9025308760945 46.49502924340489 47.21250057326247 48.063758238806656 49.057303134357916 50.209615937225145 51.526739941518485 53.0198770060725 54.68915405812446 56.52029845940582 58.50218455908589 60.61022553890307 62.82440868059259 65.11594533481961 67.45024141896305 69.78919577011199 72.08753413439614 74.30014541265625 76.38814833848859 78.34716492874135 80.17287064583697 81.8721147827075 83.44753893019178 84.91652979214896 86.29945800203629 87.61114414729026 88.87826132698947 90.12525692316832 91.3777901800574 92.6578251109802 93.98881801380368 95.39611661058537 96.89357924953642 98.49219964217619 100.18359921120874 101.94626696062251 103.7575703461265 105.59463305466534 107.4345076161483 109.25422229293747 111.03305178175113 112.75402310256145 114.39482175883893 115.94259875637105 117.38542084722768 118.72408836577652 119.95579441377845 121.08126275030293 122.10212834948601 123.01924971110968 123.83310748087254 124.5488522588627 125.16962003797322 125.69857384349356 126.13972300805331 126.49751110374794 126.77532900554128 126.97839591846049 127.11448541620739 127.18996799937476 127.21133766316844 127.18539644505181 127.11900721804999 127.01871115899691 126.88992002098088 126.74132183244048 126.57966524070454 126.41019791026709 126.23994070904143 126.0763155445691 125.9228963755036 125.78831406273602 125.67659100733054 125.59436916946478 125.54760508842158 125.54167692022787 125.58200243708318 125.67405897472113 125.8234015986588 + -0.5053034668850244 12.713028112072866 13.719926250921777 14.651061996627162 15.515988397432693 16.315319894288518 17.069072592632008 17.78701493260565 18.480154972514228 19.162073059971668 19.844867686029154 20.541611114732305 21.26058107752395 22.014141201947677 22.808392427279173 23.651195181369307 24.54878166993865 25.498657715293838 26.51029237461761 27.576515699961636 28.696459643988018 29.866155669950533 31.08137025252285 32.3259523083504 33.59588461878306 34.860918906818576 36.11010790492316 37.33295737966465 38.513794923696985 39.64040886464025 40.705225906896025 41.69773732693393 42.612826295772884 43.44450457469311 44.186492831245 44.832881770939096 45.382402999522526 45.8302072502753 46.18680658968286 46.45668920260709 46.647421693201615 46.76635539029728 46.82066127308453 46.81736333803575 46.7633704070671 46.665506376940705 46.529944545365886 46.363462599857336 46.17317313272152 45.96583818695357 45.7494032363467 45.52860052424461 45.31123709950258 45.10361909140365 44.9116556197299 44.746307138714236 44.61020818955172 44.51243768095714 44.45927514886949 44.45872176166731 44.51827495844516 44.6459406797311 44.84934672428285 45.137654979923134 45.52013982647603 46.00805003308453 46.60506046607191 47.33033713898338 48.188082607685146 49.19168365156721 50.354822731974465 51.683520489738086 53.19098162696651 54.87433468560368 56.72170481738709 58.719512152607855 60.84284837055638 63.07091108038813 65.37406815391076 67.71635025413507 70.05977581241281 72.35477736340806 74.55771250007419 76.62828670090408 78.56232134411378 80.35602040133575 82.01807492016711 83.54872455698201 84.97140956065194 86.30212417410327 87.56131112641233 88.77587547682639 89.96880792074708 91.16868569812745 92.40050683227207 93.68698557022772 95.05368694349191 96.51665198711045 98.08754235069492 99.7583033579839 101.50685283907013 103.30988751821704 105.14377438472988 106.98537302904647 108.81190014125568 110.60146338665605 112.33658093306794 113.99612399527977 115.56513357294189 117.0340157671487 118.40025559246072 119.66420303093712 120.82476096716537 121.88250946230879 122.83953761474454 123.69775800896987 124.46010332146058 125.1299148870399 125.70858443078772 126.20157431927507 126.61236754076005 126.9448506178193 127.20379043969409 127.39395292714377 127.5206471744536 127.59034187187159 127.6099015413859 127.58630267542516 127.52632891180718 127.43552115283454 127.32266080410206 127.19477114088284 127.058790303914 126.9186949616065 126.78408277246068 126.66014935105869 126.55303792630735 126.46912903349292 126.41517472132165 126.39508356578376 126.4163849494118 126.4845396572388 126.60506696784742 126.78356238975674 + 12.366295140490285 13.394376409310365 14.338433171786827 15.214769584443113 16.017575218926698 16.76923111047578 17.477556585123875 18.150975647020765 18.804998821162066 19.453573185930686 20.104082653615933 20.772786982590354 21.467347261604004 22.198340014028478 22.9762412387506 23.80147405694189 24.685168499698268 25.628419841110965 26.62686168890132 27.69062610956902 28.803387926082152 29.97475649684451 31.186508658891693 32.434513989262754 33.701936894042994 34.966330500272115 36.21613790821846 37.439626905903566 38.619558566390566 39.746529408269254 40.810586886111196 41.80318500313396 42.718236144839025 43.54892322912474 44.29017715954505 44.935369615644774 45.48332074558621 45.92920531796449 46.28337046879711 46.551164754292785 46.73949896332443 46.85578500583226 46.90725687465347 46.9010032038845 46.84399835917496 46.74313205995323 46.60523753358349 46.4366938188778 46.243567908284945 46.034207971809316 45.81645222821287 45.59470652417844 45.37544754205799 45.16706071057014 44.97585379201313 44.80958937225876 44.67499376443286 44.57688305592483 44.526066542509135 44.52581622176126 44.58849328679932 44.71716103336474 44.92439397364434 45.21444612061225 45.60164771252437 46.09259513338855 46.69593243662614 47.428114316526724 48.293008881054895 49.30654131376557 50.47923016241751 51.82049044872735 53.34133476464352 55.037996901540474 56.89979172711197 58.9112000921134 61.047627093159534 63.2863130951998 65.59783281587559 67.94412268466192 70.28657434121529 72.57577898691018 74.76424448713347 76.81528652582638 78.72024780489411 80.48158812872195 82.10252076779811 83.59104231230863 84.96527527741664 86.24678465921944 87.4559926854823 88.6179099512013 89.76127600576434 90.91339078491096 92.09912759120854 93.34351730862478 94.67169290343355 96.10284877466776 97.64775106079973 99.29879856606944 101.03339882936571 102.82771190951368 104.65770284221347 106.49953192715499 108.32993967710885 110.12675283307395 111.87383587816979 113.54723316651906 115.13411530467809 116.62359213223957 118.01401960136566 119.30434143065524 120.49498653110508 121.58668741819857 122.579988701852 123.47712297674587 124.28104261970157 124.99535164831501 125.62195249187963 126.16544270875562 126.62857887549106 127.01521414206663 127.33016227993508 127.57711870235481 127.76073675667494 127.8859781630996 127.95839607815601 127.98460794891244 127.9715506112754 127.92514324420596 127.85400099803918 127.76539673143569 127.66655886157744 127.56364092856872 127.4624010659805 127.37213086906984 127.29668912543288 127.24479943980644 127.22031866674945 127.23158216846393 127.28390850142092 127.3818748901365 127.53297822873358 127.74280705580564 + 13.04658260377957 14.004354731780117 14.891930340452035 15.705013238404693 16.457727069507616 17.162936888846037 17.822729463330823 18.458580941372592 19.07633545852822 19.69101385586713 20.313305510284277 20.95499741369758 21.62820320178607 22.338895684547275 23.097209929381307 23.91086488488176 24.7793058005631 25.713605310478098 26.705784458855955 27.761152614130065 28.87372016481671 30.04069459118405 31.24998906048486 32.502661732777504 33.76860770514609 35.03335047046199 36.28528720357604 37.50944896075815 38.689042481375196 39.81698773004495 40.880757522818165 41.87404031391067 42.788460260937136 43.619985001837215 44.36115799107616 45.00579717775665 45.552512546148044 45.997855593315506 46.35013649966383 46.616721868432066 46.80352743456796 46.9180182632028 46.96748494711336 46.959075209001014 46.899824129592595 46.79668300156362 46.656546809283476 46.486280334382485 46.29219845993435 46.08186476448612 45.86232525766422 45.64012986758547 45.42011791176013 45.21053886665291 45.02131461742525 44.85425052035895 44.71992097834886 44.62291318446963 44.57216854263518 44.57421030210546 44.63744530184666 44.7689321311087 44.978116206324906 45.271290702449136 45.663289573026084 46.15816693714259 46.768413478908705 47.50676802252479 48.38087349841368 49.40438279162248 50.58689719268059 51.9401339398866 53.473390344888735 55.18235032920804 57.056632686427896 59.07911354342361 61.22604987988213 63.47181228204176 65.78799253268618 68.13400461485992 70.47083295274587 72.7503713473059 74.92038802997634 76.94787941506307 78.82213977354021 80.54750000464729 82.1287263665393 83.57338589141636 84.9015476809175 86.13599885805411 87.29624491602328 88.41193875443004 89.50880900431252 90.61622407288984 91.76182558986457 92.969325490954 94.26285009454638 95.66544560152563 97.18698891910485 98.82030397582776 100.54219511399353 102.32816484760413 104.1535796057723 105.99406853937421 107.82668700420751 109.62878717611018 111.3837199777236 113.06726200063203 114.6675536369485 116.1732084416974 117.58232424123372 118.89459027580457 120.10993162306558 121.22923113052816 122.25395048231998 123.18601744280788 124.02806259865513 124.78365275295899 125.45439430632875 126.04495214964801 126.55754534560958 126.99616867959837 127.36488858336448 127.6673117073601 127.9077465953751 128.0907510401548 128.22116994539533 128.30433877876013 128.3454520273426 128.35049736121684 128.3276631872198 128.284448552452 128.228354403129 128.16684370570644 128.10540133090024 128.05147065350545 128.01398999138698 127.99558667225104 128.00714829758454 128.05128827789574 128.13640121425993 128.26844108212393 128.45292661862615 128.69545329112415 + 13.64670533032609 14.545378516304476 15.369833018810946 16.130159543019328 16.835081431786783 17.49098505074467 18.112389692008072 18.710174373368286 19.294201398599675 19.87937541643913 20.475230220953435 21.093868493812952 21.74463325508874 22.438251700166454 23.18100799518847 23.978795610397103 24.838877655195887 25.758102157204107 26.747080711285008 27.791606785287776 28.904766071095736 30.065500661754736 31.27782416734349 32.52817633877602 33.79235084301705 35.058394022662746 36.31180631328739 37.53661483923715 38.716867405046095 39.84613243410381 40.910264427366364 41.90478990460823 42.819413000500965 43.65217380979213 44.39391665027697 45.03849308094486 45.58486731254066 46.03060146238312 46.381790181051585 46.64812775015859 46.83436663850949 46.948016122609 46.996415432283506 46.986764261934766 46.92615200308363 46.821585698204 46.68001671584695 46.50836614705489 46.31429447388771 46.104228838337484 45.883487103042576 45.660309319735745 45.44135572966527 45.231415420572816 45.04209626609402 44.876544225868194 44.741886252254055 44.646845752096915 44.59614126040631 44.600684362947405 44.66491323869655 44.79993789604504 45.01157226263534 45.309675807290866 45.706395138174805 46.20779416313335 46.82576411763294 47.571343348615585 48.45505063719364 49.48866115621124 50.681420109432175 52.045948115956634 53.59040354604492 55.310390272550634 57.19505519597828 59.22584372007023 61.38032541070634 63.62930797002131 65.94478084523324 68.28713687576229 70.61363937589603 72.87790381372179 75.02656065784603 77.0251994998916 78.86850936556168 80.55519392413743 82.09694284644969 83.4979961799363 84.78268308947372 85.97152081501565 87.08927415686391 88.16098934734045 89.21781946989893 90.28716111837768 91.39762460747387 92.57383664453886 93.8382397159188 95.21687070323934 96.7189446009724 98.33755444263285 100.04883080924593 101.82756833109127 103.64893326106485 105.48823427794392 107.32114391944681 109.12687737039143 110.88619794798429 112.57613702056372 114.18502013945461 115.7016295177496 117.12442363210214 118.45259967556815 119.6869012801215 120.82856639294269 121.87885672604975 122.83987614618614 123.71441491886758 124.50592411144908 125.21607259718547 125.84937064378803 126.40784076847795 126.89545059252372 127.31567205132052 127.67192852922945 127.96814040597201 128.20853662430895 128.39749479367987 128.53949575330626 128.6395003415909 128.70283342136742 128.73534394654024 128.7441749489402 128.73702347437666 128.72163143663013 128.70570869716883 128.69435322646734 128.69604286146955 128.7191233328743 128.76683385203484 128.84928285127805 128.9715959574464 129.13920683284775 129.35950394771635 129.63808394031557 + 14.17277423282285 15.011071614727665 15.779576288788034 16.49152862823403 17.146003666464676 17.762822191775506 18.345635732538923 18.909333012349528 19.464475178691213 20.022098136691003 20.594580263151883 21.191331066525798 21.825219633041677 22.499740236838147 23.229605098677 24.01485947461378 24.862698446711917 25.77523959852768 26.75306479840148 27.794066501449805 28.899388682501343 30.053434503453435 31.267855414383043 32.514172918578616 33.77511842484844 35.041962469733704 36.29418483418432 37.517879176437155 38.698900722691356 39.82832713103853 40.893970163853055 41.89010279807723 42.8059088331035 43.640148602773614 44.382583203186506 45.02833613310003 45.57512492787133 46.022243500843054 46.37417767982496 46.64016136682534 46.8261831433938 46.939735079664 46.98818745675925 46.97877380210643 46.91845515160327 46.81342927106593 46.67135269891991 46.49921810816041 46.30586643152258 46.096558809321444 45.876043632434985 45.652490793307976 45.43374227285678 45.226046758155796 45.03667359985971 44.87328459612276 44.73921136908441 44.646123162865365 44.597901833000925 44.60534283865839 44.67335232823768 44.81311175041005 45.029173109997856 45.33336015026186 45.73642199188037 46.24544095743762 46.871982138033324 47.625897421316935 48.51968142617842 49.56328087362409 50.76672721442164 52.14181826471061 53.69628580758381 55.42576097780463 57.31851014434387 59.35458502997166 61.513268147133076 63.76129636532427 66.07143799113494 68.40527193843894 70.71646819386687 72.95952208973593 75.08358728715821 77.05034993319774 78.85746953719122 80.50752236086463 82.00715734018944 83.3685168768756 84.6101504318208 85.75936423602415 86.83695843797001 87.87296337989979 88.89513957682686 89.93307702245812 91.01619085482416 92.16827840138524 93.41214132125283 94.77067049600099 96.25820772258682 97.8661124111394 99.56999929318832 101.34404557335743 103.16244011354378 104.99980292760432 106.83159211364635 108.63985240793187 110.40054439667854 112.09313862606577 113.70609306853397 115.2283589270256 116.65880017437895 117.9973816849204 119.24443841945205 120.40166438552913 121.471072887428 122.45497448278434 123.35638252181164 124.17839469692964 124.92289505859404 125.59419805408143 126.19417473077017 126.72669615032437 127.19482349626607 127.60179675257308 127.9512643513602 128.24722436847966 128.4933881239127 128.69399429396577 128.85357380662938 128.9769934468377 129.06950149554953 129.1367756100664 129.1850764946967 129.22187362907857 129.2551061133249 129.29285749970768 129.34012345704093 129.40570452143027 129.4975980813046 129.62026109011177 129.78220912577385 129.9903351303245 130.2496158213946 130.5664850995232 + 14.626168037573898 15.402608955273937 16.1246032761558 16.784066861933 17.40063739732637 17.977813637548874 18.527734686321015 19.062096450549596 19.59010673257211 20.124513227693747 20.676397475120844 21.255246543111173 21.87091799810125 22.533934270828045 23.246217622676454 24.023588988221857 24.857333268629468 25.76386008118468 26.728989999814075 27.76794270873135 28.86314358771698 30.017322043310386 31.2245947967612 32.46506007632403 33.72122256272237 34.98661109834067 36.23571134104205 37.45648932411568 38.63628840510271 39.76434781771069 40.830201274742066 41.825903154858935 42.743928598383356 43.57956605892155 44.322108974231774 44.97055696129969 45.51846769881065 45.96795192691832 46.3214796194207 46.58681150284416 46.7743250288427 46.889150041301356 46.9386850750515 46.930196472393845 46.87084562786776 46.767715129741106 46.62659814680718 46.45626673173822 46.263471508018505 46.05476453994215 45.83682010294325 45.61415978658077 45.39645627939378 45.19278366927109 45.005219442205366 44.84404706423697 44.714165117227544 44.62415432311659 44.58112069464631 44.59276600350333 44.666935079511184 44.8120395736569 45.03529322490464 45.347064553676304 45.758105641012264 46.27575724393725 46.911569579830655 47.67513258894502 48.57951817777777 49.633410552963504 50.84736890891944 52.232270187202886 53.79545945647613 55.53261541553244 57.43093781614226 59.46900901457648 61.627854744776876 63.87076269100945 66.17062826290118 68.48903658514334 70.78133763772026 72.99822739819749 75.09076932699051 77.02501282689707 78.79356680424578 80.40384501446462 81.86472240833088 83.18506338010776 84.38998261840273 85.50159076570637 86.54725217261905 87.55212804708358 88.54847683631728 89.5628672565543 90.62664501828385 91.76281093870426 92.99390486084073 94.33906461902339 95.81841562356652 97.42094961217711 99.12151208572749 100.89347160833141 102.71032606155967 104.54613363415115 106.37864755111688 108.18722295557721 109.94515712029407 111.63904116743966 113.24921123965457 114.7731336769073 116.2049087612267 117.5464888932055 118.80000591901623 119.96632326625519 121.04801056065348 122.04782296311679 122.96930747482229 123.81521267531215 124.58797240578954 125.29172768115173 125.92839106368857 126.50138194871553 127.01342871556322 127.46763074641649 127.86747255270716 128.21638719968306 128.51784862348677 128.77570421471526 128.9940636244295 129.1768657971847 129.3295583058633 129.45773300542712 129.56668916422976 129.66174934103904 129.75022237678203 129.83998697912398 129.93924286610735 130.053265114266 130.19053433321443 130.35919370861845 130.56503025834056 130.81456583402573 131.11561906615876 131.47382849883036 + 14.998519556416781 15.728428559965808 16.400239215289233 17.020463944727698 17.598841762702573 18.142982077125563 18.66468447882783 19.17220586497877 19.678364490194564 20.192894068901502 20.726850082322542 21.29009170644173 21.892495580310406 22.54099081299609 23.24529606814812 24.007343638718257 24.835903617597893 25.728495332058632 26.68953371714371 27.717155127864622 28.801390352599746 29.954359152624882 31.152978466585598 32.385459518414734 33.63853494771283 34.89692181009088 36.14064158463109 37.35652915734164 38.532967676736206 39.657912246947404 40.722136704296545 41.71597353133274 42.63518562051293 43.47107774223571 44.213200519520434 44.86423409253611 45.41317156177108 45.8651369605428 46.220237224803455 46.48807208559714 46.67674095581151 46.79400172151566 46.84585444288935 46.83958548019678 46.782380402030995 46.68134893215262 46.54447956160959 46.37737298673371 46.18694550312276 45.98070549626335 45.76566887156603 45.547392415362985 45.333634978787174 45.133993264768755 44.95165700999763 44.794846829072505 44.671149205085484 44.58650642359779 44.55043404096026 44.568479703351855 44.650480706128945 44.80295599177828 45.03490274852106 45.35589328011925 45.77654741714827 46.3039196990423 46.95040301222658 47.72423744858285 48.63976591726742 49.70424980579723 50.92838096249033 52.3222365922052 53.89270999501572 55.63547268674201 57.53606870821572 59.57313612150531 61.72604307466884 63.96107123863266 66.24541473879779 68.54281992801943 70.80940911433942 72.99634350637547 75.05301133430729 76.9484146674925 78.67950813698491 80.24875996309652 81.66997764753192 82.95450479364514 84.12350531946089 85.20543023522677 86.22357992443217 87.20667206361138 88.18452928299007 89.18540045388644 90.23834905426259 91.36817958089735 92.5952384146312 93.93773961936296 95.4118882095821 97.01509628650933 98.71722306094185 100.49074332018856 102.30840010273279 104.14590381504 105.98083564323255 107.78557552047481 109.53892515657564 111.23045804710131 112.83497546247735 114.35305183748784 115.78152562622894 117.12010895706563 118.37160080824297 119.53896320665324 120.62526502926818 121.63365286467516 122.56820728449907 123.43114967590161 124.22562030110169 124.95531564763998 125.6224356902464 126.2304087426933 126.78195152590402 127.27930197921236 127.72584675110316 128.12462144112402 128.47882703846733 128.7919311259526 129.06763216482352 129.30902775693642 129.5214627037164 129.70980437919727 129.8793355566866 130.03583802392703 130.18526556389648 130.33231189502285 130.4858246387866 130.65426405272368 130.84317508840107 131.06010603807795 131.31350111055585 131.61029777485626 131.95505364037118 132.3565205518559 + 15.303661539107926 15.988629949418076 16.618068060429064 17.202575932722233 17.747811061211248 18.265069111395132 18.76098845517224 19.248163435982814 19.735443570621857 20.23326783719364 20.753515971478045 21.303079100757472 21.894064191742604 22.531565447117536 23.22528264827967 23.977314325114975 24.796521756095757 25.67692589305285 26.63242103163098 27.647478215680092 28.727943290857986 29.869896737618 31.058199835576715 32.2807245998769 33.528316403531115 34.77756090289055 36.01353669193743 37.222432863523835 38.393280395493946 39.5132478268628 40.5739286786708 41.56485964691091 42.48366284886609 43.31796132673965 44.06034541707577 44.71282700161463 45.26390654094185 45.71611668132016 46.074424086715936 46.345578401257114 46.53722505215063 46.65684148931975 46.71227327047945 46.7096900643649 46.65629836675261 46.560090518586854 46.42758906633104 46.265772411039876 46.080179327215504 45.878582433783286 45.66838730109985 45.45666869108038 45.24940769033004 45.0555788706152 44.880768486276246 44.730701642700055 44.61495483449489 44.53820155642516 44.510697209533724 44.537667809660945 44.629280347676726 44.79117866052336 45.033408526759445 45.36557404721564 45.797245844140726 46.33547087805938 46.993996353965066 47.77898448403408 48.70592247997404 49.78117986202274 51.015056583102734 52.416883533011614 53.99303742428188 55.73907439550836 57.638527355066955 59.6712065805482 61.81356477584837 64.0355061641444 66.29915941226903 68.56983459705863 70.80427712235621 72.95520327584016 74.97303472534509 76.82642173970636 78.51513786021975 80.04583856073934 81.42842190860344 82.67805397024105 83.81829918662343 84.87390272079213 85.87327719285447 86.8418189801659 87.81112300766797 88.80819329343217 89.8600123098999 90.9931593483832 92.22653557673856 93.5765632893346 95.05630681878043 96.66284245228279 98.37121018396302 100.15123434162169 101.9760222307437 103.81814799639058 105.65124685836452 107.45077659000809 109.20297717024832 110.88373193806156 112.48162609342866 113.98659323072427 115.404071933076 116.73362944610656 117.97709250956876 119.13839809859176 120.22146712573543 121.23046498983044 122.16939656367967 123.04107573242882 123.84934393027947 124.59785214442385 125.28922649721805 125.92602616450063 126.51098992592394 127.04666913175544 127.53566818935373 127.9805721785569 128.38432865753794 128.75003856061642 129.08098451510722 129.37963919405027 129.65097035755997 129.8993112969479 130.12941103371406 130.34648844026464 130.55631971349564 130.76527005092643 130.97910352007162 131.2033047401133 131.44790380053442 131.71916043544155 132.02312448889606 132.36863820644146 132.76347088911533 133.21119212384943 + 15.547226300622482 16.18717227099384 16.785321933936427 17.335206422480617 17.856604228864366 18.348429825095696 18.826393433880245 19.295717186096056 19.76846610483129 20.25446522745734 20.761663954566796 21.302942818571125 21.881539429441833 22.512483913485347 23.19271195533576 23.940103243404657 24.74556783268864 25.62161746668305 26.563117777793508 27.56520472767893 28.64032286791521 29.76935808170834 30.945543222884307 32.15884627229425 33.39548087404377 34.63334398899386 35.85911536541704 37.05883636959581 38.22167966596391 39.33484537815013 40.39000980628266 41.37788790754896 42.293718308978704 43.125085985875195 43.868428342785435 44.52062439249958 45.073329001336575 45.5263776965202 45.88833054448042 46.16349245467496 46.359468093291255 46.48370462135656 46.54351571591097 46.54610477775186 46.49858732574996 46.408012577737075 46.28138421796534 46.12568035113811 45.94787264301235 45.75322781720054 45.55018880525875 45.345893600821675 45.14858825611742 44.96299193715595 44.797353651915444 44.656865747453814 44.5505062522866 44.48464056528089 44.4673726310886 44.50585816187973 44.60852820747529 44.782332914730766 45.036493989125276 45.38191165042938 45.825934829191404 46.376418479199856 47.04805776458336 47.84592975959655 48.783618672372974 49.86970896106037 51.11279035726373 52.52145786868514 54.10150821646011 55.848241569259635 57.74315701055147 59.767551881703795 61.894546355120475 64.09765571810753 66.33518131327008 68.57345245231664 70.76996264913939 72.87862607790744 74.85213877934238 76.6623498244209 78.30722753111385 79.79662282130536 81.14386750029699 82.36238293199406 83.47654504936277 84.51446965633177 85.50109882828119 86.46491297037618 87.43501948818339 88.43839995158514 89.50057526359639 90.64733071313633 91.89598266413063 93.26331887694764 94.75930011463585 96.38087624595957 98.10214663021848 99.89355405289112 101.72603707369488 103.5715149433107 105.40333666639121 107.2023365037276 108.94776514629271 110.61755499518227 112.20137156196306 113.69265983259794 115.09149326189372 116.4026083438275 117.62927089324099 118.77665438495119 119.84831494795684 120.8500262915417 121.78560450950114 122.65866747102788 123.47346617687452 124.2329305954465 124.94035697553545 125.59943839279758 126.21187870154162 126.77985518298694 127.30614769265202 127.79283019685937 128.24231790499675 128.65737017888475 129.04075320366212 129.39472004152947 129.7235544564771 130.03109346387538 130.32155708507264 130.59962219993608 130.8704789635373 131.1398453856133 131.41405987893395 131.70013021440195 132.0021291791153 132.3293998285537 132.6898663904168 133.087731497336 133.53203071359044 134.0300740624267 + 15.728045823483987 16.33709170379909 16.90139009356481 17.430663043472972 17.92784827518213 18.404482296477422 18.86610047344505 19.32362559070835 19.786167060773234 20.261571341692957 20.762511636637704 21.293061202731778 21.867549408222235 22.48659347091129 23.163298089425936 23.897616064360253 24.694204195463705 25.560750653282398 26.48769348917256 27.483536468531813 28.54383412479593 29.65813836500902 30.820217941276503 32.022884328019536 33.24490019040097 34.469085525736645 35.68201428003743 36.87043280061151 38.022738875878986 39.12731934193095 40.17448966785125 41.158618166131426 42.06991686705052 42.89734901728131 43.64096961535164 44.29215446331607 44.84631545066564 45.300696808656475 45.66659414133279 45.9464785236402 46.147733569615035 46.27775707541959 46.34382313174669 46.35310357466816 46.31268870758246 46.2296072942618 46.11084582299843 45.96336704185031 45.79412776498588 45.609806179336296 45.41629909989494 45.22249813401779 45.03640977734086 44.86162142334474 44.70694586012804 44.57885153383321 44.48434855545251 44.431446856380546 44.42679235997494 44.47876427908409 44.59455650104708 44.782192022695774 45.05054419171293 45.410715892894984 45.86842254409311 46.433728478338494 47.11832875460154 47.92984981071596 48.87846021805359 49.97531557623522 51.22692431226495 52.64113706507192 54.2231097882769 55.96709501927084 57.85448413612363 59.866468582773244 61.97305619994364 64.14986824600341 66.35657877084965 68.55680676012722 70.7099285250676 72.77103456550762 74.69522324473697 76.4574123263111 78.05906358884911 79.508052046432 80.81987548994277 82.0112742634577 83.10582287123923 84.13089142824005 85.11409982097815 86.08175767150615 87.06283747555374 88.08385398292202 89.16738187257408 90.33798429122146 91.61369018015233 93.00594881777361 94.52555470573925 96.16950892491057 97.91052493029356 99.71800895059806 101.5620587879248 103.41514172293172 105.25216227648728 107.04987883545193 108.78577523803602 110.44461331031214 112.0105868062256 113.48014839062226 114.85774684287007 116.14518452949835 117.34841850847347 118.47328132257456 119.52536825269058 120.50997171976995 121.4320548928775 122.29625430456342 123.10879679888959 123.87198271221345 124.58865452463772 125.2614251633553 125.89466840836711 126.48890569806879 127.04646854050524 127.56982864483717 128.06062292539232 128.52111312646505 128.95362806033367 129.36030248810667 129.7446192231476 130.1099103939324 130.4598608134206 130.79866816710668 131.13090868551012 131.4616873455559 131.7965770896096 132.14207479791656 132.50528802165218 132.89214105204667 133.30792204232424 133.76323550133625 134.26116400024267 134.80999396742686 + 15.859614338021347 16.441318265623302 16.98308710188418 17.491484033909803 17.975325573585557 18.43774038491822 18.890476736362128 19.339727238100593 19.79460303427555 20.265873069366243 20.758941490922705 21.286342403642838 21.852435220764523 22.46556270122201 23.134498396655893 23.856176547362615 24.648018155680962 25.500155305893916 26.413557336707857 27.399673599297365 28.443711427152998 29.541538587347045 30.68849950501531 31.87646249069433 33.08128379353686 34.28944837954108 35.48712656017193 36.66182714830225 37.80151001006566 38.89526617896855 39.9334075416788 40.91168989390482 41.81637565234699 42.63944140678889 43.38267067138663 44.03141929318945 44.5880190506203 45.0459160440378 45.41405813694532 45.699412221578925 45.90652421903922 46.0432557545137 46.11692290226581 46.13464632175265 46.10346915232542 46.03002081517652 45.92117385936299 45.78408741401425 45.625687964569956 45.4529123949239 45.27212406209429 45.09133975811992 44.917769726414384 44.75699641680359 44.615822188892864 44.502275219307265 44.42213976895892 44.38424019175871 44.39467701172721 44.46212775025011 44.59325968598188 44.79651875936016 45.081970220330234 45.45774237601531 45.930432685203925 46.512046674790795 47.21042627356826 48.03627602674026 48.997103958422684 50.10329548531756 51.36259814010921 52.78088341033672 54.36260419791567 56.10034071289807 57.976854316800846 59.97139848074867 62.05304832669802 64.19705997183817 66.36807072859911 68.52314507015882 70.62701506216156 72.63611307666832 74.50682324166804 76.21816609667731 77.7734264684475 79.18336713861935 80.46319752487899 81.63006742520142 82.71004985442305 83.73055671112144 84.71780246258942 85.6990428629191 86.70147504786604 87.74983026240847 88.86694841301063 90.07021241132522 91.380306184953 92.8077588942131 94.35833630283388 96.02899708294721 97.79380863691419 99.62155569278487 101.48187923855635 103.34578456757885 105.18842658230662 106.9856389610337 108.71753707094778 110.36345651781244 111.91369328199606 113.36244844357424 114.71144257177778 115.96801922515526 117.14068110280681 118.23498455343636 119.25811666641584 120.21820399647709 121.11986859914684 121.96862986544129 122.76886864695987 123.52545859872288 124.24365488846166 124.92362245236492 125.56899786117249 126.1829521042963 126.76565639330553 127.31973893596324 127.84683970381225 128.34826404521442 128.82610419681848 129.28227176865158 129.719437548164 130.14034248882476 130.54817109112727 130.94603030429167 131.3388419968939 131.73107288308879 132.12834019925788 132.53602941598055 132.95870142959248 133.40475567024507 133.88203426737684 134.39184868439446 134.94710684044972 135.0257678664922 + 15.952471988374617 16.509583700212143 17.03527341533928 17.530886360971518 18.00345981760592 18.459792633455418 18.90625943903407 19.35136863100374 19.80383014626321 20.270881820897618 20.76194527193508 21.28469808365386 21.84487352420563 22.45424151005968 23.11235151412728 23.830080522940023 24.60795066447518 25.445224447440392 26.350351227081457 27.318505289354206 28.344757104200042 29.424288372637275 30.555713112475008 31.72400236316153 32.90933610090558 34.09879265835248 35.27898119422112 36.43738922635876 37.56243814485655 38.64311997272975 39.67256817780099 40.641647671972706 41.538511166657315 42.357907285307306 43.097949151471056 43.74529846633339 44.303268342549025 44.76492114247431 45.13577264686622 45.42636417265458 45.64076441927149 45.7857872063613 45.868575384410015 45.89618381548846 45.875597207376266 45.8137473535451 45.71752977900074 45.59316511964332 45.44792851305172 45.28882012666161 45.12275293078586 44.957747241226336 44.79924232686915 44.65450430809488 44.52954213118189 44.4323002921635 44.369481049189524 44.348512271200924 44.376651371065996 44.461447862214925 44.61026021754868 44.83127845277379 45.13572726847669 45.528536810001945 46.01745000514406 46.61686126486425 47.329689808920286 48.170432294105964 49.1437554552618 50.25933973145645 51.52470326842126 52.94528123122951 54.52376499313172 56.25263664427211 58.11428071468112 60.08492877780587 62.13825548340842 64.24361259945509 66.37091716705224 68.47711014123986 70.52523357884665 72.47641317273137 74.29065798609243 75.94905831723234 77.45712913080004 78.82755667441195 80.07756801082805 81.22592477791979 82.29724384609653 83.32025096309236 84.32072266371763 85.32476811432156 86.35743539120303 87.44330560550694 88.60079816533886 89.84916598800997 91.19947179814996 92.66434396166954 94.2516482051042 95.95426120140962 97.74638400619719 99.59614025686143 101.47273793446122 103.34979713679712 105.20031191409575 106.9995631585706 108.72477176699816 110.36430917026367 111.89690595818713 113.32511504593921 114.65149869433428 115.88012421609506 117.01920405599678 118.07760877938408 119.06463675895513 119.98917756916568 120.85871370823251 121.6825242409876 122.4636627280901 123.20591138811858 123.91500142830013 124.59450483390249 125.24471354002765 125.87063049573166 126.47190981454354 127.05036536246436 127.60823523583392 128.14555144067336 128.6644348376816 129.16629672887416 129.65300123049528 130.1266872071009 130.58973650877658 131.04579678379105 131.49816387133606 131.95128348507643 132.40988096714733 132.87878908736977 133.36429972701657 133.87224225910552 134.40658256833333 134.9783415170037 135.00379273722172 144.08976940048763 + 16.007850811298876 16.554619805210383 17.066610331017763 17.555544344533377 18.023622359395734 18.476673160132087 18.92208341572159 19.367408055480634 19.81880026732475 20.286013119497294 20.776073145911255 21.293632459901588 21.854363593927772 22.455161354268945 23.106335003930905 23.816122210638465 24.579651705769678 25.403995901362833 26.295932108604173 27.24503905028717 28.25116614910649 29.31054064077077 30.42341913244337 31.56940849025492 32.73304330871266 33.90102297234738 35.06158271685078 36.20136737565559 37.30963729254555 38.37530846423026 39.39472702761914 40.3527400881491 41.24083409263115 42.05666262414291 42.791597568547644 43.43946798284783 43.996788745287525 44.462081007935325 44.83825359763085 45.133447458417834 45.356308673480214 45.510921248943944 45.604334061164536 45.64351796051324 45.63538162145169 45.58678687557969 45.504563527656416 45.39552365459451 45.26613887816531 45.12315452903302 44.974306192316085 44.82699825761814 44.68620195636807 44.55944025615935 44.45349463201827 44.37511852901564 44.33176448036618 44.33023974383983 44.37809227602354 44.48247136407455 44.65089402516988 44.89343551781442 45.2170793602341 45.628285181417795 46.13676040572032 46.75320427736452 47.482915870348435 48.33709166504495 49.32292421623388 50.44762106352693 51.717868854081715 53.138372708721306 54.71104367975151 56.427735330766005 58.27042352552575 60.21223219910224 62.23209053302818 64.2929268257063 66.36849302277977 68.4222245813774 70.40905425819366 72.29724311689202 74.05013745173186 75.65387352489853 77.115647811738 78.4486777533335 79.67234648598297 80.80643158185308 81.87677577627018 82.90986309849868 83.93161088468182 84.96605492511324 86.03804456650059 87.16786417832493 88.37533000753035 89.67220867835049 91.07264553352533 92.5824767356373 94.20539534449178 95.93915593249 97.75918370202577 99.63311664194333 101.5297350033416 103.41951977347449 105.2750925689747 107.07180963355307 108.7975692913903 110.42374422676265 111.94629367907687 113.3551609123593 114.65640774346677 115.85778318426993 116.96648990940153 117.99152871845735 118.94248259374476 119.82933793449679 120.66181514051061 121.44878653904655 122.20063949897228 122.92104684702016 123.61217485903984 124.28245797724158 124.930371399789 125.55995231277613 126.172864891324 126.76903786987955 127.3516492311421 127.91932622169672 128.4745534967503 129.01775999521467 129.55017512009945 130.073473815685 130.5899907850382 131.1021386185257 131.61299467256418 132.12637621446822 132.64584926784624 133.1761959150552 133.72293244802674 134.29109374201275 134.8885375580174 134.9404992697121 144.07813080795236 144.6977759087492 + 16.042502793877585 16.578359790533945 17.08884729693758 17.574355528619577 18.04239840825785 18.497704129288444 18.945649008572683 19.393246023177944 19.847764251148103 20.316722566338793 20.805219363269288 21.325018413928042 21.880266591556833 22.47390770790534 23.120860793763555 23.818245687539875 24.567154546011473 25.380682340882768 26.253980713068653 27.18285352797036 28.166351621036227 29.205839363845982 30.295345699370603 31.415909489730517 32.555741256265655 33.700327861630306 34.83837773650477 35.9577104544506 37.04673751679836 38.099085663570555 39.10374625062871 40.04946867496555 40.92745570509773 41.738865950284136 42.46847676176343 43.116601583811374 43.67277954775809 44.142463029102714 44.52500634448603 44.82753650293509 45.05795792073201 45.22350380337276 45.32908981095399 45.38158442478091 45.387802483167754 45.35451847684576 45.28847940357137 45.19641718193446 45.085060624366605 44.96100891762288 44.83185561125246 44.704002372398726 44.58374034555436 44.47759291527086 44.392708138746364 44.335861081243635 44.314070515159 44.33447077803708 44.40406224058057 44.53028299840131 44.72154291467053 44.98649791408926 45.330815779054646 45.76167201421048 46.291789508922086 46.925569524900894 47.673121215042386 48.54044349416195 49.53873540865516 50.671693461716885 51.94537616958381 53.363704735504 54.927778297331386 56.628823460805336 58.44628585947889 60.356337993153964 62.33513998157482 64.34807632548889 66.36598679842677 68.35664947066458 70.28213145500432 72.1030391056638 73.79191571298257 75.33958010421522 76.75553712103662 78.05506554504602 79.25710796190494 80.38249523408199 81.45767956594504 82.50794358703736 83.558082399994 84.63123670880135 85.74770586800881 86.92987099199028 88.19007164898784 89.54364010169422 90.99626846033567 92.55303470335772 94.21912154931796 95.9876345111568 97.83541284368329 99.73019489408092 101.64085946369222 103.53820739808715 105.3967658276325 107.19861414958378 108.91493624594025 110.53506198495018 112.04027666747643 113.43276969966925 114.71471424548153 115.89210219032869 116.97322615816456 117.96708010728172 118.88318035005533 119.7323342150025 120.52736377349495 121.27588132870638 121.987665143849 122.67737207763894 123.34430010053893 123.99497076469468 124.63275972378162 125.2581721633923 125.8754583386355 126.48250240892276 127.08339380481277 127.67547348745303 128.2619948582573 128.8416872332121 129.4157611791113 129.98549547183725 130.55245858548088 131.11809989367725 131.6850327100006 132.2565450967959 132.8357761603348 133.4277119921205 134.0360114941001 134.66708332844993 134.8288566099496 144.00433588923266 144.6207707766924 145.28555496082413 + 16.06338903360381 16.596752659991488 17.106016384084324 17.595933530179977 18.068632029549875 18.529057742125755 18.98290828692018 19.436314302453592 19.89602969253221 20.36606029055715 20.859579658129398 21.37765477606595 21.926816376757326 22.520129309276978 23.156097495266966 23.83978872882818 24.578319657988583 25.375060418352966 26.22719298612011 27.13445190191112 28.094497249702325 29.110314790966292 30.173676226860415 31.267281413019482 32.37997926418055 33.49939838288313 34.6124182456753 35.70932481114837 36.77868928348683 37.814994948593366 38.80359778179653 39.7354981993224 40.60519936653611 41.40898753245175 42.13250659901636 42.78072367512078 43.338484908901236 43.8107812292289 44.20035290708393 44.51167464774754 44.75169106871315 44.927740790351855 45.04706965150241 45.11468259514627 45.137282892746136 45.121537254452505 45.07398825014326 45.001249878686686 44.91002929293271 44.80718218424254 44.70006311937698 44.594276752015894 44.49657114966182 44.41364999272294 44.35225954851787 44.31915018395651 44.321442339063765 44.365747002526014 44.459467656132354 44.610286060428855 44.82673491533863 45.11480769905259 45.481117122370634 45.934843652108434 46.486100667765434 47.138035609793505 47.90363272678511 48.78624062960235 49.79454453950092 50.93472670359813 52.2102054525419 53.62408195671461 55.1766205135539 56.85775391427709 58.6456409296522 60.5197748670138 62.4502324857964 64.41173350116036 66.36623158582957 68.28799681034262 70.14348617795885 71.89859429855167 73.52213812171028 75.01425671800247 76.38644266212478 77.65517148149249 78.84037582999018 79.96283680570004 81.04897722235552 82.12290716280033 83.20739503882461 84.32498316111261 85.49385045264509 86.73026255420358 88.05029505792064 89.46090956737116 90.96824499818062 92.57681072369539 94.28362705793522 96.0840738025758 97.95685800009525 99.87021497817038 101.7934580067597 103.69833512950784 105.56225418566139 107.35752932256908 109.06886135081292 110.67658507680603 112.16980224323974 113.54446827487851 114.80607323411333 115.96072573051295 117.0168033086791 117.98336754965892 118.87000748691688 119.68667847856322 120.44472792767063 121.15750846719148 121.83162610746358 122.4809402012979 123.11530865607338 123.73842979728592 124.35799184204978 124.97165225330333 125.58563658030593 126.19680825119404 126.80915058026129 127.42004940879481 128.03181376046345 128.6426749429467 129.25445660490593 129.86650712702675 130.48024804949173 131.09643805371135 131.71769778787095 132.34567185654666 132.98396430116884 133.63562549669544 134.30484672486455 134.66636606317314 134.72560770139836 144.4792109238061 145.1407618253879 145.85135723102522 + 16.076887106177946 16.61371816855952 17.13045985989199 17.626566610828178 18.10796045240277 18.577184333316367 19.040455234864506 19.500971788164808 19.96638091350047 20.443273785586328 20.937946153079587 21.454356386748668 22.00220978426514 22.589405770606763 23.21484952421064 23.883385532198933 24.6112558976423 25.388931346889624 26.217977999555306 27.101366820375848 28.036662335414544 29.02589963878253 30.05987273355945 31.12510313291048 32.20844137135459 33.29994807611769 34.38720076171286 35.45833741162735 36.510150834062316 37.525913439161464 38.4972915726343 39.4139527184935 40.27618997988802 41.070287184333004 41.79130468607813 42.43605498945417 42.99663968118113 43.470853613899386 43.8682304125109 44.189522241679526 44.44143443381219 44.63060267554141 44.76360366470718 44.84779609215788 44.88859791670848 44.89226286323957 44.865315728700295 44.81427061742354 44.74565423581848 44.666667322868 44.583336013590596 44.50202058743927 44.42947197601543 44.3719834609379 44.33649517124052 44.32953511763078 44.35796772029593 44.42852244758493 44.54929109875475 44.72730489236954 44.96954270066378 45.281959769726406 45.671686189610114 46.15120284689158 46.72290916593945 47.39593857426527 48.17755747723138 49.075524918984335 50.09408712317628 51.23918384319556 52.51453356319351 53.92151980352303 55.458729970036686 57.115083661760025 58.87086914931392 60.70347197545041 62.58102955184804 64.48219335345323 66.37090883109074 68.21911321379358 69.99978948118046 71.68362472894961 73.24615469360297 74.68511284128596 76.01637313591009 77.25826528081133 78.43044807572834 79.5558526846085 80.65844742327408 81.76164478212249 82.88662511190434 84.05235237747945 85.27806450078927 86.57437123050748 87.95428342395317 89.42385978988936 90.98872253413516 92.64532076552524 94.39154717263165 96.22365329735824 98.1196785801866 100.04818062878721 101.98156102928708 103.89151375571039 105.7532284697347 107.54230270986191 109.24437317197925 110.83949643594153 112.31781574801694 113.67444115330827 114.91573219494036 116.04940059386048 117.08247003125489 118.02460185207521 118.88508706265657 119.67378783530104 120.40061370178141 121.07956677949787 121.72002175222028 122.33167108672717 122.92927857301514 123.51794052663672 124.11099212704515 124.70572286976382 125.30860192303194 125.91719162499191 126.53386459784562 127.15776344942968 127.78850164353693 128.42609140943574 129.07010296823762 129.72000997896419 130.3771517242208 131.04097079653025 131.7137205035311 132.3959306899243 133.0913657758546 133.801312219829 134.4549505836473 134.53737605986012 144.26768192235187 144.92916357350035 145.63641921990296 146.3934333936653 + 16.093208786203764 16.636689298594014 17.16217555648236 17.670910311027292 18.164611958533683 18.64639771282959 19.120670163385782 19.590850025856906 20.06526093195735 20.54769613758532 21.042010038317578 21.560479220955568 22.106311297220905 22.68302859302416 23.297649275038776 23.957501623693542 24.664619086719824 25.422246825534515 26.228706123903628 27.08486387812185 27.992879276103537 28.95383789976209 29.95594916148692 30.98949688898678 32.04308965555984 33.103938886752005 34.16298806563308 35.21280399202097 36.23985369268074 37.23509323068264 38.18671702396005 39.09052584933556 39.941749149960216 40.726444552710106 41.44489384439123 42.085694039644345 42.64989961511644 43.12907629994812 43.532666361011785 43.864991099572876 44.130088435221545 44.33439589633129 44.484270249381545 44.586093163351215 44.64621543937059 44.67104666844672 44.666899698457506 44.63984608055772 44.59642974016547 44.5428700409945 44.485878890523686 44.431484443851566 44.38604040845835 44.356701134455705 44.34912545777877 44.37070489381218 44.42727023585984 44.52793109586841 44.677455702090185 44.88389161534345 45.152787266620386 45.49094675946806 45.90887022521738 46.411912197633505 47.004687417080426 47.69953359036846 48.49840734432464 49.410006473876166 50.4380686324192 51.58687870315391 52.85936427149946 54.256041871104145 55.77457722781698 57.403586721626866 59.122823018557256 60.904645481697685 62.72717084098714 64.56000769746214 66.3812107858698 68.15259837064276 69.85654910095629 71.46764373056612 72.96677456883684 74.3563837504013 75.65150051251928 76.8709839382422 78.03614432647875 79.16946899330935 80.29342696496118 81.43041656268502 82.60015014617761 83.81920834664615 85.10292412600371 86.46265197423747 87.90423569129678 89.43462906990978 91.0524360023874 92.75524314520088 94.54207756078048 96.40264860702995 98.31916267013993 100.26121388033685 102.19939741929431 104.10669825631136 105.95915674409602 107.74271477134164 109.42993168158114 111.01163054203839 112.47080687013984 113.81048062835478 115.0339416494098 116.14748390986321 117.15921316822326 118.07784166135569 118.91430635344894 119.678152293165 120.37876188041416 121.02817195866561 121.63879644389131 122.217461897764 122.78192221277921 123.33558582678393 123.89550970165612 124.46433772009138 125.04842356758536 125.64781102841413 126.26163439311273 126.89242673839544 127.53589978750965 128.19522403876888 128.8660498526581 129.55032197844488 130.24625709805738 130.9540293203036 131.6749972602012 132.40927880778426 133.15921310225656 133.9267697675014 134.30394416919304 134.39514430255164 144.64563756121498 145.35257247268729 146.10605822610165 146.9100341230571 + 16.111969010772373 16.66798128788298 17.207430912678237 17.729910135263392 18.238246611068657 18.735036657977584 19.222211266885978 19.706567504011673 20.189355036486592 20.67789082015847 21.177049670964383 21.694854835775686 22.236147408911172 22.803721860615784 23.406040247100137 24.0534629798021 24.741852476539087 25.474376950621323 26.25669899381182 27.086761209709703 27.964168392418003 28.892010796136713 29.86248563042817 30.86245068737627 31.88231431912494 32.91305812731956 33.94578176051062 34.96861457516208 35.97121039512824 36.94248848678563 37.87560813217129 38.7668912954164 39.60543591697967 40.38044682723943 41.09570463967704 41.73449804546448 42.30100528456891 42.78707861701813 43.19696505341912 43.541642478189644 43.821363231462534 44.04232598849366 44.210771968425064 44.332911525920174 44.414930603624995 44.46299698021232 44.48326631400894 44.481887982205805 44.46546333218175 44.439795538837686 44.411023725145384 44.38579255394164 44.37036979893788 44.37050328977343 44.393879284058016 44.44622435405982 44.53533938869989 44.66600119970626 44.84638891421411 45.081799474752195 45.37888816209919 45.746606597830116 46.19197236140244 46.71857054289454 47.33668674333632 48.05087429516452 48.86752438435122 49.790907034278696 50.82698666033055 51.977836494077316 53.245392366620116 54.62924021520177 56.125699057259666 57.72248091586534 59.396345517473264 61.12485195536334 62.88613197283178 64.64792126490599 66.39186696966428 68.09126081792253 69.71788057511931 71.25694684643308 72.6946394308537 74.03683152548375 75.29942845713131 76.50166173445088 77.66471936539496 78.81047732259823 79.96032539423648 81.13458259748002 82.35220445973482 83.62697772254774 84.9702675417226 86.39383160416745 87.89778718853925 89.48865688936446 91.1597262375555 92.9106519945693 94.73306566975181 96.61744063313749 98.54752920463183 100.4951463959596 102.43207355958343 104.33352394245775 106.17858547125027 107.9449142624218 109.61739827052689 111.17970629911467 112.62108611483701 113.94143259164251 115.14521971059735 116.23927998158301 117.2313492072581 118.12999115138298 118.94469066324376 119.68707388417128 120.36522795435768 120.98940041040728 121.57382276100631 122.12530684737355 122.66047106822553 123.18361476830015 123.71152764923156 124.24959504836934 124.80795639619129 125.39139869645444 125.99605281831975 126.627325477327 127.27896045585024 127.95310213793468 128.64666865392292 129.35974048810388 130.0901700979105 130.83889242929175 131.60448788181833 132.38795682488973 133.19006176036606 134.0132584694683 134.14558290496842 144.285602454949 144.99498410372033 145.74781625573905 146.5479941098481 147.3994100935135 + 16.14155885705226 16.710246910312648 17.263958202649114 17.803116048882625 18.328207508923317 18.84100222766847 19.344356561286848 19.841109560298406 20.33495838456492 20.830584430577677 21.336820239464757 21.854250753097492 22.389101449442457 22.948769171388534 23.54184688165848 24.168899250550517 24.837931604002865 25.5480334279333 26.301727786514064 27.102120842595525 27.950165706874984 28.84254118227238 29.77599066639431 30.74257243722263 31.731001293242965 32.730386019954175 33.73336329716232 34.72730117598838 35.70249442298164 36.6515567181508 37.566226119008505 38.44394223981411 39.267167827404386 40.03807290083429 40.74590144416429 41.38590953248722 41.95292071710652 42.44690964717122 42.86727814408537 43.22165240877514 43.51760088869571 43.75694510085334 43.94574312372836 44.09002840266672 44.19581494108233 44.269296264115816 44.316508337795746 44.343299475774785 44.35565328627331 44.35955645542696 44.36198092864325 44.368126349238054 44.38435351458412 44.41821499094224 44.47419496559059 44.560478567548266 44.68137862069387 44.84530619279925 45.056884966357224 45.323127239227794 45.65151288735712 46.04981748791385 46.52160437836812 47.07499110250243 47.71699719355422 48.45056583219826 49.28357546739232 50.21908431165141 51.26156191221211 52.41286827889222 53.67279723273165 55.03947770024283 56.50842615938361 58.065117807531344 59.68999125471832 61.36225591269609 63.05363383954377 64.74651014969626 66.41115294221157 68.03334319496189 69.58799462294536 71.05679540059388 72.43583359376349 73.7341502551944 74.96826140663593 76.15750075662078 77.32266940485073 78.48478288280637 79.66392704360071 80.87846084209362 82.14591777653094 83.47738388339025 84.88132094187482 86.36721000511432 87.93295244983209 89.58074906184936 91.30233505959679 93.09692006804029 94.9508513489978 96.85467091821921 98.79360562037174 100.74179361005847 102.6751159316554 104.56737706318879 106.39543121054771 108.14280123748021 109.79565991724805 111.33625218765815 112.75670236110896 114.0563971586592 115.23992039605146 116.31453609226632 117.28795072418438 118.16833697167468 118.96441767366052 119.6878610515509 120.34620262083007 120.95032865703041 121.51325316142267 122.04203355802179 122.5515288776534 123.04993234586675 123.54911657522274 124.05976145604092 124.58879941496801 125.15011400044216 125.74194687730237 126.36478357723307 127.02016595432079 127.70204732664058 128.4146172740099 129.15034560988943 129.91278735549056 130.69710595538922 131.50412774457283 132.33402794928435 133.18552733085156 133.8673086456276 133.98295867399258 144.55936190405808 145.314162357467 146.11327355702758 146.9605421370064 147.85981197934717 + 16.178357987565192 16.762507671839035 17.333167228693597 17.889431130184143 18.431774442626658 18.96125963197213 19.480210360687657 19.9899764750835 20.495873290538956 21.00212561728409 21.511047407863412 22.030003508030816 22.561624409478906 23.113654521811252 23.69534779649543 24.30645805592603 24.95126489464816 25.63511692832843 26.362646498524235 27.132751448132677 27.946141295929895 28.804538520680648 29.703753732139493 30.633869623069394 31.586152805337548 32.553829840534355 33.523651376665825 34.48699574997247 35.436405423009425 36.360153627078944 37.26144482021475 38.12010832084456 38.93082940245795 39.69537352451786 40.397196556512455 41.03930619771738 41.60741090360102 42.10994837848472 42.54263189618735 42.91040478258871 43.221775710401204 43.48102178872648 43.691954502174475 43.86040095612387 43.99217834388842 44.09309653392567 44.16896057017675 44.22557308553781 44.26909240877939 44.30573418257128 44.340693375970886 44.380930704237805 44.43259751987285 44.50035233376689 44.592204760789635 44.71221337556896 44.86872140004549 45.065692807750885 45.31100424896055 45.61037023162163 45.971813443327 46.40017433258318 46.899981064286614 47.48103190331834 48.14446464252446 48.899298019236845 49.74763275087033 50.6945235125814 51.74108902504406 52.888460545285305 54.135747764910505 55.479888696272106 56.915475018362926 58.42961343436198 60.00288681746775 61.61133758468029 63.23449500281244 64.85229609278655 66.44156006377553 67.98418522434712 69.46752579106055 70.8723429181916 72.19616488133455 73.45451783206069 74.66425928291689 75.84456020113507 77.01558400175803 78.19725868260184 79.40817102927566 80.66517952700136 81.98317274787189 83.37096713645323 84.83446802099446 86.38086007202511 88.00500888539604 89.70668485332946 91.47540791549982 93.30796744145789 95.18893329546962 97.10753051951757 99.05241115309752 100.9994508636468 102.92153028096891 104.79579512403231 106.60433194314932 108.3287714637713 109.95659703908446 111.47296783306628 112.869676511951 114.14619746771291 115.30861970885317 116.36361150736361 117.31874380659283 118.18197858170583 118.96206824869961 119.66943157689298 120.31174602779316 120.89994122190421 121.44414421931096 121.95489563348771 122.4441131501139 122.92175762701304 123.39660224009789 123.88501710146708 124.39005013702251 124.9243551093413 125.49764481852624 126.10820112304631 126.75998042848335 127.44775873259027 128.17094553979135 128.92736851198413 129.71468169878005 130.53157161443485 131.37648279452944 132.24869256196968 133.14688884728878 133.7010732313485 144.04196193413262 144.8010915610499 145.6016131300544 146.44732301092498 147.34201757344064 148.28949045487104 + 16.22558319748546 16.82549650447131 17.412271769496158 17.985592778136883 18.54504547234124 19.091242104761648 19.624586597982606 20.149298039733306 20.666830387905346 21.18095327613605 21.695489477833053 22.21387299839504 22.74306753321462 23.291314539615044 23.8592799951917 24.452201275427125 25.07766617766429 25.736995449571367 26.433582781829962 27.17064724462144 27.95239460999489 28.775088937083904 29.6358266251636 30.52911744566557 31.44717538602989 32.37845213791881 33.31463561852723 34.24913311949794 35.169397673540274 36.07685651618746 36.95614562767335 37.79707093277995 38.60028523931036 39.35486986795437 40.05322684623636 40.6953802619833 41.27016762173734 41.77727978823652 42.22371797893557 42.60804563625259 42.93582256950116 43.21627171452724 43.451207020575524 43.6456304612342 43.80515677374212 43.93539699730117 44.04195975055471 44.13115976742908 44.20835403394069 44.27885504826587 44.34957829436951 44.4265870068833 44.51400810422227 44.61932319854673 44.74715467785219 44.904579953016935 45.09612889183826 45.32965164630313 45.60971505615065 45.94523002753345 46.33968824128627 46.797568576766196 47.3277168879464 47.93452942342879 48.6224202492649 49.39591567472405 50.25869433142831 51.21290617733586 52.26022821019569 53.39983506339392 54.63010044429396 55.94755907619506 57.34662144724151 58.81474678214276 60.32980580729058 61.87362209224913 63.429174206859564 64.96829257722588 66.48402383416699 67.95023971541538 69.36044534905544 70.70558942761545 71.98105462361622 73.2035386439155 74.39293061263169 75.56798317496272 76.74798892614946 77.95158663879991 79.19570133557907 80.49652363717108 81.86445671601513 83.30684827334689 84.82795182020944 86.43149838037812 88.10939121382786 89.86105195767688 91.67178456081005 93.53694816095533 95.44237152777818 97.37425381938965 99.31913449888275 101.25566745579631 103.16021777420313 105.01478678311895 106.79786345989459 108.49419527996629 110.09440972228882 111.58237665229998 112.95193414998056 114.20398984680837 115.3438015607461 116.37860709513154 117.315755708767 118.1628219221895 118.92885504862087 119.62198116058056 120.25032894908163 120.82576507118206 121.35612624763053 121.85406119319094 122.32570772956787 122.7876055058688 123.24642389418581 123.71270857663629 124.19937300089943 124.71260280198675 125.26299747146939 125.85959750721891 126.50000717651463 127.18869300138239 127.91907338942295 128.6897493857194 129.49936379070945 130.34400309657423 131.2221421156941 132.13437389942936 133.07614813256035 133.53912477427596 144.20514690463582 145.0092932392319 145.8557772290816 146.7483432518032 147.6907356850149 148.6866961943978 + 16.280095624560094 16.895049776949705 17.498186176961703 18.08813693849438 18.663941901556885 19.22538563209386 19.774504166570026 20.311594480029267 20.8399060620113 21.36142411265825 21.879527819674575 22.39999719974128 22.92804589914632 23.467663417325994 24.02466557576581 24.603222612500723 25.207197145262377 25.840799157397225 26.509967649571433 27.216940371127567 27.962374609769345 28.746835711640294 29.57061237182954 30.42730848383675 31.307104815311078 32.20169733699212 33.10678392034612 34.009218567630064 34.90787033390237 35.79280646075771 36.649631751016344 37.4765869307004 38.26971713574558 39.01516503937182 39.71354040418896 40.35403898076671 40.93709954660657 41.45251533295933 41.91152653599632 42.31403442490541 42.662665264832384 42.96342709986927 43.22427091399951 43.44663754646374 43.63592557651331 43.797533426457235 43.93774007418892 44.061347104396766 44.17365811222208 44.28062578549008 44.3899833947923 44.50451459765445 44.63063057662722 44.77444327829794 44.940743280250764 45.136319090199095 45.3660509157846 45.63665645431411 45.95586321957049 46.325670347872524 46.752022844114904 47.24407703007784 47.803780480529674 48.43566147030215 49.14591074886439 49.93679048683789 50.81161919270462 51.7708182466595 52.81480709695522 53.94291251640437 55.15258083313459 56.439459411585524 57.79732610955519 59.21364302263019 60.67062783778833 62.15090720085855 63.630658577926255 65.0993786349144 66.53631136385934 67.93511415552362 69.27543218416253 70.56030112250198 71.79318910061619 72.9860978230833 74.1588752724891 75.33183225064842 76.52317841240158 77.75061427082022 79.02973652068806 80.37277502210381 81.7887075317964 83.28258043564195 84.85917567547625 86.51434722533219 88.24191416601755 90.0381484160162 91.88786263179618 93.78025151662226 95.7035972870268 97.64126906401829 99.57988399897695 101.5019478375844 103.38810233846196 105.21514394229581 106.96728770452289 108.6344503161139 110.20060728821 111.65842872350686 112.99793574816584 114.22267335396153 115.33851500220328 116.35212830999014 117.2708200546771 118.1026547923644 118.85531681275643 119.53631125873125 120.15475327474033 120.72026831751556 121.24001704648703 121.72673176486342 122.18918129357851 122.63789745840542 123.0836724960189 123.53582763354795 124.00625302762161 124.50385390430351 125.03667535294043 125.6144797302312 126.24452069474866 126.92592264836608 127.65975612902406 128.44051716741177 129.2675766199875 130.13549988741892 131.04481553246896 131.99150012241586 132.97370551878876 133.38441552499017 144.333142153302 145.18246875191144 146.07509546214797 147.01471291403436 148.00501173759335 149.0496798722403 + 16.34011936010197 16.969479844034737 17.58778118616001 18.192721154083774 18.783584138031934 19.35998699347589 19.92186140199853 20.47082942549998 21.007988717041563 21.536040436274167 22.05879941225046 22.57960969254655 23.104496977869978 23.638214520832282 24.183863897014078 24.746204382913984 25.32986752729052 25.94191797759838 26.58404691797601 27.259190845475924 27.96951686569974 28.718065253869433 29.50425934107972 30.321580590418733 31.16307647448326 32.02381191752585 32.89448260393207 33.7724750432935 34.646195410977356 35.505672466605404 36.341221783865606 37.15952185124195 37.93868670960571 38.67916520617082 39.37596313331501 40.01810590160173 40.607946770313866 41.13649845873567 41.60709255039184 42.02894547058971 42.40022150144964 42.725463658076485 43.011920683546045 43.26424265411188 43.48534374572487 43.681139483231654 43.85643900970888 44.01626147662148 44.16576856618961 44.3126829527243 44.46128861785528 44.61529927692729 44.78245445469546 44.96587758796482 45.1730859308393 45.407366909596234 45.67861933936047 45.98920615258852 46.34468268415665 46.75051707746814 47.21290326445885 47.73555913113937 48.32385633300403 48.983057385636236 49.71346506285672 50.51982125632022 51.40238865002023 52.3627086139982 53.39974794888479 54.512115838821614 55.696953869519284 56.949809049293364 58.2646043782919 59.62949178988628 61.02753450035342 62.43743372022199 63.84828306633341 65.24292870552763 66.60792217818128 67.93412781485112 69.21636527499236 70.44536078589454 71.6367037417282 72.80515960654948 73.96643867793433 75.14023586170427 76.3452136954514 77.59713080836913 78.9094475819024 80.292545720275 81.7531532920553 83.29724788094951 84.9225526575441 86.62386155845019 88.39858635262709 90.23038173435845 92.11271579172646 94.02616447565956 95.95919036078443 97.89774531371246 99.8284192607125 101.73367532684595 103.59238813836413 105.3884662896422 107.10916112007799 108.73985689220675 110.27065253794929 111.69440129358703 113.00235581252348 114.1976270755038 115.28741827147884 116.27901279321455 117.1794815896507 117.99586469421234 118.73531612125961 119.40548015706536 120.01567416550799 120.57245144643683 121.08716877372109 121.56666774864397 122.02243142440255 122.46304492501828 122.8999237252857 123.34393980245856 123.80241467584729 124.2872994551554 124.80907996914486 125.3726841384294 125.98792464382265 126.66252225083848 127.39271295823515 128.18117839534472 129.02002406092913 129.9088863825155 130.8431538121915 131.8229019970811 132.8419370295553 133.23941899570812 144.42450935938936 145.31911991239596 146.2580086368527 147.24481063199045 148.28316099704008 149.37669216271127 + 16.403044883606643 17.044873026639884 17.67612151392513 18.294792354888287 18.89893722694867 19.48784364930088 20.061353687246534 20.61995088619813 21.164988215772983 21.699029617671005 22.22430078762487 22.745492123938266 23.267664183364477 23.793446418981613 24.327408024712316 24.87424143900167 25.440871453254065 26.029860659118086 26.645147090470317 27.290027790673335 27.967632215499396 28.681566816490427 29.429358649852443 30.207946852919953 31.01150549171441 31.839628731602456 32.68395400816635 33.53161089968486 34.378200735974836 35.21326742635359 36.036909698558766 36.83914797652724 37.60588212283084 38.345789230527394 39.038491755253766 39.68757077495751 40.28220352028011 40.82546254447666 41.31237255247318 41.75281217937382 42.148602070536874 42.50095327144347 42.8146999796772 43.09876413440127 43.3539177578864 43.585567417183356 43.798015052843056 43.99618109954397 44.18515487232229 44.373812852409436 44.56363564271045 44.759559669248695 44.968768559731906 45.1937744891693 45.44295088730633 45.7207578894808 46.03303967825064 46.383457648091095 46.77605340629064 47.22017079362627 47.71775672573489 48.27171044906103 48.888927928488265 49.57024735136531 50.31994516307107 51.13812164324311 52.026439943759755 52.98449415446876 54.01176850963742 55.106184565924096 56.26398792595912 57.48051496929745 58.749518089595604 60.059193319020196 61.39426328223637 62.74027439922637 64.08130833842864 65.40335285072975 66.70081451512425 67.95955622761856 69.18135032966606 70.36504765070596 71.51903879406763 72.66453262790738 73.817929562078 74.99520753250303 76.2140914518028 77.48948425836036 78.83289624039863 80.25430695583252 81.75828677527944 83.34502674891327 85.01199636001084 86.75754355677422 88.5670101156469 90.4315973399634 92.33476987550421 94.26547297420593 96.20426105122768 98.13916243503682 100.05440302891098 101.93525513251656 103.76650904658908 105.53084180600838 107.21358319738127 108.8057296345938 110.2992728378945 111.68463668451253 112.9590841000957 114.12366089115797 115.1863618630563 116.15443171239427 117.03512557364553 117.83539070233991 118.56260562818224 119.2242972482312 119.82701306961127 120.37918075429033 120.8883813854209 121.36512565648866 121.81679854426044 122.25564757875144 122.68789484105419 123.12465703515656 123.57966391789678 124.05750714010256 124.56823215946685 125.12497353130365 125.73111178686703 126.39256520414655 127.1215508395523 127.91023912986222 128.75909064111514 129.66345190415623 130.62176738850948 131.62751269201647 132.6808826230514 133.10765028360413 144.47781020215612 145.41774853399284 146.402957560795 147.4370150400435 148.52349872921914 149.66598374012355 + 16.46340689902059 17.116289535632788 17.75898616153173 18.38897102740092 19.00437502885352 19.60378595605048 20.18677677856346 20.753423446034876 21.305089973832846 21.84321989419018 22.37013065287994 22.891149708969824 23.40860779501445 23.92636922415933 24.44886547196171 24.981996567058733 25.529914669699053 26.09666142946825 26.686302180982562 27.302334608633856 27.949018168612163 28.628219288917336 29.339458336817096 30.0815702495586 30.854716510438575 31.652353564811257 32.46363201752711 33.28114537012259 34.100557168911784 34.92002547228484 35.726138432514865 36.51310269260908 37.27547387003611 38.0097463746699 38.70197860609298 39.35785949313555 39.961903780993524 40.5183612901036 41.02514732578375 41.48506255355355 41.907323019362856 42.288805926126706 42.634082479819334 42.94995518017188 43.24104433566634 43.51038695801847 43.76217411510745 44.000854024385525 44.23214949794372 44.4635725175008 44.69666165276356 44.93626383879955 45.189048414472495 45.457699615351444 45.75217853743028 46.07346774654003 46.42672605128798 46.81755181520355 47.25153884393164 47.73184884959169 48.26312135695997 48.849877043355875 49.49288013431291 50.19604871068904 50.960758500660354 51.78863352800127 52.679643540326644 53.633363358606864 54.64745640133022 55.72007279411605 56.84763765396883 58.025417179113475 59.24757104722068 60.50363650232388 61.77945677111577 63.05793845926915 64.32956459908051 65.58679380174073 66.81333922122438 68.0150998759705 69.17917973353607 70.31895070392805 71.44341077735145 72.5689282290149 73.71508015761859 74.89760130721852 76.1308571670398 77.42910153749636 78.80234086257683 80.25700135516364 81.79573095123736 83.41999357174019 85.12608761973884 86.9024130246627 88.7423497730831 90.6288789676336 92.55009538909847 94.4870476982246 96.42850859838805 98.35489902363912 100.25106532407669 102.10714294633374 103.90495704868549 105.63037594162242 107.27387839197925 108.82640285573268 110.278440625506 111.62650454438996 112.8637151890426 113.9951610579572 115.02895221572588 115.97268014604717 116.83347896638588 117.61805809528965 118.33300899181859 118.98494929888317 119.58221052448293 120.13066438264491 120.639512173985 121.11484117082215 121.56740058438314 122.00487406686607 122.43803188619081 122.87616192802848 123.32694959299035 123.80216487086058 124.31251518843472 124.86202037304614 125.4615058320025 126.12103801540206 126.84101464398722 127.62964102605926 128.48422355633716 129.40196839468578 130.3779608633062 131.40967911251616 132.49232377830953 132.98967178054656 144.49167819527898 145.47692869530442 146.50845567450784 147.58977771033045 148.72441338021326 149.9158786395138 + 16.519321339713652 17.180540105430964 17.832400645593296 18.47134988440392 19.09571287408508 19.70342762309762 20.29394733048814 20.866994748827647 21.423375250415116 21.964344264753365 22.49233961769926 23.010801183813253 23.52304078535518 24.032573054916064 24.543833841358918 25.062499895764205 25.592238657451553 26.137527670114284 26.702541573512686 27.290959187073923 27.906813143118416 28.555608654918736 29.236801024365047 29.948671328155218 30.687092821308486 31.44950097227289 32.22918591784766 33.0180109614869 33.81858501516825 34.619272776934004 35.40717341266211 36.18331087799756 36.94157209451561 37.6690352070458 38.36795183767995 39.02731538547569 39.64532393593061 40.213620349311526 40.74371595282269 41.228142027926 41.67511329126323 42.087758571420295 42.46664190296416 42.816554922155596 43.1458681803821 43.45412604432062 43.74742543109871 44.028762793315934 44.30467606770188 44.58020533806754 44.85856319907392 45.14305754097362 45.441241503189424 45.75714804752159 46.09672393962652 46.461590151405716 46.85707421814498 47.29161400930832 47.764953511892976 48.280984182733825 48.84731446678426 49.46275773211685 50.130981032400406 50.85368364702732 51.63216443129683 52.46725841222597 53.358147340644 54.30407698784782 55.30345174078998 56.353356462237194 57.44976967377436 58.58776816284315 59.761623275212685 60.96161838683944 62.175119145452044 63.39094577007044 64.59895961367764 65.78625370106923 66.95460523406197 68.09443468757854 69.2132790154643 70.31093238588396 71.40875911835639 72.51923488213664 73.65977062421842 74.84679704030476 76.09339984798117 77.41103401562998 78.81008428377471 80.29433879506034 81.86467876838171 83.51874254497254 85.25203531664478 87.05632395784043 88.91420736183976 90.81843223969395 92.74673204855054 94.68905470967819 96.623143612909 98.53325052757026 100.40881935869096 102.23417351883035 103.99705585835768 105.68546301297502 107.2872274273222 108.79627980022943 110.2079013778535 111.5144104941401 112.71451541747462 113.8127062842675 114.81686538693198 115.73508022815824 116.57462160683738 117.3422064312393 118.0450423260041 118.68888093827918 119.27995498016521 119.8266307397532 120.33426027682651 120.8127440249013 121.26832345074655 121.70977153447323 122.14635477184666 122.58672317832796 123.042216082177 123.51993610504384 124.0285625180619 124.57917767865301 125.18016590132768 125.83431320705341 126.55334609209393 127.340350250318 128.19784889965726 129.12518503538791 130.11645690181135 131.16847599022904 132.27948854511249 132.89089216397082 144.46639853228362 145.49689439126013 146.5746830797092 147.70322214148865 148.88596912045637 150.12637896271428 + 16.56748031711275 17.234850709454303 17.893101601700568 18.538998677612447 19.16989659589293 19.783968094976306 20.380112310929324 20.957701667876357 21.51731440722896 22.059895125780987 22.587642465451225 23.103096081983825 23.609389303311517 24.110280407486286 24.610059122813336 25.11423752539801 25.626755557889375 26.152260158294652 26.695187283250135 27.25957145084327 27.84885630012456 28.467395230574354 29.116174798528917 29.7946656493315 30.500284255019327 31.228557688560635 31.98008670993072 32.75109951976448 33.527615164242846 34.30585862489194 35.081032701874534 35.849428835412866 36.60016138044782 37.32761926855465 38.03110942123305 38.6967400973037 39.32787395651618 39.91592116856698 40.46581414805663 40.977064170337705 41.45011146047466 41.89588205160548 42.31037664134975 42.69762473939592 43.06608297147518 43.416259541444006 43.751288149177455 44.07733007035562 44.40003596634035 44.72080003408448 45.04631543646051 45.37756413860221 45.72423797580276 46.08697025675904 46.472237741734034 46.88122379485739 47.32314150459179 47.79874744516965 48.310484013823284 48.86441239730439 49.46217912955487 50.105882973944105 50.79725713630908 51.537577995131315 52.32790336987652 53.16760728444847 54.056644924380095 54.99384967767695 55.97519572693566 56.99899620469872 58.06149255417582 59.15822704194254 60.28415603351028 61.43070893300708 62.58680365532661 63.738891429022225 64.8815130179937 66.0105597533656 67.11713270906799 68.20612416389203 69.27721808310079 70.3429312318225 71.41517511653704 72.51330931681146 73.65011648580935 74.84164564592369 76.10021494829309 77.4354784737749 78.8546263233984 80.36116605364425 81.95633016728793 83.6349305700319 85.3885158244856 87.20948232096768 89.08212223619896 90.99236376507355 92.92400870833018 94.85964209857406 96.78000462727455 98.67231802743676 100.52185850396502 102.31526036752022 104.04123595108342 105.68930363475029 107.25063875872614 108.71673890747329 110.0853487882242 111.35101181927011 112.51349443634032 113.57671086907195 114.54998951018474 115.44176861913672 116.25952433748392 117.01001584993334 117.69956894256238 118.33522412593261 118.92237242315097 119.46744318606045 119.97696222407359 120.45812196397725 120.91875479291511 121.36744531882222 121.81136212052165 122.2592447502317 122.7208043204016 123.20410168322485 123.72001106045043 124.27490393296245 124.87640116229461 125.53515840485862 126.25613902039565 127.04280713722646 127.90365787334223 128.8353452010699 129.84102288499358 130.9122158989219 132.04497196953062 132.81012050024918 144.40390820464654 145.4795400374525 146.6034874384458 147.77914506067717 149.0099075571972 150.2991670083189 + 16.605220015534915 17.276595962444066 17.938914678945736 18.589481623688396 19.224780574803866 19.843213683255936 20.443107310283388 21.02362321455593 21.585057242879174 22.128073522458994 22.65443224426004 23.166507709233255 23.66722986303183 24.16015588010453 24.649339843214516 25.13959151959748 25.63577458708414 26.142172519587138 26.66329047080691 27.203301047442192 27.765856512394706 28.353905785640364 28.970478309990096 29.616991527776626 30.291385327114806 30.997862344362673 31.72431680084578 32.46848723491461 33.22272085658179 33.983355481818016 34.75045716313573 35.507829834554705 36.25202858686831 36.984702819768756 37.68833994899432 38.36756284631165 39.011162772541766 39.620262389937594 40.18934888993393 40.72918091236421 41.23362371083527 41.71119342241591 42.163035908468764 42.59006118455096 42.99929555468629 43.39340101341636 43.77356195778028 44.14407449946242 44.51537814496991 44.884433615312226 45.25678688630179 45.638180428436144 46.03309141984373 46.44403214830134 46.87498667033677 47.331611875891944 47.81767215472905 48.3338536881361 48.88582727364893 49.47457110429324 50.103691248652154 50.77398193001082 51.486733713447514 52.24308587726836 53.042678064525965 53.8858610067212 54.770699427717005 55.69532318879278 56.65799181810842 57.65554649200829 58.68413658365765 59.73945442984159 60.81687689877028 61.908815731179786 63.00569454217605 64.0996781575001 65.18426416612144 66.25139023024055 67.30559752133965 68.34496717254035 69.37572250480626 70.41005528939407 71.46250486091498 72.54813547907575 73.68266764990173 74.87786682321125 76.14614559619126 77.4952528674352 78.93135875996882 80.45531287634212 82.06682652906643 83.7621204247149 85.52963341847321 87.35808662339893 89.23650096511737 91.14525023085749 93.0711319105426 94.99316107257052 96.89642694575267 98.76572460099699 100.58652067566304 102.34637804314342 104.03407877098901 105.64123285138545 107.16077703103394 108.58521911996468 109.91134172752265 111.13707794367292 112.26094597413727 113.28880654826617 114.2308662999563 115.09585506375805 115.89139333402022 116.62429410915844 117.30081871542345 117.92720729030111 118.50982193821478 119.05370129131514 119.56644821300425 120.05288568660357 120.52116703990794 120.97776903259582 121.43150937632424 121.89099664304747 122.36289923498484 122.85640351304954 123.38125303843121 123.94413059043197 124.55508005937739 125.22027999922321 125.94391035270473 126.73815094235195 127.60092665713398 128.5415031770296 129.5544055681782 130.64312876149606 131.79813192325355 132.7509066751363 144.30621599889557 145.42683214665703 146.59678874598367 147.8194156988129 149.09804290708198 150.43599772565682 + 16.630254440600943 17.303499980445974 17.967787964538235 18.62085613212082 19.258603678940045 19.879518263211157 20.481515953518 21.063432414551166 21.62537005366156 22.16771985847863 22.691772106369722 23.19977002978885 23.694436879314477 24.17912337035858 24.657715163875423 25.134502172612873 25.61402825540348 26.10172864054857 26.601617281465987 27.117978215815132 27.65466185690456 28.214887412484593 28.802191319254558 29.422969946214558 30.073758769285803 30.751727713081394 31.45179713398535 32.16909244999963 32.90690063257802 33.65731880033241 34.40733942885137 35.15590618454526 35.90341948726341 36.63331265016203 37.34534443565736 38.03615449082805 38.69332424108015 39.323099678850404 39.918684919817935 40.48626703858091 41.024586727205616 41.535205287257575 42.02607493854257 42.493666518886364 42.94414965803419 43.382919510503015 43.810249516062164 44.22978850126681 44.64778976635099 45.06701025388637 45.48785685444509 45.921274476288815 46.3645184564553 46.82430346434284 47.304175653830114 47.807532002927104 48.3362586362568 48.89495576659924 49.48418436173605 50.10816303053473 50.76717902986585 51.46251872935105 52.195345860508525 52.965462195707 53.773502285665806 54.617044404351574 55.49572541126804 56.4078737640594 57.35064985885665 58.31944463409138 59.31238037932857 60.32579478487405 61.355900705014584 62.39634774537991 63.43776719383229 64.47269783004106 65.49878843665115 66.51460435210913 67.51663855826385 68.51150586285058 69.50680091318479 70.51309749060368 71.5477603017219 72.62319414029228 73.75423194175113 74.95245239231382 76.22786839400838 77.58715091237306 79.03470320183807 80.57064003403032 82.19215307626207 83.89622175563471 85.66883881127961 87.49729181603317 89.37248666748171 91.27143538600025 93.18281906139404 95.08701049109278 96.96609555373504 98.80808636905766 100.5975120759933 102.32151826981756 103.97156100438237 105.53804770207039 107.01664068316153 108.39995871981726 109.68523501974207 110.8717318618989 111.95815539298214 112.95139671248059 113.8622684082061 114.70020193535272 115.4731236757944 116.18799173618565 116.85109250613627 117.46827465443242 118.04627199625439 118.58958512858845 119.10485245354353 119.5977048502064 120.07532271319442 120.5427717204081 121.00922584061495 121.48105027010013 121.96651831777626 122.47539042242934 123.01316665229649 123.5882283447147 124.21076110257418 124.88511873451758 125.62120239633578 126.42265064605918 127.29498596891864 128.24185432831337 129.26584821436396 130.3643711017284 131.53904171204277 132.71562465462688 144.1753307015584 145.3407372316492 146.55650699758877 147.82590328681275 149.15218938675687 150.53862606405718 + 16.6410649373829 17.31384814074508 17.978125313036976 18.631668072281126 19.270116081352892 19.891767707510148 20.494450717358717 21.076370037104013 21.637606066693305 22.178281044323853 22.699338404629373 23.202625718840444 23.690792231165783 24.16697636439556 24.634886402040042 25.098679433681387 25.56281881539557 26.031914960647335 26.510553590146838 27.003135192539588 27.518808039319307 28.057444893348247 28.621993908937693 29.214525857076683 29.835543373012346 30.483667888822723 31.159321986248578 31.86416542323568 32.58428741834521 33.31395847361768 34.05501715464899 34.80303889557034 35.54463908670299 36.276809623821286 37.0002377846337 37.697889244065664 38.378245687320295 39.02647288712149 39.64988463562096 40.24384082449066 40.81719176070142 41.363715888303496 41.89459297596789 42.40543745209791 42.900383716356004 43.385722328279606 43.859344247696406 44.32913725355123 44.79802395013304 45.26541767157085 45.74032544528348 46.22244791983674 46.71714141165868 47.22662362483855 47.75503714021018 48.303816603972166 48.877396664863426 49.476095973993274 50.10386617180291 50.76096664315154 51.44861172338087 52.167949356841625 52.9188571648853 53.70202301377978 54.515105025002896 55.35837519950578 56.23041821165916 57.12676067330546 58.04646901742896 58.98680233911959 59.944543656954025 60.9164270696564 61.89930028188181 62.88793911397915 63.87589199834036 64.85858925288393 65.83147143852504 66.7939441282226 67.75120287396362 68.70623007229304 69.66760228825851 70.65178426661724 71.66889711856527 72.73582956894121 73.86299936803448 75.06219658524104 76.341730739367 77.70707136757962 79.16057198405218 80.70216161311438 82.32807438427763 84.0324457821843 85.80110646155147 87.62223041167219 89.48469659544979 91.36687426761674 93.25713677015342 95.13626817376995 96.98717943352227 98.79729524028387 100.55217947301328 102.24020035618204 103.8512336555102 105.37882293297626 106.81696955289182 108.16012692494188 109.40657209897988 110.55503626572278 111.60585921727785 112.56585303819745 113.4462143060032 114.25700198072529 115.00703133736903 115.70354603372148 116.35297286953518 116.9611957523931 117.53447070072522 118.07730871403488 118.59576762916461 119.09550791869994 119.58259541379984 120.06304257939736 120.54456928645114 121.03180954207122 121.53425920444069 122.05907731185344 122.6128930200031 123.20636145301945 123.84416744292763 124.53323954831836 125.28253959907711 126.09447215521097 126.97960969076141 127.935754535288 128.9710603847128 130.08345653652802 131.27141166632254 132.53351928488502 144.01326109916272 145.22322180520442 146.48456218852687 147.80047705559355 149.17416121286797 150.60880697284904 + 16.636217158739516 17.306381434884155 17.968794533689557 18.620943710879843 19.25855500821776 19.87935224461808 20.481264545020444 21.062206804958993 21.62166443278299 22.15976636970173 22.67718742552278 23.175407211629878 23.65667477809478 24.124122506866428 24.581261542227637 25.032104871822202 25.481770661017563 25.936061292891093 26.398442739729507 26.873543410126164 27.365693501383962 27.87874532370822 28.41589862632577 28.97976225754756 29.57500226181 30.206054319125652 30.86351166069807 31.54359531085858 32.24298046338754 32.96468148927529 33.69950507225718 34.43836275134833 35.178175364565476 35.91930092087722 36.647875557710954 37.36246796010129 38.057895829796834 38.72887942130899 39.381341882106284 40.006562031234864 40.614886679208695 41.20070433458348 41.77056631151297 42.32499820304762 42.8643656525623 43.3975007472999 43.921475203673864 44.44162796242263 44.960794973476 45.480821050768476 46.00740600850103 46.54247782563525 47.08723745810323 47.64783598029869 48.22392780071448 48.819616967274015 49.43622091511749 50.076179567892225 50.74025021909126 51.42946059097968 52.144918418953104 52.886508624678065 53.65488169016105 54.447911076777665 55.26600971767203 56.10735051079675 56.96861258990157 57.84929044727473 58.74687367741442 59.65840975904065 60.58104043686648 61.51202799071078 62.44895475346402 63.38778186265471 64.32362175032004 65.25352805599812 66.17677138996328 67.09492838034129 68.0077097948154 68.92583258625642 69.86051463093186 70.82133924594301 71.82512109772381 72.88254724228072 74.00564636030533 75.20379846493545 76.48381254532745 77.85083166560405 79.3046811816058 80.84599515242225 82.46957805887743 84.16582626921499 85.92192691664971 87.72902992765981 89.56979967713102 91.42891078906655 93.2906295097189 95.13939872875059 96.95855424758902 98.73289058507325 100.45088767932558 102.10075850017111 103.67380285649365 105.16252061739516 106.5611233758883 107.86534505906367 109.07510799250626 110.18718644477548 111.20433696887683 112.13261758789166 112.98376240165332 113.76835348854189 114.49575551017402 115.17385177494668 115.80928280466938 116.408055927177 116.9767627475697 117.51948561120747 118.04182362009334 118.54896446384988 119.04666615353331 119.5407049416824 120.03778680385346 120.54319738372233 121.06595400862251 121.61005293338523 122.18410725208113 122.79659587769487 123.45225342249228 124.16116198704792 124.92686203622002 125.75702021816129 126.6554734499811 127.62781247855867 128.67364728639936 129.80084584327986 131.0045257835496 132.28366384593258 132.7044217162104 145.07625238009825 146.382874314064 147.74500623607224 149.1657726020616 150.64829540136165 + 16.614624865756316 17.280182686861345 17.93909790046992 18.588113783428692 19.223610694861904 19.84212893731005 20.44192997069399 21.021039127254095 21.577940061100087 22.112694384080395 22.625861569991873 23.118652906527046 23.593056354628125 24.052563849117824 24.500898682244287 24.941348483206188 25.378276573777754 25.81631365451128 26.260519357814342 26.715416792795068 27.18547987058831 27.67479309094514 28.19046904231813 28.735667225214545 29.31001025786108 29.913883651844884 30.54584618532157 31.206437758284803 31.89875829565968 32.608018053461386 33.330614901505626 34.06601418198738 34.81029976647297 35.5548208203045 36.2903153692397 37.023807265334874 37.73624010507753 38.43386194505639 39.11047644659023 39.77111067633847 40.413136343792054 41.03964220963815 41.649940817196025 42.25003579867222 42.83718971943625 43.41971959118878 43.99254843609228 44.565265131990266 45.13705076352924 45.70946617273007 46.29034922341833 46.87553795469176 47.47455638108479 48.084450791974405 48.70897823465466 49.35133418919858 50.011305214631875 50.690724842264906 51.39027336843326 52.11116382048292 52.85313297437582 53.61638899708447 54.39917105685354 55.202052735892195 56.02273968820928 56.85909945947089 57.71055351317443 58.574925027486984 59.44871035381621 60.329411090524665 61.215959793844846 62.106241854231264 62.99890601621505 63.891233069929065 64.77980939316305 65.6619602811569 66.5372572105538 67.41033157422582 68.28637885567828 69.17243367429509 70.07976677057442 71.02296481953576 72.01276196433199 73.06134191809036 74.17872677745076 75.37328582468467 76.65033352083067 78.01408824758512 79.46400422680007 80.99990092003729 82.61179989897413 84.29206488041787 86.02964877405753 87.8138190734606 89.62557955221546 91.45610010114073 93.28378178033238 95.09664680073756 96.87883914556302 98.61574428000402 100.29490251739712 101.90581009467836 103.43951837541687 104.889018379927 106.24897091752639 107.51689323348056 108.69100501601332 109.76931045728897 110.75368762116841 111.65257281982814 112.47647384872887 113.23627670529635 113.94185921453645 114.60184158031254 115.2233844446147 115.81320554572109 116.37683244049458 116.91885928180193 117.44533773963242 117.96069990177183 118.46998313408481 118.97856862096614 119.49281987273022 120.01759791477281 120.56111600655925 121.12778408275649 121.72576351429468 122.3610952629644 123.03928376052886 123.76982925557667 124.55522875342625 125.4061991912017 126.32229809366106 127.31298353228587 128.37758974521952 129.51830243586747 130.73840373988753 132.03457108105795 132.72594487840885 144.90179546910605 146.25336336946606 147.66136005916562 149.12883777098378 150.65884629892398 + 16.575574154525757 17.234720797790782 17.88873161061692 18.533076671162377 19.16502453871752 19.780376345492005 20.376964076924736 20.952942157342257 21.506851048989425 22.038024091858905 22.546443944497632 23.034655876443104 23.503740209170022 23.956135238339897 24.39504041710592 24.824233915613714 25.247955270683686 25.670769105171136 26.097413179442245 26.53394483100243 26.987249163827876 27.459189024307467 27.953657870618223 28.473882498637057 29.02226496756984 29.6018640579089 30.221535438598917 30.86964502123982 31.54244274898184 32.236745390178854 32.95665199998265 33.691995629661285 34.43555431656234 35.18235263127455 35.9360428603159 36.67861025544265 37.41399401173143 38.13739446731614 38.84072964265818 39.536849971847815 40.213493558282124 40.882267876668315 41.53527198020126 42.18230004837177 42.81657924232546 43.448323572836294 44.07315063115478 44.699475773720245 45.322416449135304 45.9519081792029 46.58359560689343 47.2248564063386 47.87438282672418 48.53484372072357 49.209104934449265 49.896293480746124 50.598891557507834 51.31758362086239 52.052613584455514 52.80365745723803 53.571023262276185 54.35314748953751 55.150554321744 55.96053513717524 56.78187082964262 57.613888769271405 58.454315880260985 59.298830474127854 60.1476819317788 60.998898969514 61.850745225127305 62.7019447288066 63.55183917110738 64.39865350690988 65.24064165394677 66.07777484139955 66.91202687638459 67.74607665038938 68.58558538046718 69.44243065153708 70.32802781923316 71.25262142479367 72.22959332900446 73.26862159314554 74.37872389163711 75.56648222578198 76.83821811730594 78.19524480169606 79.63635626511866 81.15740181122351 82.7506046606771 84.4090752226681 86.12185291929504 87.87434519250584 89.65450843799695 91.44655629854871 93.23686674681643 95.00882004426724 96.74906557539241 98.44508066072095 100.08351397881663 101.65418072873256 103.14813173742245 104.55882033995432 105.88235599784336 107.11512352570571 108.25410983552415 109.30145539112883 110.25596781097082 111.12654754819044 111.92522061723152 112.6619976929507 113.34709686570358 113.98971846283601 114.5982632009359 115.17930688783744 115.73793551836334 116.27941455486695 116.81005119939547 117.33313909760608 117.85488268288266 118.37916662738813 118.91188192818981 119.45749003668605 120.02373925793599 120.61442432894835 121.23758599769042 121.89812623140725 122.60283621720389 123.35813701462132 124.168995989875 125.04216319384895 125.9815465970769 126.99103285706592 128.0763426643456 129.23664229446803 130.47366875347006 131.78862433385316 132.77436902193435 144.70181758500334 146.09794934999894 147.55140775579068 149.06517093628068 150.64221461486525 + 16.51869455797956 17.169818187665737 17.817589578616168 18.456056450438584 19.08282852206839 19.694424808009057 20.287190222646526 20.85924613132637 21.409195897300698 21.936809285848195 22.441980802119474 22.925190430995876 23.38797922639653 23.832651054828926 24.262207913894034 24.680261857388242 25.091373744467475 25.50249851489541 25.916327365282516 26.337746712509706 26.771594507558788 27.22268291256732 27.695046777453413 28.19416072081063 28.727360084013046 29.291970784048512 29.888441410253346 30.515485912839395 31.17239903884806 31.865649412759023 32.57878589810486 33.30725900581043 34.053686959815465 34.811563554106165 35.57416674733919 36.3319776882817 37.09091418150282 37.837500556806575 38.57532001853405 39.30315906849732 40.01826538364782 40.72797956864825 41.42429945028152 42.118304674052425 42.80086792726422 43.484875886795265 44.16208499889942 44.841119181151534 45.519517120378154 46.202974487829145 46.889652165033255 47.58386429366866 48.28599872023496 48.99814361605625 49.71908292011795 50.45318815424832 51.198148096009085 51.95508787132509 52.72376117150206 53.504099709528504 54.29479499492862 55.096181246883965 55.905055207416176 56.72103256348391 57.54327265998607 58.36848658422484 59.19438828664833 60.02066836817966 60.845568872100294 61.66753446726044 62.485408415973765 63.298644734114795 64.10745584304325 64.9114031607314 65.7099192568363 66.50430495397649 67.29792440971849 68.09594244484146 68.9059883911499 69.73711674693195 70.60138725198613 71.51066822753556 72.47494807828606 73.50366008640066 74.60471208512023 75.7840251715822 77.04580833687156 78.38946635962164 79.81451233870186 81.31449652242955 82.88506047370659 84.51647179119341 86.19461668048639 87.91255885197444 89.65276160341776 91.40350484610751 93.14896251447196 94.87737543084674 96.57327436985877 98.22416598503546 99.81905310218197 101.34776471276942 102.80219561249932 104.17562427213164 105.46240170405783 106.65980883342183 107.76795030441316 108.78424030327963 109.71186244400417 110.55723791354525 111.33200587962232 112.04736893621724 112.71380087996467 113.3408510415012 113.93693816371378 114.50902644549856 115.0629329347326 115.60496186202022 116.13939637483146 116.67063508183205 117.20472163947562 117.74462111714277 118.29717666730713 118.8652019061506 119.45575943715058 120.07253129938212 120.72301022758576 121.41136378960748 122.14462004085884 122.92747764879395 123.7664877004879 124.66541579004233 125.63144598565674 126.66555218371361 127.77353007384794 128.9557805504159 130.2136573954587 131.54779291248298 132.85266567486633 144.4782852405656 145.91855225092854 147.41701855686424 148.97658631459853 150.6001552985146 + 16.443233741432643 17.085613034380838 17.72512727251872 18.35760619374032 18.97816706016725 19.584364343563305 20.172904227232795 20.741138332999345 21.287681883441845 21.811366865101448 22.31196584715872 22.78992743076431 23.246508602020125 23.68374544031129 24.106077130726085 24.516546599073294 24.918616186077365 25.316762469945452 25.71576107949722 26.120536057598276 26.535998606261842 26.971676396718014 27.42910683768243 27.91160581880574 28.422491918033085 28.96426039682435 29.539378080735112 30.15667489932095 30.807487970525564 31.486364399030496 32.189035481466696 32.92119018301319 33.673296314340604 34.435849949435266 35.20655004921302 35.988621127778906 36.76478446486797 37.53638680038523 38.308130432409726 39.06876629120817 39.82519046424386 40.575158138266175 41.317479318455746 42.05786170934319 42.791537164690645 43.52767665153355 44.25779833572454 44.99180553297646 45.72556388298433 46.46362071740564 47.205701343906476 47.95409470427424 48.708063006715776 49.47084937310309 50.2411871435831 51.01926067632228 51.805607231254214 52.60030466308314 53.40210364569075 54.21011332998817 55.02438914612862 55.84116112120051 56.661042688591145 57.482798332748835 58.302238205273845 59.11892502906791 59.931948775427514 60.73970625221619 61.5407726399196 62.3323870158021 63.115711618633526 63.891589163685445 64.66120612353382 65.42527953630034 66.18449552208968 66.94122687823693 67.69821476766018 68.46240513910564 69.24370757862204 70.05236716730995 70.89880807512205 71.79273837731735 72.74425369152765 73.76155621002633 74.85120487771125 76.01874105572466 77.26554679576111 78.59148000666514 79.99648279053599 81.47274734532681 83.01325615817498 84.60862010246065 86.25084712331854 87.92607802904011 89.62222704315711 91.32549940606097 93.02442930126355 94.70309761483641 96.35091061794317 97.95547794432821 99.50531986951887 100.99115890166829 102.40450319648414 103.73879738927002 104.98999500538116 106.15535985642835 107.23197445400594 108.22095270659261 109.12158172237197 109.94373531615972 110.69769418068186 111.39421555634384 112.04385683107793 112.65643276364989 113.24085527133803 113.80483464571462 114.35564773760485 114.89799192667965 115.43648500087392 115.97693923886297 116.52320325816017 117.07973816377982 117.65169933033506 118.24277102021058 118.85886201522966 119.50365610080242 120.18348930687453 120.90222812173069 121.66649789315993 122.4798422566134 123.34953751336143 124.27750198745218 125.27184903910776 126.33365563553565 127.46609493873352 128.67457088899403 129.9571907928765 131.31256625058705 132.74219443650716 144.23316494856832 145.7170920675209 147.26006169330316 148.86489812258353 150.5344232992011 + 16.349525946043432 16.982517768562488 17.61261353013971 18.23716381036033 18.851979324567917 19.452121638485607 20.035314089058883 20.59939352636062 21.141983652248477 21.6616771756902 22.15785302604767 22.630700861924655 23.082757818464582 23.515268317548728 23.930562032261793 24.331933547616636 24.723267474249614 25.108927912296103 25.49585587427535 25.88925897303014 26.292684760621114 26.711090440639957 27.14915612276789 27.61111822976653 28.10378040282859 28.632448902065835 29.195618414363295 29.795388447583345 30.429525188518582 31.09845646160288 31.802293951598056 32.53429947597335 33.28477525302745 34.055480676281995 34.84404500904748 35.64047198009569 36.436406742325396 37.238986711563186 38.03956422791987 38.834446690214236 39.6326770989887 40.42387778687427 41.21309751118033 42.002279473938884 42.78709867120861 43.57515103682424 44.35965918365492 45.14902039238111 45.938083094374285 46.7321459204339 47.52955985318617 48.33163556176935 49.139849151997055 49.951900187232944 50.770278597214244 51.593375947037174 52.42096298632838 53.25162490598641 54.08509740140937 54.920363750598824 55.75437398377225 56.5873341824985 57.41780179682476 58.240821912347876 59.05750695004522 59.866310855356495 60.66573959468409 61.452517326731986 62.22705208211775 62.98983352033857 63.74118487532587 64.4822122347009 65.21491057959092 65.94102376955921 66.6626537997685 67.38331109986976 68.10814239428099 68.84445137899398 69.60147827162656 70.38856803234069 71.2170287524573 72.09611984315086 73.03416375621384 74.03858220161068 75.11544591535524 76.26806841365018 77.49736328593062 78.80354592135446 80.18165737017499 81.62577082230928 83.13167876832277 84.68977810499169 86.2870365386816 87.9162669801073 89.56311177447871 91.2163427001714 92.86153611610462 94.4900807136889 96.08694135091201 97.64160263128913 99.1439411327774 100.58485947850086 101.9568101340065 103.25334866611416 104.46945404264159 105.60145733066425 106.64925875498275 107.61043487412935 108.48845519376837 109.28913423272412 110.02362612526134 110.70297380731901 111.33781113541916 111.9381428967447 112.51317042367313 113.07108425986169 113.61865207858591 114.16142044442181 114.70527401533437 115.25480120358111 115.81356226215368 116.38743151945492 116.97927055612672 117.59420237019285 118.23625136076286 118.90989630194505 119.62003607118722 120.37068903780526 121.16771474743082 122.01401110173194 122.91707392056891 123.87842038966753 124.90405923621161 125.99783533853075 127.16003414707812 128.3932653040496 129.70161650008902 131.08359846113694 132.53410886720968 132.9932426051795 145.4954887950418 147.0824063960244 148.73192057688175 150.4467735662539 + 16.238262267941604 16.859614257370843 17.480908925255452 18.096529548100836 18.70364115704349 19.298087496821335 19.876674362127165 20.436058755525234 20.974144491976986 21.489476047982862 21.981828773273957 22.45156375498228 22.898932961937238 23.325508453993955 23.73363357027741 24.126553076732755 24.5108597282893 24.888620882956953 25.2647606660729 25.644160858241733 26.031925551834643 26.433230615557893 26.858761512983268 27.30832432917123 27.785961463925783 28.29580274076123 28.84052554580552 29.42524763490832 30.05320679297781 30.71594770383627 31.412240772020656 32.13920441174863 32.8960393002844 33.68004786105845 34.47676329474876 35.28837655418172 36.113215745399415 36.94121004958882 37.770076500543986 38.60490628392364 39.44094185048224 40.274228412918674 41.11229941028736 41.95032892252595 42.78628053520409 43.62693072626497 44.46804982161813 45.311427054412874 46.15831088219748 47.007111914941035 47.86125367477621 48.71708362573333 49.57764493881089 50.441013751159105 51.30610116829815 52.17293194632962 53.04033889729614 53.90714291624537 54.77122259809891 55.63088941196417 56.48553753697147 57.33260986237083 58.16893608629681 58.99473069720529 59.80845680822567 60.6078857479593 61.39014288039129 62.156782523678196 62.907400162775424 63.64232413159217 64.36271646915486 65.07048221823491 65.768468323772 66.45947638112607 67.14653427567055 67.8341342361837 68.52882222133735 69.23895150288244 69.97396410937252 70.74332803023051 71.55613642294162 72.4208181978176 73.34524012090469 74.33559081573932 75.39632362771466 76.52985964053514 77.73750083534976 79.01650333684184 80.36507449643382 81.77551491536498 83.24164007568162 84.75428958481 86.30597175396805 87.88246105044814 89.47763710716725 91.0748611637509 92.66701028456788 94.2395915607226 95.78215915428873 97.28489268944945 98.73843930608507 100.13363746083016 101.46309889808167 102.7204303230539 103.90140613774979 105.00212013307149 106.02084329688768 106.95796672149167 107.813274711857 108.5944388874019 109.31280145871715 109.97798224917975 110.60048301671955 111.19035606888633 111.75701573984155 112.3090808397106 112.8540484916168 113.39941631634454 113.94903339290234 114.50744814552817 115.08016645033902 115.67097084908681 116.28316342899603 116.922668871735 117.59142572953728 118.29506122236444 119.03676561699285 119.82105184600981 120.6526796152712 121.53437973633899 122.47317054123556 123.47055038778282 124.52906414751813 125.65548079504303 126.85053079565205 128.1167959721117 129.45184281200181 130.8592029937906 132.33617281295204 133.1327917801926 145.2556624287572 146.88592189594473 148.57946789413936 150.3389610490021 + 16.10965393984851 16.718888466139873 17.329200143817317 17.936691188765174 18.53599992142295 19.123581884479414 19.696326821052455 20.25098109029456 20.78490742917061 21.297178093035146 21.786365371053417 22.25206911185472 22.694788179299778 23.11630192502787 23.520473996155587 23.908787671676414 24.284828477603103 24.652762516862595 25.017226713181717 25.386222697688464 25.764208500397547 26.155227935325158 26.564463303494925 26.996815689236872 27.456740903085443 27.954386001412054 28.48929109258025 29.062430420750555 29.674600581711697 30.324948643766014 31.018777819696865 31.75091790052872 32.51063270911137 33.299667891179716 34.10674194404445 34.942564754697756 35.78886769917521 36.64203445735629 37.50357608271043 38.37563771669563 39.250244709467566 40.12772699477286 41.01424125270665 41.901145383312375 42.788805650483 43.68338159889942 44.58062260383668 45.478450717644854 46.38360325418137 47.28847345881997 48.19794901684001 49.10942597263619 50.021292867875886 50.93478837601576 51.84714426140679 52.75714628278891 53.66376544857907 54.56410841773244 55.457414414912435 56.34215854182799 57.21417902068371 58.072661069679484 58.916461843975284 59.743963247662165 60.551282327584154 61.3384795821583 62.10573374799855 62.85278491248375 63.57992746899484 64.28812675703215 64.9791352309786 65.65454236772186 66.31949085080626 66.97790714488946 67.63377464896237 68.2923724391004 68.96092898545818 69.64767284141783 70.36239802086756 71.11407205686461 71.91109646970651 72.76107708142656 73.67056165283344 74.64480096592321 75.68770634148943 76.80136020990541 77.98443886288072 79.23434336933533 80.54680847180346 81.9170718692181 83.34100025830107 84.80625110129121 86.30500177089957 87.82883881743493 89.36542161056704 90.90661724853406 92.43981920375246 93.95420413798244 95.44150060058693 96.89103529821021 98.29342311908532 99.64092425675939 100.92656031490935 102.14434438741145 103.28966345730795 104.35976433444071 105.35123359000056 106.26427899292275 107.09898951884594 107.86348694536889 108.56670479636144 109.21913353213793 109.83116532145146 110.41286399354117 110.97376864929677 111.52272498769993 112.0676347768469 112.61499527804942 113.17017936547458 113.73931178313042 114.32597344120099 114.933746984581 115.56791662442834 116.23143935994094 116.9276883191581 117.66200744449091 118.4362625559102 119.25556526194812 120.12333156169713 121.04197580061953 122.01748720810625 123.05170487431862 124.1479762911639 125.310868985315 126.54082263656635 127.8387574870292 129.20777095777817 130.6433759619891 132.14740643622494 133.2954179998101 144.9995329639331 146.67247742398115 148.40935429100261 150.21274069677486 + 15.963397713166488 16.560679925969602 17.15993826658956 17.757388795530073 18.348808620785242 18.930094481068238 19.497427559255918 20.047311192663674 20.577664796906216 21.086392472795026 21.572075838688924 22.034073370752097 22.47441276848242 22.893106123421784 23.29209074660333 23.674049418745536 24.042805977144514 24.405236571851123 24.763558316851697 25.122765843585267 25.488116704684455 25.864982859502227 26.26156392751701 26.683809170941835 27.133960511612344 27.616292107409404 28.134392677596093 28.691026885701707 29.294624773456054 29.942307682400948 30.63326999345282 31.360730999414816 32.121416345943345 32.92015099413406 33.74671601309029 34.59641067206944 35.462999702943286 36.343544069774936 37.24146355107182 38.14794103023108 39.061906457527336 39.985766577355704 40.91832495137889 41.854641258231126 42.79445058577134 43.74430473120307 44.69692895204599 45.65158976776842 46.612954650004234 47.57577297169599 48.53988333036229 49.50570157722508 50.47038053642889 51.43234998200202 52.39122177286178 53.34351980288162 54.287597857701755 55.22181653539167 56.143247838785705 57.048849763934456 57.93778145846165 58.80816136168187 59.6573573714865 60.4820068705685 61.28311181822826 62.05990020060215 62.81205580030284 63.53981524396873 64.24276110882195 64.9229739720972 65.58431596975403 66.2302911983836 66.86531775317327 67.49396905327505 68.12112471452022 68.75329467045691 69.39888741796275 70.06628913662989 70.76403047235515 71.50027824617898 72.28258125728121 73.11765100790136 74.01143573916174 74.96817185945072 75.99043676997806 77.07877137230783 78.23243370173753 79.44991878948633 80.72531515526616 82.05359438745477 83.428110329776 84.84330261302746 86.28702362101305 87.7532954000434 89.2304257560314 90.71098873099244 92.18298154593697 93.63853153968722 95.06768292646223 96.46119967578456 97.81111378889177 99.11005643180778 100.35139623250419 101.52936773569793 102.6391868789135 103.67778406178878 104.64289730118472 105.53240885650006 106.34897827234042 107.09731616579816 107.78721688057644 108.42990304242993 109.03433931853722 109.61025028540043 110.16715585179033 110.7140446151599 111.25921188472434 111.81093767681955 112.37427139577204 112.95380158352184 113.5540447227795 114.18040306042349 114.83598973455629 115.52388265930409 116.24890396493161 117.01369102206152 117.8210500727733 118.67607762558852 119.58058310138627 120.5377281863478 121.5526649399796 122.62698365122677 123.76335888907164 124.96237900509674 126.22977278147599 127.56555224593171 128.96587741173568 130.43553479009552 131.96562496352877 133.47746310276744 144.7290203958353 146.44394221105048 148.22339398411756 150.06986745890126 + 15.801611330091495 16.384943469886995 16.973170377707778 17.56147896430673 18.14420147256421 18.71821519991325 19.27954720422605 19.825062700128466 20.35174632272694 20.857204100946177 21.34038551520474 21.800981202459273 22.238486613335446 22.653687328186084 23.048842192400326 23.428139373118313 23.79339634347247 24.148556470482355 24.498090304774767 24.847665125448327 25.205927025503442 25.5752280656215 25.961078653614212 26.368853459061665 26.803627210257094 27.272413256636963 27.782090184664288 28.33180725604614 28.923947447131816 29.560360817929073 30.24302775636063 30.970761869627783 31.74095777192546 32.548195926070115 33.38464386922755 34.24900054747016 35.13914651671152 36.05180637375496 36.97969469079722 37.92122129924063 38.874924933820694 39.84557767950411 40.824614464770086 41.81073676284098 42.80299491965415 43.80826157926581 44.816512375912566 45.82928739211257 46.845674219951576 47.86631482601865 48.8859877358785 49.90544950652502 50.92208414499645 51.93319965305628 52.93659404797626 53.93036353606624 54.9116333896422 55.876754619132704 56.824158347086765 57.75159714226779 58.656880530625386 59.5348883987674 60.38639034167175 61.21008587265337 62.004909485254835 62.7704992827592 63.50589196570491 64.21168918371285 64.89113373024844 65.54670774366454 66.18172752223535 66.80038820861695 67.40788235636761 68.00963122553016 68.61152781498237 69.22097578280028 69.84626184687406 70.49565857114011 71.17716800060654 71.89829773163375 72.66584620342225 73.48570130217144 74.36265624322735 75.30019307753807 76.29995255667508 77.36175713390091 78.48387145064584 79.66317670125875 80.89800041626545 82.1814239557859 83.50565930867516 84.86533064876066 86.25256875619077 87.657512766942 89.0739449425619 90.49103059346756 91.90036302687889 93.29462389601902 94.66377501050366 96.00000765995628 97.29600921659913 98.54498444129447 99.740763421571 100.87791307076752 101.95183860923466 102.95887244718398 103.89788070378367 104.76595539572924 105.56465794527377 106.29861815231386 106.97884720713128 107.61344741448004 108.21191934103011 108.784103291806 109.339473898727 109.8870762272581 110.43536613013033 110.9918831546546 111.56278048966256 112.1536096430471 112.76984737917164 113.41438218203163 114.09109045139347 114.8045180084795 115.55781361114816 116.35339416918562 117.1950003437411 118.08615259780731 119.02874153302736 120.02576765792811 121.08175082555306 122.19658808745456 123.37316683446218 124.61439739261489 125.92075521134586 127.29245007644103 128.73194438129877 130.2317262164124 131.79541585062555 133.41392879939298 144.4460447197298 146.20218548806963 148.02340119013047 149.91209628471051 + 15.623482402586525 16.19414987346758 16.770217388049904 17.347754701703966 17.922419650906132 18.489804020717816 19.045819647595334 19.586998084596065 20.110095521893292 20.613201521776674 21.094553323010196 21.552884319131653 21.987967415909885 22.402374365543245 22.79619647906153 23.171644594760156 23.531700990129213 23.882316456515394 24.228074970501908 24.572572945956576 24.921088281149245 25.279147947168926 25.653310407448075 26.05313670664229 26.48006054548473 26.93905304200128 27.43453308136592 27.970218278401642 28.548991442289665 29.182665102021282 29.865300575637455 30.592526057649035 31.362915183984153 32.174829982963466 33.021631164068204 33.90788333721501 34.822933643115796 35.760605266460175 36.71888003030118 37.695849866440376 38.69367187077889 39.70737869269267 40.73318482135748 41.76935892009138 42.815389206979724 43.87494202768364 44.938906547465926 46.00969521432401 47.08216191072197 48.15925989087431 49.235178468907705 50.30751789735143 51.3753127414866 52.4347798049639 53.482598758081195 54.51592353484199 55.53205597294265 56.52820788368161 57.50146815219573 58.44686941283886 59.36385667398875 60.25044662529616 61.10504233972344 61.92651351541177 62.713279956900486 63.46448691885676 64.18277340247714 64.86971725909784 65.52764969840509 66.15969171813846 66.77007528418565 67.36368591007015 67.94622392973507 68.52370905500179 69.10280198273729 69.69186443826374 70.29912370430975 70.93277366824685 71.59971084057379 72.30660582518115 73.05936103426433 73.8629417228445 74.72122287533095 75.63680894500641 76.61216985840827 77.64543027040762 78.73439947811467 79.87573879126745 81.06502819565706 82.29965281254859 83.57170190596936 84.87329999690171 86.2014076368597 87.54383362557934 88.89674417547815 90.24880710121654 91.59464146748441 92.92538389278239 94.23305294088405 95.51069837418402 96.7516784578629 97.94976602984296 99.09925135890118 100.19504009359481 101.23274451328341 102.20876620115398 103.12128848817066 103.96859969865906 104.7503495926583 105.4723425269713 106.14343196336448 106.77159667906572 107.36619615846247 107.93669443407474 108.49251511007384 109.04270389720489 109.59580583992714 110.15965890026456 110.74083003687583 111.34461592876991 111.97575104077663 112.63853355627035 113.33819883141432 114.07715183981611 114.85842578560992 115.68517181734475 116.56171346463641 117.48930393457228 118.47068293240484 119.50842862693774 120.60509133754907 121.76249097882267 122.98287185905946 124.26603996301114 125.6135838777148 127.0270733972556 128.50183431047378 130.04034330564147 131.63501517776402 133.2818214191413 144.1525259308825 145.94907648595543 147.81119012568743 149.74118212353162 + 15.43093787193082 15.987187368322319 16.55185145334408 17.119616665064637 17.686000124600124 18.246141881553132 18.79660424773934 19.33352196458354 19.853909154758174 20.355094450329254 20.83484545385253 21.292306303553243 21.72746174738515 22.140259741986974 22.53181320839246 22.90595687656022 23.265285407492478 23.61258062193505 23.95219881104862 24.289198083134153 24.63264204112738 24.985566335686514 25.353238925787686 25.741416407787117 26.15570146901375 26.601376995246984 27.08927886336472 27.6188132162024 28.193002036021692 28.816357417228257 29.49039864056645 30.21316917181378 30.98515765065467 31.808816855227654 32.672279040125645 33.57283980694038 34.507670858569696 35.470686945097064 36.45965199237686 37.47598649915113 38.51458392792775 39.57140204620258 40.64412141740908 41.73044067949976 42.830476453639065 43.94403094104133 45.06434479526514 46.19222766288134 47.32246055677614 48.454458549856255 49.585460337550344 50.71130353154863 51.828703230066075 52.935073818349615 54.02630343237089 55.09914357196641 56.14903919327319 57.1729346102661 58.16809563125187 59.13175792921986 60.061507497940916 60.95536956659147 61.81052774397964 62.62604548140842 63.403062855068065 64.14217831097211 64.84468992425347 65.51306353354401 66.1503726029957 66.76050912900831 67.34754666231052 67.91668624443027 68.47541873542288 69.03125336004506 69.59170200797882 70.16452050462624 70.75725953158496 71.37709524867398 72.0306730605583 72.72395889690733 73.46210045234291 74.2493007512825 75.08867536041254 75.98193664064637 76.92921150459836 77.92926873076485 78.98227828266636 80.0827686285574 81.22629668956037 82.40817295941565 83.62586439700402 84.86934375604372 86.13475386556038 87.41388883115255 88.70090669926353 89.98682827767678 91.26767568889183 92.53393614130302 93.77925957763618 94.99745341126147 96.18256993934351 97.32899303131508 98.43152301056976 99.48543614530938 100.48640071094646 101.43111773094903 102.31728045187485 103.14419576581145 103.90989884624908 104.62126461099315 105.28458591174474 105.90806426217638 106.50138553338765 107.07334538835858 107.6323075275667 108.1872793963455 108.7467233067947 109.31866357047055 109.91020511977835 110.52731264114061 111.17578935443655 111.85894012725146 112.58072694640447 113.34475129229322 114.15438803118471 115.01378070363539 115.92434226772365 116.88869866748428 117.90882509556829 118.98753370004522 120.12695277732698 121.32852368226547 122.59179827899457 123.91912833133851 125.31116504156915 126.76467674630857 128.2817876481789 129.85593427740025 131.48474760178115 133.16341010973602 134.00215905031098 145.6864844356248 147.58857500743466 149.55887992469374 + 15.223918596099784 15.767109679561083 16.319333552776627 16.87647631874026 17.43417565579464 17.987777009764702 18.533170959553196 19.066411631453484 19.5842427314197 20.08359683466812 20.562977131477304 21.020639057099068 21.455591650951742 21.86842859780975 22.261105964715195 22.63461597715845 22.991505836627805 23.335988643467097 23.674308535339073 24.00924321387461 24.346334054733 24.690924485343313 25.04884453733291 25.430993869399984 25.83927074097994 26.279058306386837 26.75551556448514 27.273225005869577 27.836045250880556 28.450060381283503 29.122632346365624 29.847442820665623 30.624798023973803 31.452064745947666 32.324700369434886 33.2393466198371 34.19422721923441 35.183943258688274 36.20820023794353 37.26042535103029 38.33791665105277 39.43789367296259 40.55751937081681 41.69392016174167 42.84786567851746 44.015207132520146 45.192301306883465 46.37627787444103 47.56387798341947 48.75103899132441 49.936486484288004 51.11457113354097 52.2816686432841 53.43349470285749 54.56622749692797 55.67571772058771 56.75804711817634 57.80961589024223 58.82710300189192 59.806958680634104 60.7457028365973 61.64279915869519 62.49701112504606 63.30794420619337 64.07610008876642 64.8027188628084 65.48987948262257 66.14050414101509 66.75639790588738 67.3440489205656 67.90916986463317 68.45795609217656 68.99760320672884 69.5358840541288 70.0805386735605 70.63906347912112 71.21857685236526 71.82569333691286 72.46640374107578 73.14598291874523 73.86901155291311 74.63893930072307 75.4581357403121 76.32746588142128 77.24642146519534 78.21339103042928 79.2258294118336 80.28330810385351 81.37920233497445 82.50841189675812 83.66849751607404 84.85222757103591 86.05378841427158 87.2682479779627 88.48844113008593 89.70793931014906 90.92235187814929 92.12347987322521 93.3057623801103 94.46375900347323 95.59240934034477 96.68633776428828 97.74089265835592 98.75217728621946 99.71620281079424 100.6296951144582 101.49001340976938 102.29698390270455 103.04772899180112 103.74917143668611 104.40615560327085 105.02727506046982 105.62154434958316 106.19622669209232 106.76003456922473 107.32166576708705 107.8898383423296 108.47242978575963 109.07678535000373 109.70903444010662 110.37425269494749 111.07697649253177 111.82129070424527 112.61182161406474 113.4510348997136 114.34164880320455 115.28632827253234 116.28733060123669 117.34685421450894 118.46752292362976 119.65030512263849 120.89486056102139 122.20357051375201 123.57671137485272 125.01175960255168 126.51080117694929 128.06751062690887 129.6813258322197 131.34770589973417 133.05484524682964 134.24629111321389 145.41627856799465 147.35737005201833 149.3669446375261 + 15.004422916169998 15.533015978729836 16.073144144296716 16.62061616090372 17.170047438681873 17.7172959013444 18.257746398018114 18.787579341185932 19.3031169424715 19.801752725181892 20.28089359846897 20.73858921250502 21.175203002485993 21.589830752910352 21.982831462041204 22.35642127029165 22.714854299279736 23.059784135795557 23.395109553985865 23.7254133147671 24.05908510131934 24.400983537615048 24.75563664975988 25.129085043985135 25.527361127085406 25.956321103345303 26.42413070963083 26.936275371895018 27.49454914085125 28.10550178035449 28.77012415035747 29.489547429600698 30.266388854444656 31.09746159022261 31.979547045574886 32.91148160665827 33.89038007981288 34.90788620613144 35.96130158390949 37.04772592184685 38.16407482157805 39.30711247000447 40.47348293098395 41.66076330795612 42.86739733085023 44.08814263411888 45.3216486963534 46.561216853227066 47.80562705487412 49.04847281128406 50.2867749523767 51.516239135481605 52.73152687196628 53.92819728979833 55.10170050919941 56.246925219250215 57.35941137084808 58.4354483866579 59.471502792657255 60.464594059204096 61.41239281937924 62.3133042167446 63.16653516614189 63.97214453801757 64.73107550370696 65.4438709961434 66.11369705049451 66.7449792009222 67.34245202022244 67.91146307919726 68.45802226264094 68.98904951700176 69.51231271993306 70.0357970431178 70.56708803867105 71.11335407371598 71.68140109431005 72.27734082804376 72.90634305705471 73.57279594325007 74.28023854389917 75.03129920468088 75.82842611112454 76.67205541511547 77.56070770462752 78.49306635905097 79.46587522836484 80.47661189382191 81.5233672899903 82.59890096123586 83.69996422350617 84.82272976517068 85.95965945566034 87.10858448560036 88.2617512793929 89.41425577594148 90.56158619473402 91.69703738381875 92.81583984272879 93.91330839486339 94.98514506108064 96.0264377565105 97.0328037465086 98.00107164980706 98.9275732158949 99.80930002882538 100.64371788732574 101.43087119109232 102.16797900736111 102.86023471621628 103.5121979895169 104.13311169185162 104.72936222325342 105.30858292840081 105.87911763213368 106.4493964321102 107.02775890538643 107.62245672326901 108.24093290558076 108.88962299698667 109.5737392045868 110.29791759562748 111.06632933594102 111.88271307428352 112.75046614701778 113.67258955569643 114.6514926480924 115.68955393223928 116.78913864686949 117.95135680466774 119.1763571522236 120.46608658690099 121.82084805732224 123.23847989516068 124.72114624645383 126.26241851497313 127.86342625888604 129.51781899629995 131.21874349139404 132.96019562842878 134.5019157272683 145.1403281139818 147.11938947608454 149.16713121135774 + 14.771960406283949 15.287010366831446 15.815710357602427 16.35271823223075 16.893823987413075 17.4345787559949 17.97045346315084 18.49743886128854 19.01179858264702 19.510249248304095 19.989737751845848 20.44941979798049 20.887567213057945 21.303572077503024 21.699881123636672 22.076303012950873 22.434989891187712 22.779207089399442 23.115894457895195 23.44704387829209 23.777738693592674 24.11397400689105 24.46172378051157 24.830485728149693 25.224537803139874 25.64902995341403 26.109761299067777 26.61208179757232 27.16134708068376 27.763439783183347 28.42037775501444 29.137233627002946 29.91814021843034 30.756664486632012 31.651391081798 32.59672848656904 33.594014530982 34.63537801352149 35.71792283013461 36.83844574425359 37.99347858719858 39.17932975353279 40.39212494476618 41.63033576573236 42.888910600596226 44.16272429883365 45.45192249185596 46.74712870461987 48.04691078864372 49.34471247452035 50.63547220435691 51.91478432111226 53.177048181388884 54.41659491193342 55.62830282151967 56.80719182421815 57.948579239887565 59.048224791378836 60.102462087533624 61.10831422231316 62.063591472761495 62.966309218340655 63.81573086834456 64.6132451599855 65.36030843337747 66.05952470629856 66.71456969616823 67.32985559966953 67.9105926396292 68.46270450803169 68.99288257949581 69.50895785539134 70.01841728569495 70.52940865900062 71.0498840478015 71.58644366427939 72.1450381936215 72.73091440508048 73.34856664363782 74.00169447827638 74.69355166954388 75.42615204261986 76.20024629887502 77.01546496593811 77.87247750154485 78.76798243349093 79.69896626519092 80.66299706462613 81.65846880180584 82.67926827063694 83.72063993431081 84.78161814124512 85.85356148148954 86.93684449829479 88.02243655431904 89.10738121935537 90.18757374688694 91.25735236745368 92.31274254910252 93.34963398712313 94.36418520286804 95.35237580977443 96.31070210557733 97.23611995526772 98.12515260621706 98.97501200769112 99.78357440709878 100.5509171176618 101.27443808303866 101.95867470290278 102.60719691826732 103.22899586221148 103.82883429179812 104.41428663790484 104.99373696316866 105.57585240396885 106.16744144482676 106.77639686841975 107.41029845996114 108.07605793573713 108.77929947935262 109.52480953522516 110.31711614385985 111.15998173853869 112.0567934869178 113.0108165690499 114.02449898122761 115.09974943474674 116.23840726939352 117.44136968458587 118.7100266460528 120.04495346304715 121.44433017659276 122.91012662228906 124.43656730733258 126.02544345270476 127.66901987571117 129.36433473530437 131.10493077588484 132.88096031647953 134.6782334442441 144.8605023045032 146.8764474962795 148.96119459551772 + 14.529076438060244 15.029727352710466 15.546177217799384 16.07319970011976 16.60669407224867 17.141300510848275 17.67305559886521 18.1973812616283 18.71067115689205 19.20941940098673 19.691120948416838 20.152949616166147 20.59384458600788 21.014010989852636 21.4129422723913 21.791526333777345 22.15417669861613 22.501996930436395 22.83858843712794 23.168226090617317 23.498087602373882 23.833781873987853 24.18034363371184 24.543862750961583 24.930496335699633 25.34656531734311 25.7981826490515 26.29495519212041 26.84044052548127 27.438755211402132 28.093250938728783 28.806804720957 29.586099988495633 30.426483433474885 31.329093121769173 32.28707917323262 33.30205903950265 34.36722771332815 35.47876341697649 36.6331590641755 37.826562868684256 39.05482870860903 40.31401050030814 41.60239166606671 42.912243128194156 44.24047371241028 45.582855254407946 46.933450862229584 48.28690011728042 49.638681222457976 50.98136368884095 52.309373033331205 53.616918088911895 54.89812135011129 56.14681094685554 57.35757305281025 58.52541267120448 59.64590932335567 60.71535520700845 61.730873032398776 62.69051122885832 63.593203760086546 64.43900069142312 65.22921958941873 65.9661133641364 66.65295258780966 67.2939609426987 67.8942263674482 68.45963993905234 68.99653486895642 69.51143867150897 70.01445123804605 70.51340117727284 71.01563977413889 71.52797941809108 72.0565245359982 72.60664057105578 73.18295301588576 73.78971292568666 74.42997724463271 75.10590129501432 75.81879017667048 76.56886950744143 77.35646327000188 78.17898393374745 79.03687176528844 79.92549277247728 80.84149372760876 81.78423881126406 82.74959322330771 83.73113225062173 84.72964849317573 85.73706759391001 86.75394570349127 87.77206198948414 88.78945488165046 89.80281615191804 90.80748592833498 91.79962663408439 92.77603445728165 93.73355833693107 94.66896187118834 95.57909697936378 96.46122221882514 97.31273030364098 98.13122740638069 98.91411139464506 99.66196399874649 100.37227413184908 101.04891965686593 101.69550420492864 102.31911290033841 102.92404611227265 103.51775188511073 104.10913980335332 104.70394433352597 105.30988311852909 105.9346517338931 106.58574345886949 107.27017348276829 107.99402812208534 108.76231858055435 109.5794877497759 110.44948534425588 111.3757855832608 112.36141036695929 113.40895689124191 114.5206359385967 115.698025683808 116.94229509140807 118.25435868870181 119.6329501350549 121.07942742437538 122.58987688149517 124.1653088297208 125.79762947165942 127.48679541272676 129.22608643897485 131.00298865447462 132.8105262516386 134.63635432202935 144.57867037047566 146.6303583292494 148.75088973933532 + 14.274746428565102 14.76190858918996 15.266798438021297 15.78454246819714 16.310236409569338 16.839319439441816 17.367052987546757 17.88926112060472 18.401917051228576 18.901592867470633 19.385166298036353 19.850563802424652 20.295897748752612 20.719638684659774 21.123265953260372 21.5074613480628 21.873236434707483 22.223032370707294 22.563202499084433 22.896241427499664 23.226670609487098 23.559966917025765 23.902141106384168 24.26209599705398 24.646260864636098 25.059240634006954 25.507361030491264 25.997243455420804 26.53519538699325 27.1258703918395 27.773595865163607 28.482067284858218 29.259814478827945 30.101890646022476 31.012539753764653 31.983671025745913 33.01543070981996 34.104260985782396 35.24453966286608 36.43245613804258 37.66377670944772 38.93390383345012 40.24038193150203 41.57695545046822 42.937230940712794 44.31946258825419 45.714696881263066 47.12004724049622 48.52674498037816 49.92999004271093 51.32286213503775 52.698073347317155 54.04912522836626 55.369518547680336 56.652957780553855 57.89354565519367 59.08596305411488 60.225630084755714 61.30884470142899 62.33289586409136 63.296148850602535 64.19810098980885 65.03940674456692 65.82187173836553 66.54841597815634 67.22300491803968 67.84947952984442 68.43422918254996 68.98431688955418 69.50756172879706 70.01239144779588 70.5068796531112 70.99844603308748 71.49411645232634 72.00042951915702 72.52220146397158 73.06505718167111 73.63288188684379 74.22868745357381 74.85470409475802 75.5143904316458 76.2077431794439 76.93400408776156 77.69186196111673 78.48025612304491 79.2978591834745 80.14355271079846 81.01155198475752 81.90046177783674 82.80998673795003 83.73201443435755 84.66756201909458 85.6107699125439 86.56128183253196 87.51232242236142 88.46272973172091 89.41022809208606 90.3498964668407 91.27923750805063 92.1958164971082 93.09679967988055 93.97964878683706 94.84200190227479 95.68124311430374 96.49519964492933 97.28194624519922 98.0396656500572 98.76859025688421 99.46608094508979 100.13577046100218 100.78107452924274 101.40766249522348 102.01909108831786 102.62380019295378 103.22748080224659 103.83651183575807 104.45829350376383 105.10026323436868 105.77079518854035 106.47604952839835 107.22197315387453 108.01385482583301 108.85635252238951 109.75360382070575 110.70924789726232 111.72643999499645 112.80801511429719 113.95617910638279 115.17223645150018 116.45747995614322 117.81156380767766 119.2352931539405 120.72639679576884 122.28436514168395 123.90409604687011 125.58488650613604 127.31812444176805 129.09671008223842 130.91314420864956 132.75620096178292 134.61041586100623 144.29670154281615 146.38293619164034 148.53797159213957 + 14.01124254637438 14.485489821251761 14.978683876431662 15.486803452767463 16.004906859759828 16.52864656234789 17.05306944760209 17.5740104379976 18.086637608060805 18.587694092802234 19.07411829517503 19.543359759340223 19.993216187223812 20.42332434253261 20.83240092947457 21.221206331786536 21.592859841295315 21.948898671995853 22.29216705780613 22.6266635376758 22.9585196855382 23.29411236621096 23.637689030809216 23.99563944285765 24.374658537819123 24.781579120138883 25.22319241786748 25.7060626258633 26.238603600419413 26.82471986268955 27.468467144462487 28.175787961967405 28.95247158441457 29.796960128912826 30.71482272203873 31.698327439259597 32.7454483050684 33.855882987053256 35.02294583770249 36.242225900249835 37.509196981731804 38.820477759455216 40.17084752370673 41.554055255038854 42.9651391484958 44.399114013282635 45.84724791196119 47.304970048802616 48.76432581853263 50.2176835414996 51.65856406812793 53.07926389658996 54.472016935574906 55.82978842842883 57.145848013273486 58.41397874552253 59.62866814956768 60.78527654510883 61.880178585341106 62.91087468324635 63.87606977728558 64.77571768755678 65.61103012669018 66.38429133233986 67.09929199635887 67.76086585853471 68.37470005753072 68.9472971438544 69.48631316549015 70.00024073422742 70.4979325437699 70.98688089500799 71.4739012450408 71.96448651267235 72.46591052530627 72.98305801905958 73.51993641421927 74.07972146586522 74.66537527592462 75.27861839257596 75.92023229605583 76.59033078393726 77.29199303504264 78.02072738344442 78.7742571665297 79.55123839859235 80.35230120009955 81.17216880639353 82.00732814466463 82.86058735475191 83.72317535964363 84.59629777669593 85.47545834730523 86.36018005259776 87.24490832915804 88.12952328536883 89.01137538728703 89.8868912670778 90.75467208148963 91.61202311710102 92.45714640725687 93.28815821413501 94.10296403941254 94.8998156427603 95.67686968084061 96.43226427101696 97.16470201542182 97.87513062971469 98.56039083962617 99.22372131668662 99.86843811412025 100.49892547871048 101.1183329711827 101.73516493593722 102.35262721842058 102.97733063657665 103.61752946882727 104.28037817524064 104.97166615930995 105.69829025738508 106.4666990522837 107.28257942741713 108.15074005195497 109.07544251019415 110.060450355279 111.10986405692006 112.225864661582 113.41019373335972 114.66458982275266 115.98991182395426 117.38661342151434 118.85380312765969 120.3902815674983 121.99323652905096 123.66106133616005 125.38520289124092 127.16235745140203 128.98427591454632 130.84087772069813 132.7179425203919 134.60021621683822 144.01646505244145 146.13599530009853 148.32419510325954 + 13.739277217697017 14.199690970602601 14.681723275089483 15.180645650128449 15.691970926382504 16.210419946483267 16.73192054921941 17.251386029786453 17.765087197706976 18.268844315547202 18.758683881506325 19.23241281633553 19.688283846420564 20.12441770319168 20.540248861434698 20.936757936292388 21.314581740388547 21.675538893762678 22.024388619665544 22.364788730601404 22.70045376624083 23.03662121222577 23.379181980453453 23.73524898130516 24.113720846155523 24.519096682183996 24.9582980720576 25.438083556371254 25.964862033187845 26.54451401753992 27.182230632766686 27.886803345404076 28.660077296871982 29.506435178281595 30.427974228654175 31.42264136790914 32.485955861266476 33.61560046002964 34.80799965318638 36.058403776346644 37.36205052847469 38.71323518866015 40.105901273415654 41.53372290716361 42.995710171230854 44.47911297182433 45.97976023245041 47.48771820191345 48.99805276449775 50.50071803254175 51.98788812541265 53.45167398472348 54.8842963904361 56.27771199352325 57.624285978434536 58.9172310755483 60.15142121936778 61.32229486377371 62.42643882140965 63.46169310816118 64.42700223263643 65.32305483558014 66.15178368733795 66.91638129173461 67.62123478178944 68.27179592727461 68.87443641734123 69.43671426415787 69.967246843086 70.4748927076667 70.96720133431239 71.45154055115478 71.93516948450835 72.42382882402791 72.92274014998037 73.4361783270718 73.96765347549211 74.5202751854377 75.09581326511429 75.69527831752471 76.32036824516642 76.96989571340595 77.64247914327169 78.34052367860343 79.05954847262832 79.79614446050832 80.55112615864996 81.32277425296662 82.10497919783448 82.90155576107865 83.705067254713 84.51653802299647 85.33213494299304 86.15189691726309 86.97204475773255 87.79104607147552 88.6083209305018 89.42155065379472 90.22826064904484 91.02745379328685 91.817832418253 92.59772902681782 93.36592904211305 94.12092197684862 94.86144661221401 95.58624589709675 96.29416833415193 96.98608932118904 97.65953822414157 98.3171673562122 98.96194422807267 99.59712636949031 100.22641944609383 100.85576236010543 101.488319352222 102.1313815808525 102.79214688418479 103.4755204565687 104.18830795124873 104.93722962032304 105.7304832333254 106.57255816989655 107.46795728044175 108.42115491762861 109.43683736699117 110.51789454369585 111.6669797381785 112.88640368350708 114.17884245233516 115.54414570347812 116.98237811076757 118.4925063089779 120.07328057137981 121.7215460696483 123.43308666583422 125.20359126455025 127.02518422967152 128.88672100753925 130.7793086664601 132.68884831725123 134.59862317817348 135.79873456702725 145.89134987127014 148.11131522202447 + 13.45894606660996 13.906637328684283 14.378075274607575 14.868220357337393 15.372650894083703 15.886539896016815 16.405039639764734 16.923829414553698 17.438344014551568 17.944793886738417 18.439490009476334 18.918945030899845 19.380923293149223 19.824447612298204 20.248515844832788 20.652388359906837 21.03793175619487 21.40750126049676 21.762869834128807 22.107483633452663 22.446704737760566 22.787596495350904 23.133868193799398 23.491845161857576 23.868289783250948 24.27023874698741 24.70482391691486 25.179083007427263 25.699767628958213 26.273157665161612 26.90676579778638 27.607229320429962 28.376865417839397 29.225385272567276 30.150003032490222 31.155797656705143 32.23510264921417 33.38563761067375 34.60355679205127 35.88414492982538 37.22198877132775 38.61106851617956 40.044852092786485 41.519248404978754 43.02790866711098 44.56073145458393 46.11094317129004 47.66942820384533 49.22720652012679 50.77717428055999 52.309152405118574 53.814211806543724 55.28332359993667 56.708572868315635 58.08245787963399 59.39827356319177 60.650314855241646 61.83404791366806 62.946244655923074 63.98507711152027 64.95016916135157 65.84260434360796 66.6648472306583 67.42046219051663 68.11519326995209 68.7553218420521 69.34727235092497 69.90019031183661 70.42360483076078 70.92632146692891 71.41621088508776 71.90014587277714 72.38408525620542 72.87265673707783 73.37019632957664 73.88089242573531 74.40773482999843 74.95252186368404 75.51797304457048 76.10472476423902 76.7120096436715 77.33987244846662 77.98693078017003 78.65061301289555 79.3344193203313 80.03143005981562 80.7397012375005 81.46307258833382 82.1930911632844 82.93306774172306 83.67813579125581 84.42879112990202 85.18174937072676 85.93787252719179 86.69436882282879 87.44898760498816 88.2039474585802 88.95528940037887 89.7025678702273 90.44505496901472 91.18154867102858 91.9116652653186 92.6341291862616 93.3482374549539 94.05303505463428 94.74766890583227 95.43187240938991 96.10588974231389 96.76789415444789 97.42033495557448 98.06581677440403 98.70638501673753 99.34643822212864 99.98948663695835 100.63843848606658 101.30232480653011 101.98368665432604 102.68870933422022 103.42585056204759 104.20110610438383 105.01946928242049 105.88687550041048 106.8090664336012 107.79218043747437 108.83897843676051 109.95224672150334 111.13500074779091 112.39033236207715 113.71928791833817 115.12363274253809 116.60246443918889 118.15517855754008 119.77860578024188 121.47075678922685 123.22784957021409 125.04018366462859 126.90258439109404 128.80505958990776 130.73500303318642 132.67698505508858 134.612985656536 136.09208782499147 145.6508141218013 147.90108689776346 + 13.172203245765175 13.607542098142932 14.068065928168831 14.549805345021033 15.047585808248432 15.557289934611624 16.073706220017957 16.591963673318805 17.107886556310095 17.617440488421867 18.116849155553965 18.602885428952117 19.072590883324043 19.524102821812082 19.956347764507658 20.370123473873242 20.764893269366755 21.14210819486682 21.505253772947565 21.858351009072443 22.20438475603459 22.548780765603205 22.897012184678754 23.2553183435716 23.63198222806633 24.033928676300643 24.467206291944006 24.938953523941578 25.456084385426365 26.026225887480404 26.657142793568777 27.35280146315276 28.120041991486225 28.966654207651086 29.89395740316871 30.902747528257002 31.993923229328754 33.16489226256528 34.40777963222989 35.717605959119474 37.08861888848069 38.51439338058546 39.99051195120374 41.508616906345715 43.061716678055404 44.64378618318386 46.240992909628716 47.84753894069439 49.45255197907595 51.04657097234677 52.62025317924741 54.163693163726045 55.66735526809053 57.12280909759428 58.52229798515054 59.85897854334216 61.12609619457588 62.31884951596333 63.43558368608589 64.47496897127823 65.43722221955808 66.32388630085832 67.13843279356922 67.88554878019004 68.57108808023175 69.2019502676694 69.78654713270876 70.33446907854714 70.85553105186193 71.35799151330436 71.84919302849163 72.33524263501076 72.82057105772401 73.30988221116101 73.80775353167773 74.31711400781062 74.84013649472031 75.37884920721933 75.93361969996081 76.50464282938724 77.0942260355355 77.69997998948729 78.32028332371166 78.95326011270359 79.59800791134471 80.25552839638813 80.91903060192799 81.59281229094904 82.27119448113395 82.95530555371637 83.64281224053177 84.33369424899442 85.02519275280173 85.71956221384886 86.41319222512448 87.10576487840181 87.799090243513 88.49043748088236 89.18002095966008 89.8668485088125 90.55144857383335 91.23272980426785 91.91084484043117 92.58508454990427 93.25513829501492 93.92054499714547 94.58157273231872 95.23843383121202 95.88965736935793 96.53737213661597 97.18411509306154 97.8306713253174 98.48227030749295 99.1398238996472 99.8084147724071 100.49273255506573 101.19575945614532 101.92598175549725 102.68872316820988 103.48898991704186 104.33324468536684 105.23037718832131 106.18258110187027 107.19462123540838 108.27075035448794 109.4159757461462 110.6336016168264 111.9243706435635 113.29003567741759 114.73208804148717 116.25119660957886 117.84422347955551 119.51023965477786 121.24484737593457 123.04281762493775 124.89826014525936 126.80246184018058 128.74425963365516 130.70902209607596 132.6820695682105 134.64299516738038 136.38420001257734 145.41620226833822 147.69526507980555 + 12.878905634139421 13.301833466238373 13.752069525747208 14.225493162406988 14.717432493169559 15.222787888178683 15.737390690571532 16.25594312804991 16.774479333571744 17.287491356861384 17.792197858359266 18.28492684157931 18.762994264753246 19.223695119876304 19.666022512601526 20.089305632011325 20.49387201469894 20.881968063254583 21.254812102400162 21.615443115314626 21.967704158600544 22.318501564353287 22.6723111147407 23.03535800482146 23.413898476537987 23.815017824542608 24.24602642348016 24.714270155341303 25.228696855879424 25.795624393155087 26.421593690605942 27.112653419181278 27.880330280063816 28.72449029953996 29.65680297276186 30.673389161418413 31.774012433339724 32.95844155713543 34.22142980465903 35.559524011768715 36.96328858216371 38.42739757620902 39.942823851854165 41.50133555736307 43.10096679019869 44.726698570980545 46.37124066382704 48.022237002719464 49.671403422851114 51.30826988517025 52.921065782889194 54.49994903044096 56.03546224856783 57.51869926447389 58.93955619770051 60.292047168930694 61.57105405494512 62.772478594929105 63.89379426802218 64.934113077661 65.89420045064692 66.77450071602607 67.58107567812023 68.3195332111735 68.99645913237326 69.61986472660399 70.19935397481399 70.74494462883125 71.26576317104826 71.76978558305983 72.26288533901759 72.75183166537872 73.24073287810592 73.7331724873902 74.23243995273187 74.7411947441319 75.26137284897884 75.79361287454472 76.33908100811897 76.8972084733902 77.46667551153108 78.04895939357353 78.64204302784617 79.2439361993023 79.85123796505405 80.46784816749384 81.0876988161064 81.71177411219826 82.33929015425711 82.96844772569865 83.59950428398061 84.2318399522771 84.86329062988112 85.49739212508592 86.12971776248011 86.76241937396819 87.39537312711138 88.02918827973288 88.66210436662932 89.29585834036395 89.92941001156258 90.56395277862683 91.19883200550953 91.83464509636636 92.47108521330931 93.10825302642938 93.74704245150967 94.38741220731724 95.02858053436474 95.67217550367214 96.32083033929801 96.97377527265199 97.63763987520545 98.31035850597188 98.99956143352631 99.70536154953031 100.43378058351487 101.19043913678628 101.97869660517918 102.80715943953695 103.68162185589114 104.6059428038943 105.58605741505488 106.62970517713438 107.73781278464304 108.91565389061049 110.16610691754832 111.49207263658795 112.8945977384695 114.37398780002802 115.93129539020349 117.56485152512465 119.27034615375926 121.04585014222813 122.8857246243159 124.780601087102 126.72179743226539 128.69853529523076 130.6957906271251 132.69737095671817 134.68193195678947 136.62711261981693 145.18932852752704 147.49560471747998 + 12.580085558117291 12.991331010111534 13.43204313909583 13.897494857381792 14.383505105832786 14.885223366869587 15.397759198604119 15.916831811113683 16.437267169890973 16.955333781709395 17.466010883513686 17.966058474023907 18.452646857638157 18.923536855322418 19.37645689792918 19.810859143586597 20.22715788604749 20.625736336530228 21.008295814594856 21.37973782057937 21.742294612116204 22.100453494474536 22.45957389451465 22.82579358578926 23.20590441810165 23.607309864873862 24.0388963888815 24.50668138805928 25.01816702727695 25.580583524839874 26.200700249831183 26.889890153339177 27.65365867244357 28.499860057592755 29.43238088424267 30.45809980161998 31.572042953824692 32.772269136413875 34.05457685590995 35.415534825274136 36.85116187802927 38.34889055091219 39.90077286931671 41.502051910371165 43.14215865594203 44.81253728806613 46.49902869816907 48.193982313200394 49.88478330638172 51.56023877771723 53.20931592626305 54.82120989138412 56.38527743663529 57.890752747138855 59.330820751446176 60.69864831632348 61.98880738659647 63.196144370416086 64.3174252938904 65.35464057146496 66.30925948630323 67.18422567958855 67.98450029571545 68.71618719510894 69.38657088714896 70.00482523328753 70.58147577181977 71.12655589078028 71.64933625683389 72.15744959097964 72.65696680019141 73.15256884690717 73.64740161628319 74.14404851878383 74.64575753700491 75.15436268056112 75.67079932206273 76.19633126531375 76.73200138195652 77.27680555337149 77.82922758309883 78.38727739467149 78.95190302036926 79.52160301253836 80.09395536941015 80.66784415856908 81.24466846106316 81.81975715662328 82.39738129202954 82.97265728184922 83.54858547833071 84.12376693497336 84.69714429978092 85.27228156988495 85.84596806238918 86.41969750485198 86.99548156412531 87.57246761411665 88.15179758458719 88.73319839945843 89.31849466917994 89.90725217142028 90.50105010010486 91.09958089408721 91.70393233892301 92.31403218967968 92.93148532467546 93.55639233827382 94.18820014396867 94.82826303124276 95.47953853475028 96.1405334302835 96.81611573056439 97.50596771947096 98.21520538259824 98.94374394372261 99.69947046901285 100.48236854303124 101.30044348552155 102.15849841112687 103.06067920457693 104.01643039445061 105.0284008978835 106.1010479476646 107.24263134192323 108.45395110535642 109.73731531700709 111.09815539717616 112.5366281128962 114.05276257415562 115.64757878657856 117.31870889827695 119.06368547513433 120.87803139163643 122.75484616197072 124.68721752862344 126.66495646957381 128.67538970015391 130.70304073454363 132.7296471762644 134.73450904922313 136.69194426418605 144.9720071160139 147.30386076011578 + 12.277193515352243 12.677150059773451 13.108093778741088 13.56612125537603 14.046477970069166 14.544939622642916 15.056098342304383 15.57544368304002 16.09857281406477 16.620775528873555 17.138179891803254 17.646723482079473 18.14250062833477 18.623554675045987 19.088228721226624 19.535060532062182 19.9629227917163 20.37410312167071 20.769608142263845 21.15151049955679 21.523231702660073 21.88947779215289 22.257268431845127 22.630815601669966 23.016698061726053 23.42204174497806 23.85435113296699 24.321321527957373 24.830639633050286 25.391090816397725 26.01116174560391 26.696390038797226 27.456140199864485 28.297553060084667 29.22802550844637 30.25771643005398 31.38360556506371 32.600775723303805 33.903844374546395 35.28716964501543 36.74857092381796 38.280788828541674 39.87045788422636 41.5076570204068 43.18890145376904 44.898938648901485 46.627483594998964 48.361162003883685 50.09081356206107 51.80253224619407 53.48442816065692 55.12527269463747 56.713195170908996 58.23982188199694 59.69697392866794 61.0767983084936 62.37179479810142 63.58137026462587 64.7039784099568 65.73989866167817 66.69120588556338 67.55887838403152 68.35128246927734 69.07561051672278 69.7403635415842 70.35601572212767 70.93327961620437 71.48184863790415 72.01015400178086 72.5252048339624 73.03246762354507 73.53533467081401 74.03694390594133 74.53945725385834 75.04480843834055 75.55461602470982 76.0695437193037 76.5890047427061 77.1141384603584 77.64259591761184 78.17754739945939 78.71344695931472 79.24969611179898 79.78633029964466 80.32333842807301 80.85542029686472 81.3896037375671 81.91777039620379 82.44545841831199 82.96843959754618 83.49038337520597 84.00994960554064 84.52757202590061 85.04504813295796 85.56216770041205 86.07901103468983 86.599540043971 87.12267736444188 87.64955062135107 88.18178955155699 88.71973633377404 89.26561400271548 89.81932189758238 90.38284284531038 90.95614208013265 91.54083883055013 92.13791183019006 92.74840177132538 93.37192744127245 94.00893941443556 94.66354920395919 95.33335310330509 96.02135761463761 96.72928107398478 97.45853923884533 98.21305849721078 98.99451251451967 99.80706488598452 100.65568545008234 101.54279382620979 102.47883958177684 103.4647056886795 104.50889414641257 105.61635744990265 106.78863678319975 108.03293607899008 109.3519591005713 110.74590960584199 112.22012857666418 113.77235016900319 115.40300361344103 117.11144748731652 118.89226834192438 120.74286487239783 122.65632671259031 124.62410707233799 126.63521940221746 128.67547658497716 130.73113706801783 132.7797510522366 134.8007410583706 136.76900588219797 144.766052250445 147.12178815704212 + 11.97016376203318 12.35878698743902 12.7805773613542 13.231339377587913 13.706557281325207 14.201461547686717 14.711809061027123 15.232369230226595 15.758670099811955 16.28555275411711 16.809382665069062 17.326135065517274 17.83247425255274 18.324842611280587 18.801378140871343 19.26074961256752 19.702878047298007 20.127316245240557 20.535193267391644 20.929552466763635 21.314039581150606 21.691852260711187 22.067926681858257 22.448098660308148 22.839115614428685 23.24783412746947 23.682135268303835 24.150218113296052 24.660047179236095 25.21958685922751 25.836471227207454 26.521384720283873 27.28054054026694 28.12236912074133 29.05429331861547 30.084672005498394 31.215921828861045 32.447709920894305 33.770296108667964 35.17767727092147 36.663468970063526 38.22578690104201 39.848339370499836 41.5231044853647 43.23959634765569 44.9890308490306 46.753874418538935 48.525178527238104 50.28964856884603 52.033199296478806 53.74431276407973 55.40971800378166 57.01942492512619 58.56397629813376 60.032941244348905 61.419495191589256 62.72056768721991 63.9331738318542 65.0541400889078 66.08373185720595 67.02751819851431 67.89020568979376 68.67794759690827 69.39823518729145 70.06066198197846 70.6764610001281 71.256344266189 71.81000614501936 72.34571675366026 72.86972056829057 73.38679497685455 73.89996411571273 74.41054507665261 74.91966544880091 75.42920599829846 75.93964532134032 76.45217371145108 76.96745641161212 77.48262177718374 77.99858498638906 78.51117574280875 79.02508610760928 79.53390295995308 80.0379704117017 80.5387599760388 81.03277903383663 81.5221657359007 82.00513223219686 82.48348299256737 82.95649982821895 83.42558973109249 83.89078656290093 84.35468694391344 84.81668769301466 85.2789818185293 85.74204400163278 86.20872073907395 86.68057988691126 87.1577074867396 87.64215955327033 88.13604570839286 88.63997568456735 89.15654919360874 89.68613232896864 90.2307343287476 90.79097963407115 91.36918932032427 91.9662050707023 92.58255590699152 93.2182643520346 93.87592311887923 94.55530910283413 95.25620036320198 95.9832390068075 96.73388004280807 97.51418372867884 98.3228516728272 99.16692112452479 100.04553163521383 100.96836575448577 101.93541006042051 102.95665912833614 104.03421471916973 105.17374883541511 106.38105372419048 107.65826923116597 109.01199479658165 110.4409525851823 111.9491541177282 113.53641260491753 115.2020083925562 116.94466555899182 118.76057988509072 120.64584670709968 122.59123404666065 124.58911123345625 126.62869842324608 128.69546626160198 130.77327586910545 132.84326612377225 134.88096137773877 136.8553341665221 144.5732781474665 146.95114185758814 + 11.659986475766349 12.038240462710867 12.45133177949784 12.895053197094185 13.365203622285849 13.857111801748095 14.36605864504013 14.887799639788255 15.41689165643463 15.949571542502147 16.480486355160913 17.005889309934798 17.52211433077162 18.026525134617142 18.51636534798466 18.989465675026896 19.445392999491855 19.88404358024357 20.307167402790384 20.71582192822807 21.112869760171723 21.502106498869946 21.88824419790229 22.278243198412728 22.6776286199252 23.0930446586209 23.53198162194726 24.002266349815272 24.511865366697506 25.0700352275676 25.68564763176348 26.36622404491367 27.12578291712676 27.968215270558805 28.90424022409197 29.93817062593744 31.073513584749122 32.31469797602587 33.655841042953014 35.08469463791008 36.59598580017376 38.185931943599 39.840070199104765 41.546695225755954 43.29858938122732 45.08117973796397 46.88055192152174 48.68494619609716 50.479685633372284 52.25149843107322 53.98731080450017 55.67415561847942 57.30182152250753 58.85878665311406 60.33619801010832 61.72961166521202 63.03439007879228 64.24287380769373 65.35970964696716 66.38651446761963 67.32677047568602 68.18419876780627 68.96520747925595 69.68105065654069 70.34264126798136 70.96138674846603 71.54758659463965 72.11016689900833 72.65650141854871 73.19227685813269 73.72140536208845 74.24586563720487 74.76652310431206 75.28400157137156 75.79892479221924 76.3123114342246 76.82323400781438 77.33102860655357 77.83596269686099 78.3379917246746 78.8339859207171 79.32159302189814 79.80340309996546 80.27690939491048 80.73958629380954 81.19649045274701 81.64199101122851 82.08117192852151 82.51136914411148 82.93617677464891 83.35409160270355 83.7668371582156 84.17896140304536 84.58833564252403 84.9971136522933 85.4090040388903 85.82538689179837 86.24695280146267 86.67709182634762 87.11664927784295 87.5676838495722 88.03312691536657 88.51369322719242 89.01197285450631 89.5292094801867 90.06715961353628 90.62736412225495 91.21269419599686 91.82260662974582 92.45817243498635 93.11984145225928 93.80931586233416 94.52532271757936 95.27046149041058 96.04529380447633 96.85035686940846 97.69026190280077 98.56384470149902 99.47864252261223 100.43353471819547 101.43780007829788 102.49199021259042 103.6052780083478 104.77989335528119 106.02251058109552 107.3351265051984 108.72180924789548 110.18601002258087 111.72750940956857 113.34903546127593 115.04770013105339 116.82376856863638 118.67143576895081 120.58644206360107 122.56160837708673 124.5875357188117 126.65220294916489 128.7417942926515 130.83739669778626 132.9206851158975 134.96876051151565 136.95154574917942 144.3954990237246 146.79367681108292 + 11.347908404193014 11.71585127051887 12.120424179472797 12.557425234069909 13.022659288946366 13.511901168590407 14.020269429791286 14.542705656051947 15.075153674559031 15.612448017452309 16.150845760123353 16.68550350580373 17.21279812081925 17.72901686547668 18.232117329420507 18.719951885300354 19.191401699009106 19.6458656928208 20.084118233769434 20.507494055535336 20.919188736227376 21.322999001718664 21.72269567310351 22.123636385181033 22.532055866997784 22.954944871220476 23.399898377932953 23.874937742070944 24.388313326128976 24.94829615112407 25.56387454779087 26.245906076939505 26.99947140734257 27.83974285747984 28.777190958319736 29.816871294530277 30.96272787102896 32.211490979849685 33.56646725216148 35.016115955677364 36.54921141420995 38.16235423584251 39.84605848338502 41.58195497492254 43.36445432242777 45.17739360538825 47.00702429047819 48.83986436244944 50.66095426610128 52.45676580445621 54.212538990210334 55.91661549153091 57.557452640568506 59.12268386803944 60.60708296296079 62.003700659790525 63.304436439101025 64.51191128610643 65.6263443071937 66.64740898837583 67.57938343374205 68.4311539342315 69.21022055789543 69.92618870423478 70.59067734222815 71.2153994166901 71.81024881305544 72.38375498248847 72.94274607737596 73.4922272795999 74.03531031027352 74.57319509438092 75.10527768956881 75.63133792534619 76.15197920631199 76.66631127086755 77.17711932118803 77.68086268839214 78.1764938632581 78.66181392061236 79.13920643545487 79.60438015415487 80.05752530280277 80.49995059151524 80.92816970717877 81.34603776593723 81.75131260429917 82.14563563758117 82.53008556515489 82.90747204640476 83.27594119456637 83.63933847568886 84.00075253196579 84.35963932330436 84.7183249151362 85.08058866389506 85.44892180225796 85.82410688253093 86.20858690444554 86.60568127747581 87.01729151491578 87.44529651162752 87.89297602013743 88.36167273401982 88.85363862448963 89.37107791043344 89.9153804520308 90.48966287052336 91.09498289109769 91.73103836768412 92.39828950440587 93.09841604263157 93.8304543026477 94.59416409710553 95.39358210346997 96.22654740837089 97.09590754906758 98.00410236701548 98.9517205407035 99.9450014330915 100.98351208520465 102.07669857559347 103.22524625828542 104.43863737325572 105.71507055871258 107.06502799437274 108.4856761804159 109.98479508231682 111.55944320966378 113.21392220112314 114.94458716893938 116.75065205511513 118.62761211680241 120.570713347311 122.57204889426187 124.62205624109629 126.70729405541596 128.81389321143675 130.9237922484121 133.01536563566302 135.06681143785067 137.05184700600014 144.2345290958654 146.65114796685558 + 11.033830792976435 11.391927348262946 11.78830648540624 12.218989123226676 12.679550001232224 13.16574099187178 13.673316035967828 14.197192317665175 14.733102536598718 15.27617779543065 15.821330963053303 16.365023564405455 16.90325406039496 17.432524694024032 17.949825768642626 18.452519960762995 18.93983726321173 19.410825877617985 19.865833460050922 20.306647635361657 20.73485646366627 21.153739072912728 21.567410875319762 21.980978608717802 22.400459490317093 22.832666202204507 23.285060577753402 23.76558064430713 24.2839917089432 24.848368110580047 25.466993456605074 26.150492403248485 26.90788940764022 27.748108453926108 28.679859368358727 29.72525669694366 30.878974884527413 32.13913036239933 33.502750210628285 34.97134657913678 36.52601911567859 38.15876008158411 39.868364962660145 41.6311193470053 43.43926044574969 45.27909818529083 47.133499784126066 48.990181375967275 50.83300783695404 52.64720452859029 54.41857210346921 56.135344167211784 57.78349366984423 59.354969626392936 60.84279308510383 62.23559969713347 63.53512953557836 64.74008627669073 65.8460676815831 66.86056146530471 67.78941109684384 68.63921848062498 69.41644744454312 70.13250549041143 70.80157479460118 71.4345198339009 72.04076253487665 72.62808358823159 73.20252377420717 73.76828598635626 74.32717306340551 74.87940978196727 75.42458679841226 75.96114408695905 76.48892175953452 77.00800121962591 77.5159173492801 78.01327769295796 78.49843208851779 78.97201797589004 79.42849086045712 79.8705831649896 80.29788087210234 80.70628704029515 81.1026098890721 81.48125005241928 81.84764802122662 82.19818803107847 82.53974109195799 82.87028891554128 83.19164049038721 83.50830382120226 83.8202898874176 84.13091739858565 84.4427434224419 84.75858623617597 85.08014344831098 85.41125646140088 85.75389794626976 86.11064165600408 86.48453849641196 86.87885050501399 87.29521820096967 87.73667143623437 88.2057849840474 88.70418767995663 89.23504184165635 89.79935602125687 90.4012738834464 91.03961459310219 91.71399120517104 92.42472921479845 93.17407626291697 93.95959989325998 94.78162959288191 95.64432392041164 96.545070024081 97.48697305842411 98.4722734663716 99.50144496118772 100.58169115995176 101.71203362345922 102.90108794810675 104.15013086104098 105.46657901401653 106.85165666988696 108.3088147378553 109.84157747019914 111.44930829810859 113.13520488511051 114.89530324039868 116.72978015893639 118.63354617383845 120.60039092441949 122.62235376131319 124.6902688826921 126.7911746694901 128.91003670958727 131.03022381897154 133.12711423304475 135.17694919689856 137.15584077463689 144.0921825805351 146.5253102742353 + 10.719155875748815 11.06801456881024 11.456615356946056 11.881070758020414 12.337255504225729 12.8206865488433 13.327137281617098 13.852349490005084 14.390970160840801 14.93924226324253 15.492008265906792 16.045493915041387 16.59467303658791 17.136611297820423 17.668058816800833 18.186890307164852 18.69109273573433 19.179761117841682 19.652922097005 20.11145702653002 20.557085472326495 20.992600101767884 21.422940991375583 21.852281053994563 22.28612871125249 22.73101419574426 23.194172277039772 23.683380077066925 24.206772126034238 24.774920495728356 25.39614499788301 26.082718557153722 26.84466196461111 27.688064776616248 28.62531838907156 29.66535022007741 30.826990743965577 32.097895699000574 33.47324525700395 34.95470277334595 36.528183479700864 38.17988298341224 39.91001891001326 41.69514490307763 43.524895585043566 45.38635316953586 47.26079078170357 49.13600663713755 50.99485840074617 52.82217416234973 54.60397883052951 56.327571546868334 57.979587500525795 59.55315618366481 61.03686983088345 62.42743333257309 63.72361313456301 64.9189719903591 66.01978950941859 67.03064742837738 67.95535514990766 68.79991079151328 69.57725697605413 70.2990272727383 70.97710064976137 71.62204304044968 72.24283361082738 72.84667586706172 73.4388600738103 74.02268035279478 74.59940807344564 75.16832124950005 75.72695782184383 76.2742343765354 76.80869222945756 77.32949056983297 77.83754353388667 78.33056778174948 78.80620806998316 79.2622114967159 79.70167850670718 80.12107602116521 80.51995690185174 80.8998015092454 81.26059763864791 81.60461737518867 81.9302353626643 82.24096002882607 82.53894723552416 82.82441101834357 83.10245938580788 83.37295356306156 83.6385316262892 83.90299356076335 84.1705779028892 84.4421403855967 84.72081108691951 85.00971862482362 85.3123314009199 85.6322098094792 85.97161193063206 86.33348906591851 86.72173759987282 87.13850876702315 87.58624682004232 88.06875270041154 88.58717023360266 89.14510507008235 89.74352650101814 90.38548664857986 91.0688188715817 91.79301673814025 92.55827796434977 93.3668300539983 94.21609254931995 95.10629960786343 96.04122516398131 97.01880809726414 98.0409389700804 99.11178771470891 100.23046729469995 101.40294396182018 102.63182606167767 103.92116762213635 105.27662660099251 106.69864867019494 108.19312890846219 109.75968297825445 111.40038209167892 113.11606288783584 114.90441072075616 116.7644463604448 118.69014551559789 120.67660766296873 122.71548901781532 124.79667776727645 126.90798842989689 129.03265802626305 131.1540270798291 133.25229768985156 135.2976320778879 137.26630864613676 138.3870820366221 146.41791868255117 + 10.404420337742929 10.744188632149386 11.125068310780282 11.543322454016142 11.994992462371153 12.475999783240988 12.981674554709484 13.507935250540397 14.050275126882694 14.603510708101652 15.163535475860902 15.725563415133289 16.286288944659137 16.84143131419241 17.388041650208155 17.923080735954485 18.444528184825426 18.95165411945425 19.443855736180517 19.921494937133936 20.387099121094934 20.842507374756025 21.291185004264975 21.737643900245477 22.187381449678398 22.646788918606845 23.12302607731233 23.62386559278411 24.157512598200334 24.733682542202835 25.361793648590474 26.049556944386552 26.813796654634924 27.662359611045133 28.60523268961312 29.651001269933932 30.81139064967281 32.09229768290144 33.47957093986478 34.97031129868641 36.55950192813729 38.227883179888416 39.973828216812265 41.776370079078205 43.62303349889038 45.5003329914475 47.38953779541445 49.27712632850772 51.145963391258675 52.980605101926166 54.76722857851184 56.491787363212175 58.1435261372588 59.71349906587515 61.19141183418616 62.57683278131315 63.863073320502465 65.05189995479172 66.1479528000309 67.15200320390268 68.07160662598439 68.91731206612997 69.69905508236587 70.42886499532547 71.11722799649206 71.77619398927163 72.41410030221452 73.03716485278392 73.64961802681782 74.25364726736345 74.84956631957944 75.4359742311622 76.00936083479922 76.56679708676444 77.10949560635368 77.63573889679121 78.14329666078585 78.62908151609224 79.09453458495055 79.53778117801423 79.95697844491998 80.35377856144098 80.726281409003 81.07585925139072 81.4047663874829 81.71226412982192 82.00041127535823 82.27195400950706 82.52725857325099 82.77223959117812 83.00667445521417 83.2331385490788 83.45577131758549 83.67797364173079 83.90184496473636 84.13131054301554 84.36969991658844 84.62008448356009 84.88588321547456 85.17066818348093 85.47824736422311 85.81158122116037 86.17337424571801 86.56739350646436 86.99732700826941 87.46492021236129 87.97408452841182 88.52666583778955 89.12577678874064 89.77114845253203 90.46424347651578 91.20386888440588 91.98883758124053 92.81890467040388 93.69593376658383 94.61854795232549 95.58618232321648 96.60105044778369 97.66379315642561 98.77413871069666 99.93644286612069 101.15191314864957 102.42223403759441 103.7543644781781 105.14957414669153 106.61055595144889 108.14188752112328 109.74272229009814 111.41547009260997 113.16021693949519 114.97444204968075 116.8562905855253 118.8012924867335 120.80335398558208 122.85425459557379 124.94308931728067 127.05763137926971 129.1829686177345 131.2996128500485 133.3886549894937 135.4246099524189 137.37884106979797 138.5739910815985 146.33072814113234 + 10.090161332122651 10.421461821363952 10.795114906366482 11.207596073697154 11.654928185291283 12.133093929814471 12.638023522298774 13.164896232624463 13.7098760142647 14.268089023223943 14.835212286273606 15.406878789343963 15.978976019499417 16.547227869164402 17.108596706508436 17.66011027509008 18.199954131454767 18.726431425949915 19.238939737443964 19.73799996504461 20.224519235418033 20.700596685258965 21.16940802821579 21.6351936713715 22.10321653998541 22.579676548810582 23.07159603354993 23.58667149762494 24.13309922448425 24.72052200692023 25.358541246559273 26.05534209849822 26.823980717984252 27.674611065260475 28.623583050071968 29.67612200828059 30.839556984749176 32.126366000589115 33.52389257285287 35.02186215163749 36.62336313112542 38.30507738599874 40.06223782140455 41.87681403094683 43.735058499565795 45.62197610379846 47.51976386105541 49.41340633117544 51.2856952279534 53.1214152047222 54.90684410447507 56.626916009878386 58.27329146908135 59.83409092066249 61.3042861991682 62.67992635751595 63.95590167374306 65.13790292523268 66.22564021951032 67.2241175873183 68.14361536549434 68.99235848662111 69.77827032245808 70.5169749010787 71.22014856985619 71.89706602669759 72.55517524178161 73.19994609018366 73.83477600986546 74.46095476806937 75.07768844117237 75.68233012438579 76.2714098027018 76.84307493995236 77.39423973794143 77.92394512371945 78.42845507619914 78.91049694404263 79.36610917556601 79.79292302216284 80.19514276340675 80.56849624818145 80.91461784042565 81.23597894477588 81.53239847992245 81.80542556182507 82.05787845266572 82.28987446950929 82.50752511910021 82.71129988146255 82.90391865182329 83.0901748903956 83.27241854018618 83.45356796357869 83.63728974601749 83.82728639244613 84.02778059603315 84.24267175562642 84.47528071859503 84.72885929810359 85.00702579183334 85.31332464340247 85.65232333237486 86.02664079135289 86.43932265378113 86.89483545620706 87.39583264598625 87.94584693849981 88.54690143157185 89.1999423734829 89.90381907105791 90.65850433014674 91.46499540560752 92.32100054256318 93.22602750804755 94.17998242839299 95.18485527800914 96.23840623881719 97.34104512873522 98.49572861053885 99.70210191706708 100.96113937309887 102.27731694376132 103.65245030845485 105.0885001406534 106.59021610048774 108.15833545039145 109.79332881342376 111.49756407678446 113.26959444415834 115.10723580087269 117.00867311893278 118.9691782328696 120.98215432487083 123.03958087124022 125.13010875343515 127.24135113428171 129.35865742681054 131.46483228170288 133.53947534311519 135.55934396710126 137.49257976983088 138.73539054386785 146.2652990446682 + 9.77692581841931 10.10009027926133 10.466583553546945 10.873172749392955 11.316171583713428 11.791526540246716 12.295313317465284 12.82327771241208 13.370851635472825 13.934205581471208 14.508072256006649 15.088657917438466 15.671187196851074 16.252747920563465 16.82923350967451 17.398010708683646 17.956627875625166 18.503269988937415 19.037225459114605 19.55823228903115 20.067048168439136 20.565573810007198 21.05697444079594 21.545279371426176 22.034907385050673 22.531655601110227 23.04212395097943 23.573625045422993 24.134020021511425 24.735855898456666 25.38639272156387 26.09529956514503 26.87358636615589 27.730927734800897 28.682727875065197 29.742601051238108 30.91359225532328 32.202148311642766 33.60820762955957 35.11463354930321 36.72202303544105 38.41337625235387 40.17649959791075 41.998104098046966 43.86164469328304 45.75222296318987 47.651646548632016 49.54470484726261 51.413894060279745 53.24426092944259 55.02189662753161 56.73248733746099 58.36834051466422 59.91611294354732 61.3749819754722 62.7366173581244 64.00302614919899 65.1760894795175 66.25523094621165 67.25166158886043 68.17255969849381 69.02220817736335 69.81757304586131 70.57048981858487 71.29134161659024 71.98877153554403 72.66949251402654 73.33815306124603 73.99726230218859 74.64717589379778 75.28614230626106 75.91133952265551 76.51795993080053 77.10254759218753 77.66134561107039 78.19349368943722 78.69850252025854 79.17478798075723 79.61785172783999 80.03251666742086 80.4149447290171 80.76564684078801 81.08683471659978 81.37934165738024 81.64487147970478 81.885006512753 82.10110517573841 82.2986373083256 82.47761999684789 82.64184982717215 82.79672988870801 82.94387926360797 83.08674231609075 83.22921474527114 83.37627935276907 83.530955183542 83.6969687324839 83.87831504086533 84.07896597563817 84.30305815929246 84.55513194851969 84.83828022689187 85.15623943056691 85.51293409705117 85.91287592486647 86.3584065741056 86.85376791350077 87.40210114885492 88.00644020374823 88.6683499382524 89.38655833026492 90.15975320147678 90.98740335551226 91.86906067481645 92.80557634435 93.79467077672528 94.8358363001493 95.92886343189481 97.0758808930087 98.2748428994272 99.52634676175744 100.83264759777184 102.19516860052845 103.61462626382573 105.09378699609732 106.63648658865688 108.24173711691763 109.91099891673228 111.64538279595493 113.44296093382724 115.3021520091741 117.22009094976042 119.19199395004931 121.21026984418756 123.26783804663718 125.35475758827808 127.4571590121738 129.5596852640525 131.6466965875478 133.69935251459117 135.69666791995485 137.6066852025326 138.87370541668267 146.2214996217129 + 9.464444222978502 9.779979794810052 10.139752769516127 10.54070653977871 10.979439936354327 11.45205832570036 11.954487834257442 12.48288944689749 13.032756487261398 13.600016349846502 14.180390584615647 14.769412346324 15.36321456066286 15.957821507517739 16.549577474728004 17.135709836337497 17.713317360724883 18.280745339618328 18.836631568334496 19.38064910109352 19.913598982218765 20.43723553523745 20.953733820068944 21.466494971888025 21.9800423255651 22.49989020215885 23.032382842282523 23.584612989028535 24.16465838304797 24.78173680550118 25.444790137564237 26.168782657764037 26.95907209568499 27.828616309297605 28.785637974244533 29.851954817311462 31.029907339346806 32.320933810385334 33.73345216305441 35.24686136894747 36.85743792788487 38.55255797252302 40.31701123824212 42.14080950217434 44.00278677096546 45.89103708372649 47.78517098850315 49.67084279391243 51.53038714312804 53.349012165932635 55.11283460920365 56.80875709686974 58.427869580499696 59.96033586146704 61.40377761809767 62.75056865760479 64.00597556260044 65.16716099193039 66.24157621162126 67.2370503299202 68.15683231615125 69.01468456232895 69.82284994973547 70.59266826687306 71.33369340199243 72.05393337349476 72.75983749705732 73.45484691511345 74.14025707776595 74.81536992043246 75.47862218681901 76.12565409796018 76.7495622488028 77.3460922417718 77.91289189968813 78.44863038766749 78.95305879072076 79.42131166990038 79.8550073546224 80.2547232155594 80.61741778206165 80.9472850108827 81.24227575148188 81.50802589754309 81.74275347248945 81.95048190225742 82.1340739661103 82.29494487302372 82.43854134030407 82.56732454623742 82.68428353187913 82.79339949888868 82.90022232560209 83.00737133666361 83.11924057834476 83.23982587797315 83.37335013691009 83.52406944417507 83.69621573834084 83.89398056277406 84.12149973090291 84.38296128793372 84.68340438870665 85.02574384607506 85.41378136151747 85.85247681149814 86.34474963655819 86.89443774337596 87.505031362011 88.17700287421496 88.90929700054147 89.70233281921911 90.55491341461227 91.4654781539488 92.43321478398865 93.45730020510399 94.53785881220664 95.67411191027495 96.86471493293739 98.10940480483447 99.40900396492934 100.76402827803918 102.17363515197884 103.63937338904113 105.16346114757235 106.74688852769137 108.38978101736893 110.09287536224295 111.85583060859838 113.67765209845197 115.55587481886161 117.48646685755511 119.46457630177491 121.48395174894932 123.53653139973163 125.61247876419009 127.70004001229661 129.78309006006094 131.84460311110442 133.86850587241108 135.83510601222082 137.71538001807133 138.98640569447662 146.19832635714755 + 9.153135088892247 9.4613541425655 9.814566561656456 10.209829385665222 10.64398439992842 11.113549402433776 11.61450378171704 12.142985510780795 12.69514098668652 13.266251537944546 13.85289125910758 14.450120876696362 15.054721369376894 15.661870832482654 16.268872727610557 16.87212084685439 17.46899704764319 18.05743477809391 18.63608994122372 19.204575270286586 19.763195125046042 20.31300723696434 20.85599036887491 21.395359832525394 21.93532484797789 22.481031127069205 23.038513482826087 23.61464489025451 24.21771723616544 24.85567802233356 25.537922487034074 26.27466260966436 27.08146588214795 27.963651778338573 28.933444886938346 30.00405834519514 31.190376545079687 32.4881233542249 33.90120778986661 35.41793420618729 37.02748052763289 38.72270823703383 40.48479920263786 42.303480208279126 44.15885979311543 46.03738970956483 47.920018147887184 49.791378286120796 51.63471827308794 53.435275011097694 55.179457561686796 56.85581959073417 58.45420636817412 59.96766195900885 61.39165199264444 62.72339080408489 63.96559667427199 65.1167714863825 66.18709291331332 67.1802900639988 68.10496833013188 68.97349412736102 69.7971396903832 70.58562481403601 71.34958893434886 72.09616543992536 72.82999661809907 73.55357687028665 74.26722937639339 74.969144020378 75.65731785602884 76.32631345041021 76.96783863236041 77.57594795757228 78.15060103263288 78.69007466031408 79.19172455945562 79.65263175069681 80.07691252833503 80.45994931125843 80.80582715288975 81.11194760996163 81.38419938921368 81.62056987180168 81.82733721935021 82.00363776213652 82.15384086954559 82.28238493321197 82.39104724179754 82.48383024828752 82.5667571354003 82.64202783327141 82.7139486559411 82.78692897617407 82.86542450038091 82.95447941264209 83.05816157835241 83.18066321788149 83.3268585827025 83.50114256299713 83.707671938687 83.95076788066208 84.23467255763214 84.56401411917723 84.94352822752575 85.37625867700379 85.86699125907117 86.41965612352433 87.03825889833888 87.72305435020378 88.4733034871242 89.28761287942505 90.16520556406579 91.10525927510004 92.10683059374372 93.16923072348021 94.29058505720643 95.46987938858004 96.70620123229922 97.99927819417623 99.34837239933731 100.75246182511269 102.2114579468813 103.7245311345549 105.29445245177118 106.91905022503275 108.60002633490085 110.33538285347491 112.12614823780592 113.97024952653715 115.86391435816147 117.8034668367899 119.7845657162526 121.80032731599628 123.84261471566309 125.90190718491372 127.9669232644733 130.0240872087138 132.05523101640202 134.04555893754835 135.97658988862378 137.82249487626595 139.07746616728983 146.19476863466568 + 8.843034248996078 9.144350322444996 9.49122372423251 9.881110133286125 10.310770722550316 10.777030844114977 11.276336409003028 11.804603730958698 12.358245714347179 12.933090258593063 13.525111952971336 14.130392656352347 14.744785780794947 15.364578956889268 15.986405358724623 16.606526815672886 17.222716674826017 17.83268910071722 18.434837122320506 19.02854918492562 19.613576847931597 20.190820981378934 20.762105548569473 21.330248760994998 21.899072542287968 22.47336367029472 23.05880386520598 23.662199515807288 24.291050885152686 24.953539338522628 25.658904499411427 26.416055828951404 27.237296950652585 28.13670579663467 29.119931994249384 30.197235729284483 31.391036077254153 32.69494088383654 34.107852417944706 35.62601670457961 37.23243598122811 38.92337787763339 40.676809687974085 42.48584700241414 44.32774031606699 46.19053705974198 48.05474059816088 49.90528803998844 51.725984754424516 53.50286472217078 55.22189040146457 56.87343664166468 58.44712496613343 59.93861764231346 61.341521207095575 62.65683310080935 63.88410969281231 65.0272618681976 66.09431729984735 67.08729897857005 68.01988470380161 68.90167364132166 69.74230992917845 70.55360313067203 71.34404655280224 72.11942534249043 72.88341147255554 73.63750066201317 74.3810110826393 75.11114210248299 75.82525065621543 76.51539450138077 77.17425623216295 77.7944748653059 78.37667859638381 78.91806262048506 79.41582090953194 79.87069405041328 80.28295992228195 80.65141839477126 80.97798238934018 81.26304051432388 81.51015525339174 81.72124470539931 81.89733454868015 82.04460681753488 82.1636077691457 82.25837591303137 82.33502675628893 82.39552789061163 82.44428458540985 82.48580773057252 82.52574724812347 82.56775463811208 82.61632289199855 82.67617759914658 82.75204996243241 82.84866042002123 82.97070343811714 83.1228334746873 83.30965211415982 83.5364978499725 83.80753308951228 84.12688630594363 84.49886721472093 84.92923030015326 85.42107090179542 85.979035980748 86.6071686859566 87.30602082327957 88.07435297277648 88.91189489891161 89.817484821688 90.78961736015334 91.82684386086036 92.9278182441561 94.09112683388932 95.31534240360074 96.59981634977846 97.94268995597402 99.3424474328729 100.79688175923658 102.30593142934086 103.86880198163958 105.48375520555719 107.15067585411349 108.8683141116353 110.63585479982119 112.45290671578296 114.31640834239712 116.222341220599 118.16777862229243 120.14748675525081 122.15497907184289 124.18197675236674 126.21913278269656 128.25600798332945 130.28044101613466 132.27432150724906 134.22550907765518 136.11746969409157 137.92580920326512 139.14870267511048 146.20981583796055 + 8.534130839901927 8.829099293350284 9.169920567166276 9.554216049928842 9.979364630664874 10.44221272910371 10.939471954171584 11.467431872211971 12.022214968146647 12.600307695305183 13.197234872077155 13.809905546853727 14.433605003274469 15.065474875367036 15.701382573492848 16.338512813686624 16.974142920503233 17.60559984419465 18.23149722541566 18.850826079768087 19.463261967644318 20.06936384224425 20.670735524862444 21.27005016152621 21.87040349879286 22.47584747409746 23.091734856759924 23.724674130544575 24.38263022234331 25.07307358964805 25.804406024942903 26.586098612732464 27.427367375657877 28.343044668995404 29.342819825491638 30.433563460425724 31.631847653876395 32.941315820357644 34.35333071733261 35.869643322961885 37.46917389783777 39.15137538941063 40.89213807284345 42.684995215506454 44.50771255424788 46.34831738721654 48.187555963747805 50.01113447202013 51.8032318811735 53.550176261060344 55.239476324227006 56.862344319449996 58.40793729645635 59.874271877254486 61.254367889118505 62.55212520966089 63.76523590604084 64.90111496576984 65.96441321826272 66.9618590751345 67.90459247063065 68.80150453549382 69.66329968219912 70.50055147188307 71.3200856999186 72.12668473398213 72.92298597505751 73.70944114668931 74.4843197615761 75.24373878366063 75.98338909615006 76.69485914871818 77.36993858482958 78.00160406855096 78.59011093434565 79.1327437236348 79.62635083518076 80.07440853696306 80.47406163278829 80.82814269647379 81.13486977358272 81.39957165713662 81.62168192212569 81.8071341216318 81.956250514647 82.07262988266227 82.16216774424058 82.22668459369127 82.27056761922 82.29925512168175 82.31710022174039 82.3281024197581 82.33710101758801 82.34899209684838 82.36870926962855 82.40169392457824 82.45246248299487 82.52579506347665 82.62661232368316 82.75979580829598 82.9301765083876 83.14252469759167 83.40154104507462 83.71291213410598 84.08080179457602 84.50928174529068 85.00403144493595 85.56904103955578 86.20872383063977 86.9239469947994 87.71382407987976 88.57654503183042 89.51110504944786 90.51625379121819 91.59039746493379 92.73188183878507 93.93921934179089 95.21099630282626 96.54436774935338 97.93757959672504 99.38878616922526 100.89610612130605 102.45592681641082 104.06870414401064 105.72957323760805 107.43881862022306 109.19224128561059 110.99084938234499 112.83234670854544 114.71181248035259 116.6274851546421 118.57499964466456 120.5489860736894 122.5430304113856 124.54959695334686 126.5599724650148 128.56361266112836 130.5497296117442 132.5015812919272 134.40889899139717 136.25709912090753 138.02378651468928 139.19941590068592 146.2424573507256 + 8.22676373237533 8.515674950477122 8.85080275547736 9.229861683912263 9.650321345158316 10.109480905413646 10.604186076270455 11.131184909593122 11.686648596900595 12.267137715490275 12.868761948899595 13.487933790009036 14.120862361602011 14.764185765585207 15.414073227571055 16.06783277043596 16.722290833524475 17.375260349508594 18.025140980962114 18.670667067165212 19.311319733785783 19.9477374268752 20.581001909294965 21.213142178964116 21.846434556299634 22.485622553231423 23.13552506417909 23.801418492309303 24.490251337215057 25.2110092324456 25.971744158736175 26.780600967273518 27.646743157184837 28.580843791286572 29.598475399588523 30.703428247408244 31.90760006557735 33.22211215280892 34.63351154623194 36.144683180485885 37.73607673477633 39.403517002370094 41.12705204427953 42.89804388074597 44.695613856559206 46.50782190628797 48.316231133433 50.106866193311326 51.86442064248828 53.57698079947422 55.23196018280922 56.82156248155119 58.33638070648469 59.77539501985542 61.13240246786375 62.411864502805884 63.611615822880154 64.74113583997908 65.80324151575279 66.80758462354648 67.76341262822311 68.67837681461545 69.56454760958025 70.42991021999562 71.28064728477928 72.12081289872181 72.95150083543572 73.77204282106787 74.57939710151167 75.36835389365213 76.13270463551899 76.86529926331804 77.55552515276636 78.19784858714311 78.79144989896977 79.33460208811893 79.82459301887968 80.26398263029813 80.65131390190727 80.9898653352046 81.278197295272 81.52126333116597 81.72048705304915 81.87906704125136 82.00184772837446 82.09049201262293 82.14944505593738 82.18475892970243 82.19917737073746 82.19748995470667 82.18460178621396 82.16662991954519 82.14767355794191 82.13253547016889 82.12634749417724 82.13425745032181 82.16141346163661 82.21294966190717 82.2939732915395 82.40967768871903 82.5656412233755 82.76639893598566 83.01687597318492 83.32192722551588 83.68666221022951 84.11710693707 84.61656587132055 85.19101432500116 85.84423728385421 86.57763093092115 87.38935203585464 88.27876678755985 89.244293659641 90.28423399380648 91.3970610035943 92.58123536499652 93.83425002551532 95.15389350301814 96.5378456017773 97.98327558789946 99.48698418290765 101.0470359419925 102.65982783722251 104.32152945110687 106.0294141178199 107.77920069020495 109.56856266248333 111.39661462984665 113.25915081200787 115.15287820218848 117.0748644071225 119.02050910611668 120.98440824385759 122.96033607328674 124.94118491874731 126.91892453455083 128.8845833215946 130.8278489174495 132.73404246864698 134.5942145971685 136.39572511383636 138.1183761382111 139.23422640137818 146.2916825566541 + 7.920842566189912 8.204373926213055 8.534096800357595 8.90803427240595 9.323948864180936 9.77927847676107 10.271204354096694 10.796667106247712 11.352356081123526 11.934729803961527 12.540401411861852 13.165493246257011 13.806950426084482 14.46093368359082 15.124324944043204 15.794001909896457 16.466942727504687 17.14134471611206 17.815249801421533 18.48728943081903 19.15695990383029 19.82443942017925 20.489922557718735 21.15557300633622 21.824333665956154 22.49966289866534 23.185101341616036 23.88712214093526 24.611183837488046 25.36447480033689 26.156671293252916 26.99571315696783 27.88926309084055 28.84645704706905 29.882039464142963 31.00253499200716 32.2142630215722 33.532975976656076 34.9436044969473 36.44610454036008 38.0258058207847 39.67499360484144 41.376782530818296 43.12041498595692 44.8876428031186 46.665610311304995 48.4378634302592 50.18957152050447 51.90814515367753 53.58143956814988 55.19782817923206 56.75147587970375 58.233785399830296 59.64325937844682 60.97649614256844 62.23716802046327 63.42568097905823 64.55024035500269 65.61360815291269 66.62708990000341 67.59822310299926 68.53558193091318 69.44940565651946 70.34627846639602 71.23079331974715 72.10557212886646 72.97188032325504 73.82756462882786 74.6673544580478 75.48556432259049 76.27404518182266 77.02659956724983 77.73120583236323 78.38329107109509 78.98093185524084 79.52372775064195 80.00913436408919 80.4393852161235 80.81476001439977 81.13688219904918 81.40732087741958 81.62853608221508 81.80517751128943 81.93872652258956 82.03453289726508 82.09640836920904 82.1277929209178 82.1336446364745 82.12003787710029 82.09058401700483 82.050320554431 82.00444900969877 81.95823637820185 81.91726251001828 81.8869246515461 81.87216483366726 81.87833813909447 81.91078453460268 81.97481727710839 82.07571278719305 82.21870199007081 82.40896312400007 82.65227259684659 82.95396295270965 83.31843660323102 83.75064670007531 84.25770199981481 84.84259273183086 85.51155169908947 86.26418696946803 87.1005492103037 88.01841962274442 89.01671413506791 90.09356826232761 91.24701929204893 92.4748513912674 93.77459729578814 95.1435769162965 96.57893424404726 98.0776719093401 99.6357063058304 101.2488835878012 102.91492805542703 104.62567988430543 106.38049150385882 108.1697191172237 109.9936712087115 111.84911969843523 113.72994596570656 115.63486617715505 117.55979327935825 119.4995196304739 121.44897225804466 123.40223254812433 125.35274774807066 127.2933028115579 129.21601125084493 131.11114610863152 132.96726687442055 134.77693677869277 136.52949971467265 138.2071962944633 139.25287464060057 146.35648083943948 + 7.616878782667503 7.895158974496333 8.220004060056098 8.589092615341409 9.000431375425238 9.451805823392059 9.940776376078782 10.46433499572295 11.019618991037797 11.603278154672434 12.21221569909849 12.842716386215463 13.491910299908557 14.15598929148431 14.831904748012178 15.516753942109242 16.207987194184053 16.90349737065448 17.601317713934037 18.29998422230785 18.998496705276253 19.69658162275991 20.39550355028521 21.09674386867324 21.801676958676392 22.51393701194341 23.2381426346506 23.977628453440065 24.73966628753775 25.529306615204774 26.354894164238434 27.226051491733777 28.149355447537783 29.13300070410199 30.187863648677986 31.324707334555196 32.54726387001453 33.86733614661941 35.275775911336964 36.76774739859159 38.332392257998876 39.95958213032381 41.63534827735239 43.34692634031755 45.078384817215614 46.81744563397202 48.547798611097186 50.25657404073565 51.93185701011876 53.561505977356546 55.136895642538086 56.652234314653334 58.09956633234017 59.4791319504007 60.78891614261656 62.031813540007555 63.210126479735784 64.33109024908997 65.39935653165023 66.42466663503976 67.41395001673803 68.37615832808238 69.3199712117434 70.25099361917 71.17231052470325 72.0851267744134 72.98770706943412 73.87688865091627 74.74896897045434 75.59548040277723 76.40818709505508 77.17862220591732 77.89687428685112 78.55762823936654 79.15843296597451 79.69986158484978 80.17982208953049 80.6004749113857 80.96335488457578 81.26919876235868 81.52158241677816 81.72183364773825 81.87595394542697 81.98589890937264 82.05572493006305 82.09141851693104 82.09654830769787 82.07574945037281 82.03413586098473 81.97762670019442 81.91112939543386 81.83971572489165 81.76886582706344 81.70410074509822 81.65096586054445 81.61501587528484 81.60180134165942 81.61697625244175 81.66600502698932 81.7542245824935 81.88706837990736 82.06992217996776 82.30811991232144 82.60694107437061 82.97317174343766 83.41111600802256 83.92564655435909 84.52440958992462 85.21002840961826 85.98524419468241 86.84748769180372 87.79559705136873 88.82817767676828 89.94319681702918 91.13839732868077 92.4113968163642 93.7594910834379 95.17933196955707 96.6671704521555 98.2196023426994 99.83280704664197 101.49984641776852 103.21759313597641 104.9786107630341 106.77819750657567 108.60697457912823 110.46369813407935 112.34336266565631 114.24032671969269 116.15297537255495 118.07670756276899 120.00667363449149 121.93771724672249 123.86402972550502 125.77986524553891 127.67905911470454 129.55493360406146 131.39815291489643 133.20131898060873 134.9580401011216 136.6585485007775 138.2912147512148 139.2575536358984 146.43584158277505 + 7.315233841540354 7.58890080858203 7.908701861657322 8.273264020134903 8.680238359398757 9.127582482449691 9.61320063876975 10.13460433693407 10.688852452159278 11.273168888891195 11.8845589704885 12.519832329911216 13.175863057557276 13.849159891279987 14.537007932095976 15.23639699376754 15.94531779302465 16.66148199159797 17.38276194829707 18.10680506619917 18.833948515039033 19.563962218327696 20.296886620229106 21.032986823301613 21.775627843139894 22.526721857374532 23.289649380934975 24.069650969667148 24.87048423766979 25.69921446553151 26.56151039728397 27.46586303694713 28.420894848284156 29.432585496855275 30.508350093601923 31.66228531480521 32.895768127422244 34.21725161497343 35.621892319248765 37.10182050474536 38.648297030279124 40.250109274264766 41.895542910522806 43.57116069798486 45.26248353951506 46.95810225860273 48.64220848863442 50.304149732353885 51.93181193338258 53.51569624626145 55.047870453912346 56.52240686864029 57.93470441121529 59.28458470480031 60.57132931358929 61.797604313539175 62.967632431176156 64.0875241206179 65.16301411900557 66.20278092923859 67.21421840423878 68.20516060681949 69.18175221457503 70.14796286263015 71.10684723951131 72.05844381655602 72.99849307784548 73.9222780073286 74.82384113659306 75.69779364528972 76.53378362214943 77.32085154616674 78.05200573564356 78.72022126074883 79.32299689802426 79.8624450679328 80.33621649551239 80.74684288456903 81.09682612315615 81.38657778829977 81.62088455905008 81.80123434198529 81.93275753761486 82.01962859159083 82.06545557067537 82.0752275380942 82.05498327004844 82.00868113643797 81.94167006934326 81.85941358509007 81.76759631750438 81.67224416035366 81.5784414039646 81.49190669109984 81.41882003776041 81.36446791406792 81.33444351105894 81.33443787986641 81.37011649344075 81.44711180116944 81.57112354863074 81.74852529649512 81.98424776195321 82.28378116172348 82.65256958782592 83.09737688494148 83.62346448072884 84.23592419319009 84.94125745454141 85.73934700740955 86.62895793078901 87.60925259463856 88.67764903227857 89.83223072791162 91.0706488478442 92.3901418057301 93.7875663017535 95.25942747710049 96.80141850705124 98.4081113915407 100.075754105059 101.79776390236744 103.56682854298185 105.37752382608112 107.22039207259435 109.08732233367135 110.97454437319367 112.87551256939098 114.78565296425629 116.70239756161502 118.6209983322515 120.53667869432616 122.44458926113067 124.3397732879866 126.21714294730339 128.07146748501813 129.8973742358571 131.68576176737992 133.43392347123236 135.1361681839614 136.78372114693866 138.3712846795538 144.05144506303657 146.52875417035418 + 7.015640445963754 7.285501240137551 7.600985605694435 7.960874342629283 8.363664423896827 8.807084910245804 9.289134875199013 9.807951979008202 10.3607584975591 10.945005521637249 11.55805605655991 12.197177221095627 12.859321865328146 13.540825154540165 14.239636659146798 14.953027780980076 15.678926801798163 16.414492560190343 17.157484818906 17.907564621231703 18.663832512470044 19.42432554645909 20.190481949626303 20.963669573054133 21.743192423164075 22.53383936225601 23.33706134379914 24.157731207379697 24.999347930580516 25.868563687350555 26.76881248521382 27.708450716971853 28.696545134153833 29.73684084763491 30.836283331616478 32.00673559440739 33.2509557493177 34.57371115547456 35.97297420252734 37.438996568823384 38.96460148459847 40.53808552849429 42.14961346956845 43.78559894572688 45.43301328876681 47.08149942672016 48.71595540687659 50.327970489982846 51.905465937243875 53.44156616280002 54.92881120775459 56.36228831767377 57.739571850535846 59.06045530772533 60.3249104458972 61.5369959549054 62.70093549831972 63.822497802706906 64.90852671992918 65.9661305820419 67.00232279691409 68.02351880468858 69.03555392429966 70.04021256833528 71.03819141498563 72.02653774484268 73.00311505367335 73.9614860343128 74.89353246322105 75.79182884693236 76.6500067636802 77.45400014792635 78.19534797319243 78.87015055269315 79.47379668477133 80.01067351021679 80.47764232987974 80.87786425875163 81.2146938989165 81.4885889182547 81.70494392109183 81.86568452541158 81.97548767900098 82.03994254107333 82.06257941466842 82.04850462816682 82.00337429031327 81.93281393967163 81.84176413978858 81.7359041552807 81.62099732790745 81.50333073853632 81.38882963899437 81.28306234725194 81.19162514200428 81.12041255022409 81.07531187431175 81.06219385461017 81.0869049657501 81.15526134682608 81.2730443654034 81.4459978153549 81.67982674852915 81.98179194233913 82.3565177748309 82.8094762957216 83.34798764929575 83.97723937436425 84.70306095314147 85.5259385350213 86.44547586345924 87.45893071196251 88.56463017531196 89.76037496825681 91.04346770289006 92.41074098236592 93.85858499596186 95.38297431418923 96.97949359635246 98.641585054363 100.36358468649746 102.14041968716758 103.96008903245054 105.81938363311555 107.70396212167711 109.60689947453248 111.52191475010405 113.44134511091065 115.36115238583068 117.27818365351787 119.18765269191033 121.08497003233205 122.9657096784642 124.8255832602301 126.66042237102164 128.46616977568402 130.2373251856781 131.96962510489715 133.66092939466492 135.30777861062947 136.9024360927396 138.44564039398531 144.16465256257038 146.63420798587023 + 6.7189721908742674 6.985013168966641 7.2968791775574795 7.652554893826542 8.051096985487593 8.490723940322901 8.969265844886575 9.485065290758444 10.036016411373238 10.61954381774985 11.233477714597562 11.875409114590138 12.542279258915258 13.231349133053456 13.940285568226788 14.666817158727577 15.40795291527836 16.161615240984663 16.926840755491217 17.701876013980417 18.484718785054714 19.276455567971215 20.075941430001738 20.883754761183543 21.702364879441927 22.531385432407756 23.376190499048338 24.23722079756748 25.120734959427622 26.030090172271073 26.969899807059974 27.94673568614534 28.967939926030983 30.037333420568494 31.161274542432775 32.34827913874267 33.60273682884393 34.92640637302819 36.31872898908401 37.769130611743066 39.27120140392287 40.81388816550795 42.38857338841469 43.981774386330066 45.58237078175256 47.18081907734454 48.76325773397575 50.323181152398455 51.84905445692133 53.33633352503305 54.777941391295066 56.17108519699231 57.51422182526973 58.80705910698694 60.05180345709791 61.25216889627886 62.41268732136708 63.53942260345176 64.638753891895 65.71662413947456 66.78101727258813 67.83624772483893 68.88436195622202 69.92646093594898 70.96393528707107 71.99124642742889 73.00282172546306 73.99331529878408 74.95533535056138 75.87810119589022 76.7557445175542 77.57549096627328 78.32575570110043 79.00627357107541 79.60979752362937 80.14355145443419 80.60324220344768 80.99301484288759 81.31632190834746 81.57465907922426 81.77333989341406 81.91491332092424 82.00404944378529 82.04675863615601 82.04714509869858 82.0104407492941 81.94217017322576 81.84843367347653 81.7347964083884 81.60737427475748 81.47209044332294 81.334491513567 81.20060393264771 81.07648040064853 80.9681866772809 80.8819669808319 80.82371027237569 80.79941856656507 80.81511192449278 80.87678310805883 80.99039449708798 81.1618766549159 81.39712854244463 81.702019380666 82.0836173711618 82.54793585359526 83.09986847806634 83.74791812850374 84.49557082198736 85.34603047290021 86.29610614009577 87.34440729511908 88.48899348675661 89.72733930053458 91.0563916949266 92.47253136542686 93.97166122196742 95.54919852486124 97.20005028820111 98.91819741492185 100.6942993612382 102.52430066942236 104.39460962852836 106.30093619583509 108.22533216688743 110.16165450976946 112.10135423534724 114.03623514738256 115.96196495216358 117.87534253148397 119.77165648455423 121.64661972404726 123.49634412878088 125.31732024006449 127.10640241228005 128.86046987327686 130.5747123562707 132.24942785077306 133.8829783173133 135.47281499897744 137.01640452926867 138.5163142350213 144.2908746470052 146.75119241301655 + 6.42478772462555 6.6883347285188135 6.996471615060771 7.348727801484598 7.74322760668301 8.178972145225412 8.654068210133948 9.16666735712654 9.71537040051963 10.297665005543825 10.91173514820665 11.55547136614667 12.225957595978384 12.921342642183413 13.639298861010495 14.377038493601248 15.132438711232448 15.904034367822447 16.68935969649657 17.487282202554823 18.297914651239655 19.1180785528333 19.950128548486855 20.792846606511894 21.648002221117924 22.516483548430525 23.401069249169893 24.303293597628794 25.22853399892166 26.1778645202274 27.157198895231193 28.171397801938152 29.22585562124428 30.324405746116906 31.472503020567142 32.67609748156156 33.93995912299747 35.263943418788585 36.6477868738334 38.08043273510148 39.557004346025174 41.06694770004803 42.60254999726364 44.15042955418171 45.70224506891094 47.24862461739421 48.77778749911656 50.284475662371904 51.75842842780924 53.196911293982446 54.59370590272566 55.947765121337454 57.25849464198362 58.52575304290014 59.75346503052819 60.94511572581483 62.10556197567154 63.24066587672726 64.35630345338652 65.4581978005124 66.5530302571411 67.64220471194803 68.72766940383455 69.80974361789707 70.88529377365019 71.94911214065364 72.99678928772738 74.01872462110254 75.00757886283776 75.95478642872455 76.84995364026832 77.68386214897139 78.44285041302511 79.12728426105524 79.73079445280901 80.25994904308239 80.71203088927285 81.09156922272633 81.40096856465055 81.64412272357572 81.82556315898591 81.94856457997132 82.01808453158424 82.03992439880635 82.01913389749126 81.96100069119886 81.87127753347629 81.75613842237505 81.62235165022395 81.47501536144895 81.32017470041501 81.16399478427365 81.0126761466596 80.87244115068707 80.74952208030165 80.65033704637602 80.58126977232568 80.54792802855657 80.55645878990288 80.61298458893434 80.72372144022556 80.8956579749599 81.13423536277706 81.4455186882543 81.83555651054951 82.3118996948208 82.8807132892884 83.54775527793369 84.3203600478044 85.19865344484761 86.1809460530128 87.2657852695996 88.45059592988174 89.73248408706894 91.10828206726963 92.5742275234581 94.12569255759833 95.75669014757484 97.46199615111388 99.23542605866739 101.06571221296753 102.94761722636997 104.86741998024847 106.8185043917031 108.78074345720349 110.74737882123318 112.7082857376441 114.65546883263852 116.5831878112756 118.48888910195049 120.36805111335386 122.2168033927877 124.0319060796783 125.81073193966637 127.55125109702979 129.24959584421566 130.9068436658498 132.5230358337929 134.0985488584932 135.63148120589327 137.1255677063197 138.58372488994453 144.4290410808315 146.87869683548652 + 6.133623978672805 6.395159376748907 6.700705661825472 7.049486312070748 7.440409425614109 7.872436312257656 8.344135488884383 8.853518005895392 9.399618877135493 9.980275860338594 10.59380452882892 11.238385916158352 11.911567033547406 12.611898589230883 13.336954140707013 14.084383288648981 14.85319460390389 15.640069247645657 16.444322999381075 17.264945026659525 18.099213302040496 18.94901527943528 19.810491194987236 20.687861499304944 21.57760767952969 22.48473315255628 23.407538155937168 24.35023264155606 25.31589019037402 26.304586588200323 27.322538150958795 28.373178946422833 29.460378297638147 30.587632773054626 31.75891357944587 32.9785337923995 34.250615010936436 35.57413413853672 36.94758409948494 38.360786117393125 39.810129918895356 41.285937597805784 42.78089204585739 44.28167579097179 45.78374863415891 47.27698149510833 48.75276923784838 50.20617395065099 51.629109015519305 53.019940547595276 54.37386933039739 55.691094466418576 56.9718221288254 58.21710796334419 59.4312839986305 60.617844015139866 61.78210735132964 62.928867116519214 64.06452401344772 65.19221088622209 66.31824321715423 67.44370603094957 68.56747574858242 69.68695141694984 70.80144504593135 71.90242399323998 72.98216422329041 74.03557553040902 75.05046138443893 76.01940080021986 76.93262142894058 77.77758951594139 78.54527356503336 79.23177293635007 79.83510763457983 80.35865824399106 80.8031597480263 81.17226843673785 81.46828763336684 81.69627099866514 81.86106305878738 81.96624255582715 82.01704652406495 82.01925998454996 81.9785012907137 81.90040959907157 81.79149910699205 81.65728588365829 81.50393911324392 81.33795452178374 81.16532593506227 80.99238845732395 80.82550725447327 80.67200216419019 80.53737020390236 80.42777525205555 80.34955678521776 80.30903963064756 80.31253001314695 80.36631326616077 80.47665320712318 80.64979317705024 80.8920573712927 81.2115444410758 81.61301434265052 82.10271217448513 82.68942097173394 83.37806876299132 84.17634732786196 85.08403790326358 86.10041034148283 87.22291190071543 88.44883894008342 89.77529645994917 91.19871586920767 92.71487600008935 94.31892385655493 96.00413175960725 97.76372008486696 99.59137207081773 101.47544603578557 103.4080020020147 105.37536037762455 107.36872306374106 109.36615726368403 111.3594753013087 113.33762821268512 115.2936262757751 117.21915900083077 119.11295639479137 120.97087729539838 122.78958478968612 124.56659755611389 126.30027093807817 127.98758671962719 129.63035001826395 131.22958064911379 132.78693459349373 134.30371613207757 135.78221696569221 137.2286044145865 138.64634908304726 144.57808162853965 147.0157106369735 + 5.846221474886276 6.1057577134603145 6.409524892774386 6.755334943368696 7.143292303626035 7.571789383475109 8.040101274071809 8.546374501874999 9.089599195514598 9.668297069800849 10.280707243640173 10.925366343593723 11.60035334617872 12.304373452819325 13.034699240079878 13.790730042739954 14.569761206275052 15.370604790858595 16.19195136180824 17.031751975414753 17.89010529514161 18.764360843631888 19.655998138359465 20.563510801812786 21.48796709430645 22.43075965213924 23.390596300367342 24.371966114558667 25.375699988847366 26.402518998892404 27.457279241391703 28.542563413523826 29.661065925837196 30.815997705332347 32.00883751445547 33.24329266264175 34.522048028622415 35.843295138196495 37.20366277873269 38.59715818757296 40.01811265963105 41.45896698282445 42.91061414388258 44.36515575046618 45.81756121159809 47.25758033840051 48.68108116260382 50.08230096905835 51.456344242402 52.80183802149234 54.11601744161092 55.39986022664437 56.65471802624132 57.88247162862884 59.08758199455377 60.273400383181624 61.44518929618045 62.60686461827971 63.764858436146866 64.91982631490595 66.07911610926809 67.2409281833642 68.40170448822046 69.56043997157263 70.71165047854463 71.84748831916855 72.96098704800288 74.0413305628237 75.0818750144984 76.07110878733195 77.000172401343 77.85575859489248 78.63053295283183 79.3183524399908 79.92089415194629 80.43844791593504 80.8755910470482 81.2341292216648 81.51760450969577 81.73100634795468 81.8793894531254 81.96755556736605 82.00069953837642 81.98495133654806 81.92612874986756 81.82998773477321 81.7026708848111 81.55042744982944 81.37959380359572 81.19661552130187 81.0080500038467 80.82110212800308 80.64186910770249 80.47635125414998 80.33104783440061 80.21245532878534 80.12706138908352 80.08134043083925 80.0817508598225 80.13473393263487 80.24671425145968 80.42410189295629 80.67329617129965 81.00069103536342 81.41504839899861 81.9212918108597 82.52620245531845 83.23878529132242 84.06357456821743 85.0026502415158 86.05418295388435 87.21528310665808 88.48343492588428 89.85537328098566 91.32710371578221 92.89392221794772 94.55043487094983 96.2900307035566 98.10341510924853 99.98447544429128 101.92090852139526 103.90229048789894 105.91452612314939 107.94747123209885 109.97662337542364 111.99265274090988 113.98388070631574 115.94314104700355 117.86447446049016 119.7423355715018 121.57525552574192 123.36053721654001 125.09576909946834 126.78001217883981 128.41456217694167 130.0010360406864 131.54200476427886 133.04095772891657 134.49954689544336 135.92621823973911 137.32716572240363 138.70773935128963 144.73692605462014 147.1612232011708 + 5.562427566945825 5.821219678604107 6.123215544390196 6.467098400489059 6.85214307372924 7.27749150221813 7.742628360353766 8.245904051083654 8.78617417602256 9.362677353088442 9.973493094313403 10.617694815721334 11.293592169320014 11.999728031563945 12.734642042864596 13.496877327817577 14.284721132938571 15.097073244163578 15.932272362352778 16.789608972127755 17.66760642736222 18.56532921275157 19.48322689859328 20.41890606692571 21.375254485528995 22.350020339883766 23.344858347543134 24.36206922352738 25.4013985161029 26.463598923279392 27.55244337985624 28.669681076361794 29.817091385870587 30.99627052496729 32.20892771060457 33.45628415594737 34.738991103142745 36.05609395172701 37.40344543347558 38.776087307616145 40.16810717991202 41.57320193200321 42.98119015512171 44.390208942310046 45.79376545292769 47.181904920568364 48.555427116175764 49.907038312201706 51.23594472377753 52.54029907706564 53.819886733670664 55.07556777394103 56.310127159446566 57.525292700729345 58.725920957936715 59.91498924303286 61.09765194957601 62.277005193014354 63.45897030437501 64.64311694931722 65.83571940884839 67.03319407570818 68.23281999629252 69.42815226241831 70.61477148468263 71.78506016728356 72.92828035972387 74.03703137327967 75.09938472957055 76.108906712573 77.05094245581579 77.91687751523138 78.69706793161129 79.38642912451868 79.98679426897652 80.49820391884798 80.92789256112569 81.27620797115102 81.54766417048903 81.74764076225829 81.88109838938391 81.95337525405094 81.97020046833126 81.93759645642506 81.86167502544939 81.74851328027616 81.60444906608808 81.43591503191895 81.24942064281626 81.0517966069811 80.85058990626256 80.65128910098652 80.46046209365859 80.28474575016374 80.13077993508155 80.00520107608575 79.91463731715449 79.86570526059081 79.86500829785396 79.91913652920142 80.03466827214118 80.21817315869467 80.47621682147062 80.81536716854897 81.24232966049031 81.76674737632061 82.39271487542099 83.12958513114081 83.98250778275074 84.95460371461881 86.04206846730051 87.24286974302983 88.55415182455185 89.9722553233908 91.49273650932861 93.11038647104716 94.81925034538853 96.61264684019253 98.47910871133936 100.41229367818698 102.39890764565801 104.42722695459904 106.48155610309996 108.55034471847455 110.60859488043481 112.64311022358643 114.64308153315856 116.6013111180108 118.512144560711 120.37125774422509 122.17563879582966 123.92356642888215 125.61458409516769 127.24946941952838 128.83019844746246 130.35990429536278 131.84282985204865 133.28233310572628 134.68651870046548 136.0635413860668 137.42104377453092 138.7686158790911 144.90450412356336 147.31422391177182 + 5.2826860621365 5.54151373749634 5.84216163921179 6.184832508863397 6.567476300285056 6.990231663372266 7.452399087109257 7.9528646582583535 8.490220264881291 9.064379013376552 9.673265210912922 10.316554410884683 10.992507909997872 11.700047667289558 12.438077298747825 13.20495916646939 13.999899110482971 14.821162394322007 15.668132185343293 16.539707230021094 17.43421013613986 18.352407876027726 19.291204969908204 20.252499749197263 21.236121882383433 22.23933877168223 23.26525210074213 24.31429732665641 25.38571872423068 26.479620799214345 27.598894286670777 28.744493026261242 29.91734980877552 31.117570512705612 32.346211410194236 33.60373015978756 34.88859923650653 36.200178549483496 37.533348564644186 38.8842550718942 40.247217286811235 41.613870366050556 42.981758561764366 44.347274590298944 45.70241952617903 47.044580169079204 48.37265250043334 49.6799604214144 50.96956964092813 52.23876774361891 53.48969242257343 54.72289276622299 55.94245205734074 57.14965916356841 58.35015225829408 59.54581745521714 60.74237631311636 61.94117902486067 63.14855570738245 64.36337173157455 65.58804983959811 66.82235643417046 68.0582788646134 69.28980873960008 70.51063947837703 71.71201050381025 72.88517680124713 74.01823994757758 75.10403734627069 76.12947130527235 77.08471866796765 77.95830329155913 78.74381303550864 79.43345599177555 80.03152642618615 80.53834878584104 80.95905269878028 81.29764667169137 81.55781396677236 81.74508501684392 81.8646671962035 81.92234303084108 81.9240888572773 81.87610499604057 81.78467978815168 81.6561883383144 81.49715184559714 81.31417475923338 81.11484258815643 80.90549776374945 80.69237449762359 80.48223671540917 80.28186045764511 80.09800020961129 79.93763815172058 79.80816596204002 79.71522455382042 79.66551595743321 79.66573193983353 79.7225548811605 79.84266017919526 80.03293717083714 80.30161947428506 80.65424579622038 81.09756738136403 81.63981739609048 82.28890589967406 83.05102032848308 83.93442927634925 84.93968126726855 86.06418221874227 87.30558992986607 88.66068529000346 90.12539190008563 91.6947953194312 93.36316227534633 95.12396015468619 96.96987707847686 98.88853120653248 100.87209312544938 102.90674953383935 104.97974956330027 107.07290359648668 109.17372641413428 111.25783352109136 113.30633642938098 115.31055273958582 117.26340293889614 119.15949424621648 120.99496632981393 122.76746942923761 124.47613697397733 126.12155195147126 127.70570636363239 129.23195319761464 130.70495042309335 132.1286689504181 133.5117339593028 134.8636347919215 136.1936469286265 137.51132438789145 138.8296216864138 145.07974559985973 147.47370215246988 + 5.008123171326239 5.267158296405078 5.567302466887869 5.90899416847006 6.289875383135799 6.7106910379054945 7.170106796502616 7.6680234052803256 8.202617183948425 8.774366522298854 9.381215163186976 10.023125307787145 10.698492468107197 11.406738909687538 12.146456030703686 12.917080432361638 13.716856081170297 14.54544909162808 15.401676375807789 16.284286676363678 17.193211053315377 18.12643475304244 19.084107242767132 20.06640114055784 21.07158670749212 22.099601402151492 23.151393281370396 24.226967566588613 25.325611819476794 26.446272266195766 27.59111788648982 28.760382812792013 29.95423494482284 31.171528694913306 32.412552010328454 33.677163062778945 34.96202778227493 36.26651765509119 37.58494162485639 38.91395550567362 40.24560178293008 41.57957856266944 42.910606771150604 44.23559680436858 45.548078246366586 46.84946323491214 48.13626677889242 49.40667703251233 50.662854263351754 51.90290176856795 53.13077797969349 54.34697613201919 55.55634758351016 56.759795150634 57.964042913416044 59.16908547630259 60.38225022299405 61.60191875978853 62.83577947141481 64.08089486537563 65.33709371343035 66.60707384321148 67.87793220381836 69.14496058695882 70.39776658518274 71.6297289847926 72.82893079095261 73.98686478838195 75.09138008351874 76.13230671276209 77.09849899611808 77.97980226298067 78.76936326782388 79.45870082630842 80.05408673329805 80.55620547615331 80.96863684955676 81.29771510164412 81.54744633159099 81.72287647547128 81.82978108045378 81.87419697850665 81.86233456889386 81.80053949863392 81.69533196404872 81.55332125313097 81.38137859404509 81.18725403122161 80.97668698455568 80.75650226758302 80.53355716056117 80.31473113624904 80.10695154462667 79.9185420219041 79.75475507442043 79.62243292553445 79.52841144699705 79.47951896933955 79.48257654975653 79.54439969748324 79.67180155666728 79.87159754673482 80.15061146025161 80.51823219826969 80.97961793153529 81.54156714704067 82.21483931438095 83.0037164754942 83.9186180973972 84.95814352102128 86.12059538218209 87.4032988110335 88.8026492316213 90.31413244925967 91.93234444988121 93.65101132327206 95.4630096987319 97.36038707857554 99.32909232961086 101.36138052480558 103.4413583904142 105.55648442037098 107.68481853827052 109.81352361006162 111.92006983527322 113.97784442036703 115.98169884066034 117.9248231249691 119.80219641488847 121.61052322347307 123.34820488464202 125.0153037062488 126.61281051857662 128.14464873430495 129.61577734722343 131.03059004595642 132.39812078999896 133.72820421718487 135.0309435331136 136.31686111985937 137.59949746118676 138.8921115562875 145.26158024799975 147.6386473069584 + 4.738042537164703 4.998117820959483 5.29895197426924 5.640058689782051 6.020178404655935 6.43930570037391 6.89644830886933 7.392148120655404 7.924269548302702 8.493596640332337 9.098452210465643 9.738610033042693 10.413016490073138 11.121147999427855 11.861882491748508 12.634468274384062 13.43821092642339 14.271922615119008 15.134966532807942 16.026972841902897 16.946161787150672 17.89217066335324 18.864954465332698 19.86376281741543 20.886639355023227 21.934600992661967 23.00724553452388 24.104203735249595 25.224975442778952 26.36715342284914 27.53244577606123 28.720459084392488 29.930695000041645 31.16093798409676 32.41075904371749 33.67952608798291 34.96238905128729 36.25861505446221 37.560922746014356 38.866701281180916 40.172614159561846 41.476541674884196 42.77402910409921 44.061127471494466 45.33763215701176 46.603348630594155 47.8544465015726 49.09376887811211 50.321522508801635 51.53879519386848 52.748837878634 53.953135368134085 55.15664664940315 56.36038598565859 57.571374572449564 58.7882132104099 60.019674189802814 61.26188691479632 62.52184355309885 63.79663269606563 65.08446855949146 66.38691937563685 67.6926609184134 68.99137716592017 70.27610732019878 71.53498171992982 72.76007606443831 73.93863958195416 75.06086420075752 76.11533148673416 77.0906867081983 77.9803404605651 78.77176211436382 79.46170927291719 80.05347338384733 80.55084474183406 80.95662137290599 81.27615086874246 81.51594036011325 81.6807135303367 81.7762791541904 81.80891377625198 81.78502086352636 81.71110435996557 81.59395587651602 81.44125346873504 81.25927841446257 81.05472678296637 80.83451773276339 80.60560727482476 80.37497796939907 80.15052890953694 79.9391119377231 79.74683697306844 79.58067840090844 79.44760616505397 79.35457209461778 79.30852264479577 79.31639998000412 79.38514443332991 79.52169834229444 79.73301126093013 80.02604654817067 80.40827476539825 80.88922764447882 81.47371374347915 82.17119543067311 82.98911071456872 83.93547615960404 85.01021283684501 86.2113227672895 87.53582158690672 88.97947801469147 90.5376658128395 92.20432450207026 93.9725588793376 95.83469795219298 97.78158778195589 99.79850724316434 101.87735419946776 103.99953424554722 106.15394750626363 108.31347406948747 110.46561073817786 112.58755047375382 114.65320643541983 116.6520438311155 118.58115610836828 120.43599776870757 122.21330624334755 123.91232202820937 125.53492147683795 127.08395937145308 128.5639032967771 129.97854443613878 131.33846327120543 132.65298112298353 133.9326980104903 135.18883051233027 136.43525610168396 137.68651370011236 138.9014949763483 145.44893783247377 147.8080487589307 + 4.472790875741785 4.735411204831527 5.037564207311104 5.378514816281009 5.758613514568776 6.176683151016775 6.632117321135672 7.126000115893759 7.656098825411133 8.223009915121104 8.825964161898892 9.46444293315234 10.13734075639305 10.844931491910698 11.58581124408133 12.359630526298147 13.165525265833308 14.002911227386951 14.871285434463747 15.769429850657259 16.696733682183403 17.65279873640617 18.637064190045493 19.647890748314126 20.68523008245609 21.748647160033514 22.837473188189335 23.951018238213944 25.088499891812745 26.247772013025347 27.42869131528284 28.6308256845307 29.85310692670437 31.092366110130413 32.347629791834784 33.61782255431544 34.895944344654296 36.181218198795726 37.46790819093444 38.754006074117626 40.03600561994436 41.312442816639354 42.57732989787613 43.833683535971176 45.078739946438816 46.31238835558264 47.53480882110926 48.748331914570564 49.953048747120675 51.152881329269604 52.349765459565724 53.546898616133284 54.74831117386215 55.95606914257961 57.17595394316635 58.40731802241633 59.65723732726797 60.92255033628953 62.20783728960192 63.51168466730324 64.83088283025369 66.16276668137903 67.5002418056075 68.83007600381966 70.14248788885425 71.42811593059515 72.67481289147649 73.87310505140285 75.01073755475892 76.07672756256835 77.06159504823178 77.957203183382 78.75003441687488 79.44077677294014 80.02850022323085 80.52161168425991 80.92143143590094 81.23352714813667 81.46386675984292 81.61857597080254 81.7041817505809 81.72664260381359 81.69253328415634 81.60901605114688 81.48277010198987 81.32068458337044 81.12971328025243 80.91686173794972 80.6891757242991 80.4537310319344 80.21920764756426 79.99128661083074 79.77682399606037 79.5828903651562 79.41653485204594 79.28483882047063 79.19487646257198 79.15370368871382 79.16837501754205 79.24594665017005 79.39348083045515 79.61805149136475 79.92675118743448 80.32669931331543 80.82729179700101 81.43559601105888 82.15864955669132 83.00656204601162 83.98537018647357 85.09605907817988 86.33641538362633 87.70276699502725 89.19064210662096 90.79507966469967 92.5095459615799 94.32629009699129 96.23689448821904 98.23159288190327 100.29416299652961 102.4170831794609 104.57796967427294 106.76646580651482 108.95499149615378 111.12585891589256 113.25689874010016 115.32497005275087 117.31726666243061 119.22743442692023 121.0544440934828 122.79752681099977 124.45686752906792 126.03460502512364 127.53273373106632 128.95890497631476 130.32116765494203 131.62889013749324 132.89288343544277 134.1246734437357 135.33840083615058 136.54951728885766 137.77327472853878 138.857596000454 145.64074811777223 147.98089589208013 + 4.212762392170856 4.479249519812622 4.783236953421923 5.124860267708308 5.50572109745105 5.923429258563921 6.377798637438592 6.87032787920905 7.398838987978175 7.963947594833312 8.564762659465943 9.20163895791581 9.873074071384602 10.57947357813193 11.320011783243045 12.094100549920759 12.901274211280061 13.740880915509647 14.612274675503983 15.51501549323248 16.448284934625576 17.411462113878656 18.403422650754326 19.423671309099184 20.47159931577252 21.54637428030588 22.64710354194475 23.772827856327577 24.922332827155135 26.093558311360688 27.2859156572861 28.49797891674265 29.728161478451636 30.972368588271458 32.22931860473231 33.49747214404847 34.76954600284505 36.044806957901116 37.31692531712664 38.5843210538064 39.84388657364157 41.093339221572386 42.3322028928594 43.56166045280751 44.7790567800338 45.98629903395327 47.1851992360219 48.37763216555698 49.56484789772562 50.75183827752651 51.93988990667507 53.13391196010867 54.33638304165286 55.5510497079615 56.78159462819813 58.02892107440096 59.29750435996773 60.586200740015265 61.89515615563467 63.22769977857268 64.5754305417563 65.93445238704172 67.30062613796798 68.65902063727519 69.99756548646246 71.30586723670314 72.57357616080003 73.78834185920819 74.93955893068049 76.01619948699992 77.01024830768326 77.90962025696616 78.70419087265125 79.39470292557708 79.98064815994181 80.46804093516147 80.86256792577177 81.16827309781883 81.39135895884306 81.53820214494918 81.61533264911917 81.629244510817 81.58680176182206 81.49500881287727 81.36083099653361 81.19129974551554 80.99350015144748 80.77455976779835 80.54199858753312 80.30407238877797 80.06653569187469 79.83654858034328 79.62127628474691 79.42788544570544 79.2635416228727 79.13591905772954 79.05188837005993 79.01795441054902 79.04121442595513 79.12877057100718 79.28833048913721 79.52784989912095 79.8537928381086 80.27340079858739 80.7947123303999 81.42800094882277 82.17785590009767 83.05656985644808 84.06861561545348 85.21578417694589 86.49563113439406 87.90371352098286 89.43548827799192 91.0855322358345 92.84668381903349 94.71054771897745 96.66739565797788 98.70735553237066 100.8133208203788 102.97738828031154 105.17326843080687 107.39073815812347 109.60546648938274 111.79016604088827 113.92516311615115 115.98769714526436 117.96509049294129 119.8543566144445 121.65272086430578 123.35955730671117 124.97637460528932 126.50673712663954 127.95617379062614 129.33207391031235 130.64356944005038 131.90140322589085 133.1166617335447 134.3042390205995 135.4802525256005 136.6603943702124 137.8623910624253 138.81758122968023 145.83594086838556 148.15617809010007 + 3.959519734064803 4.2296971037985305 4.536420659380294 4.879883161009326 5.262041890440879 5.680143556632346 6.134163144568083 6.625861621248117 7.153296702562531 7.717067083179586 8.31602998212961 8.951275432695146 9.62135916883151 10.326611256179962 11.066106478986525 11.839819272417152 12.647317271278006 13.487887331239232 14.36116620407865 15.266676373507613 16.203643373401963 17.171017618640033 18.16844266589552 19.195127593428822 20.25018833621882 21.332646485372642 22.441425805854543 23.57534630282449 24.732711252014152 25.911471350570146 27.11058103143273 28.328258721632142 29.562542927603804 30.808487776326814 32.06487393730911 33.32968768978617 34.594632282735716 35.85925437047658 37.116994558144626 38.36588482096353 39.60396510260349 40.83167343953914 42.047738213921605 43.253603285723905 44.44749885090243 45.63385856643474 46.81378898360327 47.98960103842013 49.164356747217525 50.34249377928513 51.52561780556741 52.71987311095445 53.92593349218244 55.14977594551202 56.39209636230311 57.656191239907066 58.943022980440055 60.25492790245019 61.586436143455835 62.94465784994099 64.31907916268032 65.70523863601684 67.09487426876404 68.47748959907689 69.83981885840623 71.16900274924616 72.45378752238001 73.68384313706635 74.84683099632883 75.93373210497256 76.93464579378741 77.83703093240604 78.63447574358395 79.32312580437146 79.9076270859503 80.39065036555623 80.77997378771826 81.08047653578423 81.29768442377376 81.43820501984656 81.50855441827957 81.51571236311074 81.46676519847041 81.36875148242008 81.22877582359148 81.05399702635998 80.85161737866359 80.6298100812681 80.39569502668911 80.15578785807958 79.91733032421402 79.68757125251632 79.47376268384855 79.28367270123454 79.12492446308757 79.00354656284395 78.92670155887375 78.90161668567004 78.93548173231243 79.03549428122355 79.20886472728773 79.46356492398823 79.80825446110738 80.24888534283474 80.79285171799118 81.45169209495302 82.23012078303734 83.13958103906347 84.18545950616924 85.36942297120345 86.68864311278263 88.1381758665625 89.71323681675668 91.40793179580852 93.21427372058274 95.12292259786658 97.12430120645801 99.20634714031821 101.35312828997316 103.55260005011831 105.78196607366701 108.02381228770723 110.2585959847198 112.45448729412072 114.58759103062813 116.63710846466847 118.5958497038282 120.45934189333593 122.22551791463377 123.8946409747743 125.46922095324126 126.95391854222413 128.35543627277698 129.6823957105472 130.94421537641017 132.15279897655606 133.32391407015442 134.47290546445885 135.61575434850855 136.7700444005967 137.95436247274898 138.78218563072502 146.03344584880423 148.33288473668384 + 3.7123582424296724 3.987178533145903 4.297574265244311 4.644176141983206 5.028113072221214 5.447415118733461 5.901863448309153 6.393308571853348 6.920248843144047 7.4832028971146505 8.081100728505586 8.714706332624639 9.383261794779138 10.087390206225361 10.825917747646827 11.598781894784059 12.405786242493 13.24637705506624 14.120242380057242 15.026869584531518 15.965599829737643 16.93549166260464 17.936034036395025 18.966378333856348 20.0255540086768 21.11246653894565 22.225893729606913 23.364480256725308 24.525980342179466 25.708672308234487 26.910997476033995 28.130894848117542 29.36610978353107 30.61083609247022 31.864282459957828 33.12389174439747 34.38042079185338 35.63386255018951 36.876325486735034 38.10837665114389 39.32856364701926 40.537050791270644 41.733186028912634 42.91859676106828 44.094289526149545 45.2638077228854 46.42876888563442 47.59271556731976 48.758927573568556 49.9317765460765 51.11324699569346 52.31046278767987 53.52202244636834 54.75664507384786 56.01121990106605 57.29225076393431 58.596325150818565 59.93036554202377 61.28450335088471 62.66356262408194 64.06291505140821 65.47226436739625 66.88408550226734 68.28692005920468 69.6686006093899 71.01593314519334 72.3164776699467 73.55862263249534 74.73285484349782 75.82893388136625 76.83427408608199 77.73879775473405 78.5390819552341 79.22572495019821 79.80921374070658 80.290055956262 80.67456442850508 80.97049852313555 81.18330261088673 81.31876165234328 81.38420062246932 81.38666361144315 81.33326031242476 81.23116488075708 81.08760480467896 80.9099416321341 80.70678975787506 80.48420572742933 80.24948969667676 80.00995511045573 79.77292378088596 79.54572200636312 79.3370176528648 79.15305807409517 79.00063919432809 78.88702658538502 78.81943727628955 78.80518739172193 78.85155141851875 78.96581120920635 79.15526405219978 79.42722881859268 79.79121637097408 80.2541295372797 80.82259474691055 81.50739030613686 82.31515598428983 83.25597152171504 84.33606313030923 85.55694255549099 86.91512736667872 88.40554538319141 90.02297498727208 91.76103982995855 93.61065105003411 95.56174604337386 97.60533219111652 99.72615096728705 101.9106340209985 104.14132884702424 106.40055264564221 108.66195182141006 110.90839045402339 113.11253145045877 115.2382632027149 117.27219528460233 119.20826204730778 121.04268220446285 122.77420418211354 124.40401558510138 125.93564210833344 127.37483362890246 128.7279961392109 130.0056140740211 131.21977149958238 132.3854714463631 133.51756977334836 134.63210190521545 135.7464911158059 136.87971029462537 138.05013554436695 138.75232498148597 146.23219282351863 148.51000521552487 + 3.4716918477908867 3.7521305763593937 4.0672591515372725 4.417966590893653 4.804464812555497 5.2258189466880625 5.681530090215947 6.173522242024323 6.700438330196424 7.263171862788967 7.860475813996845 8.493317978486283 9.160672027733385 9.863297956457016 10.600469580359139 11.372386908015926 12.178598089304906 13.01858193307994 13.8920461364977 14.798586421779149 15.737655898111058 16.708323396507662 17.70989462664343 18.741561127259054 19.80228645284503 20.890887512179976 22.006030872408978 23.146170942986945 24.308607906840273 25.49209735882089 26.694559507954114 27.913724491092466 29.14712017643257 30.388050483343395 31.63653388496223 32.889383940858394 34.13582356869578 35.37717893043975 36.606290856195685 37.82346717373371 39.027602685953255 40.219080555668846 41.39801334559607 42.56756779806507 43.72861908739453 44.884953672713024 46.03909617257946 47.194899361749336 48.355964221584905 49.52678140355514 50.70983639599581 51.91127277626313 53.1297417728935 54.375958621411364 55.64265604720902 56.940546267906036 58.26225803335551 59.61449920016486 60.99005786765354 62.3855092614061 63.806749055534276 65.23758233507664 66.66840896329177 68.08893553351416 69.48572139496424 70.84687380282729 72.16053427221001 73.4152009946476 74.5987643847277 75.70017515382608 76.7089034457202 77.61800079711738 78.41773616623405 79.10542795522665 79.68588145443792 80.1654534006733 80.54794632156721 80.83982052242493 81.04825466353473 81.18074494157632 81.24329307687543 81.24307825308607 81.187341022765 81.08339216688037 80.93958450456593 80.76246591471919 80.55937894320991 80.33768548355845 80.10476112168341 79.86799041463458 79.63482019066561 79.41441601102147 79.21218305829619 79.03545257125528 78.8915551630385 78.78781492577711 78.73152176965773 78.73006113083342 78.79077484369559 78.9210170222376 79.12815925393129 79.41959666725384 79.80373624976156 80.29007478275592 80.88399267047267 81.5957537030926 82.4333731072804 83.40602773030163 84.52048492913893 85.7779795653722 87.17463500931193 88.7050794996907 90.36364953137749 92.14308519636322 94.03334126158016 96.02504896999764 98.10808929453053 100.26401890539734 102.48280509322475 104.74025564464223 107.02362744366164 109.30144821064118 111.55342906378785 113.75248944544936 115.87171399368981 117.88947891117184 119.79906230447577 121.60145223817872 123.29625237278309 124.88559410166043 126.37306593535781 127.76371908987828 129.06939960926962 130.3019745171154 131.4744358076092 132.60131139949436 133.6984587957584 134.78292039600885 135.8739282701231 136.99021871211167 138.1507095151609 144.1736198784346 146.4311115570192 148.6865289103164 + 3.2379508297109423 3.524999813852181 3.8463906268045287 4.2016098980735395 4.591617232056113 5.015912809913133 5.473783373840737 5.967380200828708 6.494665468427039 7.057745293755422 7.6549942292906525 8.287551358560952 8.954310420538796 9.65607593895419 10.3922922004799 11.162864859963616 11.967777377312185 12.806555799959748 13.678900016408521 14.584429488644123 15.522608399245486 16.49271933452208 17.493660034950654 18.524757691126865 19.584928626655266 20.672926246065266 21.78733752871907 22.92601276609949 24.087076162720706 25.26871487121281 26.468712140446105 27.684653625247496 28.91340840412089 30.14888010424361 31.3905590581775 32.63455368086603 33.87102694365648 35.10128566451861 36.317609332722206 37.52120147782858 38.7108699718332 39.88782047401418 41.05325522144358 42.209997041084776 43.35964801953119 44.50637151990392 45.65327026084745 46.80395089847312 47.96272834917133 49.13413161711192 50.32079351864955 51.527729796754734 52.755425679378334 54.01187183869805 55.29240830225862 56.60385707562136 57.94230271257091 59.309315447978435 60.70383628034891 62.11715219666546 63.5514793470231 65.00025280980397 66.448182522562 67.88322379594771 69.29372022075657 70.66701678589413 71.99066718074776 73.25287871679609 74.442214865805 75.5476808246421 76.55951462574518 77.47203040549971 78.27117605739801 78.960318983926 79.53928735983554 80.01732940589967 80.39857754756879 80.68918165195132 80.89619209107647 81.02673766406097 81.08801456166472 81.08727615786584 81.03182362845465 80.92899739664726 80.7861694057182 80.61073621865201 80.41011294481456 80.19172799364314 79.96301865535611 79.7319326025065 79.50680341284267 79.29358094993658 79.09964984684807 78.93239392505052 78.79919673806174 78.70739642641868 78.66441523893319 78.67765393627027 78.75451225433599 78.90240370644396 79.12876069000468 79.44104036040386 79.84682798514693 80.35760619920703 80.97778462240034 81.71735749064815 82.58516312881126 83.58992869749497 84.73866453303214 86.03224864752694 87.46658075018398 89.0358933188128 90.73404275267193 92.55254868452027 94.4810548214585 96.51063483203767 98.6285595172765 100.8171214593154 103.06522931410555 105.34604006423787 107.64508254654656 109.93830489381834 112.18874437901725 114.37934972942737 116.48095067284454 118.47582931710976 120.35878037805931 122.12807145557512 123.78466425927463 125.33017645150547 126.77197712619281 128.11946686604068 129.38302973717686 130.57494024890656 131.7091665532697 132.80099645168482 133.8670976432841 134.92691149320962 135.99910863712418 137.10307061107616 138.26017179282542 144.39214140590053 146.62913181379633 148.8614452047519 + 3.011587816454347 3.3067274266576794 3.634886420869844 3.9955840233742883 4.3900777238647715 4.8182344757117095 5.279172984647867 5.775221303800487 6.304277715012815 6.8682098076740585 7.465673959965371 8.098260690732353 8.764871019066023 9.466075548121252 10.20154662737694 10.971104138813995 11.774792733421396 12.612212679737326 13.483036019740236 14.386909343782994 15.323315915286937 16.291574415438223 17.290835232232585 18.319920181701924 19.377896859572726 20.46347765446609 21.574854935614873 22.71022030740619 23.867773979212657 25.045410071388527 26.240827873420884 27.45152635256592 28.673535249320768 29.901845785720315 31.135459864480474 32.37008634571001 33.59665081531625 34.816002402933364 36.02021884317689 37.21143129225755 38.38877625808414 39.55401530135263 40.70848504671422 41.855198030953325 42.996698286857466 44.1369048925581 45.27933784174438 46.42741565814434 47.586711550398356 48.76018698789992 49.95188686652389 51.16501445954353 52.40226056959291 53.66833624377438 54.96199887330907 56.285051083232105 57.63805280477565 59.016785158893 60.427348121730624 61.856451834618326 63.30016424779293 64.76113947783098 66.22244267155688 67.66965215548626 69.09029365385715 70.47201089177794 71.802861923005 73.07073637731763 74.26406797059165 75.37203792630915 76.38920512471631 77.30181227482107 78.10235868915187 78.79092222210588 79.37064287327816 79.8463416481103 80.22796079438898 80.51895114280725 80.72644037298053 80.85769023454915 80.92001396852018 80.92076794805516 80.86734404072214 80.76716269221194 80.62766673151822 80.45631589758196 80.26058208739951 80.04794532559539 79.82683810712706 79.604695632144 79.38806178549193 79.1843629813174 79.0010244278469 78.84545284306554 78.72505764057185 78.64729501336632 78.61959208164157 78.64938285650902 78.74411182663873 78.91123820743098 79.15824085271794 79.49262382899661 79.92192265219299 80.45753138853756 81.10462055575076 81.87267438402762 82.77080414872732 83.80772954040374 84.99040854581858 86.31942715799077 87.7902338909778 89.39693291558622 91.1323877624438 92.98717879287234 94.95179479902446 97.01619829357821 99.16430642597932 101.38256784955979 103.65262305804228 105.95534736367975 108.26486297510257 110.55961772420223 112.81273235143632 114.98974190468098 117.06894299696985 119.03588876655691 120.88646165497302 122.6197657025725 124.23519299232359 125.7392242798272 127.13994580397542 128.44663140890287 129.67060995623737 130.82506408651645 131.9235760743474 132.98438603301952 134.0252847532988 135.0652149580193 136.12349390226083 137.2213384154394 138.37824681290022 144.60941262322896 146.8251833583405 149.0337434825247 + 2.794053679037825 3.097626798173854 3.4332036643751493 3.8003597351433354 4.200338590922406 4.633299273363883 5.098236560024926 5.597625438836977 6.129270990514384 6.695323355795876 7.2942103849653055 7.92775553884964 8.594675262915777 9.295672564093769 10.03070021872023 10.799435858230282 11.60195434803648 12.437947306229182 13.307021366419377 14.208835254613945 15.142878843792841 16.10847140377425 17.10475952459697 18.130714730283128 19.185152248934326 20.266754453177587 21.373784497461532 22.50447964428226 23.656888846676992 24.828869384051995 26.01808333176926 27.221993879332764 28.435664755120712 29.655927672735174 30.880940400233904 32.105519613200784 33.32210947683178 34.53093121698558 35.72388546268318 36.90450022140654 38.07150715678367 39.22713348371608 40.37296258523229 41.512563454904914 42.64855404632297 43.78470506513739 44.92495883910263 46.072455850494165 47.23422298712566 48.41092123136735 49.60851753403245 50.82797474190184 52.074432575316344 53.349034579213345 54.654497837761916 55.98686577077993 57.35293155205678 58.74294526470748 60.16219793321103 61.603560680089856 63.058696834540704 64.52248789748461 65.99229919889034 67.44790648884504 68.8758247204603 70.26346397695863 71.59865667461912 72.8696300610902 74.06510356917035 75.17818458725152 76.19602668450698 77.10794548030259 77.91103025738552 78.59827315868674 79.17989258705512 79.65733937233708 80.03776188883167 80.33063033580949 80.5403200921511 80.67416018994825 80.73955639455852 80.74394531600632 80.6947883602692 80.59956629943476 80.46577446072864 80.30091853441334 80.11251100055763 79.90952495601036 79.69828771499681 79.48604441838019 79.28024113619296 79.08835873197755 78.91784742927746 78.77615664056597 78.67073621659306 78.60903825693029 78.59851948171541 78.64664416459485 78.76088762686557 78.94874029281553 79.21771230626283 79.57533870829367 80.02918517619925 80.59055980012155 81.26504160783658 82.06205639626431 82.99044476249126 84.05934704421263 85.27537880515797 86.63882140141051 88.14472796741443 89.78679184188067 91.55733253436752 93.44573760503953 95.44345442589156 97.53873051021353 99.71340153008875 101.95742955854429 104.2445005843738 106.56261359547497 108.87772207407406 111.16890539002196 113.41265329663015 115.57865438751189 117.632846900062 119.56828342555984 121.38389769691705 123.0771929367481 124.65229026244133 126.11635884861077 127.47733722181883 128.74534717738908 129.93058169042777 131.04976224106483 132.11868749801295 133.15372654912076 134.17442688498232 135.19960798587022 136.25018341752207 137.34541910003966 138.50460600852392 144.8243123200332 147.01819595514212 149.2024131273281 + 2.5852926270683394 2.8978139030985828 3.2417974945604375 3.6163986094502047 4.022874954504855 4.461597937484506 4.931526432178784 5.435132204771049 5.9702171304226646 6.5392288910724 7.140411875127 7.7754998092954235 8.443536982520977 9.144943853738582 9.88002166269525 10.648265775273563 11.44977420157708 12.284468465740645 13.152051633148806 14.051877088491235 14.983438732541616 15.946057504864324 16.938879347367386 17.960872991124393 19.010827589745844 20.087423882059987 21.18922932174504 22.31417197495674 23.46029787567801 24.625463806544715 25.80733495634213 27.003406107438835 28.207906705759935 29.419522663186328 30.63545884794316 31.8496432458589 33.056439355414504 34.25550991842819 35.43840461734748 36.609883177862905 37.76820244260436 38.916171979464316 40.05583529546892 41.190646699748335 42.32320613545526 43.45736161195033 44.59726448438373 45.74625932057439 46.91123215181986 48.09180878717775 49.29561672510021 50.52103356613119 51.77584055409744 53.05730766072705 54.372782172027776 55.713513443700435 57.08820342100949 58.48791353125241 59.909968890463425 61.35986504449663 62.822538298338664 64.2925483128244 65.76152179714067 67.22032084104957 68.65150065290288 70.04166822983338 71.37881699331953 72.65100655552611 73.8507579495262 74.96423006356585 75.98119709996946 76.89483720247128 77.69821172002932 78.38716995689867 78.96886316482804 79.44913252521043 79.8326357860413 80.12669170686458 80.33961850313001 80.47795055909943 80.54845906769243 80.55856593575051 80.51583864387 80.42783434644831 80.30207926978969 80.1467844384465 79.96954255689818 79.77726531581318 79.57742571314252 79.37749489499184 79.18494173975246 79.00723290676811 78.85183334953666 78.72620729344831 78.63840164002072 78.59514823743376 78.60357682572443 78.67109685546455 78.80609719872125 79.0160603666042 79.30820590881159 79.69008316871331 80.16927046531721 80.75728348087152 81.45946220126817 82.28571876492072 83.24408991791536 84.34454810230686 85.59308383856083 86.98966450127472 88.52895538257474 90.20424146248307 92.0065974324271 93.92630924621525 95.95383276131598 98.0739260519611 100.27312264990044 102.53516974444098 104.83776288083105 107.16136533401712 109.48147707599495 111.76446976840681 113.99182366354398 116.13288125968393 118.16073483157166 120.0658456742817 121.84489825983077 123.49841109997796 125.03366868520683 126.4575110089558 127.77913153078052 129.00986373677185 130.16295730044664 131.25306278107627 132.29605909774685 133.31110207863196 134.31671723818673 135.33297894585002 136.3794134235931 137.47536455382718 138.63988229990292 145.0357192859265 147.20709936869162 149.36644352285555 + 2.3852784771481192 2.7077452855795023 3.0611193614730396 3.4441512456156853 3.8581428916992606 4.303594678779714 4.779503190855295 5.288238884095192 5.827736978183305 6.400479901718601 7.0047722584244525 7.642105483310971 8.31192852932103 9.014845742396325 9.751065653538243 10.51979787671664 11.32113963861274 12.154974066421206 13.020786002888341 13.918226371119324 14.846999227344867 15.806715194816697 16.795981686761774 17.813772550687222 18.85888414307664 19.929933415869055 21.025683687608982 22.144270461650787 23.28345719050919 24.4411307195821 25.614993198517425 26.802047364273992 27.99754021803469 29.200213249888808 30.406949959260135 31.610714782413602 32.80834522127373 33.99861121273763 35.172439724095995 36.33616249764557 37.48737012346951 38.62961944796292 39.76532539389056 40.897049126047925 42.027957003454816 43.16177494887904 44.30271341801443 45.454618270289444 46.623076122155034 47.808089873292325 49.01753830160744 50.24843019507593 51.51034060147231 52.797637354230275 54.119368998871195 55.46786216065044 56.845804086906746 58.25224821784796 59.67882394377375 61.12773263510737 62.593041160050966 64.06537329463222 65.5357389430108 66.9921508155543 68.42157900291697 69.81124677977758 71.14875143127655 72.42215098699091 73.6200509062619 74.73169050806325 75.7470879333991 76.66370058852745 77.465850005758 78.15793227579923 78.7399930102565 79.22327068372653 79.61101669882301 79.90992541295891 80.1274212445516 80.27094599676857 80.34795514328172 80.36591448769548 80.3322971966503 80.25458120660038 80.14024700426633 79.9967757807626 79.83164795939904 79.65234209715791 79.46633415984519 79.28109717091647 79.10410123397762 78.94281392896045 78.80483972597521 78.69838597315703 78.62967938067641 78.60611846779285 78.63510685466535 78.72405592067935 78.88091953877611 79.11425801400515 79.43065011311398 79.83764217737061 80.3428070448279 80.95816002436874 81.68815469540948 82.54372681956075 83.53159004722892 84.66294177686319 85.94287424308774 87.37103497994265 88.94171068209512 90.64779322572066 92.47907963478092 94.42688272344964 96.47942063708716 98.62116845731272 100.84073784613538 103.1141905636095 105.42937976954452 107.75096186249078 110.06361642186123 112.34260851638625 114.5494160163599 116.66101288022935 118.65451816429378 120.52315400296557 122.26130684315268 123.87656409311882 125.37403171305897 126.76134409308865 128.0484431471876 129.24734859972995 130.37134172715412 131.43399243517447 132.45654212211014 133.45672366948378 134.45325883557618 135.46435891363046 136.50836103681422 137.60348700056718 138.72226050795985 145.24251231052216 147.39082336347943 149.5248240528003 + 2.194482868094567 2.527879560265441 2.8916155166150213 3.2840556666170237 3.7065777614944704 4.159725433001916 4.642608780504635 5.157398563423964 5.702342916074958 6.2795699414833885 6.888308850037489 7.5294456689002915 8.202603170795607 8.907550474021797 9.64489535960083 10.414177049673215 11.215316333958722 12.049058825734374 12.914317638303434 13.810387471263335 14.736801850634796 15.692899029543923 16.67846189564637 17.69221337439643 18.73252526655473 19.798037381253298 20.887214892349935 21.999234839260918 23.131289135961712 24.28125359057252 25.446894715606035 26.624250189398552 27.81111270326474 29.004920602677192 30.202667975774645 31.39629543085102 32.58571787131916 33.76783589923241 34.933792507704965 36.0911247810529 37.23671083653585 38.37539370007622 39.50835558326113 40.638568676302704 41.769258739862366 42.904006154037766 44.046945801826084 45.20219559811693 46.374307526495315 47.5641509259405 48.77794625509452 50.01459983321905 51.280522439817474 52.57304727575003 53.8963336612766 55.24971671607687 56.62738756743532 58.03702067422215 59.465860400635506 60.91033266013213 62.374075210396704 63.84399171827239 65.31123922422063 66.76427402736992 68.19011951100198 69.5760742553437 70.90988243035629 72.17956519516699 73.37390947032449 74.48235850867107 75.5000431016572 76.41424110959474 77.21712475985129 77.91052282978377 78.49681863120198 78.98145094344089 79.37494990962774 79.6804352938148 79.90535917661495 80.057182870515 80.14337434431427 80.17140593707566 80.14875236158919 80.08288899734768 79.98129047303517 79.85142953852744 79.70077622640511 79.53679730297908 79.36695600882852 79.1987120888509 79.03952211182474 78.89720751777752 78.77959306649896 78.69309889225447 78.6451081741107 78.64300688806819 78.69418588791766 78.80604327901798 78.98643427296885 79.24428210390138 79.58585218418455 80.01867003697164 80.550608726387 81.19349856615278 81.95123743071122 82.83598661468106 83.85337600046509 85.01397575735717 86.3239427251697 87.7818606558288 89.38165131371403 91.11555281689677 92.97294741420517 94.94519396687893 97.01720177531685 99.17793237376868 101.41016200791216 103.69320788696037 106.00911448145752 108.33069454564534 110.63057315855959 112.88936017812553 115.07732872359965 117.16101276380563 119.11691228015157 120.93775657798943 122.62674553700786 124.19634421657854 125.65254749134502 127.00365069493648 128.26000383074907 129.43376578272816 126.09784496836542 128.2295051746986 130.3729626893564 132.5250756106528 134.68270203690187 136.84270006641785 139.00192779751492 141.15724332850715 143.30550475770866 145.4435701834335 147.5682977039959 149.6765441008558 + 2.013385743616435 2.358676149678581 2.73372566093939 3.1365358743436 3.568592681157639 4.030396241569618 4.521246817201639 5.0430183360980285 5.594591841288979 6.178201826531524 6.792341606542806 7.437522840174816 8.114207604331627 8.821845002535795 9.56118005594226 10.332934638721749 11.135667217748287 11.969306074508577 12.83356247904877 13.728497931671344 14.653570968005846 15.607419971877631 16.589221633739083 17.598505035345656 18.634459092393378 19.69478603049704 20.777993380698483 21.882903236435073 23.008066771880905 24.150539076492237 25.30771161264433 26.475795266495396 27.654383845613754 28.839751868850442 30.028837752867865 31.213084656274876 32.395111084602824 33.569289942789986 34.72930850745183 35.88158455678868 37.02294173281507 38.15940533122516 39.29099031454558 40.42097991792605 41.5525520583662 42.68912245729053 43.83463547418977 44.99302471720177 46.168561509690136 47.3626625147018 48.57969711646571 49.8206678395647 51.08857272226722 52.38464099470228 53.70709731456968 55.061255975346626 56.43831623939577 57.84342596634902 59.270738127094766 60.71254438009352 62.16483159569766 63.62910496250478 65.08995121505153 66.53633479824 67.95542130101904 69.33465567981315 70.66191350910177 71.92557969693945 73.11462675243037 74.22259672853534 75.23800492368103 76.1495778253039 76.95556955902428 77.64871462810355 78.23999810057019 78.73036394940577 79.12762399375431 79.44118504864026 79.67522111971014 79.83718494088642 79.93453097607684 79.97471398273187 79.96518778808786 79.91340427809703 79.82681259904355 79.71285857184564 79.57898431904398 79.43262810447705 79.28122438564152 79.13220407874012 78.99349572754086 78.87264188553709 78.77622305417074 78.71159412159061 78.68611096778177 78.70713203357188 78.78202010616629 78.91814432121126 79.12360289924628 79.40695332485285 79.77448221769242 80.23367608992878 80.79334359835285 81.46344970486622 82.24890595034226 83.16224017607144 84.20846028567642 85.39693800790627 86.73532954540163 88.22092809726554 89.84730853255594 91.60581323744704 93.48620028006066 95.47674799656295 97.56630472737614 99.74171801581889 101.9794435333354 104.26951084752935 106.57636870044232 108.8720857956519 111.14501200643008 113.36392658659715 115.50641212054819 117.54280461892058 119.45631154519269 112.11203856610814 114.07493836446162 116.07040492600672 118.09524418783546 120.14626208703996 122.22026456071208 124.31405754594373 126.42444697982702 128.5482387994538 130.6822389419162 132.82325334430607 134.9680879437154 137.1135486772362 139.2564414819605 141.39357229498023 143.52174705338737 145.6377716942738 147.73845215473162 149.8205930507154 + 1.8424743343484107 2.200594161630108 2.587881730030119 3.002000531078313 3.4445771165675287 3.915981719985801 4.415780966678963 4.94578156797861 5.505743787632897 6.095890125968572 6.716037170291337 7.366080578404569 8.047097913210866 8.759683367882594 9.50284374033756 10.276612870351974 11.080434936930974 11.915511509742391 12.780861517003878 13.675323139195706 14.598159903117024 15.550600914052826 16.530177026661814 17.535747706026175 18.566786888671942 19.62266329527504 20.700571365717014 21.798916378081802 22.91729518564882 24.05289108450418 25.20129562896537 26.361191114585072 27.532177098954282 28.709845387854315 29.88984397770809 31.06675330986449 32.242099120516215 33.409381252942474 34.564700386040464 35.71320732126974 36.85161987497075 37.98675134660082 39.11809548173706 40.248867143116684 41.382104303651225 42.52104140463179 43.66934022616013 44.830233262922306 46.008419497008965 47.205849268299644 48.42471743201807 49.668252683733854 50.9358976507387 52.23296475352637 53.553144988054086 54.90495961717743 56.27960376816176 57.674970805942884 59.09639768461323 60.531244637888854 61.97510444105683 63.422757317593586 64.87296882014942 66.30924021071303 67.71849351428499 69.08836688053788 70.40693777468884 71.6627987955636 72.84925153187834 73.95319392428068 74.9640421209949 75.87573661479964 76.6818830890808 77.37819555173303 77.97224258250172 78.46959054914602 78.8746454124168 79.19479520128694 79.43957883648527 79.61347249437756 79.72389119423893 79.77824799843451 79.78395336586428 79.7484146489646 79.67903573426636 79.58321682650907 79.46835437631202 79.34184115140165 79.21106645139568 79.08403863711487 78.9679518543842 78.86959417911058 78.79627837910279 78.75531697434984 78.75402334432424 78.79971298300154 78.8997049015959 79.06132317901164 79.29325303688776 79.60295010537185 79.99706091766448 80.48301455151604 81.07083722164725 81.76800030947933 82.58177764437578 83.52206629870584 84.59611869703562 85.81169082541746 87.17596791807932 88.68689845467199 90.33710741021773 92.11047997640426 93.99552572056008 95.98809922419952 98.07596996827733 100.24086681895294 102.46799240776421 104.73698768590691 99.86964530915235 101.52280441921394 103.22998807960028 104.98795714833503 106.79347248344179 108.64329494294428 110.53418538486632 112.46290466723144 114.42621364806334 116.42087318538566 118.44364413722208 120.49128736159643 122.56056371653227 124.6482340600532 126.75105925018306 128.86580014494538 130.9892176023639 133.11807248046236 135.24912563726434 137.37913793079352 139.50487021907367 141.62308336012842 143.7305382119815 145.82399563265633 147.90021648017688 149.95596028607238 + 1.6822422603700566 2.054093304409733 2.4545067952253796 2.880841739981628 3.334895552173804 3.816823572855359 4.326533334071527 4.866496127592703 5.435057844390399 6.032627653878791 6.659680019558122 7.315891771639103 8.00390088180182 8.721211272246217 9.467932590821215 10.244955966793919 11.052743531044975 11.889456999136014 12.754844742874916 13.650524364660921 14.574006486132193 15.52411374969661 16.50162942957598 17.50515414767121 18.532545489096016 19.583412465587006 20.65704777172951 21.750291151958713 22.861589208324958 23.99013106442355 25.131834197234713 26.28488234145112 27.448228575440776 28.61921358339748 29.7911129898642 30.961775159358208 32.130994531595135 33.29251507494817 34.44437039440792 35.590331870315524 36.72696508886621 37.865491719780955 39.0054229452026 40.14387226461137 41.28363733379639 42.427772541344744 43.57964686077103 44.74267120512695 45.91949747023747 54.644973308872636 56.10937667064774 57.56159448271081 58.99873540487977 60.417908096972596 61.81622121880732 63.19078343020191 64.53870339097439 65.85708976094266 67.1430511999248 68.39369636773874 69.6061339242025 70.77747252913403 71.90482084235136 72.98528752367245 74.0159812329153 74.9940106298979 75.91648437443821 76.78051112635426 77.58319954546398 78.32165829158544 78.99299602453655 79.59432140413531 80.12290077667126 80.57960775556741 77.61640771878736 78.12445947692864 78.54254970845872 78.87738293292423 79.13618748279231 79.32715197483769 79.4567630736276 79.53153166548137 79.55875243294369 79.54572005855927 79.49972922487284 79.42807461442912 79.33805090977279 79.23695279344858 79.13288902135811 79.03244809347795 78.94271848060464 78.87092851520529 78.82430652974689 78.81008085669647 78.83547982852112 78.90773177768781 79.03406503666358 79.22170914831041 79.48024155159067 79.81523573373963 80.23398637730199 80.74378816482249 81.35610680309513 82.07522318571021 82.91119617237253 83.87074252551173 84.96361773960436 86.19566162217124 87.57368044044728 89.09536714930229 90.75305750276812 90.35041730997636 91.54659149641766 92.81878744735292 94.16372831803591 95.57813726372041 97.05873743966008 98.60225200110861 100.20540410331965 101.86491690154706 103.57751355104449 105.3399172070657 107.14885102486427 109.001038159694 110.89320176680872 112.82206500146198 114.7843510189076 116.77678297439914 118.79608402319043 120.83897732053528 122.90218602168726 124.98243328190007 127.07644225642754 129.18093610052327 131.29263796944107 133.40827101843465 135.52455840275758 137.6382232776637 139.7459887984068 141.84457812024047 143.9307143984185 146.00112078819447 148.0525204448222 150.08163519062018 + 1.5331887442262435 1.9197545324119287 2.334014060368197 2.7734338987560627 3.2398862082500606 3.7332291169694747 4.254613080677541 4.8046702176068266 5.382757690401714 5.988626684551636 6.623688137273002 7.288822425080326 7.982831093985986 8.705493744557907 9.45800317014449 10.240239397669422 11.05077855347162 11.890199330085874 12.759032371495744 13.655003007086334 14.578537019883635 15.52982410573029 16.505710917549436 17.506710253085892 18.532429907072164 19.57978037184633 20.648628805087654 21.738055568531774 22.843633568178525 23.965050692170337 25.101560134127922 26.249008195160393 27.40524639845651 28.587412230662256 29.770177543503976 30.952387803615053 32.13090602996687 37.24020334384488 38.61504118684277 40.01188530466737 41.42789741919193 42.86023925228962 44.30607252583375 45.76255896169746 47.22686028175407 48.69613820787676 50.16755446193875 51.638270765813274 53.105448841373594 54.566250410492934 56.017837195044464 57.457370916901475 58.882013297937185 60.28892606002479 61.67527092503755 63.03820961484869 64.37490385133147 65.68251535635903 66.95820585180468 68.19913705954163 69.4024707014431 70.56536849938229 71.68499217523248 72.75850345086691 73.78306404815874 74.75583568898126 75.67398009520765 76.53465898871121 77.3350340913651 78.07226712504256 78.74351981161686 79.34595387296118 79.87688650848139 80.33719129220461 80.7313026978474 81.06380916830291 81.33929914646427 81.56236107522457 81.73758339747698 81.86955455611461 81.9628629940306 82.02209715411807 82.05184547927016 82.05669641237998 82.04123839634066 82.01005987404538 81.96774928838721 81.9188950822593 81.86808569855475 81.81990958016677 81.7789551699884 81.74981091091281 81.73706524583312 81.74530661764247 81.77912346923398 81.84310424350078 81.94183738333602 82.0799113316328 82.26191453128425 82.4924354251835 82.7760624562237 83.11738406729796 83.52098870129943 83.99146480112123 84.53340080965646 85.15138516979829 85.8500063244398 86.6338527164742 87.5069588574316 88.4685238625419 89.51526262378296 90.64386826408136 91.85103390636368 93.13345267355642 94.48781768858622 95.91082207437974 97.39915895386343 98.94952144996388 100.55860268560762 102.22309578372135 103.9396938672316 105.70509005906491 107.51597748214785 109.36904925940698 111.26099851376897 113.18851836816036 115.14830194550767 117.13704236873748 119.15143276077633 121.18816624455097 123.24393594298782 125.31543497901343 127.39935647555451 129.4923935555375 131.59123934188906 133.69258695753575 135.79312952540408 137.88956016842067 139.97857200951216 142.05685817160506 144.12111177762597 146.16802595050137 148.1942938131579 150.19660714805212 + 1.3958179247278637 1.797868333754097 2.226805934792836 2.680132602070574 3.159859775107032 3.6654697765915003 4.199539353387157 4.760493553490893 5.3490022600400815 5.96404608111453 6.609751472214226 7.282956771402579 7.983781769396101 8.71418238244671 9.473402323264718 10.260062405929304 11.075794301758608 11.919850707858792 12.790369461650394 13.689391824708357 14.614801039773706 15.56492231793747 16.54234584019492 17.542690885519345 18.5656022132022 19.611750724468045 20.676993304708727 21.769951684491133 22.893637498042477 24.032076951727202 28.50574941329218 29.6812793578074 30.884187279464776 32.11455172404903 33.372451237344826 34.65796436513692 35.97116407697686 37.31121607391455 38.67554055934372 40.06135466836196 41.465875536066875 42.886320297555976 44.31990608792694 45.76385004227724 47.215369295704555 48.671680983306416 50.1300022401804 51.5875502014241 53.04154200213511 54.489194777411015 55.92772566234934 57.35435179204776 58.766290301603775 60.16075832611498 61.53497300067899 62.88615146039336 64.2115108403557 65.50826827566354 66.77364090141451 68.00484585270615 69.19910026463609 70.35362127230185 71.46562601080109 72.53233161523131 73.55095522069016 74.51871396227519 75.43282497508395 76.29050539421408 77.08897235476311 77.82544299182867 78.4971344405083 79.10126383589956 79.63520141927671 80.09981915435645 80.49949527797945 80.83875961626923 81.12214199534927 81.35417224134302 81.539380180374 81.68229563856569 81.78744844204157 81.85936841692514 81.90258538933989 81.92162918540926 81.92102963125681 81.905316553006 81.87901977678031 81.84666912870324 81.81279443489827 81.78192552148886 81.75859221459855 81.74732434035077 81.75265172486908 81.7791041942769 81.83121157469778 81.91350369225513 82.03051037307252 82.1867614432734 82.38678672898122 82.63511605631952 82.93627925141178 83.29480614038147 83.7152265493521 84.20207030444712 84.75986723179008 85.3931471575044 86.10643990771362 86.9042753085412 87.7906318436954 88.76467491054679 89.82309725724774 90.96256993898494 92.17976401094515 93.47135052831506 94.83400054628142 96.26438512003108 97.7591753047507 99.31504215562701 100.92865672784667 102.59669007659657 104.3158132570634 106.08269732443391 107.89401333389475 109.74643234063271 111.63662539983461 113.56126356668713 115.51701789637703 117.50055944409095 119.50855926501566 121.53768841433808 123.58461794724477 125.64601891892248 127.71856238455801 129.79891939933802 131.88376101844938 133.96975829707873 136.0535822904128 138.13190405363832 140.2013946419422 142.258725110511 144.3005665145315 146.32358990919042 148.3244663496745 150.29986554206158 + 1.27063809821489 1.688883359694999 2.1332730420442783 2.6012734665154444 3.0950980504961976 3.61415717941924 4.161425641834574 4.734098271908961 5.333883092544494 5.9605384969875885 6.616159580028798 7.298274144830011 8.00785894692498 8.746927573435466 9.512445874634722 10.306082648034796 11.127901511852302 11.975500225180454 12.851630622889987 13.75332704263511 14.680306112890891 15.633937456523222 16.6102938473418 17.625159337100172 18.669714972467425 23.18930142432372 24.226453194093004 25.289884663386534 26.379679353526555 27.495920785835274 28.638692481634934 29.808077962247758 31.004160748995986 32.22702436320185 33.47675232618756 34.75342815927536 36.057129930933236 37.387045072068695 38.740647694538026 40.11521255747553 41.50801442001553 42.916328041292275 44.33742818044013 45.76858959659334 47.20708704888628 48.650195296453205 50.09518909842842 51.539343213946225 52.97993240214097 54.41423142214693 55.83951503309838 57.25305799412968 58.6521350643751 60.03402100296893 61.3959905690455 62.73531852173912 64.0492796201841 65.33514862351468 66.59020029086525 67.81170938137005 68.99695065416344 70.14319886837966 71.24772878315306 72.30781515761795 73.32073275090859 74.28375632215935 75.19416063050446 76.04922043507828 76.84621049501507 77.58240556944918 78.25508041751489 78.86150979834648 79.39911904727899 79.8687768970267 80.2748000596609 80.62165429612767 80.9138053673731 81.15571903434324 81.35186105798418 81.50669719924201 81.62469321906283 81.7103148783927 81.7680279381777 81.8022981593639 81.81759130289738 81.81837312972428 81.80910940079062 81.79426587704248 81.77830831942597 81.76570248888717 81.76091414637213 81.76840905282698 81.79265296919775 81.83811165643056 81.90925087547146 82.01053638726657 82.14643395276192 82.32140933290363 82.53992828863778 82.8064565809104 83.12545997066766 83.50140421885555 83.93875508642023 84.44197833430773 85.01553972346417 85.66390501483558 86.39153996936807 87.2029103480077 88.10193412123282 89.0877468739698 90.1570274327855 91.30643304384492 92.53262095331316 93.83224840735528 95.20197265213635 96.63845093382157 98.13834049857597 99.69829859256458 101.31498246195245 102.98504935290475 104.70515651158655 106.47196118416296 108.28212061679896 110.13229205565969 112.01913274691032 113.93929993671583 115.88945087124135 117.86624279665187 119.86633295911253 121.88637860478855 123.92303697984484 125.97296533044647 128.03282090275866 130.09926094294636 132.16894269717477 134.23852341160892 136.30466033241385 138.36401070575465 140.41323177779654 142.44898079470448 144.4679150026436 146.46669164777884 148.44196797627546 150.39039987543634 + +Y Trans ----------------------------------- + 23.26144274687534 22.954143662326217 22.58797986005264 22.16729575732952 21.696436040629017 21.17974539642332 20.621568511184606 20.02625007138505 24.155480166721887 24.108609655539542 24.12184582719743 24.18108718346294 24.26860643202823 24.36854533554863 24.46476788229955 24.54156709245624 24.585760153812057 24.586208072000144 24.531731817095103 24.417547947043413 24.240527866099317 23.998204295395055 23.693974498089315 23.3349046739749 22.92428787244556 22.475180336596726 21.995369590531418 21.50332258231404 21.00556799782149 20.525262959890732 20.074096286584236 19.670091450529814 19.32699905500735 19.058999739684424 18.88102093448659 18.805735720983034 18.845077871040967 19.006532496300586 19.286453888375572 19.681361411271283 20.187481979738568 20.794249271270473 21.49895490536695 22.290665451597718 23.16154880524987 24.103796490106873 25.107723343252676 26.162610961453847 27.258696261533522 28.387047255878073 29.53791115752401 30.701825747163458 31.869723190084077 33.03301777132502 34.1836754904886 35.31426476129966 36.41798876465539 37.48870130755981 38.5209093439882 39.509766617377736 40.45105780968913 41.33842803486536 42.17047538841959 42.94319559118958 43.652418369677946 44.29326407144139 44.866450382792785 45.360568728417796 45.77906595987137 46.10553481423688 46.34445752564469 46.48449215312201 46.51079012404989 46.41898055416241 46.20484729944602 45.86414572321176 45.38848812290451 44.766805550949584 43.998197318986165 43.06574410982971 41.968280364559966 40.691937513409485 39.232231521263344 37.587182693327556 35.76346415682172 33.76719182933111 31.62116117567929 29.3457763837834 26.964758243075142 24.506247596159607 21.998563674331113 19.473440945464233 16.961410308141534 14.492671653130921 12.09191061635204 9.78141542483855 7.5865466141121445 5.517436069738159 3.584240836615505 1.7956225991025385 0.14861741887748087 -1.362283513728431 -2.7441909909895457 -4.009017120896829 -1.4724667789136745 -2.960333323158862 -4.436108083946614 -5.89635091608747 -7.337770048377091 -8.758341063620586 -10.156701435688012 -11.531492002840816 -12.88135360334048 -14.204927075448465 -15.500853257426304 -16.76777298753553 -18.00432710403759 -19.209156445193976 -20.380901849266152 -21.518204154515644 -22.619704199203973 -23.684042821592605 -24.70986085994299 -25.695799152516667 -26.640498537575148 -27.542599853379894 -28.400743938192402 -29.213571630274142 -29.979723767886618 -30.697841189291363 -31.366564732749833 -31.98453523652352 -32.55039353887393 -33.06278047806252 -33.52033689235084 -33.92170362000035 -34.26552149927252 -34.55043136842889 -34.77507406573092 -34.938090429440116 -35.03812129781797 -35.073807509125956 -35.043789901625594 -34.94670910529929 + 23.502861694161258 23.185486627369386 22.809497205597676 22.379203550818886 21.898916054250922 21.372945107111722 20.805601100619207 20.2011944259913 24.20269816730562 24.1483944073452 24.158268752858284 24.215288409394166 24.302613047521245 24.403793308256894 24.501784637906116 24.58063246699871 24.62662117460233 24.62760695098646 24.572775644441222 24.456927910445653 24.27636805427751 24.02794348542566 23.715853148763923 23.346449825565628 22.92325853959321 22.460404116060563 21.963842948219888 21.452795796085617 20.936071720823982 20.433978780639947 19.961194432499237 19.53405194802223 19.165724565958765 18.87309774797501 18.669630766240637 18.56807333888483 18.58057567417864 18.71438334052574 18.967305490547712 19.333492290870232 19.810555599918658 20.38879528763456 21.064715459390364 21.826515340776044 22.668595140326122 23.582198093923683 24.55756258924838 25.5838207714516 26.652244049252886 27.753664585557534 28.87849474430006 30.017415644131447 31.161480613654877 32.302203570456804 33.431629902207426 34.54238873339112 35.62772676651299 36.6815251919139 37.698302465611775 38.673207059873086 39.60200559650464 40.481073078140824 41.304035309034205 42.0698592291015 42.77502838614706 43.412944503973144 43.98185964394369 44.47904890609682 44.89421579035493 45.22544635561262 45.46894660716094 45.60846882555502 45.63723409226749 45.549221063754835 45.336658675157935 44.995971865095626 44.5228743114958 43.90274007753086 43.129452840955985 42.20064500349151 41.09876856665613 39.82287696909189 38.36289245683747 36.72199079383778 34.90151707365223 32.91199792321287 30.77549340142364 28.512986494529528 26.14905645926809 23.713028209644026 21.23437292858798 18.742282497022224 16.26733552635152 13.841152202974556 11.487374107555794 9.228751064889826 7.083314523917094 5.072869938039637 3.196600464289492 1.4634687064177667 -0.12494636156820077 -1.5822257029260833 -2.9062805157258995 -0.14369799421916296 -1.6099136947202668 -3.068019473641378 -4.514661848480353 -5.946487336735061 -7.360282405751189 -8.75402801835429 -10.126329334384776 -11.475794607065048 -12.80103208961754 -14.10065003526466 -15.3732566972289 -16.617460328732733 -17.831869182998567 -19.01509151324884 -20.165735572705962 -21.282409614592417 -22.363721892130677 -23.40828065854315 -24.414694167052243 -25.38157067088045 -26.30751842325023 -27.191145677383993 -28.031060686504194 -28.825871703833243 -29.5741869825936 -30.27461477600775 -30.9257633372981 -31.526240919687083 -32.074655776397165 -32.56961616065077 -33.00973032567037 -33.39360652467838 -33.719853010897246 -33.98707803754943 -34.19388985785736 -34.33889672504348 -34.420706892330244 -34.437928612940084 -34.389170140095445 -34.27303952136693 + 23.688232958781143 23.361014759976275 22.975511686768595 22.53599621223923 22.046741079041396 21.51201902982832 20.936102807253228 20.32326515396935 24.233605985810243 24.173149135785792 24.180002399842035 24.235141707999826 24.32213728805485 24.424011204241552 24.522954176608053 24.60274780875539 24.64918988293683 24.64942154630997 24.592803600007393 24.47356730303349 24.28809386574939 24.032539356750807 23.71125212823484 23.330504897520488 22.893990898858135 22.41623645763152 21.903095884495173 21.372590613409237 20.837137396062847 20.31351893472803 19.818865333309557 19.368285378374384 18.976655829157814 18.66008443191104 18.431868807741782 18.304822911784626 18.29115289431318 18.398247248974016 18.62451185361654 18.963230919808073 19.41191609999047 19.962538224795214 20.609943840828084 21.34327317165644 22.157151079821475 23.042334478340848 23.989588549848683 24.988149109591088 26.029853785156828 27.105267448896587 28.20493253575248 29.319655634182098 30.440465928230648 31.55897402441845 32.66744185483272 33.75855901124495 34.82561495637997 35.8625172431806 36.86379492547502 37.824590904366616 38.74064825977507 39.60829692166422 40.424066440549495 41.181117518312554 41.88057178658393 42.51681336169286 43.08036832986234 43.57936764659176 43.991096614038504 44.325884336469905 44.56797854377866 44.70884482480675 44.74029732487133 44.65483149983441 44.44571267576968 44.105035286026194 43.630443182570154 43.01591610162267 42.23891151716196 41.31072105560101 40.206864933750865 38.9324312584239 37.47591903873796 35.84037815858114 34.02331913673377 32.04209080729769 29.917623895680677 27.6713419317731 25.327329018300777 22.915731133825183 20.466718719223444 18.01019872020763 15.575374900186931 13.193557195915448 10.889237571291241 8.682704554085637 6.593413039712832 4.637900436015117 2.8218952172503995 1.146325551544706 -0.3844707702961007 -1.7810210862355937 -3.051821972048378 -0.29774251693833853 -1.7328699693860916 -3.1604029950806067 -4.577074006792349 -5.9796154172917975 -7.364891401278116 -8.730889841138021 -10.076186182699272 -11.399358704219262 -12.698985683955412 -13.973645400165122 -15.22191613110586 -16.4423761550351 -17.63360375021023 -18.794177194888682 -19.922674767327855 -21.017674745785214 -22.07775540851822 -23.101495033784282 -24.087471899840786 -25.03426428494521 -25.940450467354996 -26.804608725327565 -27.625317337120336 -28.401154580990717 -29.130698735196166 -29.81252807799414 -30.445220887642044 -31.0273554423973 -31.557510020517356 -32.03426290025963 -32.45619235988157 -32.821876677640596 -33.12989413179413 -33.37882300059963 -33.5672415623145 -33.6937280951962 -33.756860877502135 -33.75521818748975 -33.68737830341647 -33.551919300735904 + 23.821990639204948 23.485172690259883 23.09047395147601 22.64212608900088 22.14436103910267 21.601410738049573 21.01750712210978 20.39688212755148 24.249658315493047 24.184805597252595 24.188546392309497 24.242170201290527 24.32874444559296 24.43080126665915 24.52996954612408 24.609690642114384 24.655344291601782 24.653716137573642 24.593897369548685 24.469824701488882 24.27782222778531 24.01444160581328 23.682765092814083 23.289554791410726 22.8393182100938 22.345204695605126 21.816187726900438 21.26599563222435 20.711933635915237 20.167217084786273 19.651019120902774 19.17736688568482 18.76333164971519 18.423543886590707 18.1713594929907 18.019644297302197 17.980648406417846 18.061812392629676 18.26154508107547 18.574379779697665 18.995553360646 19.51929379943828 20.138594666428077 20.844516975511244 21.63081653343224 22.488649472755284 23.408581885469484 24.38001517209739 25.395185954285136 26.444678019349816 27.51920226071922 28.60971008806539 29.707497253246192 30.80429397886363 31.89233857940553 32.9644330680975 34.01386253236747 35.034510871154495 36.020250673363314 36.967191199641526 37.87049758621034 38.72644968974913 39.53207959922984 40.28213385969218 40.97343560843977 41.60642832039588 42.16646321670878 42.660214908987456 43.07385588534008 43.407937021629444 43.65036752511744 43.79248315218863 43.82618058744554 43.742215096160635 43.53537018570968 43.19589169331388 42.72012001102869 42.10495999563137 41.331209313584935 40.40106022050468 39.29974549475765 38.027057904241865 36.57523836503952 34.94251469257338 33.13179170960535 31.161572392596764 29.051030524678175 26.822446126304413 24.50156542787167 22.118208030312054 19.70212243487101 17.28291384559932 14.89086906720061 12.55431663038281 10.300372238422137 8.150151320076546 6.118284301671552 4.2167725680508426 2.4642912192115887 0.8501683277550955 -0.6237488790080216 -1.9585895463075857 -3.1778363920458728 -0.43548316533126763 -1.8388028064339872 -3.235021588448877 -4.6209571762974955 -5.993427234901418 -7.349373211205634 -8.686791295926716 -10.004229543553087 -11.300238588940697 -12.573369066945535 -13.822171612423551 -15.045196860230782 -16.240995445223252 -17.408118002256913 -18.545115166187756 -19.650537571871737 -20.722935854164888 -21.760860647923224 -22.762862588002708 -23.727492309259294 -24.653300446549018 -25.538837634727884 -26.382654508651864 -27.183301703176944 -27.939329853159094 -28.649289593454316 -29.311731558918645 -29.92520638440803 -30.488264704778462 -30.999457154885953 -31.457334369586462 -31.86044698373602 -32.20734563219059 -32.49658094980616 -32.72670357143873 -32.8962641319443 -33.00381326617885 -33.04790160899839 -33.02707979525887 -32.93989845981632 -32.78490803785701 + 23.90856883390267 23.562405048333204 23.15883464763056 22.702045528514184 22.19622585853699 21.645563805251935 21.054247536211943 20.426465218969962 24.25231777981338 24.183896623078663 24.185379091492003 24.2378657276303 24.323961709171783 24.425748228865185 24.52448148272128 24.603197642479707 24.646925195468896 24.642421323454588 24.578113330523543 24.447894203352647 24.247942396075217 23.975914189279504 23.63299107498849 23.22643557380123 22.762092428611936 22.25111820236279 21.706206345982974 21.13622858997575 20.56239599230973 19.99750194346094 19.460490937188986 18.965054357660968 18.52932795231675 18.167097065551317 17.891756122353893 17.716232177096657 17.65278580199689 17.708906737472777 17.88306703271847 18.170722061882874 18.56534166044601 19.06290299162191 19.654971378646735 20.334201636906858 21.093795273168777 21.924713973361634 22.817383465725644 23.76275217600429 24.752429730828304 25.77713441712719 26.827132577756903 27.893949532340013 28.969005238148505 30.044129674866593 31.11146951319393 32.16331168268163 33.193914225595016 34.19742617248936 35.16861432640342 36.10244526014155 36.993137583012405 37.83851903642406 38.63404923977178 39.376801494795835 40.05954221216168 40.68477802153303 41.24428599898491 41.73206023514879 42.14680340404436 42.47807041136496 42.7201365304545 42.86416797794978 42.89829243405605 42.81480205384856 42.60968435816188 42.27333912866772 41.79672397239146 41.179692313509655 40.4112651279477 39.478439811786586 38.382406198875856 37.11259602993671 35.66267731210214 34.03807330779291 32.23671287411857 30.279359471350315 28.18479001136178 25.976075652810174 23.67967132321293 21.325628215205235 18.944050676192038 16.56498223779731 14.217507673093484 11.929433387398541 9.727662746901222 7.632881731380664 5.659611109829443 3.8216167381740376 2.124685343433571 0.5742081735358526 -0.8377612819192974 -2.115311108538696 -3.273101283876298 -0.5543209401711684 -1.9251794093867944 -3.2894129547185176 -4.643923974410685 -5.985614866707656 -7.311504011781508 -8.619597146675313 -9.908416979867802 -11.176488555866593 -12.422336919179337 -13.644487114313659 -14.841464185777246 -16.011793178077795 -17.153999135722927 -18.266607103220288 -19.3481421250775 -20.39712924580227 -21.412093509902263 -22.39155996188512 -23.33405364625845 -24.238099607529957 -25.102222890207315 -25.924948538798148 -26.704801597810114 -27.44030711175085 -28.129990125128025 -28.772375682449326 -29.365988828222385 -29.909354606954846 -30.400998063154375 -30.839444241328614 -31.223218185985253 -31.550844941631922 -31.82084955277627 -32.03175706392597 -32.18209251958867 -32.27038096427203 -32.295147442483696 -32.25491699873133 -32.148214677522596 -31.97356532718102 + 23.952401641344274 23.597156464309244 23.185044423142866 22.72020687818946 22.206785461446593 21.648921804911858 21.050757540582833 20.416434300457087 19.750093716532216 24.17215552667232 24.17196026566025 24.223692973067404 24.30928349327854 24.41040174576266 24.508105240924184 24.584971871738972 24.625743563477876 24.617411044580773 24.547489639578224 24.409958717221937 24.200938817874636 23.91913318462209 23.56453930133911 23.14391495005334 22.665187672664945 22.13700040354871 21.575382779512747 20.986540060515136 20.393306239467293 19.80849668057139 19.250535459610642 18.734909942625237 18.27797816339214 17.893899474427677 17.59575987768021 17.397670302192157 17.311323385951763 17.34330797344067 17.49281051583952 17.756300239077397 18.125026778473323 18.597440914003975 19.162909207949888 19.816276033975402 20.549712757875007 21.35451848216418 22.22100058936036 23.14064757630992 24.10488546996889 25.1046318732837 26.13090089765625 27.1749143556797 28.22820535601047 29.282190596003016 30.328358892237745 31.360856827847392 32.3732579075417 33.3597296055947 34.31503991198229 35.234550975962705 36.113916276808034 36.94695425400178 37.732629900466485 38.46702997607879 39.1429618833814 39.76004869545847 40.316516876898376 40.799457266407984 41.21122506991108 41.54217641986491 41.78333611486361 41.92599326859068 41.959791278984504 41.87707463676838 41.672221623157505 41.33993291790321 40.865291571060716 40.247082222948066 39.48349030513643 38.55006836231899 37.45975890233583 36.189926700930094 34.74838579107799 33.132435351582366 31.343320771189003 29.399938113118413 27.32260404517535 25.135906089420594 22.8665173316553 20.544263000374393 18.19915688029643 15.861614468717555 13.560851614217905 11.323730245657039 9.17394340051176 7.13525491531606 5.224120127473526 3.447776067451077 1.8107112705729465 0.3229561380390913 -1.0248438767468695 -2.2485345998043056 -3.3405495257979814 -0.6516568422312574 -1.9894669817673525 -3.3211147948618587 -4.6435870185468096 -5.953870389854253 -7.249059979253506 -8.527172157338743 -9.786706054564995 -11.026162899634183 -12.244043921248254 -13.438850348109147 -14.609083408918849 -15.753244332379355 -16.869834347192594 -17.957354682060515 -19.014306565685054 -20.0391912267682 -21.030509894011942 -21.98676379611821 -22.906454161788936 -23.788082219726107 -24.63014919863171 -25.43115632720767 -26.18960483415596 -26.903995948178505 -27.572830897977283 -28.194610912254287 -28.767837219711453 -29.291011049050724 -29.762633628974083 -30.18120618818346 -30.545229955380854 -30.853206159268204 -31.10363602854745 -31.295020791920585 -31.42586167808955 -31.49465991575631 -31.499916733622822 -31.44013336039104 -31.31381102476294 -31.11945076315871 + 23.957923159999737 23.593871568301008 23.17355392592355 22.70106248543705 22.18048977193373 21.615928310505808 21.011470626245536 20.371209244245136 19.69923668959683 24.15100107068985 24.14991130385529 24.20109358093435 24.28617673249326 24.38628250820759 24.48242736383984 24.55668994112767 24.593587845457467 24.57993575913882 24.50405321288302 24.35819652434808 24.139150613670598 23.846287940762124 23.479180387118443 23.044780960430625 22.551216007619526 22.005903836032708 21.425633869078382 20.82021488345886 20.207258039699553 19.6038056434836 19.02559012617555 18.490100697524127 18.012742339726874 17.606938765751618 17.287481016312725 17.067634835153633 16.959501368677042 16.968972720863256 17.094591819361803 17.333892066279027 17.678695368753914 18.126397277301475 18.666428733470887 19.29464951065453 20.002641329723964 20.781966436945275 21.622635717591635 22.517358046361228 23.45721909264322 24.432830210376306 25.435422377378607 26.456467629454487 27.487628653797845 28.519821138118374 29.546489673932616 30.560781937083142 31.55555930673721 32.52512074919332 33.46461444256893 34.36938862637486 35.235353733483564 36.05802937348942 36.8322294519309 37.55731373449154 38.22785320243774 38.83646830664379 39.3872374196616 39.8668230965935 40.274372238583176 40.6030403765722 40.84287434857445 40.9842813377396 41.01873894337897 40.93652225611552 40.731873858014744 40.39936214911715 39.93103397760229 39.3123861737539 38.548347270285014 37.62130926016188 36.53353360311747 35.26969497385115 33.83780046858557 32.23144956231006 30.453259992956138 28.525723948129862 26.46883331494067 24.306635904422258 22.0663117400209 19.77777406990441 17.471502837500275 15.17748842077086 12.924531971206243 10.739265604112669 8.646504168453633 6.664801612032213 4.812048160710905 3.0981698866919927 1.5283958927895518 0.09944679297460418 -1.1861645110713712 -2.342824227619997 -3.3814517377049187 -0.7248918722847526 -2.029132727098502 -3.32766480985123 -4.617558926120764 -5.8958858814849435 -7.159817289869386 -8.40738109187195 -9.637054330566254 -10.847315914880703 -12.036644753743724 -13.203519756083722 -14.34641983082917 -15.463823886908541 -16.55421083325023 -17.616059578782675 -18.647849032434284 -19.648058103133522 -20.615165699808852 -21.547650731388686 -22.443992106801424 -23.30266873497554 -24.122159524839496 -24.90094338532169 -25.63749922535057 -26.330305953854545 -26.97784247976207 -27.578587712001607 -28.131020559501568 -28.633619931190385 -29.0848647359965 -29.48323388284834 -29.827206280674364 -30.115260838402993 -30.345876464962654 -30.5175320692818 -30.628706560288858 -30.67787884691227 -30.663527838080466 -30.584132442721884 -30.43817156976496 -30.224123940240855 + 23.92956748833904 23.556994990421487 23.128813803883244 22.649064697667292 22.12178871410062 21.55102689551024 20.94082028422316 20.29520992256638 19.618236852866904 24.12221330470408 24.120285489160434 24.171490239717173 24.25608614239377 24.35491656952774 24.44901239409895 24.52000910148996 24.552231193784916 24.53237648232722 24.449826599320147 24.29478772431408 24.06492492984307 23.75965655721999 23.38034964144054 22.93123369335606 22.421940675316506 21.860912637773758 21.2621128028075 20.640573463529805 20.007743547344035 19.386449550187805 18.789061046337146 18.2341773314653 17.736986417244086 17.311042570222725 16.971400966379704 16.73075711449806 16.601203386519472 16.58972771743336 16.692618328246564 16.908272578299982 17.230274083753088 17.653349549793578 18.1695133596972 18.773109637601213 19.456620155595548 20.210629511958818 21.026754734621953 21.89699867536149 22.812505450069462 23.76453853521063 24.744424932514022 25.743446693289066 26.75237698923329 27.763554142348987 28.77019419059586 29.765449254819398 30.743016934369493 31.69716737077069 32.6211530187609 33.51122728913659 34.363479987142455 35.174317283149236 35.9383469644077 36.65268167241182 37.31638037440232 37.91833179099795 38.4609868688466 38.93805371375294 39.341612090994566 39.66742299072045 39.90376838532363 40.04535857813221 40.08012490764674 39.99822726724249 39.7938088004678 39.461341217251395 38.99563392674523 38.38100712436558 37.617219492357094 36.69767318780787 35.61158226612052 34.35745176985966 32.93506975925664 31.33757612116291 29.575400381347524 27.666628968583446 25.631950793657303 23.49599943173825 21.286395931592228 19.032960834098205 16.766644309346898 14.51741896355336 12.313988775945237 10.182683816642834 8.146513451459816 6.224358136161722 4.430329109697241 2.778838212686363 1.2742617865693529 -0.08897109104020057 -1.3181775402957316 -2.407792706713151 -3.3874918133117484 -0.7714270311048695 -2.0416438489030826 -3.306600700658961 -4.56345231454744 -5.809353418743468 -7.041552119876918 -8.258088714229864 -9.457419370793161 -10.638001896243395 -11.798294097257177 -12.936753780511097 -14.051838752681812 -15.142006820445975 -16.20571579048017 -17.24142346946101 -18.247587664065094 -19.222666180969075 -20.16511682684959 -21.07339740838324 -21.945965732246602 -22.78127960511635 -23.577796833669108 -24.33397522458147 -25.048272584530068 -25.719146720191493 -26.345055438242376 -26.924456545359376 -27.455807848219084 -27.937567153498108 -28.36819226787309 -28.74614099802062 -29.06987115061736 -29.337840532339897 -29.548506949864855 -29.700328209868868 -29.79176211902854 -29.821266484020505 -29.78729911152137 -29.688317808207763 -29.52278038075631 -29.289144452878247 + 23.87176872483215 23.490971360783682 23.055274704932568 22.568665862290512 22.035132212049522 21.458661133401613 20.8432400055388 20.192856207653104 19.51149711893654 24.086693559576936 24.08456917896695 24.13629074919394 24.22043944672372 24.317763676073366 24.409400020089976 24.47657426093598 24.503438599883946 24.476639028817157 24.385655090710266 24.22192056479193 23.980622700376667 23.66244235492053 23.270169992548315 22.80620680145781 22.28165734406777 21.70514490374303 21.088108872261095 20.449630309930544 19.79886862860185 19.15945739389162 18.543744185712153 17.971353462335763 17.454725280272076 17.010169895623996 16.651312035929035 16.390867993019857 16.240867962099955 16.208695537528477 16.290564429127897 16.483881032572594 16.78338736016056 17.183247335224937 17.67579113541733 18.2560996988497 18.915389388380305 19.64496193734882 20.437040995013817 21.283422651180423 22.17552839021318 23.104308548518507 24.061347379858077 25.038308781987723 26.025943623870727 27.017328571884256 28.004313199625248 28.98082584923999 29.94060815635008 30.877949062272428 31.787700946414105 32.66398021772713 33.50254509183272 34.300580946821476 35.05493384216008 35.75856236703134 36.41209622409283 37.00997801180825 37.54420365116333 38.01585523383341 38.41612546223378 38.73789587935879 38.97277364758377 39.11417555765273 39.14900676547886 39.06734951999153 38.86328234811001 38.53121445318033 38.06590496898006 37.45845190218995 36.696089982647 35.78218265527114 34.70212186648481 33.45834124836365 32.043940175906776 30.46103956496011 28.716365634378562 26.826518340604682 24.814714945155007 22.706622068110715 20.52988694115728 18.31397881288263 16.0892678065215 13.886272167020527 11.733073159479746 9.655648348801913 7.676629702878635 5.815173192773342 4.085859176408372 2.4961850417712723 1.051090295881883 -0.2461218643557682 -1.4071350925956407 -2.4415777615323093 -3.3550538758586193 -0.7886633194648245 -2.024467550703934 -3.255460168257381 -4.478879801241731 -5.691965078773561 -6.892040645523866 -8.077159788367426 -9.2457587381673 -10.396275138359496 -11.527146632380049 -12.636810863664978 -13.723705475650359 -14.786268111772271 -15.822936415466724 -16.832148030169755 -17.812340599317388 -18.7619517663457 -19.67941917469075 -20.563180467788566 -21.411673289075154 -22.2233352819866 -22.996604089958964 -23.729917356428263 -24.421712724830545 -25.070427838601837 -25.67450034117819 -26.232367875995685 -26.742468086490334 -27.203238616098183 -27.61311710825528 -27.97054120639766 -28.27394855396139 -28.521776794382497 -28.71246357109702 -28.844446527541024 -28.91616330715053 -28.9260515533616 -28.87254890961027 -28.754093019332583 -28.569121525964597 -28.316071895521656 + 23.788960967949052 23.4002453095006 22.957387276982157 22.464318326717056 21.924970189882664 21.34327459765637 20.72316328121555 20.068567971737586 19.383420400399856 24.045868912796717 24.044869732576128 24.096892064842528 24.180652570823785 24.276289380314292 24.36479001856758 24.428024929895695 24.44897394556122 24.414633011118802 24.31451241499542 24.141315342431724 23.888624285813478 23.557207882547214 23.150471064536024 22.67304787121192 22.13213424026068 21.54036859287885 20.906923411371018 20.25017434575584 19.584146204947437 18.9267881868742 18.294313954231274 17.7044326415717 17.170284133440973 16.70783600419246 16.33090432631848 16.051895187737223 15.88263169033138 15.830289205089493 15.892213735590365 16.06426200912991 16.342567367037372 16.719459512972485 17.189941253723354 17.746971667678586 18.383144426860326 19.088900175552876 19.85751317451259 20.680688649215956 21.54959253542934 22.45583609277402 23.390995990143637 24.346022777899673 25.31234225648096 26.28326932299003 27.2516354855129 28.2106803432951 29.152942803246713 30.073675769752665 30.96773557616106 31.830521320382534 32.65654540270473 33.441805728299485 34.18415967297299 34.879145551312675 35.52244342098362 36.11399949665996 36.64145437753643 37.107491498325466 37.50319738133015 37.82075251045252 38.054761470725815 38.195717915168935 38.2302453808874 38.14899887266867 37.945606187973276 37.614390429780954 37.15018830633517 36.54635180521013 35.7905872697322 34.8813060879654 33.81083028276307 32.57419751138202 31.17406591651256 29.60681882288971 27.878017583907 26.01004759445795 24.02444247810804 21.94643529217855 19.8039990590176 17.626805055566436 15.445164165478504 13.2887610211984 11.185841062341773 9.163232130152334 7.242842552424958 5.4426252645153195 3.7758902161381744 2.250704487357364 0.8696623945399955 -0.3691424955157165 -1.4616683387235048 -2.43075761662272 -3.288541461850615 -0.7740017381378352 -1.975071036023896 -3.1717809136188198 -4.361454003618529 -5.541412938718962 -6.709059043057992 -7.862459078239571 -9.00002999561025 -10.120189935866238 -11.221357039703772 -12.301949447819066 -13.360385300908398 -14.395082739668043 -15.404459904794214 -16.386934936983145 -17.34092597693106 -18.264851165334232 -19.157128642888924 -20.01617655029136 -20.840413028237748 -21.628256217424372 -22.37812425854749 -23.08843529230332 -23.757607459388108 -24.38405890049808 -24.96620775632949 -25.50247216757861 -25.99127027494166 -26.431020219114878 -26.820140140794514 -27.157048180676803 -27.440162479458017 -27.66790117783437 -27.83868241650211 -27.95092433615749 -28.003045077496747 -27.99346278121613 -27.920595588011878 -27.78286163858023 -27.578679073617447 -27.306465862621856 + 23.685578316159717 23.289261466685236 22.839602167942626 22.340474438357248 21.795752571702295 21.20931086175098 20.585023602276515 19.926765087052114 19.23840960985098 24.001529772842453 24.00259677067501 24.054684320517623 24.138134801325954 24.23195628285242 24.3170361064179 24.375511256056345 24.39060696918123 24.348278677484934 24.238602080952845 24.054384763842346 23.791334989447034 23.44654452395366 23.02534593524463 22.53389684822637 21.977632506564216 21.370394834257233 20.721895762948126 20.047607827692136 19.367126122698657 18.69203139124573 18.044475462075397 17.437660203041844 16.886859852190078 16.408095003856893 16.014252126523456 15.717701013788188 15.53022428317776 15.458982143961235 15.501991647715911 15.653180460200764 15.911372882857727 16.266489210443744 16.715172770495123 17.25020068483766 17.863304746165646 18.546296353904715 19.292327669760155 20.092657547224128 20.939123060412726 21.823120391463323 22.736352447035465 23.670145023497565 24.61628366795251 25.567241396241172 26.516370304132707 27.457040038043424 28.383108899079115 29.288212194867313 30.166768826577613 31.014899831236196 31.828506942360715 32.602058691391356 33.332457130243974 34.017836008579025 34.6516959958375 35.233788790036655 35.757195540530866 36.21642439631285 36.60824045687843 36.92170486975896 37.154612130112085 37.29294481019547 37.32562731184543 37.24480298455895 37.0438813648982 36.716307270199565 36.25401487089283 35.654245681241136 34.90448260091226 34.00299199195872 32.94011681168044 31.71569993652194 30.330074748342025 28.77707787472635 27.069454033889592 25.22550644038003 23.266133100172922 21.219061992767145 19.112407865794417 16.975663557599116 14.838842792638905 12.731395845519133 10.681153228403305 8.713336303402425 6.849671055584977 5.1077464511810255 3.503511897903167 2.042691918635429 0.7275929071904177 -0.4438733879455141 -1.4798168356050736 -2.3815549110097884 -3.177167881554237 -0.7248432878971189 -1.8909215083858086 -3.0531006377156062 -4.20878753909273 -5.355389075723406 -6.490383488727062 -7.6118513478012355 -8.718190706043597 -9.807800583400864 -10.879079999819778 -11.930427975247069 -12.960243529629517 -13.966925682913908 -14.948873455046959 -15.904485865975413 -16.832161935646003 -17.730300684005513 -18.597301131000712 -19.43156229657832 -20.231483200685073 -20.99546286326775 -21.721900304273113 -22.409194543647903 -23.055744601338866 -23.659949497292725 -24.220208251456256 -24.73491988377624 -25.202483414199396 -25.621297862672474 -25.989762249142235 -26.306275593555412 -26.569236915858795 -26.7770452359991 -26.928099573923085 -27.020798949577518 -27.05354238290913 -27.024728893864676 -26.93275750239092 -26.7760272284346 -26.552937091942486 -26.261885948629633 + 23.566054867934124 23.162464462450593 22.70637002572461 22.20158654462143 21.65192928161065 21.061213499161894 20.43325445974479 19.771867425828958 24.02003811586197 23.955314313712147 23.958659142367544 24.011514482644557 24.094293912110956 24.186227915265974 24.26769034884053 24.320818310952593 24.32971371100727 24.279513653202034 24.160033891213228 23.964626675364432 23.689636650420436 23.33307721349012 22.897607074309985 22.391103145058853 21.821323911322985 21.19791944901429 20.535692337086985 19.845438067268248 19.149831980368024 18.4596015015167 17.79782689025532 17.174502599920338 16.608962091229838 16.114939721995956 15.705239306759049 15.392184508823224 15.187508402265195 15.098349656986814 15.123224002210108 15.255361267719362 15.493076676121484 15.828126262741105 16.25573666373191 16.769494097053595 17.36019743249693 18.021452261666358 18.745061472078664 19.52340628825193 20.347821020976 21.2101473706696 22.102212217444936 23.014748888144666 23.940463326814996 24.872402946122122 25.803263993479447 26.7258789681587 27.634672782015514 28.5240560500438 29.388708667948823 30.221995788154093 31.02159421229746 31.784436245219037 32.503954444481245 33.17811609749095 33.80412088543774 34.37654605282813 34.89497902243017 35.34685612759333 35.73384490576458 36.04550661326981 36.27457120656953 36.41078244255605 36.44244147397318 36.362197809451445 36.16415089573194 35.838667895333224 35.382508757608704 34.78704599712808 34.04269657397704 33.15279935218155 32.09774106759668 30.88804927577826 29.514962346155162 27.982092581380215 26.295236799046243 24.474820146692352 22.544861241656097 20.530950623374572 18.46116822882083 16.365427456771993 14.273897733390635 12.215690811780798 10.218267514790469 8.306468852656048 6.501646927288241 4.820926728586771 3.2766245598684396 1.8758423889682532 0.6261085734740692 -0.47786348764465003 -1.4465119205670889 -2.2934191291807604 -3.021026115365575 -0.6385889695158913 -1.7694861713125118 -2.896957041520071 -4.018493025079222 -5.131585566930633 -6.233790158778841 -7.323201361007355 -8.39819843238892 -9.457161375600608 -10.498470193319507 -11.5205048882227 -12.521645462987314 -13.500271920290485 -14.454764262809285 -15.383502493220805 -16.284866614202127 -17.15723662843039 -17.9989925385827 -18.80851434733615 -19.584182057367805 -20.32437567135481 -21.027475191974265 -21.691860621903267 -22.315911963818913 -22.89800922039828 -23.43653239431849 -23.92986148825667 -24.376376504889894 -24.774457446895262 -25.122484316949887 -25.418837117730856 -25.661895851915293 -25.850040522180283 -25.981651131202923 -26.055107681660342 -26.06879017622961 -26.021078617587843 -25.910353008412137 -25.734993351379604 -25.493379649167345 -25.18389174799577 + 23.434824721742242 23.024298926909665 22.562141498238734 22.052106992919935 21.49795024370997 20.903426083365577 20.27228934464348 19.608294860300404 23.969666829380525 23.908319949521918 23.914430898387142 23.96843988657039 24.050581414625803 24.14057466250804 24.218315572530138 24.26594435093569 24.267651105449968 24.21018049007184 24.080945890009016 23.874366922229203 23.587084819031602 23.219033150388572 22.77010674047681 22.249067926392772 21.665568931777152 21.027573786958367 20.35133948440593 19.647210493972796 18.936053307587965 18.23321427423206 17.556579608572285 16.91960522466312 16.340452241326872 15.8322579442284 15.407778193143999 15.079364115527383 14.858543717044753 14.75232187302451 14.759548526444918 14.874134763521479 15.092710102895577 15.407840490110553 15.815913068602928 16.30843992319689 16.87822085791749 17.51768211310184 18.220136139816347 18.976752330870966 19.779667380301323 20.620828104141093 21.491956965434415 22.38403352523623 23.289966163916 24.202496378741536 25.11487654251674 26.0206383115753 26.91288073771216 27.786099659938383 28.63471966953185 29.454999819967256 30.241057957436794 30.990986910967717 31.70166408325047 32.36585923401995 32.9825399553254 33.546877076196544 34.05754951678378 34.50483684236827 34.88710189650597 35.19440839117014 35.42184524939993 35.555591825145264 35.587568549523326 35.50831637195723 35.31197343782486 34.99054569433759 34.53755893470559 33.95034765383494 33.21393428895391 32.33116265605047 31.291155800014266 30.092876882315274 28.7386854655609 27.224366030250472 25.56020909128691 23.76703749218352 21.866436984493603 19.886199780061325 17.85461736800533 15.801040125554826 13.75518251531704 11.746071107175817 9.801336257872796 7.945376162465717 6.199075521959799 4.579232512184135 3.0978729256717235 1.7620281638296573 0.5736805794059368 -0.4697153970628781 -1.3711673289097912 -2.149985161757346 -2.823456962224713 -0.5126397837673698 -1.6082322283268464 -2.7008878260045432 -3.788183078992903 -4.86769448948438 -5.937055229461093 -6.994373881812869 -8.03801073756781 -9.06632660710271 -10.077682300794393 -11.07043862901966 -12.042956402155376 -12.99359643057839 -13.920719524665511 -14.822686494793553 -15.697858151339329 -16.544595304679692 -17.361258765191494 -18.14620934325154 -18.89780784923663 -19.614415093523625 -20.294391886489375 -20.936099038510672 -21.53789735996436 -22.098147661227244 -22.61521075267617 -23.087447444687978 -23.513218547639486 -23.89088487190752 -24.218807227868908 -24.49534642590048 -24.71886327637907 -24.8877185896815 -25.000273176184592 -25.054887846265192 -25.049923410300114 -24.983740678666198 -24.854700461740254 -24.66116356989913 -24.401490813519654 -24.07404285517104 + 23.296321976054053 22.87920949017546 22.411367233395616 21.89648813066309 21.33826538210249 20.740392187838474 20.106561747995674 19.440467262698732 23.920077077610497 23.861961862646133 23.87128852868529 23.926727515474997 24.008427767679766 24.096418413031643 24.17049177872947 24.212596166847817 24.207107675904883 24.140927651307216 24.003322539476375 23.785561384542458 23.48623482890087 23.10563111857852 22.64574070565787 22.110868785934283 21.513176299340497 20.862716446318213 20.171937114469806 19.45650914869328 18.73097931130663 18.016619145734285 17.325822382522595 16.67686358192979 16.085217713169357 15.563711453153198 15.125217919341756 14.78308526091131 14.547565968776095 14.425520893592006 14.415640928384235 14.513252321617543 14.713754606178947 15.010457108355043 15.39884776654719 15.87175101899722 16.42049796912633 17.0397568059635 17.72098827638193 18.4566250746621 19.238723756559743 20.05902632948505 20.909768887429294 21.781517428570204 22.66799874350745 23.562120642171973 24.456280929130482 25.34436819609923 26.22049133051462 27.078222578626534 27.911216274595922 28.71701114161865 29.491650981053816 30.22913514857072 30.92783850689797 31.584224081553323 32.191573738841875 32.74907718165391 33.250833897587185 33.69485567088973 34.07064453710441 34.375147139272386 34.59999669846871 34.73339750632047 34.76605557406982 34.68832235902944 34.494396591914885 34.177691717242276 33.72902661832076 33.14724048770287 32.422210549389355 31.549874669060568 30.52179339379894 29.340905097288676 28.003130748778073 26.511158040181545 24.8712041648165 23.1045470354178 21.23584704765306 19.290763001823212 17.297805606346138 15.286920843586156 13.287493252589142 11.328192043837795 9.435972598768913 7.635140698920279 5.946512434404302 4.38669894378019 2.967540095574465 1.6957051813949353 0.5724718975136113 -0.4063124083274008 -1.25009080958707 -1.9622876207788824 -2.5689814996138782 -0.34439673142477034 -1.4046268829516493 -2.462430692141351 -3.5154703182486617 -4.5614079205283815 -5.597954877021581 -6.623233674172709 -7.635585184501838 -8.6333505725444 -9.61487100283586 -10.578487639911655 -11.522541648307282 -12.445374192558235 -13.345326437199953 -14.22073954676789 -15.069954685797496 -15.891313018824265 -16.68315571038368 -17.443823925011188 -18.17165882724222 -18.865001581612283 -19.522193352656853 -20.14157530491137 -20.721488602911307 -21.260274411192118 -21.756273894289265 -22.20782821673825 -22.613278543074518 -22.970966037833524 -23.27923186555074 -23.53641719076163 -23.740863178001675 -23.890910991806326 -23.984901796711043 -24.021176757251308 -23.998077037962574 -23.913943803380317 -23.76711821803999 -23.55594144647707 -23.27875465322703 -22.933898864606213 + 23.154980729339538 22.731640782360973 22.2584978791059 21.739182305261238 21.177324620890463 20.57655538605705 19.940505160824472 19.272804505256225 23.871949068844437 23.818608171015715 23.83061361731674 23.88776391866305 23.969208907459805 24.054997470143423 24.12582249635259 24.162508911421313 24.149945847209104 24.075005677966207 23.927868804264488 23.70067538914599 23.389712101239095 22.996804634689298 22.52568824287127 21.979629621602 21.368739533312596 20.706539488250357 20.002552744151917 19.27576991337711 18.538332099181506 17.813142423196435 17.109947178369687 16.450160216431673 15.847014828122933 15.312561037542558 14.861800787180242 14.506647612549365 14.258124448280084 14.121311098100119 14.095848704847768 14.177180396920598 14.35993964968926 14.639350891987057 15.00907463833791 15.462398903562917 15.991750123522309 16.59079553648776 17.251716455201105 17.967085702597632 18.728521953354768 19.52874700148913 20.359230302883354 21.211425973327444 22.078827150118535 22.954162932320777 23.830829477769534 24.7023110459568 25.561869909797203 26.402928377221674 27.22241033828045 28.014346254346872 28.775493837270563 29.50261594939765 30.18980654955295 30.83595952298775 31.436632159795916 31.985071689455065 32.480600456180234 32.92002513305874 33.289928051973604 33.592960827361594 33.81520920515815 33.946810021868956 33.97931757128782 33.903237997499964 33.71288837191938 33.40287207876819 32.96193304488046 32.38740851425031 31.671272546805817 30.81220350491194 29.798972712165984 28.633954692670997 27.316698642201466 25.84658612970542 24.232313473357376 22.49504780838485 20.658018400972644 18.748884943863658 16.79546120556241 14.827374968695912 12.874325510433552 10.96456045073564 9.125319005122673 7.380063926622939 5.748930060631597 4.247948830364294 2.8883883839717353 1.6787438344821994 0.6197030392540399 -0.29329961585713615 -1.0697460110787373 -1.7241464424390398 -2.2668289250545213 -0.13126081326131162 -1.1561373387097644 -2.179123340902826 -3.1979673602613947 -4.21041793720638 -5.214265277708073 -6.207645502041817 -7.188879336112596 -8.156287566562929 -9.108190980035355 -10.0429103631724 -10.958766502616637 -11.854080185010645 -12.727172196996937 -13.576363325218061 -14.399974356316541 -15.196326076934952 -15.963739273715861 -16.70053473330179 -17.405033242335268 -18.075555587458865 -18.710422555315137 -19.30795493254663 -19.866473505795877 -20.38429906170541 -20.859752386917787 -21.291154268075587 -21.676825491821333 -22.015086844797565 -22.304259113646836 -22.54266308501169 -22.728619545534684 -22.860449281858358 -22.936473080625255 -22.95501172847794 -22.914386012058937 -22.8129167180108 -22.64892463297609 -22.420730543597337 -22.12665523651711 -21.76501937075209 + 23.01523508006866 22.586037433579204 22.10798408328019 21.58464186412471 21.019577884176112 20.416359251497756 19.778553074152985 19.10972646020516 23.826730637993222 23.778861164054405 23.7939704976911 23.852948906851328 23.93437420098559 24.018175470453876 24.085244063054457 24.11756989899209 24.09805460760651 24.014769621332608 23.858171441043694 23.622002923649582 23.300582042952325 22.896221808407795 22.413286894202923 21.857384199397618 21.235596687848563 20.56130834830361 19.846812632194858 19.109126445241227 18.361868612222914 17.62531098043565 16.91282718968318 16.24340342717154 15.62880336483582 15.083783496297173 14.621855340988505 14.254740887982644 13.993607447043619 13.843559006129874 13.803426831071642 13.869890796864112 14.035742474742753 14.298072210679374 14.650572424748846 15.084466326993683 15.59542858397089 16.17470941472763 16.816385692443898 17.511489356316282 18.253413883916764 19.033694588466208 19.844417223370897 20.677403566539102 21.526035578063134 22.383492267539673 23.242474768432913 24.09695966666933 24.94034329528285 25.7661960924054 26.57075453799757 27.350026831618145 28.098840056612783 28.813447310168403 29.49148330417838 30.126943726098947 30.719415433531523 31.261102686150906 31.75051891557646 32.18274435486346 32.55064927637259 32.8511166533961 33.0691873218233 33.20154435491964 33.23576637712799 33.162454695372475 32.97601149266914 32.671121576253206 32.23745857372843 31.67336392207119 30.970459342834623 30.123129132463532 29.12610752393027 27.98017614065751 26.682598629283277 25.236819873145663 23.649526392206173 21.94190627996524 20.138556787914954 18.26573810368106 16.35245313454374 14.427837945707227 12.521697127579182 10.662513831394184 8.876111281767527 7.18595408034806 5.612038377736474 4.1702073900854035 2.871603682140695 1.7222754509144858 0.7232446934850885 -0.1292392126569193 -0.8387160895934961 -1.4245969981656872 -1.909988809211211 -2.317519844468865 -0.8602307991240293 -1.8485034732612977 -2.8332868224459946 -3.8124166166621096 -4.783762607768334 -5.745474129375127 -6.695850755321665 -7.633191883795524 -8.555796912984306 -9.461965241075593 -10.349996266257023 -11.218189386716226 -12.064844000640786 -12.8882595062183 -13.686735301636357 -14.458570785082593 -15.202065354744624 -15.915518408810048 -16.597229345466438 -17.245497562901434 -17.85862245930266 -18.434903432857688 -18.97263988175415 -19.470131204179616 -19.92567679832171 -20.337576062368065 -20.704128394506263 -21.023633192923914 -21.29438985580862 -21.51469778134799 -21.68285636772965 -21.79716501314118 -21.855923115770192 -21.85743007380431 -21.799985285431116 -21.681888148838233 -21.501438062213264 -21.256934423743818 -20.946676631617507 -20.568963968059425 + 22.8815191267114 22.44684407394316 21.964276493829125 21.437319154663847 20.86947509606169 20.26424735763705 19.625138979004298 18.95565299977781 23.78586680392397 23.743939304512303 23.76297234687148 23.82369953320287 23.90539699826162 23.987621676742805 24.051520882496302 24.07897069932373 24.053447993494885 23.962392655550037 23.797030145581353 23.551326543363764 23.22155611977315 22.80679058250246 22.31319720661464 21.74777855784811 21.11623026494927 20.432143572240246 19.70833746743439 18.96026195360739 18.20538030943015 17.458794735976667 16.738362665672064 16.06019215228409 15.435677182384246 14.88134391218254 14.409353457538826 14.031338268226385 13.758376786768292 13.596229177332345 13.54232844103908 13.594731355514948 13.745149315420536 13.990802494822754 14.326520872184192 14.742966631875406 15.234985012530174 15.796164619659418 16.418205093129874 17.0944305267916 17.816751751586985 18.577679501327964 19.36924249463799 20.183316270631515 21.013657738824765 21.853069871753426 22.695069653847977 23.53334942484377 24.3598065453653 25.17091026021301 25.962020792524804 26.727439664183887 27.46424757643437 28.16801080463762 28.834517960749114 29.462148076975595 30.044725021114473 30.58176663146537 31.06297390743186 31.49107958740324 31.85525780744014 32.1518888250717 32.370296283762585 32.50398014102625 32.53997102504436 32.469719405230705 32.28835268980093 31.99066965087614 31.56592257965677 31.011259371673805 30.320083204388713 29.489507506570934 28.509755162165884 27.382584710247148 26.10861227734273 24.686149664735826 23.127568660770393 21.45065968666473 19.681486476090626 17.846173944499537 15.973688567726922 14.093101510774067 12.23313784931884 10.423208092423627 8.688656040256916 7.052505868507074 5.534553960039072 4.1505148893078365 2.9114728716712723 1.8243613218614347 0.8893670070375472 0.10144235914666663 -0.5492894814827337 -1.0718619852844022 -1.4905771198524704 -1.8445487424696954 -0.5143744677172846 -1.4681087901890952 -2.4190413222173537 -3.3650960360393083 -4.304223043450124 -5.234584320127576 -6.154457005050625 -7.062117818879425 -7.955843482274146 -8.833910715894946 -9.694596240402031 -10.536176776455603 -11.356929044715816 -12.15512976584284 -12.929055660496841 -13.67698344933802 -14.397189853026571 -15.087951592222653 -15.747545387586424 -16.374247959778085 -16.966336029457835 -17.522086317285826 -18.039775543922236 -18.51768043002724 -18.954077696261013 -19.34724406328377 -19.695456251755655 -19.996990982336854 -20.250124975687548 -20.453134952467906 -20.60429763333812 -20.701889738958368 -20.744187989988816 -20.729469107089656 -20.656009810921045 -20.52208682214319 -20.325976861416247 -20.065956649400412 -19.740302906755854 -19.347292250979017 + 22.758266967737743 22.318505333565835 21.831825758663324 21.301666524288972 20.731466180649438 20.12466327795139 19.48469636640151 18.815003996206467 23.750798906803503 23.715240809726968 23.73858345784215 23.801522437118596 23.88420879274275 23.965544370508116 24.026085921039076 24.048665557320376 24.01815815124408 23.92009417130971 23.746862215885507 23.49264991356595 23.154998161260863 22.731477548907183 22.22857121655896 21.653802886984803 21.014260729134378 20.322620564611213 19.590790260140704 18.833883653957752 18.072512800993877 17.317585562126148 16.59047985127184 15.903763351366067 15.271715760442769 14.709223502869197 14.228280849682896 13.84053247485762 13.556906743089996 13.383479681070368 13.31651315242892 13.35518106380869 13.491418891236236 13.722087188583737 14.040589057296437 14.440504560638862 14.91485029109338 15.45796346395675 16.061544901486645 16.7190864468247 17.4223027995995 18.164772488602335 18.937247672498835 19.732992542598616 20.545267676981975 21.367286739589023 22.192405446153053 23.013945562696012 23.82496059929703 24.621348526765647 25.39817211581542 26.151499127094045 26.87592573273698 27.56841650279118 28.225582273587083 28.84273820780161 29.418737214233484 29.947669800304176 30.424893900705484 30.84690479752078 31.20868595433877 31.503793069809014 31.721225185783442 31.855074097334857 31.893696682975758 31.827976612376208 31.652534225258798 31.36225922349771 30.94818145506966 30.406377465993128 29.730612226038627 28.91504899380331 27.953851757823013 26.849144886000772 25.596920773661534 24.20153053986509 22.67099378153377 21.026605240772653 19.2921111967869 17.494832828350805 15.663077836473137 13.826201238220678 12.012528619184371 10.250587990953724 8.56680592087645 6.983358970676222 5.51990100988401 4.192084849370501 3.0119791985984463 1.9856148003349041 1.1128861003471662 0.3892962192874049 -0.19490557984156587 -0.655516717057874 -1.0170928266549204 -1.3084514852184013 -0.1160355480123692 -1.0354769926585483 -1.952843476990364 -2.8661482724817144 -3.773422761001211 -4.672840838254099 -5.56265564822106 -6.441119666451869 -7.30648536849631 -8.157005229904163 -8.990931726225249 -9.806517333009387 -10.602014525806347 -11.375675780165924 -12.125753571637894 -12.85050037577208 -13.54816866811829 -14.217010924226306 -14.855279619645898 -15.461227229926893 -16.033106230619094 -16.569169097272276 -17.067668305436246 -17.526856330660788 -17.944985648495692 -18.320308734490787 -18.65107806419585 -18.935546113160672 -19.171965356935054 -19.358588271068786 -19.49366733111168 -19.575455012613514 -19.602203791124094 -19.57216614219322 -19.48359454137067 -19.334741464206257 -19.12385938624977 -18.849200783051014 -18.50901813015978 -18.101563813961633 + 22.649912701617648 22.205465842560226 21.715082525693422 21.182136320410432 20.610001062041583 20.00205058591723 19.361658727367725 18.692199321723407 23.72298369276078 23.6941698038074 23.72221623788082 23.78888920210192 23.872724843836515 23.952906411291753 24.010687570910488 24.029121131555794 23.993483218375605 23.890157242599308 23.71014990613753 23.44865787693401 23.103410112506854 22.673311738264175 22.162620013072427 21.580098381151224 20.93387064101125 20.234710720975155 19.49726918741021 18.73379210978859 17.966586281887107 17.205599800914246 16.473129821225186 15.779211089135298 15.140906947054196 14.571417994071016 14.082699997051595 13.6863906271833 13.39307047917991 13.20914517197319 13.130351745619542 13.155645994198338 13.278482150817288 13.494846880112846 13.797565837480256 14.180974206785164 14.638900923148467 15.16397292528007 15.750200046565583 16.389107036771286 17.074488527763457 17.79827782242608 18.552387671631706 19.330129707975054 20.12472943661486 20.929600523617957 21.738088424190277 22.543345163894443 23.338869137845382 24.120858963400373 24.884731944762326 25.62464200742826 26.33773294890115 27.019628023360376 27.66633374345053 28.275718837811908 28.842563741507536 29.36612119105872 29.83771632374461 30.25591624951818 30.615900993061995 30.907631283371884 31.126258704499822 31.262955018958408 31.305630204315786 31.244840393215526 31.07646677801415 30.795503889802177 30.393032650108353 29.863648844231996 29.20218469899449 28.40566315955642 27.465733321346498 26.381974993425445 25.155245737534326 23.786984674220257 22.286114890178617 20.67444593612686 18.975368331816703 17.21629722203403 15.425119618163553 13.631490632654195 11.863304017983378 10.14866885254483 8.514371352875429 6.983474437771472 5.575188942615449 4.304497219404079 3.183301958662558 2.2155417661296575 1.4016667859734246 0.7368371860171884 0.21714121613364168 -0.17652344246102203 -0.4757273226308991 -0.7136537785275253 -0.9150935884989155 -0.5481457816419819 -1.4323059041799149 -2.31326540313306 -3.1891379366693555 -4.058108447709628 -4.918404247754551 -5.768251721150087 -6.605877252242228 -7.4295072253769465 -8.237368024900261 -9.027686035158187 -9.798687640496698 -10.54859922526178 -11.27564717379941 -11.978057870455606 -12.654057699576374 -13.301873045507692 -13.919730292595535 -14.505855825185922 -15.05847602762485 -15.575817284258301 -16.056105979432278 -16.497568497492747 -16.898431222785717 -17.2569205396572 -17.571262832453176 -17.839684485519633 -18.060411883202576 -18.231671409847976 -18.351689449801857 -18.418692387410193 -18.430906607018983 -18.386558492974228 -18.283874429621903 -18.12108080130801 -17.89640399237855 -17.608070387179513 -17.254306370056902 -16.833338251458052 + 22.56089042682111 22.112170231039347 21.61849744283004 21.083180890438552 20.509529664340377 19.90085285501104 19.260459552926047 18.591658848560918 23.704482364292737 23.683343525314807 23.717496998284343 23.786879543239344 23.87164264488991 23.951406969439518 24.007170147721304 24.02235031933332 23.982463166008884 23.87493477091821 23.68944608290775 23.422105179246927 23.070810715096044 22.6353882830864 22.11861662644964 21.530100284518888 20.878601899002952 20.17365289410274 19.432283461893146 18.66382455950582 17.89135416345835 17.12678077764933 16.389811587276498 15.690597497183456 15.047254088389412 14.471935899698893 13.976607500953111 13.57266531202135 13.270604751730398 13.076785415342531 12.987520799073986 13.00038304175436 13.110270221647168 13.312993680167974 13.60096171594095 13.968267162294378 14.410325662347516 14.918501786651282 15.487424056117007 16.10873065606919 16.776314026865276 17.48201076646688 18.218391424368203 18.97835310627823 19.755768020612706 20.54375866690615 21.33610855307706 22.124895268467302 22.905601845865593 23.67377612306676 24.423685711334354 25.15177400596106 25.85335852860442 26.52446648285803 27.162469403195995 27.7622962107411 28.32307393548261 28.838931579875812 29.307699208615247 29.721282884870057 30.079430079505237 30.37123693906757 30.590416583325418 30.729112922221606 30.77586935189842 30.721867413053754 30.561936905746705 30.291158902325087 29.901317191363496 29.387338740192195 28.743637918012546 27.96740266855159 27.04777361718035 25.988301581299623 24.788269128299426 23.44740090050525 21.97767781195623 20.39907888765299 18.73593024219391 17.01508494299688 15.264286447802322 13.51329225233437 11.789610367197874 10.122587112913335 8.539193362905301 7.059818414240606 5.703681640488156 4.488964245522396 3.4238734425352004 2.514200344799394 1.7606542332541313 1.1592986152891547 0.7010144844320992 0.36625968992499586 0.13118084966927296 -0.04858496045789518 -0.20028718805833923 -0.0036528581117343945 -0.8550412212009094 -1.7041395051370913 -2.54914474670233 -3.3882519124491135 -4.219660366572687 -5.041568277611332 -5.852173814103347 -6.649675144587016 -7.432270437600671 -8.198157861682638 -8.945535585371202 -9.672601777204658 -10.3775546057213 -11.05859223945945 -11.713912846957431 -12.341714596753533 -12.940195657386036 -13.507554197393272 -14.041988385313559 -14.541696389685178 -15.004876379046445 -15.429726521935647 -15.814444986891093 -16.157229942451117 -16.456279557153998 -16.709791999538048 -16.91596543814157 -17.07299804150286 -17.179087978160247 -17.232433416652015 -17.23123252551647 -17.173683473291934 -17.05798442851669 -16.882333559729055 -16.644929035467335 -16.343969024269832 -15.97765169467486 -15.544175157919064 + 22.495634241818095 22.043063129116188 21.546521157983804 21.009252581783667 20.434501911648056 19.825513658709255 19.185532334099562 18.51780244895127 23.69930012026937 23.684655614513744 23.72385106129423 23.79644203882444 23.882729712378385 23.962802935957615 24.017442756611295 24.030436084209445 23.987492510040457 23.876522978717645 23.686648926254104 23.414742151065784 23.05901104663183 22.619899551278742 22.099700289730208 21.50730270052812 20.8520508377632 20.143227407520108 19.398312751487172 18.62785456692872 17.851853949104527 17.085097726946472 16.34423102446727 15.641931485243015 14.994774359168714 14.414796709029787 13.913915639537041 13.503344546504328 13.193483697843225 12.990647317803687 12.891688850881067 12.893254527760709 12.990712436217256 13.180436923858986 13.454286777253637 13.80661193357081 14.232988134941392 14.725275651033662 15.277048185829248 15.88164559927402 16.531567913491422 17.220208658073958 17.938728136329047 18.6814801443655 19.442003209514972 20.21348977109195 20.989827191278824 21.762705498102093 22.52900135844309 23.282837508447788 24.02009991167038 24.73604569512965 25.42623818559515 26.087924599920584 26.71575010328592 27.30851853356014 27.861157062703104 28.372550300727635 28.836588383070342 29.247878238639643 29.604788209284326 29.89525039643252 30.117490074354418 30.260775818862022 30.31261294657068 30.265879306862743 30.115502104617647 29.856647262479466 29.48128164224014 28.984073447720593 28.359103021844327 27.602249764596316 26.706712977982296 25.673042975874043 24.49991765684985 23.188376228881864 21.750427216532568 20.205491146771728 18.57845554196642 16.895758404716844 15.185027195040204 13.475900871137952 11.797486889837097 10.1778612017395 8.641847580458267 7.211151905357655 5.907329895006307 4.744848723572428 3.7337303255773797 2.8801086602455515 2.1877714938953425 1.6496809171081503 1.2560030314135258 0.985308556133731 0.8029261376207083 0.6825450185137514 0.5858670199905041 0.48931308004105123 -0.21866204546822848 -1.0364626556375365 -1.8512193673478874 -2.6611359964274754 -3.464381567597041 -4.259123630472823 -5.0435297346710835 -5.815767429808065 -6.5740042655000535 -7.31640779136334 -8.041145557014161 -8.746385112068781 -9.430294006143443 -10.091039788854438 -10.72679000981804 -11.335712218650498 -11.915973964968057 -12.465742798387005 -12.983186268523616 -13.466471924994137 -13.913767317414838 -14.323239995401963 -14.693057508571785 -15.021387406540594 -15.306397238924632 -15.546254555340168 -15.73912690540346 -15.883181838730769 -15.976586904938378 -16.01750965364253 -16.0041176344595 -15.934578397005557 -15.80705949089695 -15.619728465749953 -15.370752871180825 -15.058300256805836 -14.680538172241258 -14.23563412779543 + 22.458578245078574 22.002589166903743 21.50360431906534 20.96480374185612 20.389367728066855 19.780476570488343 19.141310561911375 18.475049995126735 23.70568580835273 23.698066971474805 23.74275546758912 23.81915649898853 23.907740441204275 23.988914965963154 24.04355336495033 24.05555973062262 24.01068606074379 23.897456200803354 23.705014143194248 23.43048471198299 23.072191832695893 22.630520370214086 22.108040926501136 21.514790101325865 20.857869443145972 20.147198562822545 19.40051677302361 18.629791555538464 17.852048186445288 17.084544611916996 16.341335874129953 15.637237291073177 14.987496998883037 14.404028980891185 13.898628661163468 13.482419936849523 13.165683133287795 12.95468851204767 12.846796262745059 12.837804207128439 12.92373426670312 13.1010811180629 13.361421794316525 13.699688191390043 14.110744931768657 14.5876140585476 15.122895605982393 15.711201033250909 16.344030413260413 17.015806535602884 17.71712282636443 18.443234617055502 19.187071861009656 19.942431153179957 20.702547731300815 21.460420911043354 22.212075363040093 22.952507874454305 23.677178281589583 24.380952783237635 25.060809830558554 25.711882567854655 26.33163622329447 26.916256071659827 27.462931222378337 27.968406502912675 28.430166386865327 28.83815898096641 29.19478235774076 29.486654639315468 29.711195664068 29.858894363634867 29.91838415650003 29.881141873786742 29.74208589393354 29.496584557305237 29.136800435898532 28.657023181879715 28.051546142728633 27.31743853525345 26.447549623300993 25.440853068418477 24.29568665391197 23.014659099483882 21.609106718304 20.098393920125428 18.507590506697046 16.862862595433455 15.191892592845424 13.52543258222279 11.890150765145757 10.315665271178469 8.825121200054879 7.442402789474763 6.187855316421901 5.076946330405213 4.121190420950009 3.326216638606863 2.6906341702930194 2.2098997211948546 1.8782031844530698 1.6732360744352697 1.5533734848372753 1.4837133281802553 1.4411288729704128 1.3941570551523064 1.3241989955361633 -0.3079269317781424 -1.0931379748538044 -1.874625463599663 -2.6505254137492056 -3.4189720743718133 -4.178099694536886 -4.926042523313808 -5.66093480977201 -6.380910802980919 -7.084104752009912 -7.768650905928396 -8.432683513805756 -9.074336824711422 -9.691745087714805 -10.283042551885302 -10.846363466292296 -11.379842080005213 -11.881612642093467 -12.349809401626453 -12.78256660767357 -13.178018509304216 -13.534299355587796 -13.849543395593741 -14.12188487839144 -14.349458053050288 -14.530397168639698 -14.662836474229074 -14.744910218887826 -14.774752651685352 -14.750498021691058 -14.670280577974351 -14.532234569604627 -14.334494245651298 -14.07519385518377 -13.752467647271452 -13.364449870983748 -12.909274755537945 + 22.454156535072528 21.99519297451502 21.494197573985275 20.95428671806624 20.37857703769902 19.770185163824767 19.13222772738459 18.467821359319615 23.72503914395333 23.72504303485636 23.77574000861985 23.85665118331675 23.94860582670461 24.032217974391212 24.087880866515473 24.099959925691355 24.054756241021398 23.94062326030579 23.747498644347655 23.472366870636876 23.113633303876604 22.67106427044725 22.1485124323277 21.55536569906845 20.899689264301827 20.189379286628387 19.442973090842067 18.673262181973854 17.895927444443238 17.128912530965714 16.384966120755273 15.680552805948453 15.029461453814946 14.443668344860885 13.934754694161729 13.513884717259113 13.191178575433542 12.972864730071324 12.856780062234638 12.83794652399355 12.913255168165207 13.07882379451564 13.326240123104427 13.650957276144993 14.047443477894207 14.509339542281609 15.02882636022069 15.601183272250424 16.21768754023952 16.872691892485022 17.55731800081448 18.26708695310023 18.99462940777559 19.734193259461332 20.4783951914797 21.221463425844853 21.95895936588133 22.686272051567297 23.398117174385686 24.090660956774837 24.759792603991354 25.4014414948235 26.013110110957342 26.59020632124998 27.131358961022876 27.631797860294878 28.090276134678568 28.497672032758064 28.853355641682757 29.14825164791416 29.3769284453446 29.530080856996506 29.597255407970597 29.57007935356058 29.443628634615855 29.21319118155917 28.870763993834657 28.410990339137225 27.827612019471545 27.11770516603194 26.274884176784624 25.296188880538548 24.180670281257886 22.931002416359444 21.558458992610632 20.082491836196766 18.527970680860378 16.92102761307034 15.29022232812947 13.664407906378745 12.071692306374958 10.539868881553643 9.093229990957711 7.758961456439399 6.5547822867926255 5.495858647247593 4.593327017051915 3.8517687971404184 3.273904984198986 2.855756802143369 2.5848264091216198 2.434013021030069 2.372668168704821 2.3627015572012766 2.3691287172899727 2.373471169468317 2.3482412112534505 2.2792703110857735 -0.2726767454678428 -1.02658507792061 -1.7760494679507601 -2.519167903945533 -3.254038374292185 -3.9787588673779535 -4.691427371590129 -5.390141875315989 -6.0730003669427735 -6.7381008348577405 -7.383541267448134 -8.00741965310124 -8.607833980204326 -9.182882237144641 -9.73066241230943 -10.249272494085972 -10.736810470861538 -11.191374331023376 -11.611062062958748 -11.993971655054903 -12.338201095699107 -12.641848373278641 -12.903011476180751 -13.119788392792696 -13.290277111501734 -13.412575620695131 -13.484781908760157 -13.504993964084054 -13.471309775054099 -13.381827330057547 -13.234644617481653 -13.027859625713683 -12.759570343140899 -12.427874758150562 -12.030870859129944 -11.566656635597388 + 22.486803210269937 22.02531918206303 21.52275157065424 20.982153857824358 20.406579764646796 19.79908301219497 19.16271732154229 18.500536413762177 23.7587710653954 23.767069609508578 23.824957407872414 23.911963610954707 24.008319201601655 24.094496309014623 24.152224560190113 24.16597677269205 24.122251288825947 24.00873119365246 23.817004900047383 23.543481168238408 23.18660807065453 22.744930146993177 22.224664848567524 21.633965352092787 20.979595916815093 20.273631449511832 19.528937235778745 18.761339928566354 17.98726012608968 17.221437137540708 16.47917297562271 15.775927804771305 15.124715424859517 14.537123720691527 14.025824404957268 13.601731706614471 13.273943185323482 13.049127762453335 12.925571858947555 12.897589508212473 12.96318633027409 13.117436852579804 13.352605578070545 13.664259272512378 14.046919792982647 14.494263034156004 14.99867702689403 15.555366297226502 16.156063397777228 16.794612860166527 17.46315750215293 18.156710706675735 18.868325415599962 19.5923816485414 20.320977838746554 21.049455931440125 21.77317054722489 22.48738691894919 23.18702249696993 23.868602120396535 24.52646581035604 25.159222837886414 25.762963200757746 26.334161303076243 26.869335330036886 27.366423258726574 27.821756316867756 28.22976845253338 28.585701260630263 28.883334774913113 29.117950586548282 29.278221506624124 29.354504359394248 29.33891466014027 29.226579871212017 29.012822314786685 28.68949922387409 28.251421872047025 27.691744539355916 27.00759064984379 26.193336726710317 25.24404235610747 24.159611716784852 22.942162972810163 21.603225907847094 20.162483957161157 18.644190164011878 17.07503427549724 15.483322048477525 13.896895002001258 12.345467995063204 10.854325192995201 9.454716696607251 8.166088764004417 7.00878813905752 5.998137896113334 5.144199282720668 4.457223598007812 3.9354191336459725 3.575438973279923 3.3681723340943246 3.279598189818011 3.271558652273818 3.313511857295671 3.3760197855449934 3.426045394313084 3.449268243418234 3.4232947270003256 3.3350040483993864 -0.11487960334525121 -0.8389112931232888 -1.5577654138312207 -2.269500454528411 -2.9721749042742065 -3.663847252127994 -4.342575987149165 -5.006419598397061 -5.653436574931047 -6.281685405810474 -6.889224580094727 -7.474112586843189 -8.034407915115207 -8.568169053970136 -9.073454492467357 -9.548322719666249 -9.990832224626166 -10.399041496406475 -10.77100902406653 -11.1047932966657 -11.398452803263377 -11.65004603291891 -11.857631474691662 -12.019267617641002 -12.133012950826297 -12.19692596330692 -12.209065144142228 -12.167488982391593 -12.070255967114383 -11.915424587369953 -11.701053332217684 -11.42520069071693 -11.085925151927073 -10.681285204907477 -10.209339362424528 + 22.560952369140768 22.097412419660746 21.593716956982846 21.052857508540814 20.477825833012414 19.871613689075417 19.23721283540759 23.85954838045964 23.81072178056701 23.828716054522374 23.89375966141177 23.986378374895754 24.08754807319499 24.177495797307706 24.23884340581746 24.256061654113346 24.215811779794578 24.104589154892484 23.9165350185305 23.647015253224726 23.293591137405997 22.855600162396552 22.34012301902552 21.75388826458686 21.10314610783635 20.403216157944865 19.662325893206592 18.899254551263535 18.129578262432815 17.36721329957387 16.62806606620131 15.927422080808789 15.276616180666842 14.688947607720426 14.176478035448751 13.749897198867556 13.417945628888772 13.187423338154534 13.057095679205458 13.020825201412697 13.077428337560042 13.220870834745632 13.444370214304774 13.74342199937633 14.112996142406269 14.54618156981422 15.035888717840825 15.577509423671373 16.162716631513714 16.785280657781357 17.438025938627746 18.11576570973623 18.811840352924325 19.520601598517985 20.23386337766548 20.948038676929723 21.658219887862277 22.35952611044679 23.047355365669922 23.717269676548558 24.365173841428565 24.98946903232123 25.58534485658115 26.151513920103916 26.681458688865607 27.17558731405487 27.628818782391228 28.037047994757106 28.39533501042603 28.696884646138404 28.937478402242284 29.107042853351285 29.193952395890523 29.19157085556215 29.095057202426922 28.899746631741397 28.597262712437388 28.182679607758683 27.6484107430832 26.991655201876057 26.207023506622306 25.289470329372644 24.237261851437957 23.05290080411182 21.74814867347099 20.34284948408603 18.860788320758157 17.329119331099403 15.775552008722633 14.22825882149673 12.715516272517274 11.26824834237627 9.910341622034327 8.665015841240796 7.551601599706936 6.586270406197285 5.782291052122629 5.1470380364663235 4.681674195161799 4.379534272826354 4.228436443088983 4.200907320417212 4.251896204700274 4.346392309146784 4.4573956366921195 4.5589264718032565 4.6257090024121865 4.641816539737215 4.594354341120475 4.476446860534767 4.289076946006732 -0.5328188986661122 -1.2226406158369998 -1.9045490762762696 -2.576559752559198 -3.236688117261063 -3.882949642957096 -4.513359802222553 -5.125934067632669 -5.718687911762727 -6.28963680718799 -6.836796226483698 -7.358181642225091 -7.851808526987445 -8.315692353346027 -8.747848593876073 -9.146292721152848 -9.509040207751587 -9.834106526247558 -10.119507149216034 -10.363257549232253 -10.563373198871469 -10.71786957070894 -10.824762137319919 -10.882066371279674 -10.887797745163446 -10.839971731546502 -10.73660380300409 -10.57570943211146 -10.355304091443877 -10.073403253576592 -9.728022391084869 -9.317176976543962 -8.838882530470148 + 22.68103811015501 22.215917317421198 21.711544380881733 21.170850017625945 20.596765166898116 19.992220767942563 19.36014776000358 23.921251317872 23.88232293949935 23.909305723214523 23.98172532478264 24.081005074610744 24.187994470663302 24.283388761528105 24.350098108163284 24.372765201963208 24.336446444970562 24.23059512521945 24.048354141267207 23.785249029869792 23.436597303549004 23.00640764631234 22.498588722656255 21.917492638607847 21.274222739554066 20.5813477736498 19.847469168971017 19.091047840069265 18.32742699253582 17.57031547532788 16.835723963033132 16.138773855752945 15.48977525093226 14.903324093455431 14.390738314636994 13.96258785616882 13.627680554130745 13.39215835735835 13.255813131809207 13.21214191968404 13.259868738187162 13.393064837606612 13.60537201644866 13.892409583003483 14.249478579087768 14.668875880154822 15.14457445128561 15.67135483740533 16.241364056928667 16.848388926725768 17.485590859752868 18.147895578772964 18.82867312220538 19.52215030078022 20.220606772750752 20.92074376201491 21.61760985457403 22.306325418935128 22.98247911855673 23.64101175889315 24.279463642093436 24.895235895415905 25.484191344995796 26.044878375934395 26.57114995862589 27.062369363094007 27.514922633990043 27.9243903032627 28.285797979275053 28.592512400136876 28.840457351333168 29.020032039487592 29.119449945091503 29.131999952471578 29.05311861483038 28.878130398642273 28.598335993004042 28.20914877563002 27.702097703716287 27.074475418718944 26.320636083738663 25.436395053396133 24.418377752117774 23.26797846761692 21.99745220645398 20.627722171639853 19.182435120068757 17.687788002663613 16.171414289574354 14.661887461199937 13.189365731519478 11.781686019356293 10.463843485182691 9.258704633921212 8.187385897641576 7.27126158774964 6.517462426391983 5.933545354273192 5.520131068324413 5.2764148348193665 5.183784103753406 5.207641630601084 5.310344262388482 5.460155288804937 5.620886751146865 5.768693908791711 5.8801965147153865 5.939323361419075 5.930288018564059 5.848648981617512 5.69508821703145 5.472124007767987 -0.11161353880938862 -0.7741398256578556 -1.4279301740573331 -2.0709532444323027 -2.701177697207205 -3.3165721928064995 -3.9151053916546292 -4.494745954176081 -5.053462540795326 -5.5892238119368125 -6.099998428024985 -6.583755049484323 -7.038462336739301 -7.4620889502143655 -7.85260355033398 -8.207974797522592 -8.526171352204674 -8.805161874804703 -9.042915025747124 -9.2373994654564 -9.386583854357 -9.488436852873368 -9.540927121429988 -9.542023320451309 -9.489694110361794 -9.381908151585911 -9.216634104548108 -8.991840629672858 -8.705496387384615 -8.355570038107857 -7.940030242267038 -7.456845734185026 + 22.851494531782624 22.385278505457364 21.880684490261526 21.340583732490078 20.767847690406143 20.165347822272864 19.53595558635336 24.001494936240956 23.97401252476179 24.00990803307286 24.090613247165464 24.19780570782807 24.31216044050823 24.414933918255244 24.48884171967999 24.51776226646796 24.488022116612324 24.389995248987564 24.216222549001806 23.959714504147197 23.620089345043233 23.19970741420006 22.701210050584184 22.12996875798819 21.496768265513253 20.811017225803713 20.0883043147564 19.339405749946394 18.58401740585586 17.833735348558992 17.106236686318674 16.413347024995986 15.768341565121386 15.1842915335323 14.672623299835196 14.243853432595715 13.907075016611872 13.667499765349882 13.52554135984012 13.474975391863959 13.514379521251882 13.637865796028928 13.839432494366955 14.115779724369672 14.46015437607756 14.866107869504257 15.328445026977558 15.840624998321386 16.395914956902164 16.98761101753152 17.60950061764612 18.25672503955194 18.922434921589346 19.600662602795243 20.284747560434393 20.971090124387825 21.654831823112566 22.331260675279495 22.99532844331629 23.643497571109922 24.272750458539708 24.880526072497485 25.462909452917476 26.018378150051443 26.54184218798235 27.03104360329475 27.483544941568287 27.8953268354675 28.26065376130055 28.573853151268665 28.83060273627225 29.02149579209506 29.13487322035367 29.164179502106105 29.104846983876712 28.95216375646593 28.697021898972803 28.335234270265648 27.857309009006812 27.260641094378812 26.539274522231853 25.68866596672237 24.705884266812628 23.5910224345728 22.35585411725152 21.022108128145327 19.613418759593593 18.155455904714902 16.675662807127587 15.203568816336583 13.769235613737258 12.398957910627713 11.118385180047417 9.95359316575016 8.927276116242643 8.054417191791241 7.344835641573944 6.809038539897837 6.44743332270065 6.258691251970222 6.223477245985297 6.302766146740663 6.458725848933239 6.654151519418289 6.866106199281335 7.058785404744808 7.21487650765984 7.313639843014237 7.342538877400583 7.296580149798079 7.175949757455505 6.983641941737615 6.723788505027791 6.402390184909753 -0.2163238177959734 -0.8438463474434853 -1.4596909577316888 -2.0617754227571052 -2.6480175166162323 -3.216335013405616 -3.764645687221779 -4.290867312161233 -4.792917662320478 -5.268714511796051 -5.7161756346844825 -6.133218805082278 -6.517761797085957 -6.867722384792026 -7.181018342297015 -7.4555674436974515 -7.689287463089852 -7.880096174570723 -8.025911352236594 -8.124650770183978 -8.1742322025094 -8.172573423309377 -8.117592206680422 -8.007206326719068 -7.839333557521813 -7.611891673185191 -7.322798447805714 -6.969971655479918 -6.551329070304311 -6.064788568019931 + 23.07675573249359 22.609940613882255 22.10558793303284 21.56651100054355 20.995523327638733 20.395438425542775 19.76906980548003 24.102783079989855 24.087121659537594 24.133393613142815 24.224210052653547 24.340881306275833 24.463636772028924 24.57472385321641 24.656727835988665 24.693894057537424 24.67382311013425 24.586288506409865 24.421420223922265 24.175794234672416 23.84843031385866 23.439253968791817 22.951567117733003 22.39434495844569 21.772682929385137 21.098160166882753 20.38695791253824 19.64885096356222 18.903645514508817 18.162310656029078 17.44318022099672 16.75621441125028 16.116385582401815 15.536026761299327 15.026143681271174 14.59767957064877 14.259842896218556 14.01696874204548 13.870083791060715 13.813206214048606 13.844814502605933 13.959164602903307 14.151566315600443 14.416757222956099 14.748789349865778 15.142004059855376 15.591178632108246 16.089019912084748 16.630008940595253 17.20659711811535 17.81372469939511 18.4458570698305 19.09681114301187 19.75990334963039 20.429806928233532 21.10258070603043 21.77336323871244 22.437796460439117 23.08995619454433 23.72815471819212 24.34844657989448 24.948759076087452 25.52490927703433 26.07587317300741 26.596977700182183 27.085082131175835 27.53817769802496 27.95340603010921 28.323485199219245 28.644562634414243 28.911651419312914 29.115141360295336 29.24412047592952 29.29210869340086 29.254346016874337 29.126056515701354 28.897640464400613 28.56535647302387 28.11856084710711 27.55475169317574 26.867605630454683 26.05214012323205 25.104914778899186 24.0259880498847 22.827976492154114 21.530913368179416 20.15825388814505 18.73630434257507 17.29259594041354 15.85751564360527 14.458722540370744 13.123647015952466 11.880435206312818 10.756307045996301 9.769283590658562 8.935564232889275 8.2690632640896 7.777843888543066 7.466314175136507 7.330907672810381 7.349886236583921 7.483225228983672 7.691957934015686 7.938293447030157 8.192180815645841 8.432089677700333 8.62822353754657 8.767313702124643 8.83304442269806 8.820786937559344 8.73140010599358 8.568169985834846 8.335665763884471 8.038932872152794 7.685245318038185 7.28108607346678 -0.15707662111489457 -0.7476711681486318 -1.3234885812574033 -1.8823913955221918 -2.422242146023967 -2.9409033678436787 -3.4362375960622735 -3.9061073657607315 -4.34837521202002 -4.760903669921092 -5.141555274544908 -5.488192560972416 -5.798678064284589 -6.070874319562398 -6.302643861886798 -6.491849226338744 -6.636352947999202 -6.7340175619491305 -6.782705603269498 -6.780279607041258 -6.724602108345377 -6.613535642262818 -6.444942743874531 -6.216685948261488 -5.926627790504642 -5.572630805684973 -5.152557528883432 -4.664270626425661 + 23.361255810757893 22.894348272808866 22.390705357106317 21.8530841691967 21.284242002698136 20.686936151228757 20.063923908406693 24.233399515175673 24.22770280500732 24.284042913473467 24.385184572087475 24.510963977206668 24.64334914124106 24.764203336295882 24.856224578408195 24.904698942388176 24.89677287403031 24.8200399673284 24.668428017843148 24.43741307097609 24.12332953878518 23.727679290356306 23.255826653248533 22.71221383155345 22.10630202898851 21.446780723066933 20.746841911506966 20.0241122404212 19.289040575037713 18.56032364820166 17.84996480892832 17.171097115609225 16.53804723688159 15.962596528322221 15.455957825988767 15.028579089026977 14.690249723418477 14.444648173001681 14.29352363334381 14.231170283034844 14.256050825212913 14.36249012924342 14.544966820232622 14.799109819312593 15.119433451888337 15.500880365245745 15.936474428006305 16.420577291466795 16.94723380081444 17.50897122340483 18.10166264225166 18.718869860052745 19.355297798216935 20.003397911091646 20.659284561117506 21.31869937612921 21.976664514127965 22.628897796673623 23.269783908410524 23.89832106870956 24.509958187059617 25.103081078333787 25.67360101619381 26.220476239712585 26.739835689115484 27.22794827343485 27.682324331960135 28.10218976603605 28.477890656135965 28.80831337228348 29.087357868072104 29.304250622479806 29.451107774098755 29.519803963215733 29.505735708243623 29.404033466806407 29.204133423569445 28.90303958291289 28.489265368970685 27.960397346495263 27.309664691827802 26.531547574582827 25.62116031050202 24.578930765603587 23.417506055205575 22.15717544155813 20.821220718556322 19.43499616106516 18.027028885671324 16.626621500587536 15.261883282877202 13.960929033409258 12.755867161969446 11.666804152983888 10.71572313775953 9.919122657813746 9.296345327972972 8.853131246270433 8.59178199850609 8.507663059174146 8.576677098644344 8.756851130375349 9.010822317106946 9.306269946464822 9.606821563627026 9.886095518043449 10.124036025180912 10.300013884270637 10.400386182197046 10.420546133488337 10.361446938518379 10.225564264317436 10.017923513460367 9.745545637222518 9.412608909714407 9.02803247621743 8.59747065650895 8.129888025755678 7.629849902558355 -0.4918514065966286 -1.025307816758462 -1.5385086196708286 -2.029256480201035 -2.4953540632164213 -2.934604033584321 -3.344809056172045 -3.7237717958469165 -4.069294917476244 -4.379181085927362 -4.651232966067604 -4.883253222764284 -5.073044520884721 -5.218409525296241 -5.317150900866163 -5.367071312461819 -5.365973424950523 -5.311659903199604 -5.201933412076382 -5.034596616448172 -4.807452181182308 -4.518302771146104 -4.164951051206899 -3.745199686232006 -3.256851503852978 + 23.709428865045506 23.242946112350204 22.74048741039257 22.20475558585986 21.638453639686578 21.04428457280726 20.424951386156437 24.388088644219817 24.39400589218527 24.462239329821635 24.573385822681043 24.709963435015794 24.853760930559513 24.986106605748827 25.090889444024402 25.152363228801274 25.15726323084901 25.0959368773233 24.9609097696091 24.74485728775859 24.447961011241713 24.070964969450632 23.61488959868822 23.088471185728707 22.50046357312088 21.857133551082587 21.174404937767534 20.466689895734095 19.746138775247218 19.029933819255 18.33116806442112 17.66200097624771 17.037140259380685 16.467967196169297 15.965595133775993 15.540652073541994 15.202993701183967 14.955878507940657 14.801304839132543 14.733853504925168 14.751991006793913 14.850217859507932 15.023147396753716 15.267413148181419 15.576946152812853 15.945753650199183 16.36829670718234 16.83940044566298 17.351272199908085 17.898905747928445 18.47688029090162 19.079474907846965 19.70135792251709 20.334622062750398 20.976655255074743 21.62271788965812 22.26817566519811 22.907819385337383 23.538217572063246 24.15688943408479 24.760681863622374 25.34663017507873 25.91239138869686 26.455323851340587 26.973556532520142 27.462094005332542 27.91949577725535 28.344899408308933 28.727479816457546 29.06879036532674 29.36049862986755 29.593062299865235 29.75976426425913 29.851294117684663 29.862223932230158 29.788082429812057 29.618738855584404 29.351444652324446 28.97288622972969 28.480741635757763 27.86775986771232 27.12786450525396 26.25635769151574 25.252686681807905 24.12940501841863 22.90644424021502 21.606011238564466 20.25492554078121 18.881838231791534 17.51510055840531 16.183006420292546 14.91743755447418 13.74492050142894 12.688801378338562 11.770828459681969 11.014986934071521 10.432977805988678 10.031037039367792 9.814622928842363 9.779264365142534 9.896777648975831 10.125302865452685 10.425209927917294 10.760411755371537 11.104922258083738 11.424602710988927 11.70006343890387 11.910786076060516 12.044488820900197 12.095218139312136 12.063973060929282 11.954294906003092 11.77143389275039 11.518903613940456 11.207004850307031 10.839464117515911 10.42644827897239 9.971110611049621 9.483013204027891 8.969857978623184 8.435809403145054 -0.08285970832939804 -0.5712725656874602 -1.0358750560012224 -1.474405064215831 -1.8846004752764132 -2.2641991741281076 -2.610939045716031 -2.9225579749853385 -3.1967938468811767 -3.4313845463486703 -3.624067958332955 -3.7725819677791734 -3.8746644596324535 -3.928053318837944 -3.9304864303407743 -3.879701679086085 -3.7734369500190157 -3.6094301280846888 -3.3854190982282577 -3.0991417453948467 -2.748335954529611 -2.3307396105776803 -1.8440907947526786 + 24.125708993826393 23.66017876261926 23.15938474080223 22.625977597943358 22.0626081627063 21.47192726375475 24.630516076180186 24.571714692182248 24.59056778910366 24.669734587672078 24.79373714456343 24.942997384929367 25.099046038260767 25.24479123467317 25.36318078881956 25.43938183549412 25.461002238185227 25.416366146864195 25.29818074256449 25.102245239957668 24.82546941471585 24.4679634607158 24.033722466522054 23.527267209049228 22.957452019355284 22.33674093306088 21.67038838042869 20.981093893599493 20.276648528063124 19.57696014519592 18.88995380798949 18.232965415815734 17.617881547113036 17.056299303189306 16.559458068047537 16.137775364992752 15.801210059896933 15.553267121092016 15.39583905150483 15.323944556110618 15.336167607622833 15.427236378820659 15.59179703459433 15.825848024672792 16.12388139616648 16.480973884961116 16.891212910190767 17.348517176005064 17.84628784462203 18.379661311353352 18.943009302443137 19.531219354082587 20.137997825477594 20.757013097515706 21.38536529787946 22.018020687833854 22.651312683938883 23.278328648095044 23.89856869621741 24.507581861735424 25.103785081975715 25.683012372043844 26.244384938697298 26.784061338316533 27.301919868225134 27.7916066386494 28.253206099528285 28.68401934605424 29.075869015926035 29.4288758718028 29.734572917920833 29.985410508230483 30.173636325267772 30.28823777454335 30.326543776311276 30.283479463836972 30.147510367918056 29.91604327684633 29.57534334092856 29.121848982172526 28.54843856603095 27.848628305823524 27.01673633673874 26.05164253430673 24.966059573760678 23.77979394380133 22.51576053783735 21.19995229832802 19.860804305146143 18.526343274704928 17.2264362207053 15.993357849514544 14.851311607983202 13.82549841843727 12.943803601909634 12.222864748850713 11.6759551868769 11.312410202189193 11.137707248009821 11.148132079989795 11.311107499171364 11.585161491935533 11.929071846039703 12.307235843989172 12.686898859552683 13.04642709551518 13.355690361109325 13.600684054138307 13.764771100021427 13.843566339889326 13.838233567138056 13.752472602960799 13.590459602635681 13.360343944862446 13.064190775437526 12.714736211862226 12.313733299786884 11.872252973556455 11.397288604864942 10.89053571866336 10.363889994083019 9.82117942199604 9.270249370724063 8.71508528280072 8.16346215537963 -0.3799434386754425 -0.7626252225245699 -1.113034537104269 -1.4288392992184955 -1.7077074256711895 -1.947306833266286 -2.1453054388077155 -2.299371159099426 -2.407171910945344 -2.4663756111494206 -2.474650176515584 -2.429663523847778 -2.329083569949941 -2.170578231626001 -1.9518154256799054 -1.6704630689155888 -1.3241890781369967 -0.9106613701480691 -0.4275480935755272 + 24.614530295570543 24.150490853729043 23.651847996245923 23.121202552857536 22.561155495859552 21.974307797547674 24.840168569353896 24.792703784707815 24.822289700126916 24.914882792723002 25.050289533849533 25.21165827679064 25.381913277908165 25.54208464340102 25.676392700045213 25.769823816225255 25.809225208558374 25.784644196880404 25.68790053400784 25.51264818970443 25.258159421086766 24.92469669296351 24.51345244481427 24.0308002018731 23.48363989662962 22.88309417273797 22.240877218522236 21.56980711458967 20.886020362810246 20.202285735572868 19.53119694722377 18.887723281719467 18.283873378286813 17.731473867391987 17.241385288894733 16.824309077848646 16.490156713276058 16.24248733056054 16.08306110865519 16.007247692249628 16.013721899580194 16.09751194768298 16.25321194894043 16.477797891027905 16.76545421836111 17.11064684956171 17.507903227425086 17.95203394799681 18.435772833239444 18.954783102234277 19.503858159214314 20.0774411376051 20.669123414736223 21.274015947855847 21.88834757840783 22.50812426421874 23.128007437565188 23.743870105664534 24.353143203556485 24.95375298820371 25.54158908570616 26.11559353944279 26.671834844064726 27.210087185505103 27.72667481667631 28.21995134945281 28.685101079100118 29.123585446869843 29.525750351937496 29.891078930277263 30.21398530938887 30.483617005693116 30.69374540658071 30.835590304341995 30.904367433137377 30.893371520852597 30.791583982183845 30.596806227463617 30.29550966269164 29.88262514638066 29.350721760023823 28.69240803710051 27.901503460620102 26.97664406792463 25.930227404010733 24.781765256098137 23.55374106406719 22.27276236059166 20.966720845014066 19.663148821102382 18.39549811804219 17.19163681883801 16.078064247881102 15.08344764930508 14.23342449840467 13.543089285884815 13.028213132298259 12.69987475009173 12.567317062824761 12.6219339184155 12.826472851233776 13.13898334780546 13.523099945454579 13.94081572003629 14.358288522118428 14.74967509579313 15.09275913554519 15.36734110895906 15.559132475632332 15.663992230079586 15.682818687491448 15.618244060325258 15.476270819100165 15.261872574929471 14.984840858414923 14.646775776129816 14.260533462175848 13.829683505498705 13.361022701762687 12.864388903248303 12.343380668782624 11.806531876301253 11.257050957910128 10.703555162828271 10.14945906255919 9.602629452005369 9.067660932459175 8.550457581797161 8.05477942434342 -0.18412416610573598 -0.43128908414347733 -0.6371428624332907 -0.7992779829084451 -0.9152869275021975 -0.9827621781478135 -0.9992962167785426 -0.9624815253276523 -0.869910585728403 -0.7191758799140459 -0.5078698898178449 -0.23358509737306032 5.984980257070596 6.341803237227648 6.798671219353593 + 25.180326868747922 24.718327015792546 24.222327824634277 23.694882798012724 23.138545563248567 22.55586974766249 25.081549377394612 25.048690158927336 25.0913724017036 25.19449461919289 25.34453379656391 25.520196402944435 25.70460666084985 25.881628716737872 26.03369642260675 26.14644080171663 26.206996549787966 26.20418787797565 26.13064422571059 25.980934382081465 25.750882907613395 25.442553792697424 25.05837238957635 24.60229128264794 24.080776708629305 23.50439959991236 22.886761197489985 22.238339491098582 21.57591868087713 20.91128169813412 20.25808216379169 19.629817981545713 19.03924346218769 18.49746839401692 18.015548869620627 17.60415361455943 17.273215994224994 17.026436304869033 16.865646845018873 16.786516029324186 16.787933115355518 16.865296870436335 17.013026698625023 17.227764895991204 17.50445144856987 17.83824719261546 18.22328067214146 18.65326802435036 19.12324973463784 19.628086218635197 20.162546229251504 20.721575234046348 21.29814485809214 21.888535214148575 22.48929912845701 23.095549135070186 23.702625820771644 24.30659280359467 24.906121303464843 25.497195175364865 26.078341877013774 26.645859752022826 27.199121288317965 27.734730670270665 28.252591713595628 28.748608481570447 29.219555575320474 29.666149313011903 30.079212378697946 30.460431749132518 30.799545221269508 31.09029856082197 31.326545051278448 31.49534465693751 31.594620828976005 31.61901340901371 31.555356781484488 31.400004396623455 31.139799930563825 30.76885479364452 30.279712190299353 29.66425098519909 28.91546957830579 28.031515113500085 27.024648492142873 25.91407646968323 24.721759922270245 23.475097131963988 22.201331127322582 20.928855141439367 19.690935697498613 18.514593764559923 17.42758018798572 16.464058795448672 15.640719353272583 14.978053934454133 14.493158370665851 14.204213991973258 14.109841890802608 14.202088039848185 14.444501446591012 14.79413099704325 15.211303305501515 15.66131247217441 16.11344798881954 16.535348269547296 16.907770353277225 17.208626856279658 17.426081638526068 17.553452979827142 17.592941331153074 17.548019658716388 17.424026610079906 17.2257319395972 16.960256010136867 16.637235098772216 16.25990002593458 15.837838348033504 15.378981704031357 14.888201930759623 14.371222242622764 13.835444760434532 13.288305270971438 12.734027531492437 12.179901624897468 11.629642924837466 11.08831728516055 10.564006735360394 10.060438835546805 9.584983821611345 9.138995747987817 8.730391608187656 8.365137677630935 8.046543595321861 7.780167168850697 7.572957345369374 7.428786193328108 7.351953562928607 7.3496989210084305 7.427198392220809 7.587989808545298 7.8385348143833795 8.185123159644679 8.632471751886973 + 25.82753281182852 25.368131878922775 24.875274873877917 24.35147068081927 23.79922828897559 23.22105668757566 25.371614209661814 25.347043049362128 25.404040573209258 25.520952757152543 25.68252517732305 25.874039576675507 26.07478125185623 26.26848699156137 26.440002034783898 26.573465466870257 26.656528766343822 26.67839216344399 26.630551336451415 26.508253554369645 26.307225738182606 26.02677072786681 25.671172267387718 25.243934564273104 24.751673652646474 24.203223825454742 23.612178469281197 22.989488928835172 22.350737114935516 21.707554671794213 21.073756941588417 20.463200153422587 19.88759984602523 19.357852131374454 18.885542599636782 18.48107905721349 18.154446987004395 17.909420861456592 17.748007984979495 17.666074128713287 17.66279294536872 17.73392419203753 17.873857458032365 18.079399140489603 18.345630483677724 18.667428317326426 19.040012116535156 19.456316005546743 19.9121919586107 20.40263327910959 20.92251149521288 21.46668328196409 22.027814554063703 22.604102034572733 23.19053201186048 23.78400039470962 24.377237029257632 24.970374454730326 25.559025864499123 26.142078248445408 26.71522331838532 27.27826462780913 27.8271671094118 28.36249141642667 28.880532755210336 29.381555733623077 29.85818336895578 30.314111761788386 30.740175401837696 31.135907112551642 31.49584168024487 31.8083511466593 32.069943759210254 32.270586947588455 32.403067030403975 32.46317396962468 32.43776075114496 32.32398894805171 32.108559436997105 31.781520637536335 31.33643605853224 30.76493135024635 30.05915493183597 29.216737599505382 28.249793987664525 27.17657284334072 26.02035187731597 24.807562811519414 23.565422570268776 22.324404410232788 21.114164417018724 19.963730932534588 18.905247302005748 17.96632274964598 17.167648002834024 16.529654368905554 16.079236736606617 15.819764356660373 15.758035345854788 15.884380646173836 16.160407472940246 16.543255924051394 16.992682650999757 17.47216776697714 17.95106403302911 18.402134848126416 18.7982159118091 19.124230832328543 19.36252457128486 19.51058870243546 19.567655520502708 19.539215969180106 19.429056995451894 19.245439906409743 18.991743581662245 18.677818884928154 18.310128238554253 17.89671391916726 17.44151281429827 16.953188247021117 16.43982144857758 15.906016941231451 15.358389217540001 14.80222632535473 14.244111647592632 13.68892789297848 13.144246109467733 12.61321979374714 12.099703435116409 11.612775892724112 11.156801137182674 10.737436090984438 10.357637507538989 10.026186244013813 9.748202120344494 9.525054469953155 9.366087493158487 9.276572873845085 9.25983565502636 9.322393055771606 9.470664529474995 9.710140151183012 10.045304093924983 10.481959033634116 + 26.5605822232823 26.10435007323273 25.615139791887465 25.095418548687487 24.547653597142855 23.97431219076364 25.708756467625356 25.69793246717687 25.764786644364555 25.895901860813783 26.07150400189957 26.27701359846318 26.495160159501594 26.707525297124597 26.89911502538536 27.05543252186652 27.16288809923966 27.211313175363543 27.19148364519843 27.09821346308484 26.92889882633475 26.680614472036854 26.3559219131239 25.960453838268872 25.499876370640187 24.981825668482966 24.419488832556286 23.825375013666378 23.213146427651264 22.593918664585953 21.98207715749816 21.39116009485842 20.83207288164786 20.31627667280973 19.855062765314965 19.458861074355028 19.13770007687263 18.89540849524531 18.734233100434125 18.650070923398268 18.642429969749653 18.70726941001637 18.839744321780973 19.036063752089962 19.291831097726686 19.602104073966988 19.961249976947737 20.364038695547723 20.80584492828633 21.281722355725275 21.78664329724407 22.315161040109285 22.861320418657563 23.422811696148404 23.995400859070468 24.574390837522962 25.155329005987483 25.73635692140375 26.315537612106915 26.8891122375983 27.456131853724646 28.01312915683482 28.56002747085278 29.093546045556863 29.61450923082616 30.11938714942694 30.604453269743807 31.069486807678967 31.50978197583044 31.922639637526576 32.301831865983104 32.640470513552856 32.92905361132307 33.16057972942504 33.32967285876936 33.427881456710516 33.4424000369429 33.37094156198421 33.20025989130856 32.91984627501383 32.52024275838261 31.993687960934327 31.331721415112384 30.531438048469546 29.60479782938455 28.56901386073198 27.4487999768523 26.2695739537185 25.058608424490725 23.84758423043164 22.66505405754503 21.539699345853812 20.50759264452726 19.59105053983383 18.81429745703813 18.205480600308476 17.77937004483325 17.54572638833968 17.51266459489982 17.668968348236106 17.974286796201135 18.385909847310227 18.86354173604029 19.36949023922595 19.871898393399036 20.34540972758757 20.76380393021335 21.109099407636823 21.3660941975056 21.5305554888338 21.603741068832342 21.588337906176907 21.49060485493665 21.31564967396869 21.074506645101668 20.765988979171258 20.4071541919594 19.995767938429946 19.545026271422227 19.061709424095806 18.549657563900777 18.016487824811318 17.465883958374086 16.908023477688126 16.343776338318158 15.782413812066405 15.227679996210485 14.687128851767634 14.166419427279298 13.669262583306303 13.199514350708876 12.766622521754492 12.375264233578855 12.028127420777459 11.73294526036933 11.496579573683709 11.322738448816336 11.21631630898058 11.185105243226786 11.234582151705565 11.368382046891345 11.59267902906822 11.91463480122249 12.33910220970607 + 27.383909201579247 26.93142622883541 26.446373226573556 25.931178749027733 25.38827141185261 26.192364293092403 26.102470803600376 26.103793767655144 26.18058666746805 26.325289476914286 26.51536613033168 26.73526778832772 26.97150670764805 27.20358398056951 27.416564577479512 27.597231683877673 27.731029749726073 27.807559735676588 27.818098567045386 27.756379901719313 27.619561736558516 27.40570584820778 27.1164160658253 26.754845297782584 26.327328050209292 25.843644668056736 25.312770602320423 24.749964739355345 24.165785969937353 23.573452649772715 22.98603202272345 22.41673525248224 21.87617166691308 21.376003585249677 20.927418567341093 20.540849856484957 20.22629705733975 19.98755172292796 19.82733286452539 19.741489982448442 19.729985616981956 19.789000435443633 19.91416007809828 20.10122948958804 20.346400289935506 20.64477041301197 20.9906120829631 21.379591272332018 21.80695139563423 22.26803295117549 22.757786350030194 23.270020873480117 23.801229990027707 24.347525899232622 24.906068985513297 25.470164500721072 26.038483642975958 26.607806197767875 27.17678365639906 27.74172275579088 28.301826813102135 28.854023722689224 29.39808671177183 29.931485674172748 30.454363900840384 30.96481965797883 31.457584425279077 31.934793682089893 32.389071988984185 32.82144392613924 33.221299210865595 33.5850103027542 33.904167537195534 34.168210699278575 34.373483253610154 34.512588188891634 34.56855875396278 34.54086756612554 34.41626599376592 34.18245513303956 33.82909357131386 33.34834280472442 32.730900998714986 31.97331671920482 31.08674015412683 30.089226063205874 29.005072698968377 27.859292747784643 26.679687501015515 25.497066289080447 24.340453575755053 23.241580520596816 22.232923719244027 21.33803646827065 20.583390065098776 19.99787329006468 19.592795752747612 19.381927104887477 19.373795789046728 19.5551095321994 19.886089318465153 20.32128213687274 20.821731158263752 21.350044447254824 21.873338969523807 22.363226514073062 22.800394525310402 23.16061938730911 23.43263472639415 23.609339971859367 23.69456832391122 23.689609758908063 23.603063322237258 23.435325932078214 23.198562627104668 22.899366984818705 22.54114541819357 22.135803641711586 21.68850906889888 21.203656154641934 20.688961788346315 20.152942598758457 19.599795165971727 19.036209968149954 18.467424866302757 17.899944482036613 17.33875353841674 16.788742542785585 16.25376341391256 15.743738925226102 15.26391039586117 14.816183334850274 14.407558930822107 14.046297699446303 13.73741406656073 13.482631676857553 13.291893937272318 13.170767273859852 13.12272594578531 13.15431048291367 13.272645760096285 13.483455338622164 13.791508727098973 14.202495694498522 + 28.301925146315877 27.85378210196647 27.3734027959501 26.863180461663926 26.325508369606254 26.64440523664241 26.565282228162346 26.57829380599528 26.666315336671257 26.82270151044162 27.026141459241693 27.260546844892183 27.51402980315585 27.7654669521009 28.000054496320587 28.205246476461483 28.366149154626093 28.472291771185976 28.515134873577782 28.48700533180602 28.384955085002375 28.2067596421238 27.954672807945627 27.63039479678373 27.23862622886713 26.792119146717233 26.294847818563625 25.76613580001615 25.212140550835297 24.64931464319067 24.0883593563391 23.542649217842023 23.022745264473304 22.539886969074093 22.105466897235917 21.729904314788357 21.423184697318376 21.188875359952814 21.03039454933416 20.94338688705269 20.928369801533446 20.981759415439186 21.09964901079704 21.277730769321586 21.512051370935414 21.797797411893153 22.130536743544337 22.50548248308194 22.9180141590907 23.363853182903892 23.838166277525886 24.3336010786794 24.849375945941276 25.380262251309663 25.923950304024917 26.473280987966447 27.028337364241562 27.586230155395924 28.144524959802546 28.70123172844853 29.254101569072333 29.802091656794435 30.343222955141467 30.87726478329712 31.402363545323933 31.919149470272686 32.42061764016692 32.91047675945161 33.379932963835714 33.831703326209755 34.254214923954784 34.64427812063555 34.994636886956926 35.292674801638526 35.53557475734934 35.71558503765769 35.814289601701134 35.831576071526825 35.75413308991143 35.56612374171973 35.259463025918365 34.82520047973543 34.25289396710767 33.53854534905911 32.69222843697895 31.73357144091733 30.685725017440706 29.573532345412826 28.4251127976477 27.27068087049316 26.13955973123244 25.065828144661676 24.078385952796932 23.20291467094273 22.471513168883742 21.90499191047509 21.518766931955778 21.327201188821597 21.342541777587826 21.548650098234567 21.89931374867558 22.351918891246495 22.866617864115234 23.410970462387898 23.949857848608918 24.45384349302812 24.903094709861712 25.274674370432688 25.55742509521725 25.743241623024684 25.836998194384794 25.839055189844714 25.75791847317211 25.598573917125016 25.36468129367835 25.068602667848644 24.712825743779458 24.31098993480764 23.85937909233631 23.374016030629605 22.858744884973436 22.319371142645753 21.762379005690043 21.19179858559588 20.615786900845176 20.037680468390136 19.465933056332624 18.9045896561959 18.360757088178797 17.837658380689025 17.33993145397643 16.8776722088033 16.456535192142717 16.076740675667402 15.748234701978307 15.478119580736214 15.270329883095032 15.129571998018962 15.064443674810292 15.080684514265236 15.18316569878707 15.375686329675073 15.66714537776968 16.0631404455724 + 29.316128919029975 28.8729049445802 28.397701889229428 27.892881081637267 27.360803861571664 27.176272234587426 27.10601654458107 27.127116976022858 27.223844139815192 27.39200926126675 27.60781359195574 27.85739539865413 28.127576873779706 28.398017245342007 28.654783729144313 28.884924514631397 29.07321060938354 29.209381965859404 29.284806895110577 29.29223401972752 29.227134308956096 29.086322785615074 28.872380547490316 28.588189556338754 28.234429001871966 27.825308839200993 27.365806129857436 26.873101108595325 26.351886484481284 25.820499220069518 25.28848963274268 24.768206948845407 24.27112653822806 23.807178131501317 23.388386958813097 23.025142262104257 22.727498188409193 22.498635929729208 22.342658366854277 22.25497897244732 22.23678245467914 22.284732916766327 22.39503656082424 22.5638592777259 22.787115163979337 23.060569160384308 23.37990963794553 23.74036148122269 24.137699577599573 24.567913644030124 25.02518608480916 25.504357977731587 26.00414322904587 26.51929079670438 27.04704241622369 27.58183355363429 28.123525483591997 28.669575917131585 29.21726435212021 29.76544338547528 30.311357464736197 30.854979636557292 31.393673924830544 31.928332937935657 32.45636525655326 32.97957054062286 33.49069238293645 33.993337540669124 34.479066907777266 34.95091983506727 35.396664010956236 35.81429141888306 36.19570823683547 36.52891761911164 36.81055930598162 37.03064606543995 37.1729705428536 37.23604508758484 37.204974461326366 37.06186434252401 36.802619207427284 36.41525139677455 35.8885014380056 35.21619074386533 34.407691329256195 33.48615630577818 32.473634274332476 31.39474810721519 30.27766484211865 29.152139050744044 28.04750043096614 26.99959442899757 26.034217938760097 25.178723557260923 24.469308094713487 23.920156703204768 23.550205105268514 23.37686468745454 23.41365854939589 23.63586287871525 24.001270156736165 24.46683242904424 24.99369567490318 25.546313941579534 26.09512342273412 26.608637186010128 27.065003555258343 27.443951882659245 27.73297058275719 27.92458253467307 28.023632005738925 28.02972318304828 27.951693674162758 27.793681162748264 27.564878200891577 27.267461832476474 26.914666873783816 26.507786756055964 26.056618936746727 25.57002681774641 25.051517849324224 24.505062436749824 23.941668347819203 23.36327153086592 22.779619815772058 22.193021128496383 21.610099278991196 21.03431864621481 20.47591237160734 19.9379287748593 19.428562432039023 18.949490814710657 18.50750493890414 18.111899160514636 17.767746478531784 17.476933270902354 17.249920254492213 17.092519456238747 17.009183774063953 17.00486218750485 17.088050041546754 17.26467416263973 17.540306613436222 17.91929826731882 + 30.422374613303916 29.984594635289945 29.515018274562184 29.015978350344866 28.48980766540812 27.79641957515458 27.737958917849078 27.765677619060188 27.873000583020012 28.048466692726446 28.27258248898109 28.536125266455763 28.81981900217686 29.106813652687908 29.385581940210514 29.63911840237206 29.854251985405508 30.021014334133966 30.1288749630119 30.171085200680935 30.143333521278663 30.042268978349558 29.867498922574452 29.622238780441407 29.310548671324167 28.939448839527596 28.52039737371557 28.06341887811944 27.578930655899452 27.080416618748202 26.57970709778644 26.08629558042555 25.61303201186506 25.170558141701584 24.768686951040557 24.418926322168797 24.13131763031255 23.908719928207674 23.756157874135628 23.668319360267624 23.64720063497678 23.689738537434504 23.79254123963239 23.951956972359582 24.16413852140355 24.425103493974042 24.730686279578375 25.0760841607051 25.45792252992849 25.872193420957966 26.311535206116478 26.774168327984256 27.25750193999275 27.75642886174804 28.267715651547828 28.78759354475634 29.31589912726329 29.84957758861914 30.386803009208236 30.92603339206609 31.465313970018453 32.00425676240686 32.541016250433934 33.07607108702807 33.607705137124206 34.13715277614582 34.65875515583168 35.17395882205404 35.67684101168592 36.169286615834686 36.638195939873 37.08422282909991 37.49582307958543 37.86486839941165 38.18455637621764 38.444205511006864 38.63040883415905 38.73787365942859 38.74932733984154 38.653470336738735 38.441526130941426 38.09777090393549 37.611326617301145 36.97932606585505 36.211861303444216 35.329598258319876 34.35418777967202 33.308631059410864 32.22231422576753 31.125616812834615 30.0485466547445 29.025678578525905 28.082750654597213 27.250242534623034 26.559334601756376 26.026574760983284 25.671012458218556 25.517673172681217 25.568633157525348 25.8029653744051 26.178590007704532 26.652613915243453 27.18651236155587 27.744980320590486 28.296477333137307 28.81438779355579 29.27373046299326 29.65548355615408 29.946489660692674 30.1407004234437 30.24122582566143 30.249107299444113 30.172055629727392 30.012845617476852 29.783469980496168 29.486414790243288 29.13003235248786 28.72227130081946 28.2697575085885 27.77620904936248 27.250606182431618 26.698608829085842 26.12815019414991 25.541345242487285 24.94712761149555 24.34925758001749 23.75484190790955 23.169070815842957 22.597707900803506 22.0424988111523 21.515363057029937 21.019676572979254 20.563562286605446 20.14750988254144 19.782703205956825 19.474588315819357 19.22910275639875 19.049715639703077 18.946170158038218 18.92442497777533 18.990446385786267 19.147938943161794 19.40359042156602 19.765172823459732 + 31.615865975053065 31.183995801380142 30.72044006517501 30.22750643442205 28.681648967800044 28.524754438079643 28.469032681789045 28.49767131059538 28.613648299462888 28.793275815584273 29.027147067838033 29.301299718018168 29.595910005703317 29.899969583558445 30.19710749969854 30.471433350975374 30.712560698985904 30.90808411454811 31.047550900481063 31.124216978999332 31.132691812174134 31.070924307424832 30.9360991780105 30.730999184798133 30.461478251492338 30.130010120921376 29.752244932011255 29.332513995622193 28.885790899609496 28.421977534702098 27.953008107570422 27.488545528852992 27.0405182237433 26.62054903066648 26.237773814432902 25.90248259758513 25.62579240860722 25.410044287819193 25.261238808310107 25.173823439748162 25.150111033332426 25.187508413063906 25.282893015462545 25.432882029199863 25.633896102126577 25.882148757334086 26.172986397863845 26.503363993103726 26.86947256421577 27.266539818508775 27.687970214081663 28.13386992024529 28.5997268838449 29.082475822737013 29.576948404105046 30.081419681250694 30.596410050127798 31.117106441955947 31.644086937114015 32.173564923506156 32.70608910225737 33.24029886613497 33.776014704012425 34.311060261885814 34.846901491720075 35.382150227467655 35.914903868418236 36.44206702962574 36.962722457987155 37.47407616810013 37.96738942105166 38.440266805298535 38.882361964619406 39.28732482454135 39.64060467830137 39.941465638412716 40.16893433731471 40.315309944748854 40.37217729423716 40.32121248678089 40.148122334822915 39.84657797214243 39.404150604673305 38.81174407364505 38.080079132632 37.233041614059566 36.29212168365555 35.281448638003354 34.229006850943456 33.163954463504126 32.116692611926005 31.11989826054064 30.200924387840722 29.392321535332766 28.72095090303933 28.204784070758393 27.86665972274391 27.728693588538672 27.79130826535375 28.034400078308124 28.41618279860735 28.894833613323254 29.430863693394848 29.990093710082096 30.54124434622132 31.057467284484186 31.51524398918518 31.895897759864816 32.18467538949713 32.37762314933609 32.475172958010894 32.48236835639124 32.40443651221755 32.243579630983376 32.01114250544167 31.713240598437714 31.35157598136454 30.94208133261112 30.481912352068164 29.9836668442049 29.452970573935534 28.894954529510493 28.316929551054145 27.72112279759671 27.116101798368636 26.506494220666713 25.897918174958207 25.29761107508648 24.709995081311092 24.142851334447098 23.600282850108325 23.08488195144531 22.608697606891045 22.176103012326955 21.793294006313136 21.463145011324812 21.19643467860957 20.999164315670203 20.87733524008188 20.83374828443171 20.877624548613777 21.01554141513153 21.253588842114553 21.59604550740293 + 32.89180675019282 32.46625307013524 32.00905537429453 31.52249950050415 29.514263476296083 29.367905648966413 29.311771507153278 29.35010361256979 29.4643120094663 29.645321886321312 29.8847019773689 30.161056299432023 30.465575485190403 30.781578763883605 31.09248661974176 31.387377923469522 31.65110028464378 31.871576416556724 32.04143547761174 32.151436358473504 32.194670955033594 32.16969026998027 32.075861021300184 31.910153360836368 31.680691416173854 31.39161778124273 31.053672629680026 30.67390968945911 30.2643170075159 29.837388863197972 29.40028111924485 28.965754650405536 28.545414889341718 28.148386543304724 27.784812696908855 27.46597569574473 27.201622489311646 26.993236479334012 26.84829427353521 26.7620618150888 26.73598138566045 26.76837994945593 26.856412630910306 26.996975169129446 27.186089567777437 27.420673567737285 27.697353125446995 28.012579149098947 28.362338524387678 28.740434112633185 29.14496781001437 29.57352508514121 30.021541910107263 30.48681794711189 30.964072482832528 31.454021051609924 31.95465551058846 32.46292145442107 32.979079499689114 33.4982537876396 34.0245300647943 34.553575567673526 35.08895917797679 35.62380987282953 36.163915682329865 36.70473072069052 37.248601119333536 37.7872703054257 38.32567686601419 38.85484909753688 39.37262080997162 39.86871217171504 40.34244123723308 40.776444874312034 41.166247554676445 41.50396841510089 41.76639702224534 41.95527239218199 42.049069763771236 42.035350407537734 41.90576797911716 41.64152439532419 41.23357274109563 40.67757432170561 39.98647709297549 39.17345975157321 38.26586155247395 37.28841162051316 36.26900852715852 35.23631054635433 34.221238533111666 33.25480817876833 32.36314850708774 31.580778534498215 30.93139725344542 30.43486508572391 30.116163799641352 29.991502413910652 30.06423320315383 30.313528571265635 30.698079824720757 31.177336843172842 31.71199795778061 32.267227342898714 32.81316854038916 33.32411737735943 33.775691420691956 34.15134110624131 34.434036974987144 34.62229240772703 34.71482117757576 34.71877146871762 34.63488171635528 34.47373091296388 34.23529106513174 33.931732040014516 33.56900552811606 33.15234240620758 32.68699681266662 32.184980430863256 31.648295988815146 31.080937961729603 30.49290221782771 29.886769694828182 29.271443630772747 28.65154310236044 28.031673816551134 27.418691782793417 26.81386374911262 26.229624834896516 25.668027377169242 25.138975818276094 24.645344850518125 24.190742630812583 23.78697642371724 23.44005125414173 23.154800481272694 22.934119634548132 22.78919866940374 22.72620271913325 22.751252239683815 22.870133634406386 23.08759921934349 23.410799844815212 + 34.24540068463849 33.826511068839615 33.37595231514735 32.895991715226444 30.49708592346319 30.344457892268043 30.290439788539793 30.321725346956487 30.431015408407088 30.613822665416166 30.848507740830787 31.12998187597784 31.438524955652962 31.758477508090387 32.08271302867773 32.39104782723435 32.67175159381541 32.91666253756406 33.111824829425586 33.250857740978674 33.328635301050966 33.33813843126827 33.28083919827511 33.155426976886645 32.96529708779317 32.71683364515488 32.419177570225905 32.07832020839652 31.70859319782377 31.31665549652066 30.913508788209672 30.509525441855647 30.116452501427567 29.744881047725166 29.401349913342017 29.098498332171292 28.846719420872333 28.646871045790363 28.506625991017977 28.422234845369022 28.39397497753104 28.42126029403724 28.501539675819547 28.63200441723228 28.80964954951418 29.03133141575283 29.29382149735169 29.59274772419905 29.925048158354187 30.285169460861812 30.67237542805837 31.08196309418685 31.51334284554465 31.959714317977298 32.42036396643161 32.89595626061203 33.38093757674917 33.877735232497464 34.38017298957103 34.89162498497323 35.40942360372316 35.9353509526647 36.46710659485808 37.004811148015165 37.54626210956369 38.09502759468348 38.64636907775191 39.199110585369716 39.75027224685623 40.30027372316017 40.83588286364882 41.35859321428123 41.85682614289202 42.32136415693722 42.74200936829422 43.11036937416002 43.41012446475061 43.62780114424126 43.75839816164865 43.7793727129969 43.679538853015224 43.45210595727661 43.07781056274227 42.551475802906744 41.891989192103225 41.11779976298447 40.2426118108924 39.298479811711566 38.31340645312043 37.315425511847145 36.33531057880147 35.40244962024616 34.54160431692295 33.789375503522464 33.16603618600377 32.69226965061587 32.39546803421696 32.286280062456996 32.36882346947332 32.62277838334997 33.00757065089637 33.4834790282994 34.0132838775529 34.56169207365514 35.097993365296716 35.59852468633743 36.04157005673282 36.40640094554907 36.68199760958656 36.860723192636094 36.94773814692939 36.94338561416498 36.85457904851966 36.687579237037625 36.44525304981086 36.135924692098094 35.76982598352038 35.34440379357324 34.87596210989887 34.36824005954384 33.81999800580404 33.24541991093204 32.648990711333894 32.03348345065689 31.40744380238414 30.775373230419625 30.14164002128158 29.515134320857985 28.8983107968573 28.300723365119836 27.720883088792235 27.172274277804974 26.658216650617923 26.188411511686997 25.76684618306547 25.39577310522672 25.08763471373275 24.84855664292088 24.68466640869947 24.602088182686536 24.604087307874003 24.70025907678918 24.89682113555611 25.19989318368625 + 35.67185152430553 35.259914424777776 34.81621900096017 31.877562193586837 31.624995874891194 31.471664863019353 31.40935214667778 31.435219237124112 31.540494819820136 31.70815283773499 31.941334667675406 32.213992914029134 32.518301246751136 32.843960830843386 33.169980252845136 33.48752114640717 33.78312369874012 34.0434243040504 34.26092369691299 34.42545779216492 34.53116959139561 34.574337142111105 34.55055921215745 34.46340647649131 34.30955553050086 34.10200698459436 33.841296356855004 33.541096665933765 33.20796697663408 32.8528316368003 32.48228202744215 32.11003597801343 31.745696355712564 31.397777708878298 31.075537212359006 30.790665815967802 30.5519183617009 30.360489262117078 30.224689127093907 30.14227207382029 30.11199890530766 30.134525293807872 30.20758662860611 30.328664970491808 30.495048512763056 30.70274362686182 30.949467833355545 31.232510824976362 31.547265022134404 31.889533751997224 32.25770715893909 32.650491626383555 33.06316814000414 33.490791580536815 33.936317593176256 34.39424257755606 34.866508297447346 35.348562525572845 35.840242481342564 36.34192629851855 36.853066205297544 37.373801311557465 37.9035241920405 38.44164045709455 38.98627495178062 39.53954340541188 40.10042872140802 40.66253663653568 41.22879675677182 41.79314459835224 42.348938831580725 42.89084953237284 43.41354993379769 43.90194614045345 44.348640614634974 44.74494144577166 45.06848725902536 45.31863402645772 45.47170214719448 45.52261423551845 45.44922204382711 45.24536012098725 44.90263708125717 44.40212736143571 43.77037942593647 43.0267899582296 42.18705287846174 41.27672458478329 40.32793921112414 39.36797287789105 38.42708746052128 37.53079504772003 36.7065409075978 35.99008046260924 35.398581409284034 34.952561985032666 34.68020109280811 34.588137988478096 34.682866409105486 34.942820966944744 35.3273160566128 35.797463295544496 36.3180262229121 36.855957285723704 37.38140940710038 37.867075168092086 38.29721629798865 38.649891000027836 38.91259706722319 39.0821809822629 39.15894622644997 39.14683842322268 39.05113712500611 38.875252504036936 38.62985187939478 38.31380813412278 37.93965650348523 37.51050738229945 37.03873817829229 36.51842478000612 35.96520469527098 35.384525070452675 34.77944605923463 34.155415546168705 33.51933978877605 32.875511590769364 32.228729568829884 31.587485752353476 30.95516958789041 30.339669913242684 29.747019013266495 29.18307419613911 28.650983174745093 28.159868907751267 27.715966517810443 27.32820872753501 27.0026773841244 26.74165918354129 26.553961409126373 26.447964822386094 26.429883750375627 26.50591289171699 26.681340020107353 26.961491621181004 + 37.16636301510924 36.76160776523408 36.32494354495955 33.18159348174116 32.93100161218384 32.76798737034696 32.69716579501008 32.70679360509619 32.79262627651486 32.95110723490711 33.163325825983996 33.42860377684971 33.72408090095055 34.03846640140525 34.365029533806535 34.683561163135565 34.984370693334085 35.2574353446718 35.48972611864418 35.67456001741254 35.80428283466889 35.875068122245025 35.88214893175091 35.82697397242557 35.709713667753796 35.5380786713058 35.31532465944643 35.051812169464384 34.75678361136217 34.43485934865832 34.09860372399891 33.757481880336265 33.4203539337357 33.098357777380514 32.79752680829172 32.529076708230015 32.303188498185236 32.1217340007146 31.991266603069413 31.911561209921683 31.87949608454605 31.897149093283993 31.96255199011643 32.07349181699692 32.22756753284822 32.422243366900084 32.654898896368415 32.921839324296094 33.21689772766269 33.54141651843837 33.89298536718918 34.26653032330978 34.65960340605467 35.07143551372375 35.49805015897244 35.94198903611159 36.39900621827466 36.86724350142914 37.34782230934687 37.839801875381205 38.34423316332987 38.85919285092204 39.386719441659366 39.924555357420026 40.471318355166055 41.02870437059199 41.596490022949 42.16798144865444 42.744689998523015 43.32352075586009 43.89279082010229 44.453536606812165 44.99228593261665 45.50209121117754 45.96651656819205 46.383768378656654 46.72630750078603 46.99358936715533 47.167876546595835 47.23348659173337 47.183006707641546 46.99435455671883 46.66914735990525 46.193608994512395 45.585157812696146 44.86949179432084 44.0620038992424 43.18670175071334 42.27712214967737 41.35963740609781 40.46127393714004 39.60835278374724 38.829038886842255 38.1557523176865 37.60370066153727 37.19235087628054 36.949450698865924 36.87864962841374 36.98669600266627 37.25199958419059 37.635921119996596 38.1010698050529 38.61187892975552 39.13521137724375 39.644664933473116 40.11640753936181 40.52885748575767 40.866300192775526 41.115262456219675 41.271743082951026 41.33766340137505 41.31654570499995 41.210571726566116 41.02840059925595 40.77477481045001 40.453582347357944 40.07291157753676 39.640739092627996 39.158347076370454 38.633510522017 38.07577744131441 37.489038585360184 36.87443564109738 36.240343460041956 35.594140186231286 34.93945854327784 34.28207467817097 33.629554922994856 32.98386454419952 32.3515840197107 31.74213960499668 31.158306185302955 30.611067144002092 30.10274237621769 29.641985399785273 29.232258736362667 28.88240394403045 28.60100979960777 28.394260476937983 28.26833562337996 28.229399463491227 28.283588923494253 28.437000776526087 28.695675419836387 + 38.72413890296508 38.326735717493044 35.02825762610194 34.69041684448767 34.42619528310962 34.2552379772208 34.15777234822011 34.15148348999339 34.215981626426114 34.34841435784946 34.541782477599924 34.77746886237379 35.05768888902428 35.359425569450586 35.67054265414685 35.98518792688324 36.284132278868825 36.55896259901521 36.80082406944473 36.99864474629755 37.14626972054681 37.238459684075835 37.27227055439742 37.24461322178222 37.159890533189056 37.02036206025716 36.832552196294145 36.6049356716907 36.343864252909746 36.05568258348861 35.75218223772614 35.44041800640807 35.13207303362361 34.83409378698369 34.55356320662758 34.30348030476617 34.091391934065754 33.91994183757819 33.793974336810265 33.716061473191765 33.68284986273365 33.695964339376026 33.754398176818746 33.85622607197466 33.99873738501363 34.179209189666715 34.3960802373275 34.64499307749897 34.92441520462597 35.2310956628549 35.563168794993494 35.91996295400744 36.29389797984886 36.686578535508964 37.0989682184641 37.52576285888168 37.96825441650541 38.42311028745501 38.892056868117436 39.37528783589689 39.87126577013806 40.38168041516644 40.90487046013803 41.442753307907694 41.989813921394465 42.5500599649365 43.1234296427646 43.70045999945063 44.287240558984934 44.87336127009331 45.456696974051944 46.025209322783745 46.580420362525565 47.09765038480496 47.57843155895422 48.001999658672005 48.35915580197688 48.630969562809 48.81729131683206 48.88689815839019 48.8442860896012 48.66472100773005 48.349170392285835 47.89081464340133 47.30305934853646 46.61450621213723 45.83865842748591 45.00294041177607 44.13838959722457 43.26879457874165 42.41920346142059 41.620240350474724 40.8949670225937 40.27321397578296 39.768831071259115 39.399936348698866 39.19154301654596 39.146499434758496 39.27061660892002 39.54251841510493 39.9248712196808 40.381728651031004 40.8796971695004 41.3884291720765 41.88009303002796 42.330773604417864 42.72519576399978 43.044007338771145 43.27607379543676 43.418199928482316 43.471758751428965 43.438776515961756 43.32558467170675 43.133500217699904 42.87199809108909 42.547865012805104 42.15986799577366 41.72238133760754 41.23292146889796 40.70492796028207 40.142912769465326 39.54488456578479 38.92222130146845 38.281028835256954 37.62633475473089 36.96091075148457 36.29229287486188 35.62686735926404 34.96927262296607 34.3249148598603 33.70271957952991 33.103069555132606 32.53615484510169 32.008321430457116 31.52840528965922 31.10016899532249 30.733387771644217 30.434159103753576 30.203729487999137 30.054279250868177 29.992180196807183 30.023640684191946 30.154822988605993 30.390765489663682 + 40.34038293378835 39.95044290883904 36.737620122033526 36.39115951394224 36.12623701267695 35.93200507074559 35.82446530286064 35.78077497783012 35.81919014750648 35.914710141759016 36.076143664080696 36.285843753076406 36.52955068301028 36.808785207072305 37.09989819576113 37.3949431632942 37.684935151844876 37.95379906234634 38.194603616501574 38.39811010220116 38.55654445115055 38.66325618215581 38.71704119429495 38.71209965892554 38.654763743217565 38.54341087811104 38.38656940727256 38.19183750696808 37.96116213747781 37.70602608700604 37.43173945902263 37.149982118673734 36.86787932388848 36.59315302263562 36.33421631369932 36.10231502304459 35.90169460048901 35.73942429771429 35.61891645354946 35.54286950259192 35.50960018603541 35.51814468141878 35.5692289327014 35.661223660950306 35.79232731355196 35.96061336639395 36.16280405240371 36.39389390554789 36.655293680743384 36.94512632204488 37.26090768954233 37.59652898303374 37.95297775844711 38.32988515553931 38.723819775072414 39.1373636624882 39.56293855514601 40.0055323958108 40.46309803732733 40.936420656705785 41.42497498447581 41.92889049603061 42.4482138104767 42.98372629958094 43.53023070920804 44.092414914639065 44.666801147282 45.25007186332402 45.83795778841481 46.43255430171174 47.01709696837997 47.594243121310065 48.150755055481305 48.67421435679046 49.155420751821524 49.58057010466124 49.93551393789032 50.204988245495905 50.38568176883503 50.454144576305445 50.40830011492104 50.232316735261556 49.92304851047517 49.478008753144664 48.912089807604005 48.2532072736767 47.51145364308122 46.720845412677676 45.90781376197345 45.08901904904247 44.300007581235754 43.56334853495947 42.90027302229193 42.33563967946906 41.88445973955705 41.563281556260044 41.39456574640646 41.37977687792789 41.523402822600815 41.8044060980074 42.18689266058809 42.6365024876087 43.121088925417084 43.61047706899784 44.080835476842495 44.51078158596273 44.881701284635724 45.178782020459906 45.39113445368321 45.51474162967543 45.55259013948389 45.507570551652556 45.38158824529782 45.18207723973925 44.914323375798695 44.5828419844967 44.18966194961089 43.74764891583764 43.25511092272075 42.72312544734823 42.15223193068464 41.54913289467177 40.92179611035616 40.27477349956778 39.6119808994276 38.93790429136707 38.259577988314284 37.58280381979775 36.91266361945739 36.25388445845443 35.61550897025973 35.00261845960611 34.421008192780015 33.87979930911503 33.3798343138822 32.93211276626424 32.54373926727045 32.22066852011732 31.971408939979288 31.802122561579072 31.71895108041549 31.727998853935738 31.83531446458186 32.04686847526001 + 42.01029885349443 41.62787396655651 38.63603765763027 38.29192562764862 38.01908769875214 37.812811275939495 37.675998554356255 37.606492247639736 37.605164662850314 37.66857030415338 37.78040242117704 37.95031845147768 38.1572131130552 38.39473571645412 38.655871087084144 38.92220502832787 39.18920805045389 39.44333537232804 39.67309498217153 39.87280953534168 40.03273496390091 40.14695585721378 40.2119947586039 40.224784616912025 40.18702585101528 40.09970723134998 39.97027586744455 39.80289284526387 39.600942321177726 39.373870637229636 39.128729452361696 38.87452011513326 38.61653753450229 38.36528950783919 38.12682230918752 37.909919941797945 37.72234809560184 37.57044009887727 37.45541595001721 37.38135055186161 37.34778147775215 37.352614245429066 37.396602361809094 37.47903107435815 37.598398480998895 37.752459024759695 37.93837126357832 38.155619296670935 38.400897538475014 38.67236488440544 38.970132731229 39.289164381852125 39.626606354115175 39.98638335176748 40.36595524336619 40.76151914968112 41.17503850019546 41.6029426636499 42.0505188249011 42.512957263639116 42.99414903944224 43.490377342830406 44.005807271941116 44.53593629299275 45.082798892086124 45.64043888790231 46.21715466717131 46.796661066045964 47.387250009933496 47.979700220517906 48.56396293641152 49.13995930473346 49.690104992296575 50.209949881324164 50.67910370341675 51.09615367908984 51.43685267820184 51.69631874669739 51.86362881288999 51.92379584920107 51.87103251975314 51.69335580597454 51.38899013224683 50.95569331041465 50.4132402929548 49.78302446727359 49.08269563516657 48.34247650942417 47.58100413655977 46.825860388374714 46.10456046737813 45.435339856750076 44.837629490932855 44.3393940807511 43.950390475420285 43.683937053942905 43.56045165845242 43.57984561357065 43.74522722404692 44.036171480048594 44.41841898912486 44.85933581281047 45.32888392888783 45.79997445751354 46.24884895409219 46.653286983930485 46.999542315351015 47.272879669016326 47.460972635527646 47.56429375860306 47.582622802517214 47.520393494714526 47.38219056040048 47.1697563752598 46.891265773194434 46.55343818169295 46.15759869508974 45.70941611286693 45.21341941545876 44.67899277902106 44.102620478375975 43.49708642129443 42.8664324774569 42.21432708518091 41.54486265993134 40.86372949286948 40.1769829920183 39.491184166625075 38.8105759696642 38.13921350557715 37.486473664917476 36.859237928618384 36.26015299045572 35.70055714079404 35.18442061374423 34.72070171567332 34.31384602361934 33.97356507251524 33.7048392784998 33.51352533181892 33.40755318445642 33.394078741704085 33.47779175730472 33.66465247140354 + 43.729090407998726 41.12355059854085 40.72184605322417 40.38610545655864 40.09781045493742 39.87620837660023 39.70994078683029 39.61495288569168 39.57080823286033 39.59012229690141 39.6607180788952 39.778058531780836 39.93832781239716 40.125747604896354 40.34254580954708 40.57110429624252 40.8004503610233 41.02877405787037 41.23781580453781 41.42237090881016 41.574183904032026 41.68765501620743 41.75498681948564 41.77799903756556 41.7526087340777 41.68357084480774 41.576011521228544 41.430142993205976 41.254014392339435 41.051469369398546 40.83268312867405 40.60173370263763 40.36791787618479 40.13860931610232 39.91693490217242 39.71685589596774 39.54180195294527 39.40016066847239 39.290174043552526 39.216945685371314 39.181609063007976 39.18361828681936 39.221880215407 39.29617995035181 39.40407207188431 39.54380077154452 39.71496201358308 39.91624077444452 40.14631914009058 40.40281517764583 40.68111231035056 40.98145938792508 41.305234749559496 41.646960407121185 42.01088249678519 42.3914496847054 42.78917341848973 43.20727238855891 43.64110330065421 44.0961455874583 44.5658859982037 45.057117064607844 45.56325899915658 46.0903932634159 46.62974695112465 47.18537780500995 47.756500334222785 48.33187712827786 48.918667430197495 49.50161940931572 50.07955154062741 50.64124619051295 51.18093840196421 51.684739705034424 52.13806084286604 52.53842018682412 52.859755933171805 53.101703773494684 53.25111673710114 53.296866467674676 53.23428073340589 53.05134294545046 52.75125256426846 52.32958362567395 51.812481573570345 51.21323250569982 50.55900166518993 49.87024326582641 49.169879337502266 48.48433304149743 47.832790974537424 47.236856456446375 46.71477919594224 46.289121981114164 45.96521700188749 45.75692571264706 45.68100207966628 45.73747351961936 45.92719184499219 46.23041144263623 46.61454221392232 47.04869343678344 47.50457456101661 47.95642357856681 48.380857676442545 48.76064745443536 49.08146837705577 49.32708790499103 49.49116723405425 49.569351398647946 49.56682337266302 49.48461676101737 49.32793336349579 49.101824028033754 48.81144267822157 48.46189111046253 48.05786701024571 47.60304773988241 47.10488512883158 46.566030819118374 45.988987963129254 45.38197350755635 44.74812853422974 44.08994072343918 43.413717056005154 42.72626081365332 42.032688652468366 41.338469106228466 40.64900181334719 39.96842052786779 39.30524596377796 38.66620113587741 38.056091601346345 37.47979114987185 36.94783936584884 36.46353899672972 36.03871152315807 35.6766695509173 35.38610978812256 35.17431512865413 35.047329641389226 35.01115103780182 35.07170733028645 35.23482931158289 + 45.49196134321659 43.38262071130459 42.99858947943161 42.65527768593578 42.35622521401919 42.11534718005749 41.92358377744421 41.78735517844488 41.70523153491384 41.675321528400026 41.69643303109776 41.756230227269555 41.86416382891605 41.99993611335314 42.159639268074905 42.34007599946248 42.524941938285586 42.711328269987234 42.888011280421914 43.04519852455973 43.1789674928019 43.27949152883809 43.341932750043696 43.36558940164858 43.34574781666862 43.28812630415525 43.195215503477684 43.06639451509361 42.90976242690703 42.7291572280322 42.53248356893585 42.322653578494155 42.11066056008797 41.898883694077554 41.69498576933319 41.51077026880346 41.34747813329316 41.21402075444956 41.10751653504303 41.03607218955553 40.99958029404051 40.99768534839857 41.0298240235772 41.095263612506926 41.193138684773984 41.32248594502933 41.480605128639205 41.66659483772634 41.88049007926523 42.12129489337828 42.383650833963635 42.66641106346309 42.9731960625651 43.30183788111105 43.64874952080785 44.01517860586321 44.39901997846612 44.80395360238823 45.22750477058152 45.670458896490956 46.13239663897345 46.613463995147875 47.11282212022641 47.632093313850035 48.163773250552204 48.713670244610874 49.27318353295365 49.840930380188496 50.41312290751093 50.98499960081306 51.549221753878506 52.09303397295157 52.615327031809024 53.097153536167525 53.53034522956039 53.9074599836831 54.20521780726228 54.42388918724206 54.55183168234126 54.57902214360002 54.50429726604307 54.31423285447089 54.01694513317461 53.60979914359146 53.11795021952906 52.55542351946485 51.949944884565944 51.31628860869903 50.68388759010586 50.06821837214989 49.493572473712895 48.9782506362034 48.53332761715925 48.180856804045646 47.92819690654574 47.783344283157625 47.758888480365435 47.85471655859466 48.070583724568785 48.387595195089226 48.77488549597511 49.20311515586529 49.645007966621264 50.07750516237937 50.4799913807619 50.835232737140444 51.12805730741224 51.347546590234984 51.4840518535025 51.53750375939619 51.5098735520335 51.4060159291472 51.22943531381832 50.984515879510894 50.67764676952975 50.315008859493894 49.90098804714189 49.43674090396582 48.93174528752438 48.38522632656158 47.80464158500335 47.19585038913413 46.55889682573006 45.897576295972236 45.21925530598415 44.52841876713099 43.83004093398985 43.12946736499563 42.432135489218894 41.7423269334304 41.06810911791172 40.41616740310415 39.79349230962772 39.203240775492176 38.65634189698124 38.1582669723655 37.715637387869464 37.335955782537944 37.027312560577336 36.79297796555082 36.64264833302068 36.58219104156221 36.61740080418442 36.75397116693564 + 46.227380062376895 45.81589233802252 45.43823856999238 45.08586013458925 44.78096061258131 44.51267145390166 44.290294196735 44.11532451996014 43.989995067795505 43.904705130523496 43.87299577691316 43.87771879436904 43.92127402371056 43.99802862746635 44.097089512022876 44.22029983172419 44.35249367539452 44.487179137953255 44.621651020950125 44.741119564682414 44.844542459199104 44.92123193893089 44.96864799962024 44.98207217911654 44.96043054685666 44.90648571107407 44.82021283287155 44.703322458143006 44.56069428185031 44.39734544261008 44.21751478347718 44.02664820718651 43.83366116780595 43.63677376259456 43.44920269134828 43.27961029400506 43.12500941581386 42.99850296191072 42.89791610234081 42.82820674981897 42.79071928651043 42.78525340172591 42.81143798694613 42.86876239137583 42.95660626817364 43.074268011357425 43.22099178338555 43.394928262455515 43.59350949456285 43.81732398203655 44.06391937634636 44.333026088629694 44.623223652227516 44.93726188115703 45.26943283688276 45.62042579830284 45.99380555225239 46.384403248794044 46.798815833541326 47.228574129895044 47.68242161493002 48.151034372334195 48.64260835081493 49.14923072751144 49.672144494312334 50.20797644159698 50.756737393987656 51.31213477548098 51.86774686287722 52.424431935479305 52.96901994851586 53.49400092714202 53.9937041463075 54.45023224160413 54.85812509049508 55.20702457218636 55.477953918707556 55.669392467259236 55.7733917228585 55.77974287049624 55.689384222118136 55.49451199036832 55.19932581589937 54.81029511736102 54.34435532346663 53.824019742788046 53.266847927400505 52.696536907510584 52.13184399191723 51.59241551804825 51.098454549261916 50.6625276567647 50.299592928266044 50.025375869115706 49.84355984203085 49.761938927515175 49.789023455004546 49.926652538096924 50.17072228495512 50.503248489051 50.895142798426974 51.31902035162069 51.750015872850504 52.16598343214659 52.54771789059186 52.877877936165106 53.145314002569926 53.337933993378506 53.447070373101354 53.47363843042103 53.420606758320055 53.291773122490426 53.09231356120309 52.827187757335686 52.50121670957525 52.12103242485069 51.692006314461864 51.214145478597786 50.69946204525371 50.143406203106764 49.55699480935965 48.94409274627471 48.30064741071786 47.637568350221386 46.95805943061222 46.26570916486623 45.56467244326661 44.85994412234601 44.1569040483193 43.46016887908559 42.777216305979586 42.11467450565837 41.479500525637036 40.87774022259518 40.31493969393121 39.80150527265728 39.34113703380827 38.944067683608225 38.61399623157431 38.36113570685192 38.1912248040862 38.108676933948985 38.11849336122277 38.22658236090995 + 48.79650770974076 48.4034792790846 48.02449159134437 47.66946174323219 47.3470378101932 47.05046471029481 46.79918025908815 46.57871974176683 46.40496289530988 46.26848824962309 46.1748381894704 46.11727161403465 46.09496032948131 46.10641068466501 46.14087386009581 46.19834091741042 46.270249646273534 46.34707059964046 46.42867953201037 46.502559894627275 46.563988320871644 46.60833586232565 46.63028667403838 46.62342153492802 46.590657780831165 46.53181502714695 46.44427143279499 46.332818968233035 46.19819280654821 46.0467862679141 45.879284023504106 45.703510709376786 45.52419859593522 45.341574494251034 45.16831048784612 45.01010045158771 44.863797515898284 44.74397414501766 44.64942790554295 44.58136300714135 44.54303830621198 44.534369026774826 44.55514105365318 44.60503435975761 44.683645414669314 44.79050857452304 44.925116453189496 45.08693927475732 45.27419721945603 45.48120191020286 45.71261180444992 45.96882036234838 46.24503590853693 46.54364856147254 46.863536636394265 47.19966106738438 47.560023241756504 47.939249537655954 48.33999770517146 48.760148027361765 49.20060251586654 49.6594707699986 50.138634477849 50.63377037994413 51.14560515975829 51.66691033184717 52.20289501753847 52.74169258829693 53.28169553588484 53.820071657986205 54.34327909534436 54.84573148946915 55.318936733979584 55.74757341990792 56.12649933450265 56.44389056508281 56.68587071008173 56.84798127494997 56.92680147068503 56.911901621457815 56.806165321351926 56.60774704519798 56.31731612343514 55.947402847848736 55.51228397386807 55.03458873185732 54.53201972725862 54.025258403158766 53.532436200783096 53.071140177382105 52.65677086625828 52.30477691010781 52.02262957893743 51.82398116034596 51.715029912429415 51.697979228789684 51.77649039220213 51.95530228688354 52.22788026232782 52.57722792902724 52.975935537427496 53.3982039838963 53.82065044952213 54.22248851465859 54.584656477053684 54.893452622864125 55.136990668193455 55.303301940253554 55.38622157975895 55.385360374735825 55.30558157884362 55.15094883697787 54.92618922707713 54.63702129992814 54.289204870821244 53.8889887324363 53.44184111752021 52.947674268344166 52.41915215772508 51.85021921138983 51.25412359176674 50.63077915403176 49.98111222916818 49.313370575508564 48.63052068509394 47.935849872234044 47.233028513448836 46.52377854454288 45.81565228492117 45.11334547076379 44.42351831560329 43.75259373001498 43.10733729940106 42.49483781035153 41.920306907210716 41.3911109085852 40.91694546399642 40.49994653262626 40.15264552684487 39.87704019943466 39.68283072351811 39.57633322319585 39.56311507702566 39.64862685341643 + 51.50444122251641 51.1206819827028 50.74395681555112 50.38017581455254 50.03609955197528 49.7150735739832 49.424122172035496 49.16070356719984 48.935271899836955 48.74055545007301 48.58323613324942 48.46056836221137 48.366940007364704 48.30872615463411 48.2731428792693 48.2598478662677 48.26442930739767 48.27850275581436 48.29853789342886 48.31924091184527 48.3302644249151 48.33349342143459 48.31858950852017 48.28396224637758 48.230521201600865 48.15705967392822 48.060654027962784 47.94674306238926 47.813971392569464 47.66847339028052 47.50858391497444 47.34363561983333 47.17398344808203 47.00299006875701 46.841733777739705 46.69063507836057 46.55370254253463 46.4396681230361 46.35082615773329 46.28427377723933 46.245263260551305 46.23378167375751 46.24973245170352 46.29295040383699 46.36321609116569 46.460269574328905 46.58382353278209 46.73357575509491 46.907933217096016 47.10327861597953 47.32063214069745 47.56261221663478 47.82837987025055 48.11174741545778 48.41684955376025 48.74267306964085 49.08896390654369 49.45815497964072 49.845047096731506 50.25526246460898 50.682411482900065 51.13153417561387 51.597739677553534 52.08280870563521 52.58081201600178 53.09020751692152 53.61199335605999 54.13394310708411 54.6562691060664 55.17405141626856 55.67383426543687 56.15103448406767 56.596088775542846 56.99519280837784 57.343057910387564 57.62739520504301 57.83957657788062 57.972159550905275 58.02452031941775 57.991206004202056 57.87254192161239 57.67146353265955 57.39050834694278 57.04141463557059 56.642059303299064 56.20976252581425 55.76455640819186 55.32326092489942 54.90391886668646 54.51993329447543 54.18682807879822 53.91501710074824 53.71277854460015 53.58889859983471 53.54847642869501 53.59245383872861 53.72191745187301 53.941728423727376 54.24279884648461 54.609838164109064 55.01710941642482 55.44024072424424 55.85672298262898 56.24697583169544 56.59435130032257 56.88516696599788 57.1066191530931 57.24971332574197 57.30714742874133 57.280126588818305 57.17310662844436 56.99127248005338 56.74000763347398 56.424874548873085 56.052099420239664 55.628188952590094 55.15857685644603 54.64415143104447 54.09703362768964 53.51183113950691 52.90195278504783 52.26517435591599 51.60588939707645 50.930487936010806 50.241713371628165 49.54065207013981 48.83047617979441 48.1176568551683 47.406217932366786 46.70065784554966 46.006052253378435 45.32846675566392 44.67458282869185 44.05144363998934 43.466413801740096 42.92442516354247 42.43391152968373 42.00375851273533 41.637025063163804 41.34487126929059 41.12979773958228 40.9958740883918 40.95368990998155 41.00851057431138 + 54.32651141690322 53.94935788987341 53.57002691290279 53.19357784134158 52.82989451251173 52.47732369119507 52.14711024249304 51.83805795253143 51.555768830926496 51.303225069642565 51.07897181552843 50.88690012469172 50.72156850846823 50.58793554787496 50.478064364096355 50.38965373341175 50.3220401411955 50.26620258358862 50.22021808833294 50.17903253291771 50.134978525249586 50.08866826906626 50.02887034897195 49.958001918269154 49.87516053796427 49.77719981634857 49.66438102231496 49.53919271562991 49.40124185853888 49.2538852353402 49.09712079443332 48.93820492910126 48.77374319481335 48.61158824227274 48.458824037289155 48.313589511659714 48.1846461179447 48.07539615427176 47.99016466172815 47.92622766798784 47.885156573125904 47.87058471389202 47.882493645011365 47.92081654810916 47.98509562480456 48.073394920454625 48.18702793874156 48.32585251719966 48.48665899850719 48.67222532343566 48.87819838822114 49.107046632765574 49.36035452270844 49.632119443168236 49.92395748586109 50.240312978362184 50.57398894795621 50.93253717797355 51.30925291948343 51.709219381955236 52.12682058878284 52.56681439808468 53.02199836489529 53.49716363176203 53.98181500953308 54.47919492069602 54.98569286380389 55.491020621491245 55.99434909469101 56.489644532288764 56.965576453813455 57.41624557280868 57.83210228118031 58.201121871422906 58.517456096716785 58.76898362563121 58.951903449864425 59.056661807439916 59.085214083268625 59.03564351766356 58.90815271818737 58.70787599638936 58.440594622136864 58.11745460926877 57.755976216041525 57.37335100060021 56.98692207721377 56.61277349572839 56.26621717643514 55.95903273307657 55.70340261645937 55.509642536240214 55.38233819469189 55.327851785068205 55.35251923907964 55.45316832163412 55.6305448163722 55.8858672506628 56.21474189506776 56.6001178821273 57.01760629903681 57.444088035736755 57.85855012987989 58.242269658230505 58.57901009867729 58.85551935875283 59.059230684961875 59.18190897971564 59.216664689282815 59.16457455083341 59.03109414743637 58.821733117626614 58.54236590182082 58.19929676758792 57.79910424365846 57.34861961062881 56.85289239892279 56.31470698234592 55.745148680615756 55.13956603327829 54.511499973551594 53.857648274331666 53.184508204783924 52.497429636712525 51.79836029808395 51.086126352246836 50.36922972343518 49.65099669811011 48.93513052553796 48.22576708834607 47.527524841096586 46.845549085385976 46.185603283022424 45.55440149117843 44.95922755771654 44.40582134465968 43.90005430065898 43.45098439764728 43.06680005666942 42.751827525269526 42.51492115548546 42.36307875353992 42.29580985439531 42.317499105264936 + 57.236721000934295 56.865417398821876 56.47829129842965 56.09043137538282 55.70011134813581 55.316626754517095 54.94443778697147 54.586316861179746 54.249229353952124 53.933587924458436 53.64200220028079 53.378477387696734 53.13861231612938 52.92731510575532 52.739873537848595 52.57293976145397 52.429348592453174 52.299009425502234 52.182503806243545 52.07349802488213 51.96867037457693 51.86414127666139 51.754907282943634 51.64049483762498 51.52064119430814 51.39064181664069 51.253503178412544 51.109283189274436 50.95823847584251 50.801711301546256 50.641110378792376 50.48042183259363 50.31760287505818 50.160000772286644 50.01100176684465 49.870515042659854 49.74786697643831 49.642168614756116 49.558277668856505 49.49543670909386 49.45368025222068 49.43691243782523 49.445144723349756 49.478382427298776 49.53662599446895 49.61987220994341 49.725616563919424 49.85289129514901 50.0035515878635 50.1784078287467 50.37701469234922 50.594787758848945 50.83683802190407 51.09990187208918 51.38146319485646 51.68780678749439 52.01458218143782 52.363610988361195 52.733800283384824 53.12462004681857 53.535386277083404 53.96579745922069 54.41308960681728 54.878555997290626 55.351016723184976 55.83633886588448 56.326634102432145 56.81630399152391 57.30009687901262 57.77275321238042 58.22459759508946 58.64856159536348 59.03543305196915 59.37502051272991 59.6610026642571 59.88176787559525 60.037210757681756 60.11795585014437 60.12719210526495 60.06504216642937 59.934278330057445 59.74090811828132 59.49208002490569 59.19931626107494 58.880613649253426 58.55036111243366 58.22391552261622 57.91746733505167 57.6415411874371 57.4084750920045 57.225612277911665 57.104008408406486 57.04504489599736 57.053027416144715 57.134556659183765 57.28592301920649 57.50600100225303 57.79274395312083 58.146521757361974 58.54948280345124 58.97849867716907 59.41138476319168 59.82779535518678 60.20945233878992 60.54068013919796 60.807530834173484 60.99841408028529 61.10461804015239 61.12016204060434 61.045491933788995 60.88665279821574 60.6499199626983 60.34206067989279 59.96960016805887 59.539698889337586 59.05969134004707 58.534013386597415 57.96827171360155 57.37204216340285 56.74197771358102 56.09139202983735 55.41681553629908 54.725559920186434 54.02272524814153 53.307557764593476 52.58354947107475 51.85682413076102 51.13048224498567 50.40794730930049 49.692640713513896 48.98907364118392 48.29970649043379 47.63249918263211 46.99248597366519 46.386438388675664 45.821576325938736 45.30559413278071 44.843674148131555 44.4438939062394 44.11249545005393 43.85045131512932 43.669394600966825 43.576842814348474 43.57290849559044 + 60.21408487593738 59.84111742900831 59.447449729660825 59.041143387808035 58.62524823661438 58.20769671829549 57.792085803903994 57.385534270413615 56.98994836750279 56.612445589014115 56.251853905975864 55.91569865239223 55.60013522877866 55.30974200873787 55.042360081810806 54.79568094006843 54.57199200338963 54.36523764239386 54.17275599113653 53.99362556252025 53.82325039564461 53.65548580222209 53.49115268525183 53.32728475962716 53.162696756665106 52.995509472512566 52.82718360465781 52.65719482689631 52.48609474452599 52.313874344759725 52.14278255735148 51.974308354481266 51.80721916825328 51.648759939573786 51.4993665839282 51.35980283608714 51.24037617879977 51.13538060469258 51.050034829674765 50.9874543131668 50.94697592093534 50.928239168280044 50.9333891946111 50.96245739734013 51.01550378910246 51.09260991523373 51.19246656143002 51.31310661807199 51.45622730815699 51.623120406053474 51.8140361714258 52.026441886909666 52.259828127571474 52.515471093437036 52.79202931626624 53.09125316878843 53.41346377508086 53.75584013341382 54.12118735971321 54.5052864297143 54.91049684995099 55.33325692629995 55.773510651069884 56.22848462430263 56.69133283496967 57.164981713042515 57.63987004354661 58.11414388971413 58.57867180339795 59.02947124210664 59.45788477911094 59.8562120497913 60.215701681488135 60.52780410253355 60.78549153686868 60.98009714996262 61.11117995972758 61.17375373316273 61.16993243660522 61.10212530226342 60.97440362671758 60.794088760109 60.57074300391724 60.314830043835954 60.04079999122793 59.766685103393584 59.502133388845714 59.260307331256364 59.054343871259185 58.88850494213921 58.773336142608045 58.71467801651824 58.71584883027289 58.77749363863655 58.90558138044723 59.09807329229292 59.35293070234441 59.668252228369326 60.04070634343257 60.459846576184674 60.90103507697776 61.342729688554144 61.76488673222899 62.149364728483775 62.480569281118115 62.743544617639756 62.92697122445819 63.02186233515408 63.021987171361765 62.928125602532646 62.74640755782386 62.483482394262616 62.1466456456808 61.743546481665746 61.282021223680324 60.76999551716092 60.210999577687545 59.61421202908294 58.98677759703356 58.32826597660438 57.650184035643655 56.95075960248799 56.237106678051134 55.514250516300706 54.779723417501735 54.0401437212109 53.300111511712124 52.56255520738604 51.83066588053097 51.103533029619 50.388998989120765 49.6923003087261 49.01831703012644 48.372473588522325 47.76046245591422 47.18703516068961 46.65978820676854 46.181514596851336 45.762562460424455 45.40988926040821 45.13154604320732 44.92905779452428 44.80296883475052 44.76806969422353 + 63.228230615318964 62.85238046896091 62.44862993225068 62.02252089440782 61.579719704864594 61.12623150550746 60.66833185743447 60.21061675627487 59.75895208442918 59.317741390245885 58.88921102402601 58.48001429218686 58.08852364658846 57.71878430064675 57.37102806975846 57.043583046582384 56.73863038017819 56.4532597480107 56.182711860602375 55.93065318415838 55.689245201688074 55.45652502105133 55.23272208730155 55.01468168888812 54.80031687248694 54.59055388231825 54.38528040954081 54.18383262756666 53.98670408057083 53.793160580410984 53.60576239899246 53.42400138398288 53.247574460023564 53.082416725993596 52.929000725692376 52.787203745868936 52.66605793328242 52.559273324777365 52.47296964169899 52.40922338809555 52.36787054148834 52.34885617124511 52.35148188592818 52.377373364999855 52.4265841815668 52.49798368712269 52.59251901418648 52.71045933644131 52.849433102487765 53.01122489206116 53.19682585763369 53.40648305428879 53.63422693099076 53.88515910254249 54.15942266937179 54.45443924008558 54.7736911213696 55.11233085577648 55.47402160845172 55.85411743424086 56.255089256491544 56.67209582929595 57.106332209009004 57.552065437490505 58.00630880316013 58.46909851007879 58.92981570117591 59.38929445676575 59.83596693959395 60.26650837551102 60.67325348389766 61.04826017429234 61.38335808946388 61.67128330399608 61.90486867504908 62.07913809288314 62.19238360116775 62.24299218233449 62.233568541048065 62.16857971346357 62.052851946840896 61.89364978806385 61.70115039726683 61.48872094108389 61.266805797340915 61.04734085329301 60.84561171357873 60.668846322355456 60.524365006351644 60.423086754285755 60.3645992411889 60.36068953127275 60.40881078489338 60.51356597619967 60.67568028758637 60.89844235079325 61.17822857228572 61.51359620836621 61.90188727924443 62.332838488984834 62.78576002264264 63.23817656451746 63.67030805656182 64.06314859392889 64.39952430784471 64.66459154648511 64.84703812464242 64.93595627036127 64.92575169253072 64.81688709347048 64.61471980423177 64.3276884531729 63.96307418745018 63.529269486412126 63.03488313012636 62.4874487357869 61.89284992942157 61.261270101171114 60.59808255802467 59.90697491297026 59.196960574248756 58.46843318216274 57.72725132400391 56.97982001026533 56.222427769676685 55.46322005837702 54.70609077190201 53.953855342949 53.20556681131437 52.46615231532205 51.74167030361071 51.03614459698965 50.354052982990716 49.70037435699012 49.07776056285072 48.491894060610306 47.951133268839385 47.46084285981324 47.03015958219453 46.660423429244034 46.3549940132854 46.12736655085395 45.98079092260617 45.907844469383065 + 66.25311563611568 65.87334532234574 65.45608032232401 65.01006473761345 64.53837486559408 64.05010765191132 63.548498009599946 63.04192984043586 62.53342438066936 62.030542928517626 61.53478798324287 61.053665643125186 60.58728448768218 60.13884541383562 59.71176916011317 59.303001532456584 58.917459571822256 58.551266521029106 58.20350458870308 57.87641698021125 57.562024274768774 57.261719369659914 56.975339863697414 56.69877011004682 56.43163688324448 56.17506675323542 55.92816137818748 55.69061000308516 55.462373569897046 55.24284666337617 55.03414026914141 54.83374319481942 54.64416799249341 54.46798304283993 54.30600960793919 54.15963939383679 54.03217457804389 53.923588396922455 53.83460518213749 53.768536573254174 53.7250378491616 53.70391982610827 53.70512513663918 53.72870531179886 53.77479866659996 53.843608988757886 53.93538503069099 54.050400804786754 54.18893668193357 54.34827446991794 54.53120170201032 54.73806201436103 54.964955352334535 55.21392584497456 55.487115827228976 55.781177827452765 56.09834437493562 56.436518286748786 56.79574024617142 57.1743454312379 57.57188740686238 57.98557478466487 58.41497299067375 58.8530839364504 59.29989536347548 59.75282230136105 60.201361259455176 60.6464126493273 61.07835968728058 61.49112706110603 61.87906676176758 62.23430175760258 62.54935713474887 62.81781447539938 63.03353535211895 63.1944634586103 63.298073726664114 63.34589089952708 63.338964268039305 63.286043147889934 63.19217451449652 63.06451576877465 62.91196234201317 62.7452686795516 62.580323222328545 62.42223877137487 62.27920654167922 62.16336780688772 62.079637476700825 62.02895938490403 62.021454342493314 62.05691416938067 62.14139636305599 62.27299839476119 62.45679668651539 62.69590156892822 62.988775851093585 63.33488746416501 63.73234659758484 64.17268487596766 64.63589972261647 65.10033106419199 65.54498557271198 65.95002238120995 66.29723916853638 66.57129062619248 66.75896287162064 66.84876033332141 66.83307849754533 66.7138895627356 66.49606963593021 66.18646256542571 65.79483748065657 65.3305947695095 64.80226308753797 64.2171040067748 63.5857179152735 62.91681293103273 62.214434547759815 61.48665897548425 60.739350714170975 59.97762161148246 59.20434406875664 58.42734812168661 57.6430814244398 56.86000460374356 56.08174546335225 55.309755776726206 54.543131838650396 53.789459792569275 53.052626479484175 52.3363383991113 51.64379917075193 50.974959776865475 50.3399476842044 49.74422158376646 49.19381281220679 48.692570986263796 48.23995864160118 47.85071051602286 47.53201320233177 47.274603181739664 47.0956398253326 46.99600475274344 + 69.2643779437937 68.8769208731859 68.4465852777933 67.9781942194344 67.4793982195811 66.95516384400459 66.41244079418422 65.85709517100113 65.29458001557622 64.73149005372025 64.17098520542582 63.62012448932198 63.0802686265729 62.555949341194776 62.04988178667712 61.56256378415398 61.09660918328054 60.65108942250736 60.22638688713954 59.82187200661683 59.435501469020394 59.06641435564461 58.71524571823131 58.37767085370609 58.055192043533275 57.748699999409624 57.45661090347303 57.1792168665709 56.915787745016885 56.66642319801514 56.43175878069126 56.20935654623835 56.00264121054934 55.812191529712294 55.63818228732577 55.484081369771715 55.347750531422484 55.23569622887162 55.14260628984851 55.07311358735708 55.02684547394386 55.003457570868214 55.00277045626128 55.02474106117769 55.069435037610546 55.13700009846977 55.227640329523794 55.34159147330458 55.479097184975956 55.63991608953589 55.82248366929124 56.02830057729209 56.256577075341006 56.50617993836046 56.779549189308554 57.07536671225212 57.392756013068144 57.73192762049053 58.09083359523698 58.469312752833716 58.86522115917996 59.27709939486364 59.70242369485419 60.13535656553966 60.576238597238635 61.019739834813784 61.459653242575705 61.892562307352264 62.31247354494093 62.71088975378324 63.08396410373801 63.424172680306306 63.724842110357294 63.97972404905641 64.18557010622506 64.3416468384642 64.44533878447848 64.50021195989864 64.50874212790434 64.47698562620995 64.41440641699153 64.32838562429663 64.22584067761953 64.11556247311152 64.00603447626749 63.90959549646043 63.829317460766674 63.76888294460689 63.734926871996805 63.732251626630884 63.75805595717667 63.822879670397356 63.92569003892148 64.0711416259733 64.25974310993499 64.49950430361275 64.79218165668028 65.1376272937206 65.53616980936496 65.9808836396152 66.45242544621297 66.9287460588069 67.38797507049424 67.80912013708767 68.17291476588883 68.46255242027517 68.66180673954193 68.75930182103548 68.74486001073836 68.61941442435968 68.3899552547911 68.06296889418157 67.64739881899253 67.15291079736923 66.58953457262729 65.96738309611419 65.29645504108242 64.58651763162618 63.8411560053915 63.07369190939395 62.28548953563731 61.48537854463997 60.67540030082493 59.86429456774106 59.04893255652521 58.23746352818306 57.43387915469287 56.63737807619383 55.85051813478346 55.07943086435941 54.32747820099593 53.59664664988842 52.886467781137334 52.20641716965856 51.56098660297476 50.95515235416904 50.38652427788661 49.86634927641875 49.40283998710741 48.996635129534376 48.647645847166906 48.37331120156685 48.16198714733172 48.02794903828787 + 72.23547819196666 71.83978240442896 71.39445353394629 70.90519103886496 70.37928597497348 69.8212385301031 69.23885749093976 68.63743101379553 68.023663480569 67.40307285152588 66.78128962574293 66.16334702675572 65.55389800149418 64.9560817079319 64.3745373815648 63.811215555048065 63.266096254951336 62.743818214824245 62.24300517604245 61.76223939211931 61.30410399860107 60.866201258563365 60.44872974408362 60.04949039830254 59.66986416189543 59.311263543789764 58.971633627789146 58.651373800542586 58.34992417490777 58.067311411547045 57.80330320230128 57.55573210801381 57.327924446478214 57.12108056667413 56.93199976296311 56.76638529680513 56.62060886899108 56.50098470995518 56.40440679529198 56.330433947551576 56.28011217142481 56.253757541030716 56.25121247308122 56.272313486341304 56.317014395853136 56.384796632247145 56.475657208628526 56.59011680567505 56.728345070376704 56.89049397533524 57.075808161384806 57.282727120882214 57.51291177533627 57.766163562814015 58.041877793677614 58.34074823777449 58.660487951112266 59.00188836213631 59.36260806998074 59.742262597956284 60.13857247549755 60.55002065572518 60.972172606339555 61.40269888493039 61.839480273687386 62.27611889835308 62.70988442333685 63.13362933331804 63.54353173084067 63.933412575637455 64.2965957215808 64.62766106651834 64.92082057105051 65.16999942749518 65.3747843927205 65.53566290522187 65.65068698335621 65.72422142429203 65.76017765645179 65.7643449044353 65.74368929442977 65.70644716605962 65.6628287229651 65.61612824358707 65.57208891438253 65.53501496754434 65.51083031198392 65.50553171481207 65.51517449255978 65.54190165367548 65.59324819416669 65.66587564323964 65.77228248343786 65.9113046982915 66.09138313048234 66.31591253612343 66.5945620084057 66.92922403112709 67.32042467594724 67.76361733316864 68.24000872269191 68.7267831899669 69.20101133571796 69.64035041274145 70.0246278188662 70.33394810348729 70.55135700167816 70.66195200790288 70.65698804814987 70.5329991246671 70.29598412489281 69.95388694307624 69.51675704349918 68.9942943462278 68.39759129795789 67.73882672704417 67.02832502982888 66.27393677519365 65.48475479728127 64.67302149171763 63.84029599744556 62.99897024348092 62.146672722519945 61.29706935633089 60.44672924455259 59.60212818769685 58.76895004152166 57.94465504554844 57.13385204718644 56.341934731587386 55.571789908456296 54.819708835818325 54.09477536372858 53.40118668577296 52.74367217480352 52.11711475529881 51.53549426132215 51.00409438446401 50.51860735530253 50.08941474400332 49.727655837581295 49.41649483875872 49.18309092937609 48.996252859307795 + 75.1431405796599 74.73868668307739 74.27844885145556 73.76919560459778 73.21801966768169 72.62847560257839 72.00938283205866 71.3653755540451 70.703590897296 70.02997156413562 69.35028766523722 68.67008104295947 67.994979552121 67.32753438309169 66.67478064048551 66.03718705386534 65.41771564914536 64.82133542988105 64.24529945769295 63.69138514367608 63.16271096121824 62.656734274156584 62.17249731243938 61.71210131291291 61.27502778529158 60.86250685254516 60.47391122042854 60.108577395902856 59.76715106950018 59.448577558144954 59.152091968792234 58.87731046180789 58.6261785364658 58.39897134537887 58.19311998100894 58.013897013649895 57.85736488090481 57.728434631926085 57.62607796453735 57.546220062125784 57.491899845892874 57.462841174410975 57.45857366565838 57.478793736239226 57.523330793439804 57.5921145535909 57.6851434867366 57.80157242348819 57.94200380396197 58.106631138808076 58.29544969550159 58.505893728434636 58.7398684149092 58.9975892846107 59.27772587078205 59.580461831928034 59.904767544592815 60.24966808845557 60.61407782764789 60.996309060114136 61.394977883289044 61.80718775954593 62.228755844215364 62.65873366626741 63.09356329176229 63.52651402604148 63.95708718881393 64.37531188914072 64.77932436675005 65.16506608054206 65.52507848898811 65.8538460271062 66.14679042521855 66.40080895726896 66.61477581777366 66.79080017383635 66.92960812876579 67.03458530035562 67.11067411383983 67.16360062277056 67.19966805789828 67.22467706658075 67.2437162493342 67.26526753382153 67.29034442617713 67.31758833354323 67.34648110509512 67.3778087606679 67.41904426611109 67.46356135779651 67.51492343088036 67.58429233099716 67.67400393232023 67.79428962488018 67.94939501075739 68.15059013648532 68.40296480133654 68.71545719003622 69.09203959793183 69.52783444095444 70.00464960562795 70.49881539931829 70.98619668832903 71.44461196631673 71.85016039365219 72.18128675942434 72.41926872449707 72.5492690619044 72.557123530096 72.44211022273471 72.20670922601609 71.85807531326721 71.40521048412519 70.8588580484967 70.23117844936633 69.53497376362536 68.78138730531941 67.98189648780088 67.14833089133164 66.28794670500734 65.40813673910458 64.52056491327036 63.62410035984083 62.73123292888061 61.84215833014487 60.95992250836678 60.092906643532075 59.237424932010924 58.39894526829292 57.58260333234371 56.788280878312015 56.015672807092095 55.273149214240945 54.56441060981899 53.884581301093185 53.244314270050914 52.649698502722444 52.09581935719005 51.59327226393791 51.14866636225128 50.7520110064283 50.426470081278 50.139442281124175 39.21263390568364 + 77.96569896779576 77.55328780171999 77.07830733445526 76.5513926627528 75.97707961454346 75.35921044114708 74.7077382096041 74.02447690155275 73.31989342885666 72.5976754144129 71.86505535700812 71.1283116593236 70.39111173663431 69.66028173047901 68.93989072802515 68.23300970603407 67.54383627430853 66.87554421101567 66.2281933958405 65.60440481954933 65.00651515047338 64.43410243338461 63.884815814367975 63.36331090632134 62.86901763027954 62.40189053363929 61.963763713731325 61.552428756919355 61.169287746890824 60.813222315710696 60.482157361126795 60.17801705768424 59.90178926831019 59.65116443030603 59.427257212047586 59.23158699623374 59.06374535975511 58.923569972349924 58.812445607894766 58.72864249864891 58.66981378074551 58.637686128199476 58.631619221752565 58.651154437338285 58.695977936808994 58.76588496263725 58.860745336591506 58.980470162386155 59.12465709366819 59.293143917221485 59.48563342977239 59.70149941493639 59.940969373324336 60.204022630653576 60.49012549541069 60.79852357969339 61.1282784111232 61.478634986035026 61.847767437640194 62.23464234239404 62.637042011381105 63.05076930204454 63.47518697371226 63.90669952507387 64.34116826114517 64.77509042807097 65.20447962819631 65.62289742049322 66.02674847214054 66.41361158878327 66.77655296552406 67.11118953600463 67.41399414033562 67.68299118964973 67.91814087189246 68.12081353904836 68.29613236862674 68.44607624844869 68.57585693640993 68.690568540729 68.79570876450316 68.89499277926035 68.9902925725218 69.08116946058922 69.16637872057434 69.24760526114966 69.31788836260792 69.37738541245099 69.42682565388208 69.47301026510594 69.51649208336994 69.56265092127359 69.62666190225325 69.71366476590481 69.8364852989714 70.00215146035657 70.22338428126463 70.50691807295372 70.85866843604444 71.27924812826821 71.75130385143211 72.24980844990102 72.74893006927897 73.2229423906922 73.64709021466169 73.99854679678361 74.26014013012532 74.40963492635565 74.43595080112803 74.33325188154704 74.10498813121069 73.75614131049721 73.29552237238488 72.7334281331521 72.0816299666061 71.35179326052854 70.55725940911859 69.71241296047862 68.83228733730321 67.92158669244586 66.99252862773179 66.05452005467754 65.11193311628759 64.17131437650487 63.24001858306268 62.31599474630299 61.411026560940336 60.52096055767926 59.65115406589854 58.8066999931564 57.98489325794067 57.18974906408639 56.42749453904721 55.69643453441412 54.99871667276005 54.34361970986301 53.72730975291497 53.15541074352268 52.636969260114974 52.161725920682144 51.75083675291186 51.377224400736054 40.88468283073515 40.54605954921523 + 80.68421639288692 80.26322986742224 79.77715656177705 79.23492815891456 78.64027921581858 77.99923549022844 77.31788575249347 76.60219403274797 75.85901633551754 75.09408374750711 74.3147237777894 73.52555772347328 72.73337929601229 71.94436318660458 71.16100086204659 70.39064034864235 69.63644874937118 68.89958434812847 68.18561883065186 67.49552670990992 66.83086419563254 66.19392946270325 65.58278080958038 65.00065642305061 64.45014171627552 63.92964216953346 63.440889341680204 62.98367716025634 62.55733805898325 62.16194770677277 61.7957100223005 61.46131353847906 61.15799759944352 60.88247696951769 60.63916887228821 60.42522340516642 60.24435031043395 60.092210251553475 59.97170662792016 59.88123443892489 59.818811974990716 59.78319211084997 59.77515545863116 59.79407833694575 59.83948987446252 59.911034135955624 60.00843350403676 60.13145331657174 60.27986775978125 60.45342196187119 60.65102594916632 60.87286236454072 61.11887246308708 61.38885305775603 61.681621055559226 61.99713715004271 62.333640167838496 62.69075362820923 63.066040142077924 63.45930344640727 63.86585854988905 64.2849315414053 64.71390841450437 65.14925339900623 65.58728656374326 66.02545488429847 66.45750591169083 66.8810289024273 67.2914335298203 67.68587141634634 68.0593855155893 68.40861908913816 68.73113845692096 69.02608526171717 69.29410085830942 69.53764520325039 69.76236502023704 69.9712579740498 70.16862426341453 70.35855559169606 70.54307836235564 70.72147848442246 70.89024365762269 71.0454041404497 71.1830145891756 71.29955489175056 71.39583325268087 71.46991095866157 71.52126129245347 71.55334222190102 71.57584776415852 71.59459798824066 71.61887575530783 71.66777293224857 71.74729719596083 71.8737320507255 72.0560398890546 72.30475706394077 72.62937311716885 73.03001385118004 73.4909453293725 73.98643934234151 74.48955434799092 74.97331572253113 75.41217068433677 75.78551055297874 76.06585770882513 76.23698477543923 76.28095162082663 76.19382709702053 75.9768087955124 75.63419805453552 75.17299107267029 74.60216690994875 73.93244876116766 73.1765784862803 72.34974525656915 71.46482272546491 70.53347725551873 69.57410058773597 68.59591313559078 67.60348461902717 66.61232643514131 65.62064038657762 64.64354487563604 63.67455587517553 62.72776038865844 61.799824186574604 60.89524073697168 60.01898928013219 59.16760399408348 58.34700650778767 57.56221899485357 56.806109529411906 56.08973860323942 55.4145969590094 54.77635829162424 54.18937041215525 53.64242592812489 53.1521795163006 52.70152016320217 42.73543488136241 42.25082198336249 41.880366832000426 + 83.28262269119148 82.853698091664 82.3586634112667 81.80624902475566 81.194634305134 80.53439651845946 79.82953365059949 79.08622278468182 78.31000378449345 77.50981588232241 76.68771292108784 75.85373046383341 75.01306207083692 74.16999192936792 73.33140552502518 72.502769593535 71.68756559295639 70.88879704498531 70.11181960966094 69.3593221201667 68.63244188004037 67.93269076005333 67.26242375378365 66.62268043023683 66.01609891320415 65.44370753358389 64.90458230110649 64.40158411718078 63.93228488496823 63.496502559729244 63.09518791365043 62.728809283814435 62.396092777491056 62.09601990261135 61.83153234896044 61.598491187110845 61.4021057118821 61.23834941436375 61.107348953731986 61.008897600554185 60.94136177555733 60.903132749065996 60.89289286445019 60.911139822855255 60.95723824999251 61.03066832032352 61.131094923084085 61.25814481889868 61.411351642322884 61.59014938209176 61.793716438030984 62.02280449624395 62.27613923415068 62.553580816995556 62.85465525394578 63.17750523365033 63.52275802169945 63.88710035076562 64.2711205205214 64.67090962508739 65.08426179927905 65.51100296686997 65.9465862764028 66.38883880020822 66.83437399441016 67.28026857896454 67.71970170335537 68.15335537614575 68.5778739316744 68.9871223631962 69.37949683697863 69.75271352203175 70.10545610774861 70.4378153507013 70.75156272519494 71.05018468631809 71.33820479293637 71.61991582931668 71.89661091221542 72.16732384497281 72.42979935342001 72.68017394121381 72.91286785139124 73.12154940980041 73.30088188314924 73.4465302318142 73.55584487284295 73.6311369580756 73.67419731527032 73.68762006146869 73.67905500895284 73.66228461144867 73.64661525736875 73.64685819369004 73.68190842805613 73.76209850969047 73.90138729151099 74.11278673092527 74.40336122953808 74.7771079411524 75.22026245455326 75.70646185133891 76.2077831294364 76.69658191998967 77.14908077771044 77.53472514134194 77.83281622875958 78.02170014304235 78.0843639352766 78.01348549883144 77.80936024239253 77.47558492756659 77.01828372154205 76.44561339113709 75.76756446891835 74.99569703939866 74.14357308675224 73.22494527275417 72.25213690438727 71.24396776287735 70.21244908252635 69.16786648828078 68.12398419379836 67.08117777619742 66.0533072845363 65.03872698103699 64.04658301258021 63.078459429253634 62.135239033823666 61.22360964545151 60.34081671224383 59.49161444070955 58.67956959399793 57.899256657234226 57.16238868820729 56.46159983438729 55.805798126670325 55.193490855526846 54.62751236418796 54.1075587584945 53.63638343737775 44.13321529593087 43.61696287011279 43.21587026578022 + 85.75095646690015 85.3154524417306 84.81548473573807 84.25258004072109 83.62907837224358 82.95665014551791 82.2312601859617 81.4675762997808 80.66497270322215 79.83341218999294 78.97731782002438 78.10493374757588 77.22116630904677 76.33155404875549 75.44383394268397 74.56270524104792 73.69168641311758 72.83683709524162 72.00163664423425 71.19057302848651 70.40564434690732 69.64727356856028 68.91976865174622 68.22550222370465 67.56494174761576 66.94127890735614 66.35459433302026 65.80445008707072 65.29253123758623 64.8167749411399 64.38035624197654 63.981103704254274 63.61860232444527 63.29258805848327 63.005213772096525 62.75368318813245 62.539749115540545 62.364313596798745 62.22253571664193 62.11551792689753 62.04161020628 61.999452768167274 61.98793164978726 62.005566634282374 62.05234462973776 62.127776957644315 62.23125439475409 62.362210045338834 62.52058527257345 62.70542985542016 62.91601531834762 63.1519339358845 63.41403189702035 63.6996845750413 64.00949945910732 64.34177788268809 64.69567107593386 65.06966756518028 65.46229826550218 65.86969594953815 66.29400604415511 66.72953644142129 67.17481588451247 67.62747942837913 68.08391269727188 68.54004164568707 68.99440362799713 69.44528733215661 69.88842803892587 70.32111677477855 70.74133533402005 71.14840209492233 71.54211048923041 71.923884335202 72.29661091345065 72.66369297037012 73.02814183339439 73.38841770429268 73.74324734022491 74.08985288362427 74.42361156911569 74.73815661340355 75.02533048245428 75.27756575305693 75.48853157283786 75.65343941346158 75.77005007867767 75.83867800848235 75.8640921840575 75.85265550287426 75.8116396664746 75.75300630244386 75.69483027732272 75.64805927235037 75.63260689240235 75.66478788515454 75.76015394478719 75.92852237597695 76.18047809816443 76.52283757048923 76.94248606988056 77.41247355953 77.90722527228259 78.39669702564588 78.85188149673839 79.2449317822833 79.55622523825987 79.7587092809942 79.83705385467749 79.78080050708067 79.59039548373526 79.26821664190656 78.81859852466347 78.24931048240016 77.56935891409684 76.78889410470124 75.91884050379794 74.97540286467547 73.97235253428576 72.92262846749398 71.84226550020092 70.7463152032181 69.64720464453403 68.55339260385557 67.47235931811072 66.41039817126062 65.3698546382646 64.3595560033865 63.374325422994616 62.42535427974514 61.50811307902704 60.627381216470326 59.78597984979216 58.98014013875718 58.219404207592994 57.49374005425964 56.81888373068723 56.179491418850375 55.593712839333904 55.0464569715572 46.18575943596779 45.52971166864168 44.98327978919933 44.55288436229568 + 88.090507018547 87.65060424013532 87.14487310802396 86.57316815135913 85.94229670032884 85.25582661495834 84.51840031732753 83.73755173538189 82.91511740357774 82.05913474269923 81.17720819904852 80.27149742708569 79.35127640707802 78.42278572592576 77.49188809777202 76.56354033072536 75.64331150763553 74.73759659713585 73.85013234823518 72.98442908350772 72.14505809976748 71.3331573141497 70.55154508383922 69.80431256897259 69.0937442240092 68.41994223042998 67.78627318708469 67.19151501255051 66.6359144709857 66.12288910019586 65.6491793647807 65.21831121197954 64.82439044264869 64.47399035444501 64.16175418823603 63.89076295756626 63.65998943655454 63.47049502977414 63.31801112235123 63.20153338840361 63.120772256116595 63.074122313246725 63.05994028150454 63.07714326662072 63.124828121405024 63.20276282500812 63.30980575239651 63.44541282578739 63.608749762047395 63.799158943402944 64.01780265454168 64.26228092081018 64.53156456542126 64.82761490784588 65.14610839037135 65.48900814629758 65.85237177067032 66.23707124846356 66.63825766085114 67.05912598171915 67.49378325616945 67.94060441078429 68.39974646108341 68.86531223905125 69.3360588342779 69.80877821337128 70.28477424958763 70.75757148540008 71.22621066009937 71.68955119934128 72.14676469362632 72.59795616919536 73.04420219914843 73.48852698413629 73.9322145584767 74.37416745696667 74.81369081621432 75.24911819785203 75.67721999685301 76.09362525995152 76.49145859905082 76.86207209722184 77.19525608146367 77.48214122562835 77.71598724997433 77.89214510029608 78.00862943308907 78.06652670175421 78.07019597695364 78.02957756708494 77.95386682074228 77.85557972771578 77.75211346315055 77.66058627907223 77.59702835956553 77.58148928602488 77.62808138052378 77.75074130089503 77.96322233060155 78.26994324578506 78.66218929792586 79.11268061867992 79.59178889829379 80.06972561849282 80.51779666034612 80.91673484323503 81.23093275845207 81.44376100060802 81.53121025041088 81.48812091645817 81.31075243368412 81.00033866164789 80.56070061397928 79.99764336634364 79.31978423723788 78.53666454549025 77.65911134988255 76.7006761835055 75.67498214143727 74.59253388473111 73.47541493331673 72.33166715668278 71.1808223847105 70.03484500716756 68.90030598754363 67.78904739545784 66.69869402821968 65.64262617274828 64.61469814861886 63.62631632054972 62.67234548775563 61.75893943023098 60.885748466343166 60.05208625882364 59.263458326808156 58.515022641116374 57.8126080281514 57.153562378405525 56.53970974790936 55.975294076230036 47.61023417956198 46.92494907474029 46.34994703883527 45.89172363328771 + 90.30407507382179 89.86196648449265 89.35156923642259 88.77219749804411 88.13504242887305 87.43826967338879 86.69235849100598 85.89510429701258 85.05891166771723 84.18389935908468 83.2790545863464 82.34850838289239 81.39865664270711 80.43736511836475 79.4694862698199 78.50032838061487 77.5373475163908 76.58547679216517 75.65055948290698 74.73633919194597 73.84622716913883 72.9837638478457 72.153106373694 71.35612309810143 70.5960360782941 69.87664316087756 69.19590680198122 68.55747633084651 67.96237150296618 67.4093831338896 66.9025528488486 66.43553297165066 66.01449524305679 65.63646858104225 65.30048669407759 65.01018754675907 64.76083118698106 64.55605120027911 64.3939121896667 64.26839457352692 64.18057436771626 64.12879674912632 64.1116069933146 64.1277484478815 64.17612112395682 64.2557415995274 64.3657042346066 64.50514369824505 64.67505347932462 64.87309892390492 65.09822107833439 65.35107135587116 65.63075015909297 65.93426060381826 66.26507524985927 66.61640918301343 66.992407622652 67.38657681361015 67.802690370226 68.23511414072847 68.68266553784808 69.14625386264234 69.61913982362337 70.10084376836112 70.59177890276585 71.08873964259092 71.58821021534946 72.08975124356333 72.59142034373387 73.09365007509271 73.59818420468984 74.1062016215314 74.61639790500108 75.12829370796858 75.64124232771066 76.15424109291725 76.66532714248281 77.17126390592753 77.66729433139412 78.14682789944494 78.6012367458555 79.01980470899407 79.3906942811185 79.70434393524238 79.953837849283 80.13481251204809 80.24596641679967 80.28938542140729 80.27064835135167 80.19947706711618 80.08924471529629 79.95265742835093 79.80654905017722 79.67243309104448 79.56432516935395 79.50500583419499 79.50684326000066 79.58787284227319 79.7580793855059 80.02404610091536 80.37984267995913 80.79969237694374 81.25379725776453 81.71385777573992 82.15453689053273 82.54263291957845 82.85624337521926 83.06975918401866 83.16383438626586 83.1284403396966 82.96107858895672 82.66160935058295 82.23256858740925 81.67882214877983 81.00733152933954 80.22778293878866 79.34947726333628 78.38178137904369 77.34116510368554 76.23933257451984 75.09344258251761 73.91227903475195 72.71885151570052 71.52033085235254 70.33513795133926 69.1716625094822 68.03327414000996 66.92945596522571 65.85926604896886 64.82818010625074 63.83723755168785 62.88802145869743 61.98181937417333 61.11961288245064 60.3015468045185 59.52845064741973 58.798787988750576 58.11910298657422 57.47936199302128 49.84846659766042 49.0315828361043 48.31895258947221 47.71713891723392 47.23270259049745 + 92.39863633372066 91.95311304726356 91.43449685916113 90.85304186770729 90.20928583971997 89.50657258087885 88.75006428290685 87.94446107684068 87.09472138143752 86.20684168300812 85.28238357988933 84.33168036350501 83.35920530648289 82.37027696622836 81.37080839033032 80.36777338420409 79.36735319471799 78.37566801286344 77.39770376769951 76.4387241167019 75.50369079136517 74.59537422821087 73.71687971175196 72.87467635207553 72.06921835086656 71.30256345426035 70.57975882229874 69.8999117468669 69.26414276716969 68.67612253958406 68.13140972901398 67.63436861991565 67.18216980467778 66.77816784898847 66.4188924344918 66.10642460932146 65.84178280803857 65.62168613021586 65.44605513594516 65.31179583597941 65.21688944962543 65.16004474428652 65.13964923988162 65.15428359626644 65.20268091079912 65.28437910708861 65.3984842050418 65.54347025872505 65.71829114252465 65.92186946913591 66.15638141395763 66.41789835492008 66.70563680358508 67.02148059929317 67.35985770614899 67.72551123976557 68.11085156477827 68.52104100234133 68.94931620894101 69.39649352398474 69.86207124059202 70.33990004714607 70.83110393846404 71.33720715327331 71.85152452322019 72.3742399062471 72.9032331894558 73.43921159290298 73.98550964137944 74.53885591543181 75.09922422297673 75.66617567316561 76.23859081072627 76.81525928988994 77.39500143031529 77.97569904559539 78.55393025444917 79.1251379641848 79.68273937412002 80.21861303354095 80.72214982667964 81.18070690721017 81.58153184402435 81.91488444136827 82.17399044556235 82.35501991098096 82.4575225351959 82.48466173124804 82.44322105881092 82.34363676870926 82.20112669879632 82.0294074919728 81.8457827158291 81.67250356658126 81.52483277078468 81.42415925995306 81.38386247187596 81.42358267091292 81.5504187926403 81.77239489412162 82.08658745118954 82.46924316044635 82.89613011280747 83.33408132180571 83.75096496680322 84.12343880361884 84.42760562025279 84.63492895555483 84.72781526713563 84.69606412278246 84.53469310687193 84.24376999443152 83.82497308679334 83.28176501304036 82.61949907297458 81.84668057135427 80.97116670628407 80.00399355593763 78.95874151447717 77.8447068685977 76.67800640279955 75.47335076041497 74.24387770729487 73.00538566407567 71.77230912399925 70.55823060222424 69.37432440571116 68.21973356977313 67.10803369572008 66.03158418326852 65.00419865822339 64.01620998871843 63.07840027537706 62.18416025442934 61.33669908895489 60.538488750898935 59.781248152052186 59.07526879257119 58.41552064109817 51.29218845974065 50.449672844991376 49.71174728808284 49.08502972260845 48.576135745665816 + 94.37344371041586 93.92158491981037 93.40262843809714 92.81839550039885 92.16791188152709 91.46165314832503 90.69763203524408 89.88572114249222 89.02570933406668 88.12434843989115 87.18838539303677 86.22014328831088 85.22831766788447 84.21735101818844 83.19186341821568 82.16012908814635 81.12788240527847 80.10096065696075 79.08575181693821 78.08718339623233 77.10985328848923 76.15915485831549 75.23913545730852 74.35258064769435 73.503145029168 72.69633578667259 71.93146167443004 71.21119632213127 70.53945021323237 69.91348153305103 69.33580862395041 68.80587554708104 68.32728592116071 67.89361064633597 67.51341092106037 67.17927988743249 66.8963964650008 66.6621417332153 66.47451712166954 66.33129965169488 66.22901900459411 66.16636944244996 66.14249614562938 66.15581961980078 66.20490586821293 66.288428414484 66.40513160052018 66.55379515956332 66.73433141974171 66.94682884531707 67.18798372260062 67.45735488367895 67.75666797534113 68.08045859120186 68.43347129173257 68.8082584045381 69.21039507180967 69.6320342025941 70.07746152747852 70.54211201891113 71.0219355293939 71.52242505839037 72.0387169736807 72.56675364056903 73.10789310626922 73.66296711520262 74.2325196685139 74.81354787369587 75.40685597791145 76.01182114684812 76.62728857999117 77.2520644170235 77.88480404699851 78.52390015349006 79.16717396960348 79.81121375130921 80.45151808226815 81.08206792020056 81.69467623411309 82.27944687703635 82.82474778597816 83.31598635601696 83.73955331213571 84.08645922876399 84.3503368232872 84.52807814798058 84.62018757642132 84.6309192553145 84.56818354701787 84.44376990447653 84.2729088896128 84.07079497895309 83.85519966682894 83.6485366464836 83.46612192414844 83.3290808242853 83.25065006959983 83.24985587942398 83.33338533165744 83.50910338403045 83.78163632724417 84.12886708006461 84.51784373925473 84.91888859691042 85.3086359259036 85.65772269910447 85.94121708253834 86.13623620760437 86.2211899511806 86.18488640750792 86.02547510321345 85.74002643897119 85.32936369795328 84.79614024435655 84.14492591157155 83.382674633872 82.51633583993 81.55549569050426 80.50974640238728 79.39231804535305 78.21735318861785 76.99599156476665 75.74184540700912 74.47589675598313 73.20296573540429 71.94438668819559 70.71280944685871 69.51325564169319 68.35687029421406 67.24008886137908 66.17273177255676 65.14822915693004 64.17528773561449 63.24932243842372 62.3724192501751 61.54652939251918 60.76217363489725 60.03061278463132 53.69409786753793 52.73017212778982 51.86437164561997 51.10335824581768 50.453793753172135 49.922337610533845 + 96.22974756851947 95.77762164327382 95.25613745431144 94.66575419973506 94.01575546286195 93.30309865303583 92.53812308081613 91.71707318482052 90.85060870628733 89.9404055942078 88.99229438654041 88.01261049778968 87.00459427780227 85.9738825919683 84.92799518695955 83.87239793954394 82.81287561353503 81.7560664695785 80.70760282155881 79.67319344832767 78.6594868475858 77.67026670139569 76.70977675210503 75.78326144616179 74.8954754551911 74.04778942775657 73.24345400282664 72.48748326670413 71.77797588955966 71.11698794990583 70.50640983243616 69.94666447003098 69.43834415088834 68.98085294099214 68.57556639913905 68.2226679229123 67.92154245987213 67.6719784389826 67.47235160175437 67.31945735355508 67.21092613879179 67.14309220550071 67.11565427195407 67.12714598735081 67.17597857526097 67.26066586462525 67.379788844963 67.53409435763723 67.72150326685961 67.93972708134422 68.1879153415281 68.46845889148727 68.7756246041144 69.1130990034499 69.47599295880686 69.86668003277582 70.27992814766951 70.7206499513458 71.18095851499139 71.66308944382163 72.1672842202373 72.68929876941884 73.22715488667923 73.78747285231063 74.36432159529045 74.95764494024984 75.56740606739376 76.19383925824006 76.83545208939678 77.49127547554569 78.16027560846108 78.84096957413404 79.53159081407973 80.2298702662536 80.93234162456157 81.63483613496544 82.33186705910938 83.01495953206451 83.67598006589068 84.30227366762963 84.88141745568925 85.39855923841837 85.8388671650712 86.19405307755406 86.45895093593853 86.6313043444526 86.7126152368922 86.70818259293655 86.62691110405727 86.48226182597854 86.2882375968456 86.06159846953915 85.82082975743621 85.58720820091673 85.37564884240268 85.20811359014905 85.09556820213459 85.05679203219066 85.10330663054549 85.23933268823242 85.4660050973291 85.76460211537442 86.10653983472974 86.47177259227547 86.82472009150352 87.13871882510294 87.39830764612216 87.56972169653467 87.63873996408515 87.5941151005853 87.42994460404435 87.14523921652555 86.74007840521202 86.21590816539297 85.57642433427672 84.82610243847 83.97096802609349 83.02052303712942 81.98340562240476 80.8720574032131 79.69319097796111 78.46592945491385 77.20196367999671 75.91153384671222 74.61448047822587 73.32216647888386 72.04702235559897 70.80802374723028 69.60436016124049 68.4496418861628 67.34170681731666 66.28145136189002 65.27568079609956 64.3166269160544 63.409250737657466 62.55659605476538 61.745710535543395 60.98831358010251 55.14683513705053 54.16211958920518 53.27554667738678 52.49381053792217 51.8236053071382 51.271622696842556 + 97.97411155532046 97.5191701606637 96.99368312765651 96.40487474740772 95.74984580024372 95.03756509815226 94.26506653859832 93.44262920149984 92.56889746193337 91.65227728551363 90.69676919346348 89.70477691567372 88.68354221393862 87.63849850099724 86.57447730348875 85.49825044252722 84.41594320655449 83.33327171129864 82.25636241316595 81.19146729066073 80.1440052247708 79.11911857204149 78.12299171819465 77.16052436955808 76.23472399939381 75.3490351508627 74.51049672774859 73.71781133991404 72.97186815391818 72.27902065121476 71.63613558745337 71.0484708745568 70.510705705905 70.03038541503555 69.60060549319992 69.22905262588571 68.91069043855975 68.64721056920025 68.43394626598628 68.27137365274456 68.15532797912395 68.08329976821591 68.05221259991846 68.06178002455685 68.11026499040905 68.19602784930919 68.32001871784121 68.47907022643665 68.67138603262387 68.8951408952386 69.15415445008597 69.44233711543242 69.7607510658257 70.10967192782411 70.48535198497244 70.89013517049045 71.32065532064867 71.77503691857211 72.25640727096783 72.75893812223151 73.28389513450007 73.83399057528817 74.40431388246348 74.99516688142376 75.60617815412674 76.24025468183908 76.89568329567136 77.56901686339558 78.25958144632236 78.96606940396204 79.68703771779035 80.42076936281566 81.16509653607201 81.9171168804635 82.67289698284223 83.4272981891328 84.17258080276534 84.90106139508897 85.60134004626408 86.2625642378531 86.8680841016267 87.40362918456452 87.85571300178289 88.21532088013714 88.47845013453572 88.64436000447238 88.71553648544393 88.69856038704413 88.6032864739445 88.44240880022694 88.23122134998722 87.98659544691823 87.72857627011938 87.47425846432424 87.2409390870703 87.05049651647406 86.91343105936161 86.84362033180088 86.85249600827022 86.94367326485002 87.11907389306876 87.36710006926205 87.66828057925721 87.98395876404959 88.28981635526922 88.57014592980288 88.78930897445842 88.93489852411015 88.97973482034826 88.91668567889002 88.74326794912999 88.45523734036956 88.05186071000604 87.53459872910484 86.9056223289079 86.16832417323803 85.32846757854236 84.39313371424237 83.36828583077227 82.2659683712011 81.09662408363319 79.8719964782536 78.60276769411912 77.30452222589395 75.99170916476318 74.6750199621684 73.3714042329093 72.09277551371595 70.85238716283082 69.65849726369757 68.51193063107328 67.4174858666052 66.37803168183963 65.38675061219628 64.45175835224434 63.56960967663676 62.73262584933344 61.95084047833597 56.59041732325262 55.5877328313841 54.68306537968849 53.883129239641775 53.19463868271987 52.62430551633297 + 99.60651362896975 99.148934911783 98.62495251912216 98.0310622581967 97.37636042774446 96.65848140502415 95.88674607319074 95.05809758145223 94.18183055463486 93.2599055414329 92.29562278164231 91.29576784845544 90.2641788037173 89.2051082029929 88.12619732728281 87.03288496440206 85.93079792174701 84.82567236379626 83.72413818037508 82.6319859529805 81.55484644642064 80.49901926891381 79.47053942560471 78.47366229294892 77.5128756260647 76.59437173150602 75.72099615600209 74.89252019833619 74.11512182377784 73.39039619467232 72.71774293614814 72.10097193534706 71.53707187119578 71.0330619811975 70.58217425289456 70.19036719177176 69.85588110102476 69.57789233516672 69.35382001282102 69.18045592650168 69.05693832686902 68.9797328022472 68.94586491324846 68.95352030811318 69.00167723993027 69.09057898499083 69.21760319654129 69.38066156176583 69.5780455209417 69.81044655235213 70.07696901352867 70.37320030143641 70.70473588790111 71.06375927587946 71.45538914330243 71.87229378268016 72.32134829723141 72.7938470473153 73.29388261602737 73.82212956486548 74.37305482823118 74.94745197660593 75.55209388072726 76.18041895067518 76.83249237628026 77.50625129190473 78.20189434133863 78.91812049447465 79.65328216895857 80.4064711511299 81.1758793823581 81.95932357723576 82.7540621590507 83.55643616051535 84.3615274060067 85.16210289684415 85.9511581498899 86.71851924026078 87.45235797751523 88.13956142312362 88.76565630030426 89.31242972578023 89.7701486553955 90.1311404529422 90.390951342994 90.55020976501514 90.61286873124399 90.58605111791856 90.48022490293864 90.30864717913094 90.08664164909972 89.8324639553789 89.56301210252623 89.29695254431596 89.05336782585552 88.84363688983277 88.68604736068285 88.58726450493738 88.55838889728423 88.60548635326163 88.73712888625154 88.93959910043237 89.18298683870397 89.44590389454909 89.70815946923537 89.9365333034193 90.11767519761425 90.22486729997449 90.24001798864522 90.15506225913573 89.96458826414728 89.66713959744284 89.26176108150808 88.74838098659194 88.12809709056752 87.40354207038826 86.57956876726608 85.66051273829352 84.65486771029558 83.56979676462969 82.41377288091238 81.19844740455672 79.93670536864316 78.6401056635799 77.319500012847 75.99205233183375 74.67018649755718 73.36446613346624 72.09201492778335 70.86262171103637 69.68066371783335 68.55584557234512 67.48120558933805 66.46201763900419 65.49764053900253 64.58940306843158 63.726904756380335 62.919756297210064 58.02437374212181 57.00671384172388 56.086795191921865 55.27133942622199 54.56706817813041 53.98070058074608 + 101.13184867945905 100.67160492150805 100.14225602964281 99.54967765742076 98.89029217287415 98.17372687744421 97.3968238220997 96.56746024112587 95.68751729485071 94.7595197437917 93.79022236988543 92.78273399898964 91.74035862730481 90.67076484925025 89.57906165112674 88.47064278880923 87.3505805435444 86.22594895709369 85.10261782072898 83.98645365175169 82.88343123684358 81.80026724773333 80.74203291422994 79.71399868696963 78.72115196543234 77.77113956056291 76.86402205372542 76.00369812873251 75.19644770226552 74.44210764769248 73.73999165109049 73.09667267295207 72.50869149977004 71.98034099397856 71.50968718582673 71.09826111861042 70.74886861744874 70.45659567149572 70.22124121911519 70.03905295434082 69.90819776456375 69.8256685334633 69.7891912614584 69.79517464551498 69.843520670143 69.93444300898182 70.06450932377587 70.23186766362531 70.4345996954609 70.67512274389128 70.9495195740179 71.2558221999046 71.59874813173067 71.96939882381304 72.37637658310703 72.80922403864567 73.2741367470135 73.76849787468173 74.28895809468094 74.84121473334142 75.4220714496143 76.03007789527939 76.66401286857817 77.32669590988107 78.01654331796169 78.7307302997544 79.46734812767775 80.22593681366614 81.00511764961304 81.80314134503215 82.61786251536357 83.44675806199487 84.28651447138444 85.1326409772195 85.97945147034301 86.81991189676853 87.64474843567467 88.44281149409238 89.20369632031272 89.91062834958723 90.54985722231774 91.10502279945756 91.56408622456513 91.9231871215462 92.17913393936739 92.3323435523667 92.38825734641689 92.35498825308952 92.24338492697758 92.06729184586109 91.84206915573617 91.58385904824885 91.31130810560066 91.04269191554816 90.79043743804014 90.57070003550031 90.39353899260077 90.2721685553331 90.21168133458708 90.22529255571624 90.30797351700824 90.45229519869801 90.64538074535292 90.85828848602331 91.06091798993742 91.2424263303959 91.37314524606693 91.43742275956845 91.41795838917326 91.30222101618472 91.08917900655061 90.77833393050926 90.36628042060379 89.85287086103544 89.2392383519187 88.52740063973437 87.71961091364517 86.82030233527547 85.83442666691415 84.77009673278808 83.63482667150399 82.43951798072983 81.19068956096639 79.90259571749893 78.59037077913344 77.26049944749272 75.92840703786746 74.61167625199494 73.31663425219227 72.05598548531445 70.84841937507261 69.69050814786999 68.58716793853084 67.54038646354164 66.55174968361067 65.61392624684824 64.7286274306717 63.898558939576105 59.4482337096356 58.41876460762173 57.48660355348352 56.65846617290821 55.94106809158299 55.34112240182287 + 102.54663656580372 102.0845975832065 101.55383804240307 100.95732324688056 100.29846959856332 99.57820699877782 98.80021524822625 97.96884223773321 97.08355555029281 96.15203486120888 95.17769313028599 94.16134948520407 93.11106860630483 92.03168262931143 90.9282356805509 89.80535884279539 88.66971984884316 87.52746877720409 86.38453327821546 85.24687712735903 84.12079621124752 83.01262722010426 81.92789784188096 80.87194531598743 79.8491011902413 78.86839127116673 77.93165132117353 77.04219131058586 76.20607415785673 75.42284122840739 74.69336446909445 74.02591086930276 73.41305708509095 72.86375103425397 72.37298201146696 71.94462958977883 71.57962086962283 71.27424496299481 71.02724872976107 70.83864230145032 70.7006820921262 70.61307181973467 70.57342199817808 70.57872175371566 70.6268459922074 70.71923524294375 70.85276981212326 71.02491291132519 71.23328624468772 71.48117857607662 71.76422427915004 72.08090169234768 72.43523319822428 72.81962636261602 73.23989965764736 73.69012577034232 74.17231329506782 74.68904259788742 75.23361213961202 75.80934602210712 76.42080969215388 77.06007567669502 77.72821502282872 78.42385234058077 79.14696348166123 79.89726034567656 80.67309527202355 81.47180966974213 82.2915885321035 83.13087173862277 83.98716141249992 84.8573728805212 85.73764947299716 86.62295287631412 87.50775304395052 88.38209653039634 89.23671003001314 90.06129199316361 90.8396083904231 91.5616052718833 92.20646209143867 92.7639592055079 93.22272191784695 93.577726064488 93.82896778389436 93.97782557147556 94.02954472808695 93.99366257669836 93.88141685672365 93.70614576445128 93.48259978230985 93.22789475301938 92.96031255989797 92.69195526529786 92.4393231663043 92.21256542094221 92.02437637280102 91.88457035764671 91.80422455035922 91.78046908637172 91.81291320133377 91.91251876502821 92.04890298895292 92.19845664824395 92.3498021492132 92.47225963106918 92.55288510358204 92.5705064170186 92.50481090848169 92.35630014064448 92.11722609286703 91.78659599291912 91.36347914875915 90.84709172488633 90.23732776609069 89.53499612281591 88.74324112217502 87.86390875363603 86.90247666924064 85.8628731626139 84.75280483900727 83.58024124139448 82.35557752254647 81.08794967510455 79.78674787152055 78.46696096805837 77.14227686060522 75.81797819560134 74.51218728624477 73.23964104643885 72.00473628071315 70.82098532635446 69.69323199998675 68.62332705316813 67.60877021279225 66.64830976061221 65.7400584951569 64.8862513866085 60.86154753878582 59.8236016156596 58.88236620179379 58.04453697332737 57.316809606399225 56.70587721435213 + 103.86207690749809 103.39492896572338 102.86317281839118 102.26307476228769 101.60285961864217 100.87901834631853 100.09967060166898 99.26326849099075 98.37507987774728 97.43949077624798 96.45814859040549 95.43555585121267 94.37744160689083 93.2885976026618 92.17385393444654 91.0378713991298 89.88768029987796 88.72911354238448 87.56815863341849 86.41087680398833 85.26351498920667 84.13208107755699 83.02252397306987 81.94061879306894 80.89181743592573 79.8831315571573 78.91923757145811 78.00300702386052 77.13708511036124 76.3282781408207 75.57492643753166 74.88229796514813 74.2481033235324 73.67786954163589 73.16730776079552 72.72418119013538 72.34296417222194 72.02555572943794 71.77039312027688 71.57318038819541 71.42956010158372 71.3371972434429 71.29473679945042 71.29965664682832 71.34836288784041 71.44036736266231 71.57795282904317 71.75553831578753 71.97024941469888 72.2243594235523 72.51704243656802 72.84317386247707 73.21021758431124 73.60682066773855 74.04281531349363 74.5104977630331 75.01214712040766 75.55042482394718 76.1201137455772 76.72196059180695 77.36063475289662 78.03050400272805 78.73001835597779 79.45903504185132 80.21628382649713 81.00133835828576 81.81192274127477 82.64711465593477 83.50488608625314 84.38272737642451 85.27759230219829 86.18574025454575 87.10255341206908 88.02211895661566 88.93708758394366 89.83884763138566 90.71714591199948 91.55794176311653 92.35109051125119 93.07853254703618 93.72844141168359 94.28283316523692 94.73868833296012 95.08959767319129 95.33605461079364 95.48179462317701 95.53234797535328 95.49740574188691 95.3887327163858 95.21955176224745 95.00407268316252 94.75857823950494 94.49927131780387 94.23947367048025 93.98879812331859 93.76233258197351 93.56943925818915 93.42102677991724 93.31480371412609 93.25276847413299 93.2524600870587 93.29642265154223 93.3755970667666 93.47501580201407 93.56160068022791 93.62943511184965 93.65401932869649 93.61720849453259 93.51017743615333 93.32152305292725 93.04974324407745 92.69464113337635 92.25549961611424 91.73152178126065 91.1233462182289 90.43003762162645 89.65233661948741 88.79369426803086 87.8557431015774 86.84451152588376 85.76460373626362 84.62199061324647 83.4250663943046 82.18327413745017 80.90813702753589 79.60704320056077 78.29229136792472 76.97826269459578 75.6773533725026 74.39413939975424 73.14761000232744 71.94656067079725 70.798860488443 69.7072900439368 68.67038651501471 67.68896012336484 66.76312228088702 65.88943069649447 62.26429627317777 61.221222946068366 60.2740981764068 59.42958374946525 58.69434145051587 58.07503047616289 + 105.0828947189722 104.61205897233506 104.07537357461653 103.47389733855346 102.80921278898094 102.08353431357183 101.30124706687616 100.46044828612916 99.5685512502916 98.62826926508443 97.64031186839848 96.61107923576498 95.54513832903999 94.44701227094785 93.32152895794019 92.17318023136131 91.00897867878973 89.83476886401546 88.6565809894823 87.48055179620174 86.31283799683348 85.15995674399032 84.02816736136909 82.92326101585965 81.85086278258453 80.81624158013018 79.82666456415082 78.8840882204177 77.99280155253584 77.15886511887626 76.38338575358489 75.66498137820457 75.01288307263324 74.42056906660545 73.89558575617492 73.43545861706914 73.0393493055342 72.7136089005204 72.44883448525871 72.24302349970307 72.09417402343298 71.99743458099012 71.95258955244347 71.95716283928968 72.00736095623607 72.10204465324986 72.23969027988349 72.42351322221849 72.64541991357295 72.90448077985162 73.20797043506512 73.54506545205986 73.9230072815022 74.33308845278121 74.78561605578506 75.2705058196046 75.79280656374831 76.35312790445437 76.94712577806919 77.57390762764405 78.23998743607521 78.93799868843752 79.66759598931804 80.42779541106249 81.21798966368425 82.03618960001639 82.88157960741518 83.75209016981415 84.64469246871131 85.55718350496048 86.4860420423031 87.42700861924908 88.37491722114783 89.3232895625915 90.26423413583214 91.18683737975947 92.08123717743473 92.93624024326009 93.73533895819381 94.46674391257518 95.11308806205918 95.66506042925405 96.11426006346014 96.46124872864486 96.70399279090573 96.84811631158348 96.90028250246995 96.86971267293104 96.7688353627664 96.61003450974216 96.4070381366868 96.1759976847062 95.9301440707867 95.68165906119174 95.44017924933772 95.21932570664805 95.02718480934949 94.86573159934876 94.73678859761941 94.65492686107258 94.60992095403415 94.60467667120649 94.63329444026715 94.66962359764017 94.70569653380963 94.7106898649599 94.67807259523555 94.58999969809115 94.43230187471892 94.19853706623769 93.8924571736262 93.51083767188003 93.05288425784397 92.5181585435642 91.90625994324446 91.21847205268492 90.45403621822 89.6145644083524 88.70209481057908 87.71931656788837 86.67092283817739 85.5629059531346 84.40143641527898 83.19238037439393 81.94657635884909 80.67340515587695 79.38473266951647 78.08751388055252 76.79456726225737 75.51999754141453 74.27364928063687 73.06311521186448 71.90060637514055 70.7899428116245 69.73875878542451 68.74180896870207 67.7968704852697 66.90596880487224 63.656903733348464 62.61192024678837 61.66196571572 60.81365466576207 60.07360162253326 59.44841850052234 + 106.21589604233955 105.74216370461257 105.20029400366253 104.59609325406089 103.92680956875778 103.19812921031895 102.41136122296639 101.56676988472823 100.67035001651492 99.72470939850434 98.73051655798608 97.69408007414191 96.61976839039446 95.5120378349821 94.37576916474394 93.2157665030121 92.0378976584959 90.84866032718722 89.65414440297808 88.4605819296468 87.27426257446112 86.10144221662001 84.94854977954323 83.82212505115372 82.72777634234188 81.66956760172744 80.65383119920378 79.68785221847891 78.77480622107828 77.91599239281125 77.11733348780581 76.38039676276318 75.70647342377357 75.0975495481307 74.55559869512112 74.07893707592588 73.67438806172802 73.33569649568565 73.06190389643803 72.84780442217583 72.69325884296865 72.59374261013612 72.54653935767386 72.55115176464885 72.60355511801579 72.70169288261006 72.84400972494052 73.02856082618446 73.25875173331077 73.52735830666127 73.83701849273447 74.18708833170143 74.57430593848191 75.00157545564622 75.4685119572468 75.96903019198147 76.51472667312268 77.09586695115377 77.71155764048962 78.36511896058713 79.05645686936563 79.78150072330031 80.5394407710106 81.32958009121624 82.15027643224667 83.00067015363017 83.87821951205419 84.7808519673703 85.70607599940936 86.65051536384989 87.61012055685998 88.58002773937399 89.55440302513641 90.52607829157122 91.48650504642586 92.42600463243477 93.33336947512718 94.19367761477123 94.99660665240047 95.72543596727063 96.36671900483942 96.91185820686077 97.35584559420975 97.69701972954638 97.93847708765496 98.082544986257 98.1387347166047 98.11563157430962 98.02601730931569 97.88160565577552 97.69477909491711 97.48169945147916 97.2535465951519 97.01937393795855 96.79126027385796 96.5796496112096 96.38744860383603 96.2156684922446 96.07845371682473 95.96705420885642 95.88691200666361 95.83927627846698 95.80980924848936 95.79564067854349 95.76965032750041 95.719769716144 95.63041683952085 95.48527275593837 95.27713065454908 95.0009107155462 94.65546786663329 94.24211973774698 93.76113611498134 93.21219152758917 92.59475687733102 91.90892980999172 91.15537214544901 90.3332485198602 89.44542375904284 88.49255187720148 87.47836327646554 86.4062410085949 85.2823438640626 84.11353361916643 82.90587518760017 81.66702944870475 80.4084209968408 79.13904401860388 77.87071341171776 76.61172591861808 75.37079079769862 74.16432466478409 72.9958766133072 71.87897740649166 70.81291227624423 69.80518893858526 68.8485005577015 67.9403345038998 65.03981072140976 63.99599567359103 63.04613939058461 62.19679636700766 61.454521097477276 60.82586544627947 + 107.26788885015932 106.79050463106093 106.2437377921002 105.63564998530752 104.96166673118908 104.2288965665217 103.43768300343154 102.58839028036073 101.68665247039722 100.73497906174576 99.73491718430344 98.69082194825025 97.60781803717491 96.49029801523186 95.3430975425833 94.17145933530496 92.98098621324283 91.77705137188534 90.56665494970144 89.356136968658 88.1519167044568 86.96041826978558 85.78777205923487 84.63928097600245 83.52236152171348 82.4432566982559 81.40693454525017 80.41812763826964 79.48113882211437 78.60201894310035 77.78157782702341 77.02560974091915 76.3325660445875 75.70703227561908 75.14887584259097 74.66106978327575 74.24251599209026 73.89341040219992 73.61339149142391 73.3948407763633 73.23581947627565 73.13380085337378 73.08465876788489 73.08768223022544 73.13943054777596 73.23896889885512 73.38722487416085 73.57846134957822 73.81006224880707 74.08984508612518 74.40706247161216 74.76830166447822 75.16641924656926 75.61074923838872 76.09016327138721 76.6131669281834 77.1766291398849 77.77632793337254 78.41444445043453 79.09411363520326 79.80961826038694 80.56028131329172 81.34542508902952 82.16363383633811 83.0140675571707 83.8938836678709 84.80167696229282 85.73478758724778 86.68989067375767 87.6626353050569 88.64910417326391 89.6439224267032 90.64075616835525 91.63198536803316 92.60796834007942 93.55776953782426 94.47104850163862 95.33588963357033 96.1356461134898 96.85874531185489 97.49331430431816 98.02968157775847 98.46783906805467 98.80454321662279 99.04419373456105 99.19137412495007 99.2537833450913 99.24131951442217 99.16546534863582 99.03851836594907 98.87107274789928 98.6787220443804 98.47068615796275 98.25367689663112 98.04346360078138 97.83985051307037 97.64782512601371 97.47861147332844 97.32351933372081 97.19013661184484 97.0808526588324 96.98484056987976 96.91328309226347 96.83951651991467 96.76137400118583 96.65575712841776 96.50557849894416 96.31120731059715 96.0532994768812 95.72878994476096 95.34157011212774 94.89411767646028 94.38731878310551 93.82118263835575 93.19527365444169 92.50905749489272 91.76402095582884 90.95810878402835 90.09298481057824 89.16943007003417 88.1901691363996 87.15691143742198 86.07440136534885 84.94724238331897 83.78199013577877 82.58687601536529 81.36777282892511 80.13281432936891 78.89423721601486 77.65976852957189 76.44157305057162 75.24755571424765 74.0871980284503 72.96838284583959 71.89783224496482 70.87771451190031 69.91323361904345 68.99538877835298 66.41345803947344 65.37375138224783 64.42678977185186 63.57905549799179 62.83703085037381 62.20719547228329 + 108.24564138388772 107.76300844648654 107.21091793245114 106.59829162797108 105.91955845431058 105.18170185891611 104.38612148898649 103.53128554363778 102.62348120507299 101.6651248133918 100.6591214901078 99.60736603193934 98.51531179275142 97.38775115608372 96.22947459660334 95.04570092588969 93.84203395298711 92.6244084278363 91.39902570141915 90.17227372967594 88.949731516226 87.73906786599039 86.5467901099844 85.37924648672126 84.24256132176922 83.14255676232956 82.08507141850676 81.07536864395982 80.11816623281214 79.21699202500011 78.37946187788629 77.60281523025866 76.89325222160896 76.25237299830303 75.67987420203018 75.17801525048522 74.750359628626 74.39386079038565 74.10409509179715 73.87949478281011 73.71529636330473 73.61088793912369 73.56107871826116 73.56517601297432 73.62014425651599 73.722410082415 73.87096336588672 74.06820381840669 74.3092892739863 74.59142360811134 74.92204775092365 75.28896987498824 75.70550865950605 76.15930984104156 76.65684808084367 77.19795961217056 77.77688382879909 78.39661886895114 79.05977737317751 79.76087738379067 80.49940212378617 81.27473731389003 82.085642133878 82.93124900026989 83.80879453506577 84.71708128655601 85.65344995261464 86.61390599713042 87.59551006765693 88.59397888774215 89.60420311352432 90.62021069849767 91.63505134748888 92.64053835942059 93.62729635223357 94.58503352512572 95.50102462739277 96.36210742218324 97.15750933272714 97.87262739811939 98.49596010019096 99.02632343617744 99.45585516347893 99.79066196939064 100.02941776025003 100.18115470931016 100.25205272000709 100.25257674185761 100.19289496266884 100.08579306409716 99.94015694234977 99.77056668531915 99.58414877811636 99.38694463683551 99.19414442297682 98.99981083138223 98.81602362543462 98.64222360708547 98.47475576106473 98.32539721220763 98.18053573266897 98.0547441708864 97.92917519257095 97.81068337844343 97.67822078287287 97.512748274699 97.31686741374259 97.06775641821109 96.75800124138705 96.38609405859984 95.95736620456334 95.47573154439537 94.94123781650153 94.35486191172285 93.71683606942338 93.02703066199435 92.28769169334375 91.49591820282342 90.65226544181876 89.75721480544442 88.81195058447325 87.818328028137 86.7799475844638 85.69851872284637 84.5801511346715 83.4307020599495 82.25641288762323 81.06668974043808 79.86814235520352 78.6680637915671 77.47784746406118 76.30420763360041 75.16033431356261 74.0488935849326 72.98167721229572 71.96083168657843 70.98809213148682 70.064707504051 67.77828648965131 66.74548952853011 65.80408743037292 64.96047870350426 64.2210618562487 63.59223273738274 + 109.15448165210844 108.66548140189802 108.107956152215 107.48943529253984 106.80605460089667 106.06222125316447 105.260916417582 104.40128572370574 103.48673905813286 102.52110439009265 101.50720025567585 100.44834816286088 99.34829978295939 98.2104306174195 97.040890827935 95.8448723786961 94.62776993158872 93.39529479526796 92.15408163683276 90.91059399575504 89.67143872920124 88.44327661321451 87.23272534544732 86.04631474260911 84.89062836328637 83.77059011571278 82.69309345452244 81.66333812019934 80.68679281475013 79.76868093564619 78.91007994304096 78.11686651815137 77.39254832156644 76.73447782130292 76.15027761460449 75.63794363282865 75.19718710220066 74.83390525051983 74.5387701072026 74.31027555063213 74.14305317889487 74.03609567325681 73.98527967869445 73.98831386286277 74.04301397639621 74.14767692288422 74.30361179820935 74.50379683648062 74.7495661757668 75.04386772623486 75.37745957033601 75.76122656567455 76.18506135414057 76.65430771327571 77.16835981776823 77.72203374786385 78.32042137448983 78.96237080113484 79.64430618869996 80.36596384129211 81.12677493442645 81.92568976027175 82.76251110209817 83.63421538912019 84.53881887255189 85.47356840604961 86.43507642615137 87.42059004593705 88.42602706581802 89.44725403729046 90.47802363566416 91.511710089797 92.54078893274166 93.55658349042734 94.54936414535902 95.50860767213989 96.42316903507903 97.2814606479502 98.06621656798724 98.76977221835519 99.38538134165188 99.90372823207618 100.3294373563941 100.66012144627632 100.90164964341469 101.05897343605082 101.14057771345693 101.15596985986794 101.11439687334071 101.02888415922617 100.90679270677097 100.76115257218733 100.5970195926786 100.42276212283656 100.24489332100546 100.06197042113423 99.88569103631107 99.70653574784494 99.53814559591947 99.36348864749804 99.20138398866358 99.03191604452446 98.8720067607579 98.70352771403681 98.5166426837403 98.30701534149198 98.05678034236638 97.75303470493989 97.39597729525406 96.98253965296725 96.5141208168722 95.99563076281774 95.43076560786368 94.82164372447582 94.16902735439467 93.47315339683378 92.73597060569074 91.95464181751282 91.13044221806122 90.26259555531989 89.35101038394808 88.39677221240359 87.40206164509863 86.36883994114746 85.30202691189794 84.20337564275029 83.07964397760642 81.93803819984744 80.78423633417647 79.62794138477898 78.47530200259989 77.33575188115925 76.21637277384215 75.1259349936296 74.06797347775041 73.05386703530597 72.08233259193996 71.15501666607938 70.26289456832866 68.11151226820937 67.17820293699901 66.34111262833494 65.60654509012785 64.98080140042683 + 109.9993452734065 109.50299768682443 108.94000545204867 108.31466230425237 107.62654770679823 106.87596819373583 106.06775166576277 105.20325195957881 104.28222893232324 103.30880430087112 102.28655512590704 101.218722052934 100.10905804305983 98.96150301657748 97.78079640050335 96.57245013623604 95.34208273863729 94.09568428490438 92.8392818945074 91.57980409177287 90.32399215627531 89.07866458684704 87.84996046161707 86.64461475181922 85.46957344950215 84.3310130084621 83.23472944853283 82.18768148138085 81.19262468213938 80.25511724450016 79.38005070169964 78.5723515149059 77.8290205480858 77.16105385228592 76.56226686309266 76.03989794921091 75.59296082834084 75.21898665845899 74.91716432611081 74.68427205937016 74.51489481127176 74.40554659002281 74.35380614429758 74.35747200696771 74.4165730214773 74.52476712744931 74.68145908799885 74.8871428245014 75.14135638989441 75.43838633920595 75.78648360838645 76.17607856859027 76.61422168032237 77.09671785010343 77.62074214570077 78.1947692537836 78.81095429390622 79.46906628440594 80.16924761610684 80.91213877867956 81.69692951544995 82.52053896064412 83.38086167128293 84.2768305608818 85.20552970832988 86.16408641742443 87.14966012860135 88.15831419348214 89.1850406172133 90.2245049219313 91.27113672521298 92.31845153436417 93.35807320165048 94.38094656411212 95.37728874218651 96.33571830470486 97.24394555268678 98.0918171253874 98.86803667721483 99.56035553136276 100.1621260802322 100.67437672924748 101.09364548920126 101.42330904693992 101.66800452240558 101.83283850863506 101.92673323655046 101.95840690866937 101.93681321840138 101.873556497663 101.77603518807314 101.6547403919279 101.51361855372384 101.36155400097526 101.1981459442067 101.0318263898267 100.85853498399771 100.68367657742047 100.50355635225377 100.32199179290389 100.12840821624508 99.93790647134725 99.73269505101709 99.51884288304525 99.28967079795655 99.02760897351735 98.72499848824002 98.37896795020299 97.97638976129129 97.51884340601653 97.00992137611426 96.45529302314199 95.85963358652336 95.22633047384794 94.55714919091099 93.8539716403957 93.11669212841578 92.34365442223955 91.53612043068684 90.69263342225952 89.8136967858041 88.8984255034932 87.94805592132714 86.96343493546583 85.94820456923452 84.90439461549857 83.8369966742262 82.75035055180884 81.6489879203636 80.54188194720035 79.4336694667387 78.33518401984257 77.24974190323468 76.18861502799639 75.15506443016919 74.15445760856704 73.19134752845711 72.26675586580058 71.37251090915548 69.47212175705698 68.54930686258135 67.72100391727355 66.99341152703714 66.37272562026455 + 110.7849739693662 110.28044248363176 109.71203956325918 109.0788410823613 108.38484572273818 107.62830957654154 106.81259781394732 105.94041127589526 105.0134736103897 104.03398699139302 103.00310448841101 101.92529149389692 100.80494496500755 99.64630728655023 98.45406324103902 97.23337721073811 95.98985800520839 94.729512556141 93.4586886159206 92.18370627605684 90.91095969747812 89.64798110627711 88.40167615531705 87.17885282763224 85.9861097567388 84.83034910914985 83.7159576721133 82.65005473275295 81.63768725409422 80.68398460297432 79.79413357967584 78.96866176981025 78.2144009686672 77.53213231750887 76.92304590609143 76.3885613777053 75.93462079568425 75.55530932790805 75.24940892614899 75.01053169484943 74.83859483537633 74.72778116159259 74.67737545703486 74.68216396024116 74.7415019713569 74.85009752526071 75.01279077215747 75.22400910155619 75.47996886159142 75.79001223172342 76.14060658378644 76.54540930948492 76.99200102777735 77.48656501941475 78.02873121362893 78.61474626292372 79.24448192944104 79.92241358968292 80.64382573969792 81.40745603781137 82.21239227353269 83.05685634283766 83.9397656455224 84.85813017966463 85.80948700528984 86.79093791545071 87.7985368139359 88.8270205985328 89.87220442690924 90.92830136156202 91.98874913032128 93.04615355147222 94.09224489301185 95.11785081947068 96.11270076687428 97.06635092329287 97.96807337693949 98.80540462105074 99.56627426839897 100.24572748292212 100.83977998213955 101.34272582251427 101.75773164369448 102.08821157970792 102.33624503955004 102.51063610864533 102.61751929771935 102.6659792678158 102.66573640709326 102.62580360989631 102.55307281519873 102.45622677767562 102.33807000615919 102.20674546194624 102.05953624005258 101.90652438862776 101.73945787656297 101.56704045120938 101.38085138636411 101.18536137736922 100.97925371703796 100.75308570003895 100.51825241546749 100.26458691842038 99.9865616371885 99.68043637297407 99.33618214695109 98.94536997771822 98.49707822942635 97.99562258038794 97.44842400792174 96.85910277238932 96.23315456717933 95.57505141414458 94.88896457182194 94.1765135649384 93.4367855000356 92.6697243518789 91.87727881119383 91.05600847496808 90.20725477451575 89.32938627601105 88.4232262836965 87.48778975206434 86.52580048297921 85.53795931942913 84.5282839063424 83.49974201481366 82.45713902718055 81.40589362332767 80.35125102694067 79.30031856595565 78.25885832441571 77.2329492011279 76.23068046202421 75.25459946769884 74.30926841930037 73.39794750772013 72.50878967578163 70.82762015084444 69.91756977797115 69.10019921510998 68.38159214200246 67.76782955574487 + 111.51593216698951 111.00252826953789 110.42828745199694 109.7870438448306 109.08484578056282 108.3232598695024 107.50082462516667 106.62055839223838 105.68531722819151 104.69656775909061 103.65731813393548 102.57100541906912 101.44128382359324 100.27233394565637 99.06885072940022 97.83602051564169 96.57934714300251 95.30424396819993 94.01785461020349 92.72685811361586 91.43811836282858 90.15859359413537 88.89549686123927 87.65551348950643 86.44476094662808 85.27074726005681 84.13966581081958 83.05723537297345 82.02870983897246 81.05950073162045 80.15353493356861 79.31425383537885 78.54836414484892 77.85118080573172 77.23428050031544 76.69207976455098 76.22759058347076 75.84408373193057 75.5334846980179 75.29250861164842 75.1185650185597 75.0066398673964 74.95583523501344 74.96035362678218 75.01995538242376 75.13388726641826 75.30073598083266 75.51305294784885 75.78070279826673 76.09229742719516 76.45677882225775 76.86373055566148 77.32596448458209 77.83154045794939 78.38314094273645 78.98620070066444 79.63485409226968 80.32799997126085 81.0660126389351 81.84778136378333 82.67197582593286 83.53763142264053 84.44185649586443 85.38181151440028 86.35467636066763 87.35657799922717 88.38336623273347 89.43037538149183 90.49203180756828 91.56204896472445 92.63338175455793 93.69819106306744 94.74782675893016 95.77290440571102 96.76350361313027 97.70882594681669 98.59845166007663 99.42213727779709 100.17101928393431 100.83720100681167 101.41827252778026 101.91512160020622 102.32814766532273 102.65819913467818 102.91275904158238 103.09717064788516 103.21876345422123 103.28594528281556 103.3080734871012 103.29151130097381 103.24348228397703 103.17097748016273 103.07401087364146 102.96402634424206 102.83428776995517 102.69203302853445 102.53439127155501 102.35938701015388 102.17432964376842 101.96677381501421 101.73928676607783 101.49694231848267 101.22892666671602 100.93408835953986 100.62146513379356 100.27384793295155 99.88693155291375 99.449210276318 98.9610710534926 98.42083396745136 97.83578032275604 97.21277276544913 96.55793511715329 95.8764373790155 95.17224296695211 94.4476195228346 93.70340890160178 92.94178277162274 92.16104886398116 91.35992091125048 90.53964378370021 89.69695244205114 88.83351082422945 87.94695954806578 87.03889774392222 86.10873481595414 85.15937309170842 84.19240768679322 83.21182524154908 82.2210973797748 81.22552866754856 80.22943362864972 79.24008211800897 78.26084861496473 77.29847319320943 76.35494543542033 75.43551213756189 74.54341655376307 73.67534550730646 72.1783096053431 71.28316225401957 70.47874516663397 69.77101791004962 69.16593736571674 + 112.1941222923649 111.67380480558126 111.09040734248372 110.44409781683065 109.73329985294772 108.96320054673936 108.13455797044965 107.24851108420665 106.30417639252092 105.30623666409109 104.25776095801407 103.16178953886642 102.02189545568541 100.84218672426873 99.62660617185216 98.38070820069497 97.11037992900341 95.82166377234465 94.52098545306279 93.21508993549067 91.9109663356145 90.61474404896299 89.3343942451292 88.07721353551372 86.85018504682101 85.66001196958062 84.51282860576849 83.41315440682487 82.36943527694059 81.38565566458789 80.46565774262807 79.61431527764036 78.83434977373958 78.12868723358282 77.50114864373357 76.9506889480587 76.47926912984829 76.09021108020615 75.77556909607972 75.53272964750586 75.35653850471635 75.24411322863466 75.19259697157516 75.19736152368247 75.26139034381697 75.37837692112693 75.54612478593516 75.76593678255833 76.03715521254082 76.35639265815759 76.72703579549479 77.14701403753223 77.61260781847066 78.1331747757914 78.69987794705166 79.31385062936656 79.97441987952229 80.68570226191697 81.44238481108833 82.24348806901978 83.08792468896218 83.97282971047349 84.89671326375843 85.85668343626092 86.8484237948431 87.86835554493871 88.9120732645447 89.97428660780028 91.04902977644846 92.12876237080127 93.20727101308624 94.2758534652508 95.32570671884929 96.34749056622925 97.33153113181511 98.26791922997421 99.14490246193769 99.95306311118927 100.68558525348509 101.3393325866245 101.91223877534543 102.40198010858596 102.81140855243487 103.14487977477111 103.40659163718634 103.60212353976658 103.7395263700361 103.82616963281309 103.86988514649093 103.87641815711987 103.85271850723221 103.80310305080418 103.72902230588328 103.63696571667177 103.52482230961739 103.39076817560375 103.244117605903 103.0731292509776 102.87834247080139 102.66804800087131 102.42936484357585 102.16078288982135 101.86730093780722 101.54628591975492 101.19290746025156 100.80546935260192 100.37475901949182 99.90011726051107 99.37429295473754 98.8004997122377 98.18323462072796 97.52921993195605 96.84550903362297 96.13835026682646 95.41299208483537 94.67356566546343 93.92549834512245 93.166133532914 92.39471948261001 91.61265069027836 90.81781457774653 90.0090569880691 89.18607425403205 88.34687867316796 87.49192819862127 86.62012497056732 85.73281247715586 84.83036522018558 83.9154770358949 82.98990720069317 82.05827261897514 81.1228041416771 80.19035583332648 79.2637606051056 78.34752626630338 77.448647286862 76.56669229028357 75.70120508659085 74.85805469353362 73.5244922763244 72.64625486157787 71.85668841663534 71.1616198062046 70.56687320902918 + 112.82461735969886 112.29866387448854 111.70521657310294 111.05015870656808 110.33479646344459 109.5562322792623 108.71881331664262 107.82280197243064 106.87102474011755 105.86547645977795 104.80865706574508 103.70359288359376 102.55294181346015 101.36154202076644 100.13423107177093 98.87615695105104 97.59295693999009 96.29071745088119 94.97530519174354 93.65364339188397 92.33326130129868 91.02138791842209 89.72532696729452 88.45235019298862 87.20898354883957 86.0017219147477 84.83794618972965 83.72445161413168 82.66655362719276 81.66852841389037 80.73388003742247 79.87129286934979 79.0801015194936 78.36586287018 77.72700344697124 77.1709147576635 76.6950648556484 76.29803940692294 75.98102501331003 75.73644780120705 75.558335398023 75.44556239703329 75.39346485158634 75.40172010932736 75.46815241146945 75.5860805416714 75.7563850766708 75.98297927801748 76.25545899183949 76.58528297730822 76.95965558468585 77.38996120352135 77.86790316052365 78.39416497981291 78.97346510090561 79.60244149875399 80.27976524192822 81.00423214776359 81.77608703990812 82.5938685207682 83.45534425973646 84.35893639507627 85.30183005339045 86.27966414505246 87.28941519534936 88.32655968937392 89.38596459290542 90.46100763247429 91.545668544087 92.63319780170309 93.71587385210867 94.7853244634333 95.83255461934878 96.84778382468544 97.82154903019932 98.74429558436772 99.60660762061516 100.40049387864399 101.12047691076549 101.76129324776507 102.32416560560651 102.80947265705414 103.21914962734941 103.55577624348304 103.82449502831564 104.03206278156406 104.18517165848523 104.29146136167815 104.35695402401626 104.38636211265977 104.38606439559857 104.35917269271279 104.30586253756685 104.23108648567292 104.13505610198318 104.01505778854072 103.86980056115293 103.70617253335911 103.51338471976456 103.28972583172711 103.0385676149173 102.75803852583643 102.44248382496507 102.0906379182927 101.70139886288352 101.27729464069284 100.81725506529196 100.30640468543355 99.74739736946891 99.138536957162 98.48792629119852 97.80357601336001 97.09305292239965 96.36321731631689 95.62000812416764 94.86817010888927 94.11065113709661 93.3495556449868 92.58688046405419 91.82076768038579 91.04886168230429 90.27227641956875 89.48763321223706 88.69448147661602 87.89121322003216 87.07685950315255 86.25117282550329 85.41382799358436 84.56625254855285 83.70891753930721 82.84564081421914 81.97762370552657 81.1094125592201 80.24501327295357 79.38453923116123 78.5316251514696 77.69299381983562 76.86857832664883 76.05233052916913 75.2173519448654 74.00701817149722 73.23407560990393 72.55332880549317 71.97046124453117 + 113.41254039545005 112.87630825799683 112.27747514442187 111.61289034357533 110.88826224491716 110.1039035668498 109.2589417507362 108.35502752960203 107.39450742961964 106.38008938330172 105.31351662000863 104.19779474891378 103.03703763072275 101.83525473579394 100.59700142350472 99.32728974409332 98.03071974063494 96.71442486444367 95.38450692019265 94.04836014900523 92.71312822799914 91.38611539282513 90.07350941799514 88.78387787107262 87.52446039232316 86.30236479959997 85.12450076861604 83.99649290123426 82.92348338910917 81.91153380081319 80.96629634278608 80.09262284101854 79.28989596795537 78.56652573776576 77.91965758898134 77.35829370889641 76.87652392885741 76.47630558678375 76.15526571435814 75.90803285679782 75.72936124261423 75.61638455082735 75.56616034159356 75.57647636310291 75.6436462931465 75.76246300249095 75.93935808047378 76.16760764316984 76.4472725140442 76.78026129632276 77.16454121189896 77.59702007825193 78.0871601702621 78.62556325868854 79.21399705725224 79.85249871014899 80.54454189427058 81.28535670942262 82.07356999421614 82.90798980282254 83.7869871855552 84.70775982067944 85.66688001261586 86.6612380948203 87.6865695064367 88.7377179752402 89.80847712614671 90.89349430688422 91.98631915211244 93.07925007015527 94.16387830873877 95.23159875459882 96.2733005978411 97.27970996420302 98.24162874550973 99.14990411674164 99.99527311215716 100.77214062104261 101.47695117815422 102.10755125314688 102.66332141221112 103.1442766043594 103.55291241790376 103.89401173386632 104.17224706827749 104.39325870808929 104.56353149647146 104.68946392984664 104.77566349060031 104.82703185084328 104.84933983358881 104.84336303108599 104.81073634717326 104.75099568342657 104.67077570205592 104.56226536115598 104.42708414248688 104.26088652770179 104.06901022955385 103.84359252703571 103.58294134468039 103.28423313220534 102.94591716414693 102.57428841304335 102.16258749463574 101.70864903819646 101.21104067574436 100.66893266454139 100.07532442348628 99.43499117853698 98.75704570447245 98.04665865800146 97.31184349743526 96.56008654897954 95.79810720753336 95.03164882568609 94.2650346120759 93.50338230118693 92.74506470238005 91.9912380112502 91.24143347471156 90.49350187463023 89.7448458746323 88.99601143572008 88.24285420974114 87.48522458295221 86.72102576888847 85.94963153588225 85.17106084970469 84.38483926761405 83.59361578647825 82.79774848784155 81.99677179495188 81.19670457613786 80.39929009780133 79.6078255794232 78.81774968423859 78.03659831653906 77.26218155958516 76.46004896397795 75.36562275462884 74.61095339122949 73.94607588294127 73.37652563107169 + 113.96049438829604 113.41508593188104 112.80584735503481 112.13610045817536 111.40357395234307 110.60891806896393 109.75508408634846 108.84349210338104 107.87555932449574 106.8518441768122 105.77598056714719 104.65103657545396 103.48046285752919 102.2679894113303 101.01745403255751 99.7349765172195 98.42616112316453 97.09709662698191 95.75431034864151 94.40387729249571 93.05343110453265 91.71078529068728 90.38349891936397 89.07915767933518 87.80525733770469 86.56788593165714 85.37476892294568 84.23257188919276 83.14708598047761 82.1233520447884 81.16711799432484 80.28145390508814 79.46932668189164 78.73864019253814 78.08576203048922 77.5164524061985 77.03083209567251 76.62818521280715 76.30416346951075 76.05411749930391 75.87510937394184 75.7637547425401 75.71441476787015 75.7255015817539 75.79338483661672 75.91480661237676 76.09564763411062 76.32536489113778 76.61232764826455 76.94664563247792 77.34041392694905 77.78230605463033 78.27538039952978 78.8256899413454 79.42620484066784 80.07797328403048 80.78072664507572 81.5334238040024 82.33550218740162 83.18522249393173 84.07986957883048 85.01623492257535 85.9916357774909 87.0017203353973 88.04095936149818 89.10428741098713 90.18599345766313 91.2794919771706 92.37761302123717 93.4726243834836 94.55626520912513 95.61898837256881 96.65223153394237 97.64700261121055 98.59462171630652 99.48661675562782 100.31610904181989 101.07742939763854 101.76860501070742 102.38830234760341 102.93651899306779 103.41460764759923 103.82515983698686 104.17183717702711 104.45913224454571 104.69299109572621 104.87976061467913 105.0245460449449 105.1315844828019 105.2045107897219 105.24797601463759 105.26221268434062 105.24801428447464 105.2060242074334 105.13624379932068 105.04043127651366 104.91343638092262 104.7526924709117 104.55800224520279 104.32607248325759 104.05978803621376 103.75263673956547 103.40274672271842 103.00870707532631 102.5699737424494 102.08842838085704 101.5607435040483 100.98765123223261 100.36484418672345 99.69876036099797 98.99370674305804 98.2582080961299 97.50066796027595 96.7290765951937 95.95075674423988 95.17213799474766 94.39841839036758 93.63290160381062 92.87720732547798 92.13416756019625 91.40202132179773 90.6795762940517 89.96590316894807 89.25784166799883 88.55289812123702 87.85046956036022 87.14684468934816 86.44138937922843 85.73259294233704 85.01857463939913 84.30030550228166 83.57746175461031 82.85115442801775 82.12403310686442 81.39480976269023 80.66429336364175 79.93756397198126 79.2078419125356 78.48053379122227 77.72687586216352 76.72223918182395 75.9873684054019 75.33979201357477 74.78489052749971 + 114.46906326045976 113.91672007657999 113.29900230503488 112.61953171212502 111.87903769402837 111.07764073341087 110.21707079414377 109.29799763856892 108.32012253588522 107.2878892675052 106.20357563145869 105.06998194696736 103.88828348190545 102.66439915436605 101.40295931344906 100.10905763150325 98.78813959406608 97.44538878716612 96.08849195155838 94.7243986347795 93.36038303019431 92.00396196342025 90.66214499293162 89.34260094022201 88.05357541471413 86.80246957228924 85.59633726638924 84.44173563217404 83.34340236640536 82.30711618061753 81.34041052271512 80.44557945646798 79.62600578498075 78.88706491112669 78.22704822223247 77.65266975755891 77.16392737391357 76.75880771394701 76.43224772821488 76.18162397977531 76.00283923673778 75.89109332672274 75.84250337089398 75.85433979509651 75.92287403554883 76.04902434586334 76.23083020410081 76.46450027563661 76.75522916881607 77.09670081505851 77.49238558428064 77.94352237121556 78.44552002070112 79.0000224665759 79.61201037175935 80.27580332975916 80.9914613718227 81.75822934689445 82.57449746030638 83.43822404575977 84.34719640503103 85.29821838779267 86.28723117274478 87.30922186495748 88.35965625446036 89.4327932220761 90.52229311974897 91.62123913949304 92.72190465356286 93.81567009000791 94.89452310109915 95.94973593422908 96.97233294408464 97.95358622444998 98.88526943841634 99.7600852958316 100.57207632889937 101.31855860526527 101.99743598381671 102.60791859706798 103.15048936382567 103.62672678307341 104.03886419337073 104.39154542716888 104.68939576034275 104.93765626627824 105.14113299170953 105.30399223554163 105.43052661327357 105.52444713489577 105.58744271286007 105.62072818879572 105.62411021521147 105.59809496412309 105.54091885251835 105.45296295565285 105.33329926436316 105.17887853551815 104.9869701364087 104.75477422873259 104.48037156480484 104.16199962096088 103.7980817544927 103.38724977546781 102.92835848694254 102.42224137395257 101.87043833008913 101.2693230465218 100.6226761405724 99.93112017376879 99.2019357434679 98.44619682681277 97.66964335399514 96.88033493493828 96.08618911957007 95.29438074288606 94.51111399488299 93.7430381632976 92.99145993948193 92.25685445353287 91.53942097258758 90.84040993821417 90.15710758954621 89.4866998530527 88.82831943169431 88.17831877756979 87.5335445961309 86.89281413387964 86.25273325530964 85.6115457871658 84.96914344522777 84.32411832875427 83.67605907789789 83.02169095430835 82.36610118245308 81.70914259461738 81.04369993461849 80.37852220220408 79.70095390079781 79.01353524990125 78.07703802393375 77.3633672972109 76.73440817241953 76.19538009266424 + 114.9460602401546 114.38215156422432 113.75733416871093 113.071975932324 112.32171064887599 111.51163011947241 110.64265259950668 109.71390570108275 108.72864586304634 107.68863623216971 106.59531369711466 105.45149651213353 104.261372180375 103.02881875507029 101.75790212982038 100.45234809842076 99.11878539332042 97.7640995143475 96.39488379624636 95.01791471184245 93.63967768010068 92.26883897406304 90.9131464807404 89.58040403251023 88.27835148721643 87.0140526114617 85.79423461367753 84.62646259806995 83.51676746356284 82.47082090004677 81.49481831600886 80.59079617543422 79.76269150984857 79.0165670503235 78.35185314193245 77.77309193787933 77.28098694110741 76.87273973546651 76.54540115826714 76.2945552228277 76.11593035705022 76.0038666399247 75.95602406869595 75.96854772075933 76.03762477103871 76.16793977969789 76.35047379334613 76.5893993232177 76.88159461133452 77.22955769792178 77.62826025736801 78.0858106104713 78.59702018119638 79.16112040003522 79.77920074362515 80.45183809579194 81.17970193614013 81.95888384344336 82.78818975405494 83.66545517370513 84.58786543256544 85.55117435634942 86.55180805951903 87.58492598836065 88.64580484343634 89.7277042161446 90.82303277537984 91.92419576803206 93.02402965261533 94.1143819284845 95.18677441352742 96.23248514219243 97.24215956391656 98.20754455746642 99.12139931795313 99.97809324752859 100.77380198091808 101.5059035867826 102.17297473431549 102.77478049920283 103.31222203483189 103.78724235880357 104.20269175148027 104.56222824928984 104.87048455568842 105.13228639155957 105.35197495239726 105.53315767721061 105.6790214950426 105.79213308745322 105.8737104140966 105.9244668481954 105.94458031526744 105.93289982842047 105.88931713479076 105.8112796901911 105.69697660497403 105.54555782457243 105.35388081127115 105.12104861128174 104.8435298034123 104.5195189888906 104.1473879277763 103.72570769323967 103.25326459534898 102.7290686920652 102.15672372110345 101.53303453610688 100.8619765929286 100.14530144206924 99.39540033073399 98.617134093455 97.82231877272956 97.01691292076721 96.20899028617846 95.40630883421758 94.61574218111502 93.84284151590752 93.09116044302719 92.36326507617865 91.66128018936269 90.98269842518597 90.32643976242508 89.69193681144901 89.07629416669428 88.47568523327631 87.88774180667266 87.30971757911209 86.73782511640277 86.16966173764372 85.60410563572398 85.03674382359544 84.46662333055224 83.89401861875291 83.31639288021827 82.73129344931277 82.14254057577205 81.53847375208811 80.92654494743698 80.2951254426115 79.43018985180944 78.73899671144633 78.12985533450149 77.60781848541427 + 115.38947993654615 114.8193166071203 114.18511639101719 113.48909039087903 112.7323005023855 111.91589252221081 111.03851110496224 110.10278410180449 109.11024543250655 108.06123609803241 106.95902074768537 105.80682627473415 104.60786032576311 103.36455162514847 102.08291771552274 100.76794440105668 99.42517085500779 98.05893013037867 96.67674658945676 95.28674907620318 93.89632599614299 92.51314041326408 91.14480538910539 89.79838042817318 88.482778257189 87.20566193246243 85.97436299205769 84.79572272389503 83.67592232563425 82.6194829031652 81.63349049858849 80.7211965155403 79.88690368445809 79.13511582656733 78.46613246878862 77.88219720025634 77.38682245610983 76.97731613528741 76.64940355435401 76.39847726473583 76.21913739383328 76.10773897752485 76.06059444444897 76.07369313025254 76.14577297042042 76.27716428058734 76.46013588133141 76.70374960258347 76.99658895273014 77.3508378863982 77.75612499181862 78.21493419387897 78.73443618077005 79.30797384304739 79.93573305593671 80.61826356302478 81.35503056449741 82.14482781849932 82.9857499704285 83.87474100314974 84.80894885663933 85.78437867561549 86.79635923799115 87.8395637313176 88.9076995505774 89.99377031611175 91.09123326027813 92.1925238558376 93.28972288911895 94.3745286046492 95.43797168965686 96.47144735361736 97.46637400581804 98.41488878416794 99.31058976402257 100.14966628997679 100.92942080048921 101.647164610311 102.30285819301511 102.8967632213097 103.43010557622806 103.90497938346994 104.32421710421697 104.69127972011627 105.00958806452208 105.2844875784882 105.51972079944342 105.71825791992768 105.88228201053512 106.01319710173544 106.1122170739879 106.17923812939699 106.21475755057271 106.21666537954829 106.18511946131677 106.11670204253157 106.01097390180527 105.86510026164711 105.67634535924499 105.44266241710503 105.16212702926971 104.83296667572523 104.45358754131135 104.02259785540946 103.53882693038871 103.00133903849196 102.41185885338822 101.77104503124336 101.07951915554219 100.34503378663487 99.57653631422193 98.78028674196771 97.96555764087807 97.14324220154617 96.32277583697099 95.50989663383716 94.71211315094774 93.93582966218568 93.18559743958228 92.4639701581795 91.77229080283918 91.11084691526642 90.48088661717534 89.8789426608043 89.30232305201284 88.74829442773915 88.21501607653828 87.69738491147076 87.19214004498888 86.69605226258378 86.20551435177224 85.71757480152917 85.2303271727667 84.7389767080793 84.2421436934757 83.73980377681586 83.22328823878999 82.6966277850049 82.14948293798811 81.57878809950383 80.78186523630222 80.11430329289799 79.52606447484641 79.02202986459872 + 115.80557606120342 115.22498703813046 114.58436023243995 113.88146839977647 113.11801313964531 112.2923861927939 111.40741653404935 110.46476017874879 109.46389165894186 108.40793763198019 107.2993716821044 106.13874368980386 104.92992594908799 103.67803998364252 102.38748674025342 101.06217426193602 99.7082336727091 98.33225447041774 96.94030208428589 95.53928403931006 94.13641676509125 92.74048310377117 91.35956098872647 90.00165309514993 88.67472718125136 87.38657929261754 86.14347320156907 84.95347679973769 83.8229773373526 82.75824150366519 81.76461614472306 80.84555652131365 80.00542836916024 79.24727007929522 78.57322615301618 77.98614929134393 77.48893739597716 77.07840856542906 76.75008986091177 76.49835037475609 76.31914167757147 76.20840222927717 76.16185049901942 76.17535341868302 76.25040028715505 76.3823034551493 76.56736109789259 76.81319219628618 77.11077371504635 77.46585858360872 77.87750481442312 78.34279643581758 78.86386044078604 79.44556228063516 80.08267957317103 80.77519746007074 81.52215936121262 82.32238339705866 83.17383704778258 84.07366635787383 85.01828403522589 86.00338016151989 87.0235723588342 88.07303997396323 89.1457483102484 90.23501045949962 91.33376679620976 92.43326191024755 93.5253547745947 94.60170194510602 95.65336521821172 96.67141072951947 97.64842650376193 98.57718177081212 99.45382960362264 100.2751495864401 101.03890536552815 101.74384374587787 102.38967373512395 102.97701530385588 103.50731836610503 103.98275321689205 104.4061181928665 104.78090605660768 105.11099783755516 105.39998856001108 105.65010192419058 105.8647401457233 106.0455190246281 106.19327135500957 106.30857390636845 106.3911014445783 106.44049226232704 106.45527608004701 106.43434892397812 106.37478967971269 106.27652119587403 106.13555627701773 105.9497259416764 105.71695464976499 105.43528847064515 105.10292208210093 104.71822409997415 104.27997870081359 103.78890956033732 103.24247971389343 102.64107121987446 101.98795991016935 101.28090028465823 100.53219366214088 99.74758252794257 98.9358962602028 98.1080648085285 97.27274060827958 96.4385649368538 95.61662616479107 94.8113345821425 94.02992646430363 93.27819020126256 92.56018371292868 91.87944484263484 91.23502379897798 90.62666415408502 90.05315478089251 89.51256497400226 89.00345347307167 88.52071909069304 88.06081169487565 87.62012862292907 87.1942640459155 86.77929331404961 86.37153885105285 85.9650351940845 85.55791897263602 85.14730228806411 84.72541933722859 84.29383437575432 83.84228486977865 83.36844898317565 82.86769587507592 82.25560275914378 81.48933368635566 80.92296656848026 80.43783838906663 + 116.19436389469065 115.60827364380818 114.95843715925572 114.24702821222172 113.47549829698585 112.64315867176721 111.7522337889476 110.80174341828886 109.79423291268274 108.73184901614002 107.61492431675036 106.44763104394761 105.23339504596176 103.97376709116247 102.6734399939197 101.33919092666527 99.97653078315885 98.59111412484694 97.18883022912667 95.77742201890595 94.36417972371949 92.9578793575566 91.56651482733112 90.19696136766312 88.85846921929085 87.55899555924708 86.30613362144203 85.10699664043867 83.9680363889472 82.895642378214 81.89389406892835 80.96756863392757 80.12146202642546 79.35901398412057 78.68185399391089 78.09208217211612 77.59330678591057 77.18171386157675 76.85213374285523 76.60040881720272 76.42175534838184 76.31157482930465 76.26544550309495 76.27911437811504 76.3568917012944 76.4889559664662 76.67765087529206 76.92335196528984 77.2253374088942 77.58025421680907 77.99759976686303 78.46954088334455 78.99731453056489 79.58208735954403 80.22591600415008 80.92724682582413 81.6837290047195 82.49379100933939 83.35509303561251 84.26439032920536 85.21754607029972 86.21012489466983 87.23744685548994 88.29314721388323 89.3698614194257 90.46030635991752 91.5567825881063 92.65127190001104 93.73435052586667 94.79848812137453 95.83516618916664 96.83618145303706 97.7943695890971 98.70450182006404 99.5631620545895 100.36785989832889 101.11699575442151 101.80984678480579 102.44652801071237 103.02780809092005 103.55512726735454 104.03115930355558 104.4585804098557 104.84079924767425 105.18126636488915 105.48294896971439 105.74816036750569 105.97804083815976 106.1745396743477 106.33803066799022 106.46847699821255 106.56537297356569 106.6276254179266 106.65418209447114 106.64300620217304 106.59191473231435 106.50140415794172 106.3666755166705 106.18555701286536 105.95597942909141 105.67628027500359 105.34414454520483 104.9578785750628 104.51671913691433 104.01917951357804 103.46432655960419 102.85159108247353 102.18865132501644 101.47190538171452 100.71206748088841 99.91461002282479 99.09136363459943 98.25313553257493 97.4067364919357 96.56172819058632 95.7274835295887 94.91606554663304 94.13094422980807 93.37873864071398 92.66415697212875 91.99005646465349 91.35799907270287 90.76836682118496 90.22180566933167 89.71528923915949 89.24588453433401 88.81101269489912 88.40659891525058 88.02761235912912 87.67017756459839 87.32929000144595 86.99885587641455 86.67533890618164 86.35419923127586 86.02761253140068 85.69517845318613 85.34566271603116 84.97753964930249 84.58486440435453 84.15212118165637 83.62633787622416 82.8641345366092 82.32049259042888 81.85506821766695 + 116.56196693452603 115.96627196447292 115.30870232543069 114.59191846409783 113.81331348327659 112.9754746924964 112.07752298323409 111.1208626309237 110.10767390918043 109.03735035536492 107.91421259292443 106.74087872228446 105.51857996340456 104.25280815460287 102.94710920600929 101.60506070052767 100.2331576449465 98.83869349895188 97.42822868400708 96.0088045582334 94.58638460304276 93.16959050491349 91.76766697689614 90.38878367817084 89.0411067824251 87.73265786608428 86.47059316180521 85.26215088989868 84.11447024137692 83.03423548206955 82.02639793888899 81.09482703023173 80.24446909140224 79.47817664731387 78.79831022492033 78.2054611314532 77.70455743603303 77.29180320311235 76.96233728554203 76.71098755431066 76.53279392933823 76.42300069550657 76.37704894888829 76.39268213176274 76.47091254926762 76.60271269671831 76.79479753446228 77.03983690853465 77.34589822523162 77.70509922718477 78.1224325177258 78.60011679510137 79.13455216181389 79.72667500266704 80.37679163323453 81.08437068497905 81.84829062340074 82.66664026263086 83.53661093003416 84.45457629535767 85.41611156128285 86.41603016972867 87.44843713173003 88.50679786771674 89.58402122447072 90.67201887942865 91.7628536095102 92.84898050517093 93.92142739313006 94.971827237218 95.99211996022042 96.97492936332056 97.9140937597378 98.80540177663839 99.6461418892614 100.43300345900553 101.16640650287053 101.84660536053646 102.47412907888989 103.0501200148014 103.57624064387798 104.05456927495491 104.48696185306166 104.8765486866518 105.22677002959274 105.54035368229914 105.8190337950735 106.06373149340996 106.27493844426897 106.4531075209563 106.59762573006057 106.70782262209373 106.78198856248703 106.81976113174372 106.819854609787 106.77906112766844 106.69574122741443 106.56661995813064 106.38948924240407 106.16224885458901 105.8832741457816 105.55063751479476 105.16590184606619 104.72522154627272 104.22706809733175 103.67054248265865 103.05502931383316 102.38488028993844 101.65754415841805 100.88970600511705 100.08321059555078 99.25222919447762 98.40427378280243 97.5485249455192 96.69478952011013 95.85267905741705 95.03134790093576 94.24128234237433 93.48776527793217 92.77555642831018 92.10826090174558 91.4881015912883 90.91605145665147 90.3919058421142 89.91492937170456 89.48359835171404 89.09327702937152 88.74015651621191 88.4201688667506 88.12799942655124 87.85837258544557 87.60557123728567 87.36433728681064 87.12663484515899 86.89026586969563 86.64291577433701 86.38347823218292 86.10182752335025 85.78774014322643 85.43519156252785 85.00830065282187 84.23875248844838 83.71857351571816 83.27354350924868 + 116.90660174313088 116.30460320697301 115.6419467564269 114.91719552974224 114.13205212712215 113.28773436750214 112.38386597990478 111.42298002741802 110.40380003642628 109.32971955767033 108.2011072594287 107.02055739724662 105.79294100829279 104.52185046281231 103.20957518744477 101.86203534923436 100.48384363507316 99.08275371965291 97.66391040891529 96.23592686935311 94.80627177679146 93.3822001252754 91.97236980270009 90.58457999296893 89.22780152508794 87.91042068260298 86.64026042378983 85.42467712624601 84.27046705961642 83.1842101781316 82.17103190115121 81.23435830795732 80.37952332282924 79.60905980036503 78.92624630979111 78.33115478286075 77.82943614132449 77.41643043406958 77.0870771448342 76.83601350965402 76.65810683727133 76.54844815837917 76.50234560141696 76.52044024330088 76.59812672257792 76.72972988985848 76.92446587702491 77.17070361681583 77.47813554275025 77.841692997234 78.26107607264545 78.7409837017036 79.28140872939362 79.88009391843946 80.53725067338115 81.25233327826443 82.02398110724455 82.849982953047 83.72726352051508 84.6518917841473 85.61911056247176 86.62322374874074 87.65783325139014 88.71621060939901 89.79147775616121 90.87550666712845 91.95948058946044 93.03512995457972 94.09420327307149 95.12861732763702 96.13077785076639 97.09384505707138 98.01187604280848 98.88183739793477 99.7026763833688 100.47329385393598 101.19326825838363 101.8628018881084 102.482653558221 103.05405877720607 103.57820748287138 104.05778636082646 104.49535218549438 104.89345857320284 105.25356132253022 105.57825540269162 105.86898635916934 106.12726800594227 106.35232347705838 106.54414341722409 106.70172283761543 106.82421711236958 106.90965914362769 106.95978459834167 106.96938320446122 106.93679140983072 106.8600422786755 106.73598618618671 106.56366957597247 106.34314322592803 106.06983804199565 105.7415587445587 105.35664998548512 104.91411090156764 104.41587393049896 103.86109826430875 103.24659168516064 102.57625760927232 101.84826216120459 101.07193909451424 100.25871878010969 99.42248417469406 98.56719219762692 97.70375077441035 96.84330321404566 95.99660270441578 95.1709817339412 94.37534310350856 93.61773134394069 92.90527043474559 92.2419248917381 91.63012307340976 91.07292745591653 90.56997354905576 90.12032178487237 89.72234090126003 89.37281709446718 89.06755692431527 88.80241039838336 88.57321724161143 88.37263532371846 88.19520659209522 88.03322114265188 87.88227626259706 87.73057067537259 87.57581405824162 87.4046852299322 87.21080020303175 86.98555457207404 86.7166661549262 86.38707831691521 85.61323418666302 85.11714031937397 84.6930884226608 + 117.23576625694551 116.62511853121242 115.95513340452082 115.2239179806947 114.43448995445881 113.584160020181 112.67628857813588 111.70938364634628 110.6862927833746 109.60815318287433 108.4761228186545 107.29294311911592 106.06038126649763 104.78323147112923 103.46682220270394 102.1158252152899 100.73254065970457 99.32482749489041 97.90070569388823 96.46719847265452 95.03095265158639 93.60011334309598 92.18291309207092 90.78833330718142 89.42501745718926 88.1011695254707 86.82471478777425 85.60229578950013 84.44165476689422 83.34940732373572 82.33081512430523 81.38986259830648 80.53218590714036 79.75889118443428 79.07442692680746 78.47797759888198 77.97495994925158 77.56172336693045 77.23240474639255 76.98145570586772 76.80357607434227 76.6937088792496 76.64784853783469 76.66758434231804 76.74419633476946 76.87880576885621 77.07223793967016 77.32204461374839 77.62771132605874 77.99542958487918 78.41948144189357 78.90169594155373 79.44396534610769 80.04877686004322 80.71244638519889 81.43426955931655 82.21267356268258 83.04518358876297 83.92841490502099 84.85809007162104 85.82908041374122 86.8361409504192 87.87264169987894 88.93041273565117 90.00168189819865 91.07836214759608 92.15219592142522 93.21490492989943 94.25833859986788 95.27410329356468 96.25432805087094 97.19514725509806 98.09231067316857 98.94312311312805 99.74634761922856 100.50139749015929 101.20824829543066 101.86660484440344 102.47810861794632 103.04464272529596 103.56777898719798 104.04929995161692 104.49135389825622 104.89640706108712 105.26655708167762 105.60212317419028 105.90460204803854 106.17434428292522 106.41231647542799 106.61679656315611 106.78649936966157 106.92031953268395 107.0176876932076 107.07787561986416 107.09626659456087 107.07112739072764 107.00089254505887 106.88655166798294 106.72203459737133 106.50518248923699 106.23398414551379 105.91037059736868 105.53209204903999 105.09540237483114 104.59913266339657 104.04239467977311 103.4312932176876 102.76458935661461 102.03970792629396 101.26505248876738 100.44805349834384 99.60664925350288 98.74700338552013 97.87854297730003 97.0147537719743 96.162740157015 95.33231611423612 94.53280140912359 93.77275890359103 93.05962828276395 92.39914660052867 91.79506987700593 91.24969008476323 90.7639384606942 90.33745636234787 89.96869956288162 89.65507234529859 89.39373095401146 89.18166897618623 89.01092724713232 88.87616971969891 88.77104030363611 88.68848499753301 88.6190002300673 88.55756079383583 88.4897134145245 88.41103921095699 88.31096378112241 88.17184860598003 87.9846836519528 87.73495184082098 86.98762627604289 86.51612397642221 86.1135271167523 + 117.54574357018681 116.92947427651912 116.25400583210136 115.51896380184408 114.72411541341071 113.87040515840378 112.95773252563602 111.98735956073186 110.96071210656449 109.87828589445547 108.74384707627136 107.55797009335373 106.32380215538436 105.04412680921462 103.72373135186852 102.36814169589607 100.98328644865671 99.57317603591498 98.1440414983079 96.70519368065567 95.26427893331363 93.82914705844463 92.40795778487836 91.00817927955147 89.63878096446913 88.30889368966405 87.02651903850233 85.79917070515478 84.63406512164048 83.53768030878372 82.51535330794894 81.5712398886129 80.7111766184327 79.93533251584702 79.2495355610887 78.65231549156351 78.14739400694836 77.73386890804599 77.40442119470363 77.15332349444729 76.97511479336825 76.86459675792302 76.82127919469104 76.83986690330629 76.91478164816442 77.05233177574738 77.24350764931243 77.49666984001084 77.80389425477836 78.17152868346014 78.60008958539302 79.08727067505599 79.63434790427314 80.2419147717394 80.90977387229333 81.63685584853555 82.42116680413751 83.25976463074285 84.14876408931579 85.0833698803216 86.05793634341686 87.06605185455787 88.1006454447935 89.15411265866621 90.21845720929396 91.28545656891436 92.34671686399079 93.3930447723538 94.4166905951999 95.41085150810244 96.37007640347188 97.28986100972011 98.16656110986172 98.99793142849609 99.78309648410037 100.52096414205073 101.21357109015719 101.86190130209032 102.46704608640441 103.03028466048735 103.55178161820145 104.0346102378626 104.48100230809048 104.89260729925932 105.27092259516616 105.61708812324541 105.9305115472195 106.21153763230883 106.46055216288961 106.67673411427631 106.85768281274434 107.00188855460753 107.11047604401114 107.1799075331191 107.2064177253941 107.18944649398846 107.13002297934231 107.02151217846409 106.86157824682036 106.6520060133238 106.39021512854 106.0718867881772 105.69535603801393 105.26523619047444 104.77688587048719 104.22777489096495 103.61735154908882 102.95446989307423 102.23611063951704 101.46692442961583 100.6547535294825 99.81077878592784 98.94780241380018 98.07883859986492 97.21105479692187 96.35445612892083 95.51952352849277 94.71595087228732 93.95431241777206 93.24130474295526 92.58301029568364 91.98415668488592 91.44792216146843 90.97605862369674 90.56895518778725 90.22572261476674 89.94569665237624 89.7268662490757 89.56180088277907 89.44559730216126 89.37438636659417 89.33887273768279 89.3315895199898 89.34476756286935 89.36705702549602 89.39155158432546 89.40406252945671 89.3924236515963 89.34525498973889 89.24730634673195 89.0805589016027 88.36197540137785 87.91545546188871 87.53468375037214 + 117.84299949329436 117.22310362517278 116.5418193511693 115.80187450103384 115.0024786648998 114.14565760414499 113.23041127781497 112.2591359177566 111.22934030135973 110.14565612589077 109.0080520414488 107.82064622138027 106.5864792041605 105.30603462254922 103.9840856807292 102.62759736024115 101.24021294766804 99.82895994124652 98.39829462937796 96.95756632439702 95.51389327619485 94.07500332608298 92.6498964274904 91.24695001129106 89.87464187028822 88.54140834337522 87.2554824490169 86.02471184730885 84.85587662830704 83.7558340824354 82.73013461918836 81.7836349574076 80.9209080290123 80.14301031343233 79.45579805972922 78.85806142179148 78.35141206697955 77.93734941588184 77.60780364843264 77.35651445875999 77.17785292498924 77.06901519981942 77.02611071983092 77.04304498758398 77.11884985305339 77.25610876562746 77.44817750292395 77.70078309675895 78.01173809573686 78.37950283547167 78.80906641750303 79.30102590140729 79.85321146595182 80.46611552236624 81.13939177931105 81.87177207139817 82.66101503098074 83.50388707696528 84.39617545028344 85.33273228928228 86.30754802070525 87.31385165419239 88.34423492138345 89.39160635151813 90.44694553700147 91.50137117185277 92.54650399870322 93.57421339483858 94.57727798715979 95.54980446931795 96.4866110492935 97.38403741529152 98.2390776348069 99.04876243447113 99.81482178450065 100.53766023053834 101.21798229318263 101.85671208325056 102.45414770079164 103.01290676663606 103.53441157791791 104.01987419557878 104.46999573164743 104.88774019622407 105.27367232568652 105.62847142308784 105.95218714616209 106.24378135492135 106.502668954419 106.72963106831554 106.92092305365834 107.07520760041417 107.19376233646528 107.27173147909924 107.30610006536274 107.30015253369872 107.24723507279411 107.1440862788615 106.99548456882889 106.79328758472327 106.53531144495744 106.22613857182384 105.86023912846325 105.43461226460596 104.95146913264009 104.41253939166016 103.81226152854117 103.15426402223325 102.44161336064994 101.68125504149992 100.87728413003363 100.03927754117943 99.17518456797025 98.3061522106402 97.43652806576412 96.57634762826774 95.73895439655584 94.9345846937347 94.17067813269956 93.45582018706097 92.79741446103725 92.20126606906169 91.67136713157684 91.21022898350178 90.8189649069314 90.50062106748199 90.25272981592184 90.06961607975006 89.94744276427815 89.88489560441549 89.87198028592866 89.90260106055491 89.9685289633549 90.05999963705807 90.16851238415987 90.27903144980603 90.38234901524564 90.4650096421417 90.51141600864784 90.50317884803187 90.42111140383523 89.73632820745769 89.31506575079942 88.95638248236936 + 118.12945368322794 117.5027625655039 116.81758165298622 116.0738479563838 115.27278685948083 114.41269412145026 113.49663445658821 112.52260124573952 111.49444186646862 110.4112756508339 109.27369989828392 108.08628830067127 106.85089767136587 105.57262894950372 104.25309108554127 102.89555727646854 101.5087646459244 100.09840561303615 98.66941044401953 97.2273102552757 95.78274273994886 94.34351138249424 92.91775953871097 91.51364590880193 90.1391299424338 88.80353988229557 87.51514463411719 86.2818374043579 85.11092921811846 84.00892121610623 82.98125612324105 82.03353722063603 81.16903518198114 80.39068989957482 79.70155004272218 79.10360384258027 78.5969593429221 78.1809259668412 77.85017653691166 77.59865585761948 77.42126106141714 77.31272071884919 77.26814499752359 77.28288023918623 77.36186414503189 77.49585184928152 77.6913373440442 77.94091828465683 78.25486597856745 78.62675583111215 79.05788731547564 79.54990916136964 80.10615119538838 80.7241062087543 81.40230669583524 82.13924071813919 82.93248217131828 83.77848275638094 84.6726898007511 85.60960393416781 86.58418199792956 87.58802273849838 88.61312305663083 89.65127734975506 90.69405699534222 91.73299950277686 92.75981281108571 93.76687303829449 94.74739999442104 95.69642486368251 96.60928867762296 97.48257020866903 98.3147786562977 99.1050663385712 99.85381029915558 100.56168272485625 101.2286016953795 101.856803924437 102.44782251661277 103.00271507892295 103.52248117694432 104.00925176053909 104.46397245028204 104.88705245722844 105.28014517110654 105.64262705530004 105.97524518889237 106.27645225393219 106.54439594196016 106.7811687109624 106.98193472681395 107.14598046766113 107.27334360379514 107.35917505269464 107.40432106910971 107.40537298815484 107.35848083336678 107.26796973145946 107.12504922758272 106.92959384982598 106.68406154634987 106.38101600371785 106.02224224085981 105.60904459184215 105.13508612908569 104.60189487106473 104.01453868141571 103.36896773897502 102.66366553469823 101.91165668514665 101.11887889682377 100.29008163542952 99.434696191466 98.56530022827998 97.69439443132516 96.8342066832166 95.99586775707989 95.18795692607416 94.42052133363444 93.70259765132934 93.04469693516829 92.45142993395748 91.92694708310178 91.47464464484462 91.10105578280276 90.80331784416512 90.57925567880115 90.42659990620497 90.34769272351309 90.33196208257188 90.37403078323695 90.46757722015501 90.60284781482186 90.77070801737099 90.95952362988801 91.1581469030349 91.35262789257807 91.52492981450274 91.66096246493436 91.74181231463308 91.74573013335329 91.54112948367401 90.71488581818012 90.37844747159288 + 118.40471194720305 117.77457400247985 117.0872878018047 116.34129392512513 115.53802884437113 114.6775207749238 113.75980779387062 112.78660136700319 111.75797261733695 110.67616715916289 109.54286610438776 108.35713288228865 107.12466440425331 105.84771432567635 104.53142050656984 103.17904260172286 101.79434779754713 100.38522823338894 98.9588156997599 97.5216551926115 96.07904497500624 94.64039354417608 93.21499852254061 91.81121224922262 90.43751652288991 89.10237893045237 87.81408706273459 86.5805602698261 85.40913882575437 84.30635059588467 83.27799810436802 82.32941789809934 81.46360133818024 80.68517045682802 79.99404314130895 79.39589846548625 78.88912817656846 78.47291078558831 78.14165403658411 77.88949642053498 77.71087732130968 77.60053198030866 77.55348435761144 77.57083333059504 77.64748133574814 77.7815661968528 77.97636868447674 78.22978935154332 78.53999380970585 78.91519181571536 79.35079397114866 79.8473304747472 80.4056623732357 81.02601886916108 81.70748499421059 82.44812080000604 83.24492489548035 84.09383675038143 84.98977687645736 85.9267230139209 86.89781950671573 87.8955161628435 88.9117181945725 89.93788154762291 90.96620267264099 91.98757809625846 92.99310739082344 93.97616763826926 94.93158309834072 95.85509631058379 96.74331900174187 97.5936087120999 98.40388099193008 99.17412748512088 99.9043129422495 100.59591806427721 101.25089116445162 101.87030978056903 102.45419461414686 103.00459864481793 103.52287911293267 104.01023750544597 104.46815074011617 104.89647417640238 105.2955194468073 105.66550555245793 106.00529022523804 106.31518886802293 106.59192469260474 106.83703261432048 107.04643038592025 107.21954608342466 107.35499862254409 107.44888868266561 107.50344840337299 107.51097546419193 107.47585093961307 107.3914649970849 107.25703482291978 107.07312792756113 106.83278434540117 106.54257619590524 106.19449010667182 105.78826967869466 105.32869447589253 104.80782810857347 104.22856083641696 103.5976875186286 102.90735133736436 102.16397913599525 101.38268192406376 100.5658938996871 99.72207692056787 98.86064113988785 97.99049437516942 97.13082580994707 96.29062959328259 95.479022544702 94.70993872663838 93.992142478944 93.33225444473962 92.73762819740192 92.21628615574112 91.77583792645872 91.4146499646027 91.13266485351893 90.92959474612998 90.80980757507704 90.76503861207019 90.79184962268111 90.88669528624222 91.03803334153528 91.23947708545384 91.47977329759141 91.74854174202576 92.0295685220949 92.31016016036857 92.57369530189025 92.80179247724494 92.97261299666984 93.0631725447841 92.9735398152892 92.11484663905675 91.80070287689168 + 118.67445616012148 118.04199734459282 117.35136493669744 116.60465086730774 115.80013369103841 114.94059164494169 114.0246910244107 113.0526571391146 112.02599189395494 110.9469173504603 109.81600511608418 108.63742011989568 107.40899895213538 106.13672740049955 104.82578946276068 103.4785664309096 102.10028510411217 100.69673580740594 99.27498632662778 97.84163861758239 96.40487274235838 94.97085889741484 93.54942704535142 92.14915368626963 90.77802312233122 89.44468893914296 88.157825047533 86.92534509826866 85.75458864461902 84.65209757324938 83.62405666008438 82.67529223931487 81.80966369034564 81.03109115304193 80.34077731018144 79.74084550594385 79.2344659670515 78.81769749864428 78.48554281756917 78.23201260813373 78.05143554253192 77.93845389975225 77.89257215474998 77.90918373689061 77.9817094377023 78.11942526137062 78.31130823609246 78.56656015433988 78.88104398527499 79.25479969666691 79.69050192710245 80.19146045896545 80.75432602388672 81.37896097672993 82.06423774260332 82.80796505228781 83.60668399896096 84.45590493881188 85.35038038623908 86.28374093392857 87.24880991750139 88.23890389316759 89.24445758473483 90.25663428667009 91.26679777991124 92.26653652240577 93.24845539864738 94.2067457440361 95.13658630400836 96.03430688028715 96.89718178990921 97.72325697507283 98.51059779448714 99.25934740469113 99.9715567754996 100.6484300027565 101.29081035296674 101.89985150612443 102.47753123053313 103.02448706715178 103.54123817873027 104.02883543836747 104.48874483898625 104.92146718746028 105.32542238638281 105.70195453587421 106.04825431640246 106.36564069787924 106.65024725719172 106.90291018807109 107.12011801474831 107.30163680314415 107.44448576001062 107.54780796724907 107.60927491680738 107.62612108993736 107.59901443241489 107.52268412599062 107.39949326994973 107.22186735463957 106.99641246301088 106.71318173454158 106.37793532771555 105.98544454471663 105.53423816156025 105.02979249564156 104.46498782910433 103.84465871591026 103.17134683637622 102.4447993342051 101.67293428039795 100.86933446284556 100.03955898505389 99.18867513038788 98.32914432451304 97.47274736901853 96.62904137547608 95.81514069650274 95.04328642556118 94.32166373156618 93.66030385781282 93.07080090085702 92.55490707248946 92.11740416573295 91.76163640190589 91.49145492503195 91.31335228637442 91.21870989523283 91.20406990451497 91.27284866958449 91.4127634238719 91.62021600281687 91.88281969868879 92.19226619419561 92.53493101199177 92.89747537562296 93.2643089562123 93.61725768989658 93.93456273221253 94.19495539629597 94.37158944014942 94.40124033146652 93.5148791884552 93.22297285711478 + 118.93723379722884 118.30243314903235 117.61051186876209 116.86330114901888 116.06077414766065 115.20190892922388 114.28938412305375 113.32149159467384 112.30164096942066 111.22596464804039 110.1012779478294 108.92671260824615 107.7075349728651 106.44393468634422 105.13872545265899 103.79971290154526 102.43107619344254 101.03567270879009 99.62102318414922 98.19560301590188 96.76648431217143 95.3401814469054 93.92553365950916 92.5302868134203 91.16420518775965 89.83568271517206 88.55295269229974 87.32389443939277 86.15549482781086 85.05508962727349 84.02854148190258 83.0804440898635 82.21597531249861 81.43657663379787 80.7469973665762 80.14674151265527 79.63775002378023 79.22095657285244 78.88810622446685 78.6324638937684 78.45009166670661 78.33827795740662 78.29069220851765 78.30282493834189 78.37958489685035 78.51180119348251 78.70801385878241 78.96068170889107 79.27614527640567 79.65410350733612 80.09326485531732 80.5949591535875 81.15962045499242 81.78674565381131 82.47443244193737 83.22020643175766 84.02031562823178 84.86983281271502 85.76280996950712 86.6923902019313 87.65095516461665 88.62968858888784 89.62050140754437 90.61477012354793 91.60406080945799 92.5803367629922 93.53660352143736 94.46799791948223 95.37061732099367 96.24141631406914 97.07716325345748 97.87756907935434 98.64193704023018 99.37073995575437 100.06529362361789 100.7260380267597 101.35558961934689 101.95506512847903 102.52516132246377 103.06738884125471 103.58217772358985 104.07064359126935 104.5317644231505 104.9675298080874 105.37636115431843 105.75760956956499 106.11023313423348 106.43346524552622 106.72503007082763 106.98448778334239 107.2086981109031 107.39797083504934 107.54754052271664 107.6597549078748 107.72755714443026 107.75488143785017 107.73374972263763 107.66982961675797 107.55278274612687 107.3900785504688 107.17101243209463 106.90339676469513 106.57766160098889 106.19948624163645 105.76376655897252 105.27025494536346 104.7240486003437 104.11861374733294 103.45942066598677 102.75143815158754 101.99811982996935 101.2034744633931 100.38929954788183 99.55113218733256 98.70446966139376 97.85537108699154 97.0181571292055 96.20637406909488 95.43034484067564 94.7066068314445 94.04494703028512 93.4508780498012 92.93208996696228 92.4981667255193 92.14830478605388 91.89449063186075 91.73037809110117 91.65570570165733 91.67518892676514 91.77613847803077 91.96110787306878 92.21695707421642 92.5381027797419 92.91193162486982 93.32640723845063 93.76570703906046 94.21273696732904 94.64932495897541 95.05277855371766 95.40010741354725 95.66204840298275 95.81000935241711 94.9149144414013 94.64508157111115 + 119.19603569585637 118.56082628264939 117.8706309828418 117.12430338978005 116.3237612084429 115.46867201007687 114.55905504613405 113.59717203039813 112.58172135803956 111.51664639405504 110.39926734136624 109.23362739031157 108.0226387294823 106.76941909553288 105.4774905334462 104.14763544971711 102.78842272791582 101.40568414741342 100.00456816634812 98.58829175191288 97.16821969729467 95.75177660475038 94.34679386487927 92.96141723493595 91.6039920699575 90.28289058815658 89.00606837470485 87.78209169973877 86.61847627217746 85.52199949351736 84.49843563735232 83.5531834625792 82.68949820746796 81.91148138126162 81.22065837870815 80.6208704022074 80.11192571640824 79.69308451042328 79.3587720536441 79.10275550035226 78.91899667041791 78.8033993825801 78.75147251904393 78.76681933314651 78.83897089099503 78.97385405802228 79.16547833958063 79.42299790365664 79.73904827046225 80.11577050246801 80.5576752887287 81.06395340293987 81.63261696166546 82.26266310584369 82.9526175194476 83.6994835554345 84.49912299229462 85.3460356668161 86.2336175958549 87.15509643329297 88.1025860072629 89.0687477397887 90.04351360360191 91.01803867245647 91.98377673104504 92.93344699745276 93.86162496214551 94.76409632579072 95.63741878191182 96.47923175169412 97.28815311227707 98.0633908210555 98.80467199394631 99.51205476315391 100.1877760078343 100.83383863060426 101.45123162337322 102.04111367010997 102.60376724620531 103.14052829561128 103.65265402795751 104.14003989025859 104.60324981025066 105.04035101671127 105.45305052681859 105.8381158453055 106.19609110608326 106.52432456323669 106.8219401666904 107.08744734928406 107.3178603426038 107.514249289718 107.67074021727481 107.79044535681497 107.86712885810317 107.90135522313892 107.89138882713382 107.83386595335048 107.73042032425285 107.57436924276959 107.37113456574997 107.11137948013511 106.80279212636827 106.43543184780842 106.01663303966491 105.53933851470313 105.00740089150052 104.42211060494007 103.77817150535154 103.08716387770761 102.35395062850837 101.57913865363733 100.77429825836712 99.95153289409063 99.11775505735604 98.27852531285085 97.45081703063252 96.6412151723235 95.86708814321594 95.14094122285339 94.47277052090394 93.87724840534014 93.35801237311394 92.92254219226253 92.58509448732798 92.33891937904721 92.18416227454945 92.13389867608372 92.17596070200338 92.31081498743244 92.53259235688277 92.83632835344014 93.20925765556974 93.64378004688544 94.12426005453473 94.63586721009523 95.16091691614345 95.67890270332107 96.16617087298135 96.5962492165318 96.9404749072078 97.16432909155927 96.31488337292095 96.06685317772975 + 119.4553035553271 118.82081159678592 118.13129584263362 117.38834673116997 116.59123766763702 115.7419817601386 114.8385783873657 113.88256987940422 112.87563749263965 111.81812215233815 110.71265861327097 109.56024760521466 108.36005953611134 107.11968738586118 105.83977505176293 104.52677107584293 103.18156972487701 101.81130981235873 100.4231369228786 99.02361222236308 97.61848414730488 96.2151045831265 94.82166909311147 93.44734955512936 92.10036320829535 90.78899569118786 89.52143807052663 88.30559787945322 87.1488835792363 86.05776003109268 85.03851762041202 84.09645618913156 83.23573452179163 82.45982736167412 81.77126231588447 81.1696913720815 80.65978934065815 80.2399014738105 79.9037492465529 79.64543763519644 79.45846512185396 79.34198698989337 79.29095205038118 79.30048735071983 79.37446568360227 79.50576000060231 79.70185373375499 79.95625192838283 80.27339350024447 80.6552378826014 81.09950821678306 81.60679406689871 82.17666853095933 82.80840547015062 83.4996768069391 84.24680322352141 85.04464438210562 85.8878987769811 86.76979605836686 87.68273760109159 88.61848167125487 89.56733439904386 90.52122145755281 91.4715440919799 92.41053370889246 93.3314930609506 94.22974260845959 95.10176330665197 95.94499330369032 96.75773401064642 97.53901488572076 98.287594623624 99.00441062031803 99.69083137175743 100.3484982397441 100.97841023540137 101.5826339680475 102.16204986450393 102.71768989399797 103.24989782310759 103.75830458819209 104.24416301040351 104.70743490743101 105.14634143654482 105.5611537592853 105.94914991227253 106.31147795473565 106.64384069208027 106.94664100471762 107.21747776190253 107.45327977847316 107.65615287649528 107.82013872706212 107.945559706782 108.03119255609415 108.07221456363608 108.07208548265018 108.02486329693899 107.930170691083 107.78814931093564 107.59312784384565 107.3507701564899 107.05145528571276 106.70333901929057 106.29566265152918 105.83865292336284 105.32276653065072 104.75514992401 104.133089201664 103.45672014756566 102.74324471345568 101.98957849796129 101.20337420792599 100.39315402913414 99.57024786974522 98.7456425997101 97.92572155412297 97.12317838577603 96.35160691736777 95.62122794507324 94.95264521538229 94.35070992050657 93.83447821566799 93.40634464962834 93.06644020104339 92.82341218882999 92.68845185671422 92.64912470541707 92.71523304566081 92.87818193764402 93.13548604315665 93.47918749543611 93.90217598935143 94.3919500880428 94.93436249596303 95.51451722845609 96.11314606469723 96.70764057483002 97.27556380626947 97.78503432268461 98.20647975459012 98.5055942618867 97.71471695804001 97.48811183581961 + 119.71367550468152 119.07967591743444 118.39313363770376 117.65449388857817 116.86353434110697 116.019990818274 115.12601580802861 114.18046086941851 113.18502364637811 112.13843658427297 111.04480469839055 109.90513821453824 108.72340991680665 107.49728619413243 106.23361632022811 104.93685204582745 103.6102108553052 102.25874563908701 100.88798355528944 99.50503114429996 98.11650961346933 96.73040815720672 95.35422962801742 93.99579811900861 92.66298953180595 91.36473060974294 90.10874271923868 88.90282793234553 87.75466842771877 86.6711209308132 85.65811077173278 84.72061382871071 83.86325537709942 83.08936983161935 82.40141705343291 81.8023752740931 81.29217310601332 80.87003272333145 80.53161638938576 80.27140030060076 80.08403833166561 79.96328696524176 79.90827689760654 79.91947709240974 79.9883255130868 80.12313819735813 80.31576185235181 80.57323762367805 80.89280625813915 81.27459828759443 81.71978069375832 82.22940249157291 82.8027299876418 83.43671166298698 84.12826066105852 84.87349508314985 85.66774955098523 86.50493483491397 87.37745898761887 88.27773543981193 89.19757412474215 90.12768781030671 91.05918298794143 91.983407241893 92.89305699928144 93.78292722545746 94.6491363292383 95.48873434121315 96.29970445448227 97.08119249418601 97.8329193007763 98.55508669801571 99.24819330955536 99.91315598984531 100.55194524748156 101.1666978396694 101.75776548576142 102.32633889552352 102.87306496080664 103.39948134325414 103.90444192820314 104.38864362731555 104.85027802116231 105.29070527694981 105.70631201558423 106.0971121850841 106.46204263180009 106.79770550534785 107.10478779297316 107.38025871648978 107.62141248988996 107.82933824677337 108.0002358740943 108.13146332100766 108.22480501365992 108.27550310267593 108.2815077294597 108.2459481012054 108.16202116656187 108.02996911765837 107.85055600280427 107.61759475088137 107.33710096499027 107.00055549703683 106.61362317756583 106.1693641986714 105.67511266700191 105.12301321781146 104.5221022192836 103.86895674415433 103.16960494013479 102.43713990501283 101.67044892233825 100.88046686674042 100.07117707756503 99.25718489069281 98.44470065140457 97.65151520370999 96.88158762295429 96.15727607284445 95.48660096030943 94.88878007873095 94.36891608199491 93.9354233404825 93.59710893501484 93.36447319788773 93.2357640781719 93.21174754007119 93.29629321350578 93.48428474643273 93.77147012151761 94.15492743163023 94.62043544336474 95.16079536912235 95.7603085605521 96.40237946894776 97.0676480244149 97.73337955037618 98.37416373658118 98.96172947264692 99.46108161780289 99.82927419309118 99.11434617178443 98.9086817042297 + 119.97339144617638 119.34384228097069 118.66223252865159 117.92915207622234 117.14545946745521 116.31081327107906 115.42554565927578 114.4919202191781 113.50822413337528 112.47851807403607 111.40048151194422 110.27748458227596 109.11055288856072 107.90537696745204 106.66357852922016 105.38494018641231 104.07873995438842 102.74916039658885 101.40044296242638 100.03902015723833 98.6710603189168 97.30510231237467 95.94846256870238 94.60818523567946 93.2928298718056 92.01060432954964 90.7694928742827 89.5772587957581 88.44123425308268 87.3676755194107 86.36292034963525 85.43232678247027 84.5794895124537 83.80855142127689 83.12277702124301 82.52341319057767 82.01260480548125 81.59025994026427 81.24950653422779 80.98585246419069 80.7967981368511 80.67545755236166 80.6185429672095 80.62592131382725 80.69702838932056 80.82815724236096 81.023220913972 81.28127997672327 81.600535307965 81.9843405181536 82.43401504032725 82.946194734665 83.52040909967809 84.15422752598784 84.84437294134293 85.58692907332883 86.37635964159563 87.20475802206732 88.06570796107587 88.9510236678023 89.85204112675792 90.75922266602987 91.66351938240582 92.55738476885027 93.43449999870226 94.29061762249992 95.12258990671245 95.92828565582454 96.70648502532909 97.45672817682951 98.17912684421195 98.8737372911048 99.54153549062828 100.1845522030308 100.80443999968594 101.40246304468 101.98027543253963 102.5383444710982 103.07741163992307 103.59633712680152 104.09710557599335 104.57829609927936 105.03868995351291 105.47821926757844 105.89416509035566 106.28675425869712 106.65342800596149 106.99158173745421 107.30202230169215 107.58139553689504 107.82730995793192 108.0394557561146 108.2166427203268 108.35513594928628 108.4535499096917 108.51348553144103 108.52995194687206 108.50100174837205 108.42957770294694 108.30986485103045 108.14064762098563 107.92516930761778 107.65629627352777 107.33806652843688 106.96607766545549 106.54190147687233 106.06340139188525 105.53434667007419 104.94866695517085 104.31913548663506 103.6423800827658 102.92553572864264 102.17942687109921 101.40842437044667 100.619028411136 99.81920120667853 99.02251603675911 98.23562167757223 97.47655974380281 96.75209015976935 96.0828870458739 95.4771866812045 94.95300083444982 94.51970697647228 94.18890363882669 93.95658590294333 93.83391438773286 93.82406942900991 93.92210108643337 94.13316231873853 94.44836387045247 94.86303460771843 95.3693989404685 95.95555739123408 96.60611716137454 97.30508568861546 98.03201942301568 98.76388234477842 99.472037950719 100.1276015718506 100.69689966283096 101.13696608598194 100.51370198917998 100.32838694180896 + 120.23917062371412 119.61341967417103 118.93801421161353 118.21248883202416 117.43761829598772 116.61456607733318 115.74263025410274 114.82111029895248 113.85308965304385 112.83785999012089 111.77919678482127 110.67635384541738 109.5320054443847 108.34696890013137 107.12621149607943 105.87448844903554 104.5941345540551 103.28721069785584 101.96300595899285 100.62711014076596 99.28492630562576 97.94328866455498 96.60998731978627 95.2924590571946 93.9984192031354 92.73573976658705 91.5123018662679 90.3358212995173 89.21364634514609 88.15252714657456 87.15816370173076 86.23568957194004 85.39000341569067 84.62469115031236 83.94098352980922 83.34286403126283 82.83292089770052 82.41015234293472 82.06806095902826 81.80239008443952 81.60897639804755 81.48524967999792 81.42767304980174 81.4325073595318 81.50323827469668 81.6334073772693 81.8306767558481 82.08803617985507 82.40929560342235 82.79744891515732 83.24769972961425 83.76082400970039 84.33525676996277 84.96783438242718 85.65566991233689 86.39367605662515 87.17473578459501 87.99286330192211 88.84022200039641 89.70742477887055 90.58530126581583 91.46587140199642 92.34044794428885 93.20159965703114 94.04420585427088 94.86455836852289 95.66020985504245 96.4298086162535 97.17288864177937 97.88968919086359 98.58094027489601 99.24762585734464 99.8907652473021 100.51154636228065 101.11229683779469 101.69440179017059 102.25781929530866 102.8040029372149 103.33356852789352 103.84643205065714 104.34183304016159 104.81836068333648 105.27750404127659 105.71498531234697 106.13043729189486 106.52369984836261 106.89112611238919 107.23109565573348 107.54396325822609 107.82649956565605 108.0764768030217 108.2922761090187 108.47492848996927 108.62009609829597 108.72601269537104 108.79163427236105 108.81798832510857 108.80034262796586 108.73708024101742 108.6298233600751 108.47537388301922 108.27066086786901 108.01932685196125 107.71599993104303 107.36125871797975 106.95555554506072 106.49594240344945 105.98567329898282 105.42381673434457 104.81031632025135 104.15685227273488 103.46313197546796 102.73430375968931 101.9791439112212 101.20949177382782 100.42732707692863 99.64381748966498 98.87049735353769 98.11659377071322 97.39908791256696 96.72593291020547 96.11981015072273 95.597126039531 95.16755797089874 94.8286803187112 94.60507684475802 94.48735071939666 94.48634718991758 94.59948752667252 94.829402768289 95.16597747575565 95.61302240009724 96.15350578940449 96.77928756530474 97.47603571318545 98.22644711419528 99.00922522147795 99.80005119028716 100.57061488564577 101.28776652127746 101.91769004995231 102.42144900939222 101.91271538525262 101.74705170740641 + 120.5086561509893 119.88867713688225 119.2209611638114 118.50564535415599 117.74184756106904 116.93055762502154 116.07319385158601 115.16872228670994 114.21941006539716 113.2253294365703 112.18569236072672 111.10463775185306 109.98414738209809 108.82593873994816 107.633521975996 106.40645111745296 105.15265261963708 103.87681154616423 102.5830184616474 101.27611367227625 99.96144581296733 98.64767563959622 97.34162050597472 96.05046455124554 94.7816620268348 93.5428160481202 92.34153135884478 91.185239912667 90.07986803972872 89.03320590195825 88.05144899198937 87.13923363494864 86.30150699941684 85.54205591766235 84.86385289731892 84.26838193697589 83.75872408413426 83.33516684276178 82.99280950636982 82.72527574023268 82.53017132842236 82.40308904269116 82.3443872144159 82.34930024599277 82.41798497664354 82.55006556815019 82.74695697073439 83.00463303191688 83.32992948085864 83.71880148639494 84.1700953082285 84.6838430154731 85.25718197914756 85.88776539042925 86.57162644184551 87.30178305795212 88.07311221990498 88.87822828722348 89.70708562200309 90.55221710285413 91.40501998305646 92.25663275606266 93.09759761692025 93.92151856435225 94.72564428760961 95.50722667705531 96.26458228770872 96.9969815974769 97.70445197085074 98.38758202240892 99.04761735379641 99.68524861915033 100.30213191931209 100.90010578564987 101.48059319447272 102.0452852514297 102.5945820188433 103.12981560377109 103.64914760305143 104.1544441491035 104.64362254823531 105.11653894258063 105.57146108731759 106.0066123423689 106.42107841084815 106.81352441747363 107.18087996079022 107.52184922222497 107.83619179812831 108.12114952485494 108.37449801789477 108.59470326833149 108.78061608457828 108.93184335999834 109.04509074523997 109.11886054263849 109.15147389053462 109.1440669598952 109.09298808204579 108.99620994009642 108.85342415951641 108.66532734719333 108.42709094173827 108.14000696982474 107.80361088048299 107.41376668291558 106.975942541942 106.48288490343757 105.94260185333549 105.35261399813469 104.71599813396207 104.04431962303492 103.33894727082205 102.60417776061504 101.8473219457042 101.08085451782355 100.31202425984742 99.55012488164034 98.80683519787824 98.09554890673792 97.43386648408942 96.8295259932927 96.30348765550109 95.86348812202237 95.53584369914977 95.31069692965634 95.19837348328352 95.20681289260325 95.33063796621863 95.5751341236642 95.93532872194368 96.4051772946365 96.9751841363797 97.63658478331689 98.37382001233922 99.16831113670698 99.99944049302808 100.84216660685547 101.66893203649524 102.44310731638599 103.12693335491592 103.68258948342235 103.31131733502816 103.16450015987104 + 120.78718914655106 120.17534447717956 119.51726327902372 118.81311746897751 118.06312786649436 117.26649167133392 116.42466143765192 115.53920087973988 114.60845319247883 113.63628067756584 112.62175960461127 111.56840548027475 110.47406422257009 109.34391050058343 108.17940811623873 106.98537297104579 105.76575429027054 104.52171577787196 103.25888847032579 101.98446496188208 100.70401920318085 99.42361964018136 98.1490278276856 96.88797520192966 95.6478089193825 94.43589377384781 93.2596373783382 92.12632511085981 91.04292702827715 90.01447513082441 89.04841084417977 88.14907357137227 87.32117974697866 86.56928794400675 85.89667778813694 85.30626985155016 84.7981028790717 84.37472669967144 84.03198545044012 83.76387559139164 83.56738647648442 83.43956267771162 83.37897510242357 83.3837147909418 83.45192841383684 83.58524626307185 83.78288757101531 84.04203035042782 84.3696792511457 84.75948570989995 85.21163419963129 85.72500457629212 86.29641988160958 86.9237757874142 87.60082616046738 88.32170950566632 89.08023932358138 89.86670416971445 90.67443477405011 91.49488870898193 92.31811132039687 93.13427579593217 93.93746000581362 94.72254592169881 95.48642557786116 96.22716450968477 96.94388853034681 97.63664322871321 98.30620499419426 98.95385428058871 99.58112351209694 100.18953314754344 100.78031565847499 101.35507367718827 101.91582235573162 102.46334115985394 102.99808605126604 103.5197287850191 104.02973166115282 104.52669957487203 105.0085532438008 105.4764295464685 105.92682405185916 106.35815154974388 106.77109540360826 107.16159623261859 107.5282720304936 107.8693232002565 108.18425513436263 108.47088445107457 108.72690168450147 108.95074951352997 109.14081863066771 109.29586608856039 109.41579170626564 109.49737363937935 109.53910061134768 109.53946075138099 109.49787916822004 109.41411952305187 109.2846538673087 109.107935787428 108.88614034824973 108.61545432932552 108.29367893877908 107.92544895845052 107.50295796224026 107.0334867797148 106.50931931528513 105.94219352362654 105.32940946760984 104.67461772811662 103.98908276269245 103.27690918152696 102.54187933410405 101.79177313954018 101.03927669103045 100.29111371457252 99.55873870082091 98.85736692420572 98.1955416180574 97.59125121825794 97.06476566497787 96.63158843520812 96.29805157522082 96.07540958428291 95.97058885661963 95.98399953250416 96.11824431371654 96.37863854293082 96.75316478975657 97.24406124881261 97.84173453553746 98.5320672528481 99.3029914021291 100.1350661945273 101.00753208031756 101.89410168468737 102.76596182091612 103.59077403353531 104.32372929933481 104.92507254400527 105.15058047501114 104.5805564580518 + 121.07434685629697 120.4714115366326 119.82406430751853 119.13244912160992 118.39724014651753 117.61897368371606 116.79654788919598 115.93218509235145 115.0266591806264 114.07888869650336 113.09113675519379 112.06376548271837 111.00110540905017 109.90341389094043 108.77407527868264 107.61547774825968 106.42860609096036 105.22086062483842 103.99666398498937 102.76075273092817 101.51701022318869 100.27279351872326 99.03429488269076 97.80808904973185 96.60106104308338 95.4203017817906 94.27297864135058 93.16617959756046 92.10672980504265 91.09996603498936 90.15219569520947 89.26960123177848 88.45479368620705 87.71275511916298 87.04743152314707 86.46206802483877 85.95860759129287 85.53681216708324 85.19453907289733 84.92705230695427 84.72992745581728 84.60155237458355 84.54124464247056 84.54594006047031 84.61526269382654 84.74944910912681 84.94880332791584 85.20989189619263 85.53898783188066 85.9297013893931 86.38223338194405 86.89392257570164 87.46219396482883 88.08354775633988 88.75126614417387 89.46006467142749 90.2011611332621 90.96705717710863 91.7502320829649 92.54022479175705 93.32832961862096 94.10731754448747 94.87031411426834 95.61326649121085 96.33278895059138 97.0293874018094 97.70313893944159 98.35472579837266 98.98542962928965 99.59688529599175 100.19033956519253 100.76833556148121 101.33238809583803 101.88375485621967 102.42376576679281 102.95254125994786 103.47181976055407 103.98121378656819 104.48051872157905 104.96735493124565 105.44287679603138 105.90385957753065 106.34867557868448 106.7764763050791 107.18571846919922 107.57370457982303 107.9387164805016 108.27907135815678 108.59365318806381 108.88115066671155 109.1390740027931 109.36584532728277 109.55992467323038 109.71983490010157 109.84405798689819 109.93207838422981 109.98222816556061 109.99235235051458 109.96098551984863 109.88667696596224 109.7697609969567 109.60838835689012 109.39975786572793 109.1437203251218 108.84149960598374 108.48783466477163 108.08713177692704 107.63409418837333 107.13382469727533 106.58261356066643 105.99200693124918 105.36137334075825 104.69437463174313 103.9972118774344 103.28260013353201 102.55260526201758 101.81483357042507 101.08073806065757 100.36081346382578 99.66444643491269 99.0131704945699 98.41850527699069 97.89115961691996 97.45184674099751 97.12533608818639 96.90257780601698 96.80332484318431 96.82105736571702 96.96795874054689 97.23592981796247 97.62684326224262 98.13674894501486 98.75435159891315 99.46869815708183 100.26676009994897 101.12976645922683 102.03551791482262 102.95858209175145 103.86764561506924 104.72976381466556 105.5040104630954 106.14380497019427 106.42649207817341 105.9950447607977 + 121.3715601396978 120.77995145263195 120.1464370291549 119.47073339565291 118.7525951082501 117.9930864293317 117.19292138023938 116.35084519395251 115.46999871096288 114.5499504785128 113.5924126341203 112.59859563851052 111.57040743917653 110.50774512332127 109.41468440934774 108.29270300607773 107.14694250518312 105.98115666339227 104.79836040317419 103.60317317945388 102.40147034754791 101.19864181225192 100.00049236976612 98.81335343305662 97.64368054318096 96.49828582750412 95.38405287471655 94.30782317436389 93.27622273945785 92.29429955953006 91.36819404147866 90.50419087865204 89.70546812688296 88.97700789684795 88.32134239053187 87.7431947918633 87.24569466710052 86.82789313050858 86.48772436532549 86.22219404858161 86.02564550146906 85.89865947541367 85.83955576124848 85.84473731268282 85.91672916474346 86.0517409310734 86.25379781730688 86.51760290452968 86.84668550549362 87.23814514702183 87.69027914074319 88.19888408665918 88.76216015394458 89.37413069715524 90.02974280372673 90.72256353586782 91.44290175237424 92.18473990192028 92.93788630193558 93.69321862534967 94.44386607008202 95.18176518674083 95.89864456405141 96.59407248772534 97.26731294979298 97.91810215124177 98.54711305781753 99.15575824951075 99.7459533446798 100.3198538046509 100.879579172874 101.42687023434809 101.96330892584565 102.48965825538743 103.00763991318281 103.51880164963039 104.0223870180807 104.51856494846417 105.00566444331909 105.4833610990095 105.95015535692903 106.40368060291907 106.84218912697638 107.26521741802155 107.67005181861332 108.05457367495059 108.417057909197 108.7559702306797 109.06945118859814 109.35673889081482 109.61580997150513 109.84473380104487 110.04206792330731 110.20634434584738 110.33609666399633 110.42987358814172 110.48625032707659 110.50462359443264 110.48368553069696 110.42118790911536 110.31566074218406 110.16560086107734 109.9724395863146 109.73261857265229 109.44398684915942 109.10984651178745 108.72534656161075 108.29294364639364 107.81025617783997 107.2827710137759 106.70914712844466 106.09773872340266 105.45373917038408 104.77928711556363 104.08082672887677 103.36597199589926 102.64565131631687 101.92682153914518 101.21968673278127 100.53856745134466 99.89394318202592 99.29791536965847 98.77681352980376 98.34533453530156 98.00875630048911 97.79649103810375 97.69564936202718 97.72434193006258 97.8748354701376 98.15530809812098 98.55925820277398 99.08138541114988 99.71528818085643 100.44881945564804 101.26800607375473 102.15486149542676 103.08607111458956 104.03559346225168 104.97352172514564 105.86517788791738 106.67100147211202 107.33887309311551 107.66466820224956 107.40776391064101 + 121.6818663219077 121.10175727831883 120.48198661863056 119.82299275789886 119.12440140986685 118.38609391953443 117.60952475937763 116.79486267933099 115.94206510944304 115.05400333925213 114.12895699822779 113.16958909743452 112.17567006532583 111.15222360944588 110.09923799183751 109.02029275769011 107.91897405408676 106.79705019408233 105.65906899127812 104.50955072928312 103.3529752358873 102.19519981751343 101.04139763139531 99.89752588234661 98.76918814555023 97.66329718888454 96.5865370041876 95.54545568970256 94.54642965166362 93.5925954681433 92.69203719443804 91.84967552362812 91.06987193955788 90.35741019682501 89.71527670117617 89.14690239077348 88.65699461360707 88.24600946487446 87.91002715247332 87.64759401945628 87.45440832289668 87.33101757082768 87.27377740375076 87.28156450310564 87.35652402476771 87.49425767537637 87.69823990030478 87.96509323984685 88.29413282899435 88.68489592761448 89.13514762725491 89.6392836283604 90.19530778326077 90.79542914798118 91.43614101454165 92.10795439670355 92.80436301019012 93.51728374740031 94.23533409494928 94.95301678163386 95.66211895807542 96.35111166400621 97.01979730776073 97.66652874882875 98.2908632239946 98.89339969331422 99.47560520112756 100.0395945041851 100.58787491972252 101.12307004638485 101.64763707243775 102.16304847317797 102.67054512034369 103.17219673754312 103.6690100714366 104.16166316013424 104.64881281743423 105.13082765282721 105.60578382923256 106.07307581296953 106.53037219305523 106.97557314667151 107.40698725304564 107.82412491379785 108.22360009967815 108.60376878499501 108.96299091349329 109.2993756028389 109.61151227137252 109.89773227211425 110.15654248672206 110.38685522892118 110.58667831248466 110.75456288244189 110.88905119437229 110.9887869519366 111.05237311647168 111.0783988791798 111.06544270817449 111.01245533488674 110.91923931868459 110.78294263743565 110.60206506158384 110.37584157735321 110.10533632629351 109.78602192211683 109.41982915942305 109.00491706669936 108.54192015959316 108.03181421566609 107.48130067352814 106.88960693201967 106.26156255501643 105.60638052423904 104.92888314535858 104.23395595320174 103.52943880486369 102.82421473379847 102.1310985846538 101.45815500317335 100.82412486712053 100.24163346790658 99.72341767233603 99.28894653510447 98.96235632747793 98.74482952396163 98.65584893935413 98.68445597956196 98.8444409156262 99.13408980836078 99.54608265508892 100.07784338671907 100.7245974121122 101.47319017070046 102.30765381663865 103.21045689378087 104.1594479984254 105.12699584828005 106.0830333104373 106.99356480524312 107.82079604739825 108.5114664036278 108.86869810459126 108.81826890843766 + 122.00097456520064 121.43539447304472 120.83222892015344 120.19197094143568 119.51500451363155 118.80062213766436 118.0492333421069 117.26248681552515 116.43974058106393 115.5827831984246 114.69267362513204 113.77004524134227 112.81702655465612 111.83517847829619 110.82580707376209 109.79282487262775 108.73726434245091 107.66281456848795 106.57298749264241 105.47232980994676 104.36478511883854 103.25521409420062 102.14944583934003 101.05240472427873 99.96945554339831 98.90722451554487 97.87191705198715 96.86975538145037 95.90582566210186 94.98505327487896 94.11498474806638 93.29741014778493 92.54036735839135 91.84629737038863 91.22088577944665 90.66576737227835 90.18620817851338 89.78429695622445 89.45532393756378 89.19904305172996 89.01205122036134 88.8924558262529 88.83902075946645 88.8524474098242 88.92970840138786 89.07258060314658 89.27793570718525 89.5472690323904 89.87768466997706 90.26611930781398 90.7115101775331 91.20933546549331 91.75472524623714 92.34073060474739 92.96265728728486 93.61022081983572 94.27867947097755 94.95646181700008 95.63680987924056 96.3126775199547 96.97210686169623 97.61187810953498 98.2296416659932 98.82471865699654 99.39722427014348 99.94849113273236 100.48195955458382 101.00021352466109 101.50605309430122 102.00201683756738 102.4901194786156 102.97279654769524 103.45187752775303 103.92857744668984 104.40409327363803 104.87707927366542 105.34800395470533 105.81543042450579 106.27741939487625 106.73338892492305 107.1804353382726 107.61625679533229 108.04016181747991 108.449926060865 108.84326805939443 109.21822795225658 109.57310002983532 109.90635019634163 110.21614164252831 110.50100263675489 110.75944981362242 110.98996810680975 111.19096353448371 111.36113583620087 111.49952698014427 111.60441739629577 111.6743796002911 111.7080359048309 111.7039974478587 111.66085667587839 111.57718024835438 111.45173634003709 111.28504099415912 111.07368745768275 110.81612061850218 110.51421825810256 110.16453392361909 109.76732943473826 109.32274569584338 108.83280450977733 108.29775431908128 107.72740983079213 107.12177770740821 106.48537951410907 105.82433675522395 105.14562964010338 104.45819950323217 103.77105775819658 103.09300313819473 102.43466186003434 101.8089312746488 101.23032573334257 100.72380441411295 100.29356939664204 99.96767338083573 99.75878343810052 99.66955250402391 99.70348006225967 99.87241416895125 100.16665339253463 100.58538271959878 101.1268070988634 101.78272023497462 102.5399778777209 103.38352219613928 104.29545650413601 105.25403071525183 106.23216607293575 107.19784321660882 108.11780819594317 108.95453782346634 109.65684430943617 110.03504798009155 110.22599832626743 + 122.33244214146721 121.78180560597748 121.19531626396147 120.57417892799118 119.91890088303713 119.22990286326213 118.50604591463923 117.7488741198855 116.95969217658939 116.13712530856327 115.28493356544345 114.40164420494654 113.49135228209497 112.55246394307017 111.58968302026233 110.60381884256753 109.5969782527148 108.57255742833817 107.5345071635842 106.48511329745722 105.42957672165697 104.37250766174229 103.3177756717374 102.27070763977657 101.23696220295689 100.22221627787508 99.2323014587666 98.27268865586548 97.34662582485733 96.46287056015989 95.62502691621826 94.83838545862999 94.10641198334791 93.435639041673 92.8290008994428 92.29120253117956 91.82551509418917 91.43534425018704 91.1171083576721 90.86923092535783 90.68988334469402 90.57706732745142 90.5313924620414 90.5491930474974 90.63299579286256 90.77884044629602 90.98891657015739 91.25868878487167 91.58879876947161 91.97539906636688 92.41468020375424 92.90253792229323 93.43386999578802 94.0025109610928 94.60105385904382 95.22129555515235 95.85686578935878 96.49600178473625 97.13449960542847 97.76178454149537 98.37039648127022 98.95751948091068 99.52131110191453 100.06015736539322 100.57780040362171 101.07711756723387 101.5609270378943 102.03240744746614 102.49482003749038 102.95122400353064 103.40295521289164 103.85286149669437 104.30347376524219 104.75531636993459 105.20911790931437 105.66243543308566 106.1167440411947 106.56880547480402 107.01743056414954 107.46120017493426 107.89673809040964 108.32284576591405 108.73773131797013 109.13966329347468 109.52572432042273 109.8946048067185 110.24440453824057 110.57334491187623 110.88001641272817 111.16282937354752 111.42003262362608 111.65039260726742 111.85246849574452 112.02484694850891 112.1661366753923 112.27489040908938 112.3497961658985 112.389513877364 112.39318736525406 112.35937051363246 112.28635311426756 112.17269095662134 112.0169000722201 111.8183649068597 111.57681501770637 111.28888477989678 110.95551886382802 110.57551880633387 110.14858400958614 109.67620549736338 109.16316097892641 108.60973699490906 108.02038825993452 107.40380810713583 106.76250746168581 106.10347000702906 105.43347142548151 104.76084468518808 104.0948189759447 103.45062149584625 102.84146054913785 102.27586250395969 101.76785870499887 101.35005610806873 101.02594475037742 100.82403186673815 100.73490665414286 100.78084216651543 100.95223166047998 101.25075591221464 101.67728365158237 102.22519915512453 102.88470806470445 103.64597623382035 104.4933164888571 105.40824102893691 106.36886993843645 107.34926878616392 108.31694767149256 109.23870243732517 110.0769700781427 110.78255652508624 111.16950435015374 111.6303877166484 + 122.67161754394924 122.13815354849477 121.57194207347118 120.97268044264 120.34041896669453 119.67708449182362 118.98293729978897 118.25676497115079 117.50113980048901 116.71579411151657 115.90180274350334 115.0606267147351 114.19298156898175 113.30052100392598 112.38574222011398 111.44840852903968 110.49280520971718 109.52174906659698 108.53654523184925 107.54196816153454 106.54111261700285 105.53824625547371 104.5377960561591 103.54448357785031 102.56334401996139 101.59965974524894 100.65828365480054 99.74233854637875 98.86032042561952 98.01621542467468 97.21426237208188 96.46100298763913 95.75959720564363 95.11417175660009 94.53093987867479 94.01398474273223 93.56563451043482 93.19031265816523 92.88572573084834 92.64945332291224 92.48127778405399 92.37800149093891 92.34023864428637 92.36651614227519 92.4561457837019 92.60793898572786 92.82032230865521 93.09261942648375 93.42106366741834 93.80283591809557 94.23442466763062 94.71082067047561 95.22498953057699 95.77225867705911 96.34337888685309 96.93242659293199 97.52972103128718 98.12725815020258 98.719808213728 99.29403092694699 99.8490124703278 100.3803747464388 100.88488159810923 101.36652823858523 101.82881029862033 102.2747273213479 102.70777198723667 103.13166162391087 103.55005454721503 103.96626780619073 104.38153033149851 104.79937780673336 105.22177274508478 105.64916870144327 106.08042980568864 106.51482601281532 106.95162969684347 107.38740575512928 107.82231721270405 108.2527571480865 108.67643528785663 109.09162029092933 109.4967853690804 109.8895508958966 110.2678764544421 110.62956241605269 110.9732846396931 111.29732552379957 111.59977725037334 111.87941063625925 112.13471947143117 112.36424781110046 112.56640040594566 112.73996213448369 112.88360466602703 112.99597614880692 113.07572762758561 113.12150459261399 113.13193913280313 113.10564269310953 113.04119943613455 112.93818622016654 112.79473259879715 112.60899030213011 112.37941445450838 112.10738739432134 111.78930538074214 111.42550998085638 111.01577556168387 110.56190912014134 110.0643193848846 109.53111161202438 108.96302463503454 108.36448728845784 107.74109086792893 107.09938810025287 106.44678100440808 105.79153608828852 105.14401410369777 104.51377379001488 103.9113458931454 103.36123901263379 102.86725157787961 102.451159214694 102.13901699571008 101.93657551457899 101.85853889711365 101.90728739608882 102.08145806385009 102.38586085678538 102.81774411370023 103.3677955624112 104.02855962362914 104.78897394559547 105.63467125756856 106.5466998981633 107.50285645595343 108.47771422222459 109.43860904168659 110.35356760432362 111.18628091480991 111.88799229938607 112.2747382145056 113.03087263209866 + 123.02296335670042 122.50603479706764 121.9586759584661 121.38171395671637 120.77463949766239 120.1389014771191 119.47512760417922 118.78276585912616 118.0621922885973 117.3155258253535 116.54113866274741 115.74312338030555 114.91959339209576 114.07477947779142 113.20814354207357 112.32260093857731 111.42079286842795 110.50317695842857 109.57344334492602 108.6350755462622 107.69132238953884 106.74581443321956 105.80239291929699 104.86530556158124 103.93969643328307 103.02876108531362 102.13720516206429 101.27195785129749 100.43598073934795 99.63408864812595 98.87307188134425 98.15552317298342 97.48777006701106 96.87360402531333 96.31634368146797 95.82265608914223 95.3960539302058 95.03939531291421 94.75203946317599 94.53065679116773 94.37601043167655 94.2848231631369 94.25853401897022 94.29338687775699 94.39145820902884 94.54843521264739 94.76529422008159 95.03776154187224 95.36389968693655 95.74018005432839 96.16084592592911 96.62266754157619 97.11658656495278 97.63908443982106 98.17865670460749 98.73207346699365 99.28701849879425 99.83923298410501 100.37984719191742 100.900610185716 101.39943553110614 101.87041243839468 102.31462629892387 102.73790154560726 103.1433892895661 103.53484903351013 103.91639506835403 104.29221994062554 104.66633711195882 105.04235436063426 105.42220020958277 105.8086725873672 106.20330725060987 106.60633958936096 107.01529534286016 107.43032856401403 107.8491688962776 108.26854091360454 108.68860970709872 109.10490988498344 109.51604499655382 109.91934392377573 110.31379772644468 110.69659062479114 111.06588889882131 111.41986567193571 111.75646229806203 112.07439293319251 112.37205217675765 112.64773067580164 112.90000282791878 113.12758380319127 113.32908364908674 113.50314171101161 113.64841669981796 113.76345960175749 113.84705014527366 113.89789512770173 113.91464625668871 113.89593353496227 113.84035891159427 113.74649064179881 113.61285835526377 113.43929758060315 113.22377432716578 112.96420099786104 112.66146622875155 112.3133016482094 111.92016952025196 111.48241856297672 111.005427309541 110.48923204226708 109.93792441222952 109.3572387825336 108.75295962575551 108.12952787517109 107.49414281042966 106.85562867792515 106.22637600470004 105.61383390726067 105.02874636314563 104.4836712372125 104.00573854713322 103.59881474372179 103.2943377376481 103.09579128098075 103.02804798671683 103.08021995215876 103.25740319861706 103.5687450730012 104.00173069290624 104.55158995908282 105.21035775675942 105.96660024660561 106.80541920762948 107.70847121244655 108.65394775321198 109.61638625490205 110.56360882827893 111.4644624742509 112.28369704356619 112.97326132335411 113.3500773720828 114.42688862513634 + 123.38236414724369 122.88478306288815 122.35882430610633 121.80418517055708 121.22297887288559 120.61476040800177 119.98122189127191 119.32299016133358 118.63847167213578 117.9302864154571 117.19808536766338 116.44339810354279 115.66692154603744 114.87074229241523 114.05477814138249 113.22227848267515 112.37383260513243 111.51167847790713 110.63929682525144 109.7592880674807 108.8746053686318 107.98769260242045 107.10332197969828 106.2254282901314 105.3547670640474 104.49908825626083 103.66314721985333 102.84868280628761 102.06208192400763 101.30767762035335 100.58877347345027 99.9117576725554 99.28135634240044 98.70017441226229 98.17368518451572 97.70761339544441 97.30628869687115 96.9717470918509 96.70452042173743 96.50141535214658 96.36321809312578 96.28704498850932 96.27350647454459 96.31979470495398 96.42658472853759 96.59022688811685 96.81030104836012 97.083154141559 97.4054296478398 97.77389010515981 98.18182306075006 98.62587148896075 99.09593598654537 99.58992019002349 100.09534032702494 100.60943722572847 101.11796241591986 101.62060723956354 102.10525369574428 102.56881624589465 103.00822037931643 103.41640582165071 103.80089642229485 104.16576827548425 104.51429820388132 104.8506573585139 105.18035876824295 105.50806717478065 105.83841657878514 106.1753826585787 106.52129835381567 106.87713015481403 107.24453325735371 107.62331340778425 108.01013526332606 108.40539148673142 108.80557839871332 109.20835422819337 109.61262171003305 110.01423846083495 110.41178582381482 110.80258926567794 111.18500554995684 111.55725266245338 111.91658365042072 112.26161082875673 112.59055701764964 112.9014406846872 113.19306998360285 113.46393355757199 113.71257966184884 113.9376184059654 114.13761541789073 114.31126869897909 114.45724125564911 114.57420515751214 114.66083264582069 114.71578802889965 114.73772036455915 114.7253523235732 114.67771056682449 114.59303474531333 114.46987758774618 114.30675283569775 114.10254647483276 113.85735282702915 113.56790519018864 113.2353353107943 112.85754291985475 112.43798763107826 111.9764488884547 111.47806857490636 110.94680452407246 110.38539009475043 109.79920740212503 109.19481362855933 108.57877631650257 107.95882944082847 107.34352180963832 106.74524772929432 106.17856333441175 105.65049296647636 105.18127795993567 104.7899429078493 104.48972076313002 104.30391368551719 104.24015947965518 104.29678252383943 104.4816417928401 104.7934105358899 105.22601541434614 105.77330322179102 106.42684904438059 107.1749174178061 108.0024849931119 108.89127701360766 109.8198190957297 110.76327538057114 111.69057188001332 112.57121853284113 113.37095247412277 114.04230063076268 114.40189917483801 115.81787124827957 + 123.75270883842742 123.27341073592872 122.76834221811484 122.23849085028658 121.68437145909672 121.10513448182067 120.50243980623357 119.87777747990727 119.2307769006572 118.5617538115306 117.87237528794512 117.16182619959093 116.43304656410292 115.68564609191354 114.92153971397576 114.14217009897008 113.34799590609487 112.5429664314551 111.72912431273686 110.90868291812885 110.0835469307875 109.25789079813806 108.43259951709575 107.61244334081637 106.80228489122094 106.0059564613453 105.22356412709664 104.46412432760991 103.72913160709714 103.02400634980185 102.3517773066063 101.71879931469579 101.12697912710429 100.58371332482268 100.09201911404168 99.65712275224334 99.28431954704212 98.975452222278 98.73131507701773 98.54959484233584 98.43036228384348 98.37162722583263 98.37315782699652 98.43186162889421 98.54892890624593 98.71887021675256 98.9426582270372 99.21429390844294 99.53155649673883 99.89028469328527 100.28219682849769 100.7056752529287 101.14987399309747 101.61077977699416 102.07749574526065 102.5472037996787 103.00802727573961 103.45912868810511 103.88652404247394 104.29055049356576 104.666533349862 105.01138426672831 105.3340385819049 105.63872671602158 105.93023807571733 106.21323231051288 106.49226810091848 106.77333482812351 107.062070988937 107.36166071751435 107.67487385436145 108.00110638819838 108.34178681432165 108.69644695046006 109.06129125730301 109.436345244588 109.8175781927005 110.2030209569606 110.59068700944107 110.9770658007624 111.36011639943739 111.7376930064436 112.10739935602471 112.46766651169362 112.81639289140595 113.15151465624062 113.47158300706113 113.77514045618794 114.06013501306103 114.3254223004222 114.56957534073553 114.79119511752677 114.9889197434808 115.16131597137708 115.30703949506258 115.42493132392286 115.51368207637879 115.57197323216336 115.5984701229499 115.59181581015771 115.55062584993482 115.4734839453179 115.35942581127065 115.20716791540767 115.01474663469665 114.78061686270024 114.50595822650446 114.18687477646725 113.8256454985906 113.42055253955425 112.9775144377757 112.49724732166625 111.98312791227826 111.43960773292676 110.87195877151218 110.28625092209562 109.68933735681495 109.08885512207156 108.49322424875389 107.91164504335549 107.35891340454747 106.8499241424355 106.3919372822947 106.01592401381008 105.72277342041427 105.55014194181855 105.49203077231816 105.55388103452711 105.74529175889207 106.05745010043495 106.4871345464744 107.02942576184034 107.67455941766025 108.41057510831214 109.22241833396477 110.09199347221355 110.99823043910762 111.91651745623504 112.81739385759539 113.67146114999723 114.44565341155558 115.09387003313402 115.43021162675754 117.20325605404658 + 124.13150808790769 123.67332315436626 123.18964602727537 122.68347772784482 122.15581505555073 121.60758443732186 121.03717499094518 120.44640904827384 119.83702839256746 119.20749745212956 118.56074119461069 117.89538193458155 117.2144362899662 116.51665917102618 115.80385045515982 115.07748369737297 114.33939955808704 113.59220014871829 112.83773388268354 112.07695238594005 111.31217225521588 110.54553896200285 109.78183571779928 109.02437425929148 108.27366042398039 107.53453247724858 106.81287081975802 106.10730693803517 105.42740715131043 104.77260364169362 104.15147916868501 103.56261743243132 103.01479587465651 102.51225148203214 102.05830078638468 101.65697735696921 101.31546420779014 101.03599033585188 100.8187466586996 100.66151971748569 100.56365559782923 100.524249817589 100.54274058751623 100.61501951642367 100.74254245743865 100.9193414180229 101.14561353184432 101.41546190930181 101.72651689353256 102.07215416658947 102.44643014376345 102.84701409285228 103.26007204946592 103.68485120656962 104.11118752150259 104.53475904302677 104.94419066119644 105.33773305112946 105.70497729232756 106.04861522340246 106.36142532425337 106.64523663676216 106.90657306670457 107.15076913257204 107.38408475907345 107.61294064772473 107.84463990967173 108.08380150516028 108.33310873335216 108.59737279591418 108.87861027740065 109.17679696338763 109.49126831682621 109.82194892309586 110.16495550593218 110.51938641421218 110.88134248981702 111.24875201305976 111.61922786924941 111.98961248267089 112.35740551800066 112.72082930883742 113.07715647027572 113.42487001260763 113.76209650669261 114.08662297694808 114.3970550375315 114.69185121352854 114.96946338213027 115.22816696594838 115.46667987604094 115.68375125774095 115.87804309187064 116.04824208910156 116.19304967444481 116.31117290773399 116.40131634010125 116.46211613625645 116.49227376697246 116.49051512148664 116.45547104935731 116.38574180486181 116.27989439742232 116.13646092320595 115.9550600508286 115.7335360944458 115.47016993387459 115.16637261012167 114.81848166080667 114.43101395685696 114.00400268401202 113.54007280280241 113.04372272363844 112.51967896867616 111.97141000777158 111.40456750509601 110.82556215851977 110.2435891469507 109.66835227906735 109.10728765192276 108.57013713240788 108.07907149611317 107.63983041084404 107.27446494693088 106.9958890771803 106.83172155627375 106.78061843211118 106.85004755530426 107.04471584879013 107.35665070004954 107.78275644979658 108.31690200826586 108.94995771090643 109.67006760130297 110.4619482866902 111.30767797490981 112.18671234243989 113.07466175562794 113.94403975621326 114.76648229309308 115.50853475946478 116.13024313242167 116.4381414727645 118.58247859495539 + 124.51926135276626 124.08109851841019 123.62170504168795 123.14026224531781 122.63918904134732 122.1199278001932 121.58290134331537 121.02733001127045 120.45466995837995 119.86538524546538 119.2608024050647 118.64122552031768 118.00755943139254 117.3592301251911 116.69846628194318 116.02551662606392 115.34380448921581 114.6548131556737 113.95918448372629 113.25617791882449 112.55161349999896 111.84795269392518 111.1467800368542 110.44834911345968 109.75952210417954 109.08127613180389 108.41627077209678 107.77065732938017 107.14415735183645 106.54436116761825 105.97297040266913 105.43363074830958 104.93222072309506 104.47284113126548 104.05829383399632 103.69442114338842 103.38736042219683 103.13991352872654 102.95179312099064 102.82195236568103 102.74756295346518 102.72912486551782 102.76543840023145 102.85257989688508 102.99042398038515 103.17424228938945 103.40182838782262 103.66885169370173 103.97049848669226 104.30200144945914 104.65658529856584 105.02893140105624 105.40965077950412 105.79653347297122 106.17985393837176 106.55137070223245 106.90682182738598 107.24327917696613 107.55198034341117 107.83422572940334 108.08102930190046 108.30105442374412 108.5021109675355 108.69036158121598 108.8697258550991 109.0482620611028 109.23462409048392 109.43342847332804 109.64782132879603 109.87855895297503 110.1291185089969 110.40024450129562 110.68900499653572 110.99587379577444 111.31702096919818 111.65057474427265 111.99292299273479 112.34164121298444 112.69434478156192 113.04800047046388 113.39979384404445 113.74807515803433 114.09035519669821 114.42466507898466 114.74938724014983 115.06267547575398 115.36248200119333 115.64763575048593 115.91661789919192 116.16797889741397 116.40026387352502 116.61192367012441 116.80192103478876 116.96896381852731 117.11192682052824 117.22937225631571 117.31997179768891 117.38242665690602 117.41542135808677 117.41761887957499 117.38769278349682 117.32453086769613 117.22651877483567 117.09221784172453 116.92015982043947 116.70979273232356 116.45953069451768 116.16798214332147 115.83578674103272 115.46307860989747 115.05134714143004 114.60619786911519 114.12867984308822 113.62286411596794 113.09361045734123 112.54651662548522 111.98791010342327 111.42483895596936 110.86700640167724 110.32721839321681 109.81146509146672 109.3352785828313 108.91555382848576 108.56312573997832 108.30061476733695 108.14573264033426 108.10270284154042 108.17957639080468 108.37632995705333 108.68692439913274 109.10763812704269 109.63188439453535 110.25026740014975 110.95064600130705 111.71820589264252 112.53554104186253 113.38274511852872 114.23568639274592 115.06908565395558 115.85565284278304 116.56147000983601 117.15322213429641 119.95439890677459 119.95497442352413 + 124.91659364446768 124.49897108555892 124.0622182683045 123.60734851583256 123.13384479251165 122.64382543942062 122.1389348552309 121.61860887124529 121.08307343740034 120.5336898338864 119.97094921982041 119.39673740793472 118.81035499954355 118.21072026301086 117.6012581737307 116.98258237199504 116.3572245658695 115.72456537172765 115.08471222739554 114.44270985702647 113.80054482430117 113.1563555757547 112.51546645052213 111.88154640562252 111.2516324561637 110.63441342676558 110.02906692350518 109.44112408903263 108.87168198106023 108.32764198696266 107.80745813111791 107.31952737978591 106.86641032910667 106.45127689521401 106.07942715934549 105.75553743369608 105.48529814024613 105.27205585929609 105.11520897138941 105.01418036907869 104.96508082964804 104.96882863437013 105.02374435740421 105.12596830902132 105.27390711678775 105.46409123331392 105.6917705306828 105.95444288953071 106.24450579564623 106.55974187820017 106.89135109820592 107.23345029802921 107.5796844592103 107.92641343338579 108.26029066186351 108.58106096845259 108.88285124692057 109.16131232466338 109.40652440850569 109.62609421859578 109.81163192599648 109.97319784488083 110.115322535394 110.24808535189054 110.37782993167606 110.51386674625896 110.65930004815085 110.8200325389255 111.0002776756829 111.2011118541721 111.42230198900499 111.66643855737519 111.93086267989521 112.21412789275067 112.51340797305166 112.82584123983264 113.14825661371772 113.47767519175619 113.81204431847739 114.14826540620795 114.48334751506529 114.81572399648695 115.14312849377131 115.46321781260241 115.77460133996368 116.0755151264348 116.36413633245138 116.63880408346401 116.89831275998499 117.14124243880458 117.36622712443112 117.57209550673493 117.7574203402074 117.92071593271638 118.06089719495307 118.17669757966976 118.26684556739401 118.33005824001697 118.36503597884595 118.37045828712142 118.3449807369978 118.28723304098894 118.19581824787753 118.06981154116829 117.90745151652216 117.7072300347016 117.46881143961816 117.1904462689097 116.8721743700536 116.51387823255804 116.12009357062142 115.69148868046712 115.23142908386677 114.74401579675035 114.2340728756432 113.70713460266684 113.16943211210213 112.6278792704525 112.0900576308853 111.56953324581345 111.07573843623506 110.61637310923999 110.21681358498358 109.87933752002502 109.63320515658478 109.48911138977503 109.45491386967213 109.538152867835 109.73641562537962 110.04439550798682 110.45780460258233 110.96967230117441 111.5704192383894 112.24793717831491 112.9876754304264 113.77273432650922 114.58364160662703 115.39761124090728 116.19077062283404 116.93745819205094 117.60341929544069 118.16215740059937 121.3131486569021 121.32017909227088 + 125.32195429782064 124.92656233923583 124.5128597032978 124.08339672905204 123.63867197557177 123.17829521592161 122.70501245886643 122.21931130261513 121.7210543296284 121.21101591661571 120.68954761582467 120.15981619109004 119.618695907142 119.06835086052668 118.50993060642881 117.9452222617379 117.3733771030959 116.79535724906908 116.21474493813079 115.6322987219302 115.04725217248017 114.46524996521924 113.8855996521274 113.31029529073773 112.74436714048275 112.18527702275404 111.64161571055666 111.1103025298432 110.59931296770813 110.1094731343585 109.64364964570855 109.20775289316846 108.8044019257217 108.43546969844303 108.10783595187903 107.82561553002562 107.5939166900736 107.41642176794676 107.29235548150173 107.22115000883458 107.19800607595718 107.22458754712987 107.2983753783524 107.41504119414401 107.5724950514907 107.76766547331253 107.99406741695296 108.25036008702504 108.52678439561448 108.82338378888521 109.12841084727174 109.43920881170293 109.74892575630376 110.04985349126113 110.33629795004288 110.60583899859533 110.85162674447439 111.06786200524868 111.25456573054065 111.41615923003343 111.54141747058134 111.64472863084956 111.73666835939302 111.82357469440086 111.90840150569025 112.00278092324224 112.11242871568194 112.23986400090018 112.38778958540131 112.5596328365673 112.75391968605409 112.97191035158926 113.21261109536898 113.47248570836591 113.74991620122879 114.04100539448356 114.34318201365915 114.65286565010813 114.96825656203002 115.28637584332006 115.60407711465511 115.91983157364939 116.23151636938181 116.53667223994127 116.83393084871459 117.12162332963969 117.39813169016487 117.66166969793484 117.91090454703898 118.14475922775289 118.36187703997493 118.56080987692468 118.74027855966374 118.89902197751292 119.03578800792452 119.14917657804803 119.23807279544403 119.30124391651749 119.33740687386126 119.34525883882773 119.32347498990318 119.27070747436954 119.18558556325394 119.06671699956539 118.91304096412185 118.72318698992166 118.49545845727316 118.23011998756886 117.92477623640917 117.58274232810658 117.20439518722505 116.79230530179021 116.34983976863357 115.88120041234238 115.39080710710915 114.88447777662986 114.36821192004115 113.84877057198618 113.33362311161255 112.83211580335895 112.36075378339606 111.92243146535824 111.5412195729012 111.22041921655489 110.99081294588655 110.85867173360965 110.83375721833329 110.92217007091689 111.12115360808966 111.42510279041059 111.82923231453617 112.32626663192902 112.90652998083442 113.55804053068209 114.26660896525765 115.01596593220344 115.78713271385905 116.55877421364283 117.30853046955677 118.01080506408682 118.6359881679028 119.15956414168619 122.66474980999604 122.67752815371382 + 125.73687680794605 125.36238215435613 124.97335037447334 124.56905835965222 124.15208307234694 123.7225154571428 123.28076128930692 122.8293217064506 122.36756105975238 121.89569347021164 121.41529984450294 120.92852534238668 120.43187893299395 119.92973195996863 119.4215864957963 118.90756716788768 118.38879550622849 117.86707974920338 117.34215176810696 116.81589708664029 116.29229413528293 115.7673238011111 115.2478814156054 114.73264989575895 114.2254478517388 113.7274459574764 113.24226240694895 112.76970694261776 112.3166784004847 111.88134128335678 111.46995374276601 111.08632839493626 110.73323067572457 110.41184516603951 110.12931095418628 109.88959939390512 109.69738895598775 109.55642340393115 109.46586904735554 109.42394034616581 109.42719518541327 109.47655679138822 109.56885150062 109.69839954802903 109.8643166833997 110.06234358578034 110.28585907329354 110.53323473059204 110.79402208928298 111.06939773487608 111.34574893009399 111.62318743476736 111.8942667057505 112.14831471780275 112.38658346461067 112.60442787204504 112.7906080475063 112.95154339201562 113.08387483841655 113.18783275691439 113.26093974322127 113.31798320919972 113.36469420658369 113.40735266116347 113.45492118905354 113.51473287435502 113.58974626404991 113.68660125268649 113.8064321745333 113.9501400638638 114.11940098935268 114.3123458468813 114.52939511612746 114.76661454926669 115.0220403534093 115.29179979944955 115.57346323999302 115.86308100707397 116.15885864584382 116.45825790107794 116.75796174764508 117.0564324763995 117.35159345435315 117.64117015200968 117.9235740894759 118.19730396518976 118.46078293260987 118.71260852713047 118.95115071026515 119.17514755340659 119.38333664214298 119.57443751653241 119.74719535378817 119.90037113296766 120.03273301458368 120.14305480579404 120.23010213248888 120.2926066669949 120.32930328891665 120.33890894411269 120.3200719856939 120.2715641040619 120.19202927473395 120.08011014938131 119.93443682636253 119.75402202141895 119.53752063401596 119.28376680033452 118.99264619940539 118.66491320664208 118.30198445480328 117.9071747670946 117.48383056353958 117.03488795475721 116.56472766969753 116.07838442724353 115.58242002997972 115.08571279205474 114.59371336651975 114.1141317917827 113.66440116071277 113.24850127024608 112.88629855839301 112.58397655402595 112.370494723752 112.25112698343719 112.23564111174197 112.32793924679159 112.52665758555199 112.82503746204047 113.21787297606488 113.6976681203584 114.25474089377003 114.87732955573057 115.55170111767654 116.26247688208151 116.99083560465816 117.71733968944979 118.42112977517935 119.07627946198296 119.65941363011895 120.14618823887095 124.00859652237548 124.02645716037112 + 126.16053364573841 125.8077963228825 125.44209459063603 125.06430253257344 124.67497307709755 124.27545654767601 123.8654228165935 123.44757522583275 123.02173533829047 122.58735745272793 122.14714192182753 121.7015461065619 121.24876547752544 120.79297534090772 120.33234351665428 119.86759154424963 119.4019443429137 118.93221089907166 118.46217046446411 117.99353861104527 117.52393819948148 117.0599239682312 116.59595108556076 116.14153098156956 115.69088805101798 115.25292496311093 114.82399898794769 114.40993708223876 114.0133373528753 113.63258441800016 113.27500692259798 112.94323028721915 112.64002963294179 112.36681711952521 112.12943599384243 111.93223856010448 111.77959099928543 111.6750573181617 111.61741263677904 111.60370980774957 111.63281492876547 111.70409198398978 111.81367923111426 111.95369892506373 112.12646423434859 112.32444723523277 112.54315145934683 112.77856844174717 113.0217171572466 113.27308865279976 113.51901062983175 113.76118638970412 113.98992141581041 114.19887215951859 114.38935289968038 114.55307031353853 114.68943877428441 114.80186634490519 114.88199380858218 114.93986530601768 114.97103532994757 114.98465894680466 114.99180031666934 115.0008640567913 115.01368446958966 115.04127513950722 115.08897968006218 115.1567108210734 115.25032919104504 115.36895855610598 115.51316093662987 115.68330060630659 115.87686091900763 116.09210571457183 116.32539081528999 116.57390046558584 116.8346994056579 117.10395922644422 117.37985603822312 117.65982391898231 117.94097684095271 118.22156724846565 118.49957495445906 118.77287847921048 119.03976283971888 119.29889191276445 119.54887801753961 119.78811063465227 120.01518411426588 120.2284782391923 120.427032491528 120.6095941582811 120.77493336239537 120.92184743238494 121.04910921440354 121.15550439843925 121.23981478623364 121.30081091766228 121.33724903169647 121.34786930677829 121.33139538060897 121.28653514935088 121.21198350529015 121.10643656986507 120.96856268285347 120.79704075958672 120.59113584059342 120.34924102170497 120.07155468599136 119.75804233915885 119.41149472249451 119.03447958230811 118.6294108362771 118.1999588648764 117.75044155885301 117.28579639936491 116.81155236990112 116.33659920477477 115.86831162825627 115.41261611037153 114.98452173606152 114.59144746374122 114.2495053815474 113.96660590850163 113.76929208778401 113.66324977614912 113.6571203870915 113.7521016178529 113.94938332184799 114.24062772049388 114.62020219423509 115.08047483506715 115.61184543632048 116.20286171291043 116.84100593497823 117.50995274508848 118.19296389426874 118.87199211035666 119.52673776253056 120.13420487407859 120.67391519535568 121.11974134895812 125.34408295035941 125.36640166476086 + 126.59259710494548 126.2624045967238 125.92015612226375 125.56847499514028 125.20662612208628 124.83662910394243 124.45839093873327 124.07346130810438 123.6828967449577 123.28528875659732 122.88422415513806 122.47812732009182 122.06840936697084 121.65719978767454 121.24096978748804 120.82545455478446 120.4074238888451 119.98933509104405 119.57241604836982 119.15592537169714 118.74325663810502 118.33182474277835 117.92664130883517 117.52647525319685 117.13425638986119 116.75259874644264 116.37964134498122 116.02192026606791 115.67956781767812 115.35287115737447 115.04773345034496 114.76659077223339 114.51211547434882 114.28689117623593 114.09381487860188 113.9382260344917 113.82425949354617 113.75421705060025 113.72673851539965 113.74112394998359 113.7945852596295 113.88601437846116 114.007894191011 114.15795547573934 114.33531764917886 114.52958112714519 114.74116912357798 114.96109634430694 115.18454748338975 115.40900910259728 115.6231644080213 115.82913232850694 116.01634864759563 116.18375133067181 116.33116609494316 116.44908007450589 116.54296428322156 116.61216044178191 116.65026088042033 116.6705334771281 116.66338237511435 116.64226792978282 116.618794864267 116.59523274225586 116.58058215917377 116.58169763703786 116.60192417386004 116.64688453428742 116.71545217041567 116.81094970792 116.93203501734543 117.0797664511828 117.25087831522968 117.44446390502016 117.65571940957366 117.88296130092677 118.12249668173041 118.37127220424013 118.62709382088556 118.88718043830778 119.14915151621378 119.41131170311178 119.67161275912208 119.92810842862654 120.17901838174939 120.42303551959218 120.65866596377757 120.88449685595319 121.0991815202797 121.30136240917058 121.4896372169032 121.6630104119517 121.82027480677468 121.96023934633334 122.0817168793947 122.18351801362581 122.26444625671958 122.32329447170953 122.3588426464732 122.36985697742448 122.35509026739454 122.31328363770157 122.24316955440929 122.14347616877434 122.01290008171115 121.85019847671306 121.65424957584911 121.42432899862098 121.1594934182051 120.86072511200122 120.53057747622944 120.17074043405475 119.78419307984701 119.37456179939235 118.94608788255867 118.50359502620046 118.05245683415879 117.59957866504517 117.15551245795666 116.72416991952805 116.31892451656076 115.94903857999705 115.62843279903244 115.36503797315402 115.18439305590957 115.09182354410167 115.09461466120547 115.19313341978454 115.3853563696427 115.6677386503993 116.03202071822422 116.47052769278118 116.97429835995318 117.5321321867515 118.13063295733042 118.75551216935749 119.39123409331057 120.02112825253894 120.6249796601149 121.1845781153592 121.6802876095721 122.08532048171317 126.67060325026677 126.69679721940108 + 127.03363093762817 126.72531816989923 126.40733889249674 126.08092118462824 125.74701874916066 125.40626966635007 125.05920030560212 124.70671353680405 124.35052791789855 123.98889861066397 123.62589277562542 123.25818125922788 122.89009046013793 122.51954131519994 122.14854482046464 121.77773614271639 121.4065399277941 121.03696241209846 120.66880910104342 120.3038592303413 119.94194435652433 119.58387444349597 119.23249357021359 118.88547994055374 118.54869497516391 118.21955447785726 117.90122204943222 117.59718088035139 117.30714438281075 117.03223820199388 116.7773939460391 116.54484149365753 116.3370412537883 116.15655580950761 116.00665327887941 115.89066466628678 115.81244956091011 115.77467865791081 115.77673355337637 115.81679503157531 115.89201541018194 116.00001155797244 116.13066425292826 116.28784778615459 116.46629267204746 116.6530544005763 116.85477491057891 117.05605258455762 117.25885817984027 117.45584854274958 117.641031944777 117.81454025820598 117.96647620178135 118.09880615423177 118.20837524465405 118.29045561382188 118.34897611279243 118.38130945140696 118.38698936554668 118.37442910484384 118.33747047599302 118.2897749866921 118.2368765761408 118.18970887730994 118.1519117845213 118.12926576670807 118.12842353591876 118.14998748907703 118.19825105433205 118.27095979324815 118.3715186392618 118.49701587947057 118.64696257394064 118.81855019441014 119.00862821164701 119.21465593076533 119.43275382194987 119.66082573569602 119.89627373558581 120.13623048340337 120.37879284565568 120.62209476045281 120.8642391224029 121.10328472524668 121.33755251263577 121.56577095323655 121.7864992117388 121.9983719003072 122.20008476337256 122.39037664742185 122.56792351975736 122.73149527696013 122.8800765215735 123.01250196007915 123.1276088190081 123.22423143657728 123.30119718953388 123.35732375520794 123.39141770877272 123.40227445571318 123.38867949950246 123.3494110444862 123.2832439339751 123.1889549235453 123.0653249091803 122.91104975491962 122.72504236342651 122.5066046119367 122.25460984442219 121.9709184060302 121.65669324081833 121.31423281309254 120.94648899200318 120.55703046381873 120.15000595070522 119.73010743139002 119.30253354902976 118.87295338154559 118.45340221633614 118.04680724583848 117.66544127788967 117.3188350392147 117.0201733779018 116.77726593547752 116.61215863594154 116.53285179361657 116.54384315235976 116.64472737069323 116.83280991416959 117.10347995262097 117.4503497576504 117.86539085480197 118.33906639808747 118.86045928780742 119.4173956058671 119.99656299604601 120.58362366994261 121.16234570831836 121.71583134485249 122.22722397764718 122.67676711345091 123.04387665143803 127.98755157841663 128.01707937681002 + 127.48338558925346 127.1971771512403 126.90338625136732 126.602270126784 126.29585064434758 125.98393097683925 125.66751506873663 125.34694219482564 125.02426028223132 124.69776095549905 124.37104517785153 124.04124591831572 123.71257905526691 123.38211641242174 123.05351424449111 122.72508394759174 122.39869222693048 122.0738748988286 121.75257031291001 121.43513340568138 121.12082719333549 120.81352573617222 120.50966803254168 120.21428632540959 119.92829348564494 119.64892402036675 119.38169832587337 119.12789686377765 118.88732578149408 118.66119078783916 118.45368339203918 118.26681293678534 118.10279160031726 117.9640405090283 117.85339213175801 117.77380620310983 117.7289310814179 117.72093293201601 117.74915493711694 117.81142715301401 117.90480152478048 118.02121059018741 118.16080352895625 118.32209939762704 118.4948808563812 118.67665385555154 118.86807972327613 119.05205740713659 119.2372000421716 119.41032901911746 119.57161083495288 119.71742017208184 119.84095410426808 119.94451283829841 120.02283079445318 120.07671650387314 120.10583441592527 120.11029994204435 120.0902177982581 120.04978920295008 119.9923055030484 119.92045245275997 119.84742170020887 119.7800034207657 119.72290444776533 119.68234342971309 119.66122749220294 119.66472352050263 119.69188946246568 119.74594534251926 119.82581897638978 119.93132809625195 120.0602585983482 120.21068006918782 120.37976913436944 120.5642465683323 120.76127173874531 120.9684954326906 121.18327033797246 121.40285845730348 121.62569131644408 121.84980095307452 122.07337364454983 122.29451057700464 122.51170462171943 122.72367557212114 122.92903844842813 123.12647760091697 123.31469771924507 123.49249153078969 123.65869485333161 123.81206534895664 123.95145015168406 124.07582053754219 124.18400243928879 124.27474380674767 124.3470991839225 124.39992331929878 124.43206188282112 124.44235224129339 124.42962558525012 124.39267098126365 124.3300353307681 124.24076505865487 124.12370555543049 123.97764608027408 123.80142802891558 123.59426082028332 123.35553436102094 123.08636422138508 122.78820918156455 122.46335597834863 122.11471612464553 121.74578521777578 121.36060210636617 120.96370819342754 120.56010713791476 120.15522520178362 119.76006294782081 119.37847255334088 119.02164033897867 118.69829483805044 118.42193476483857 118.19962866847115 118.04939269640406 117.98283541242097 118.00107126351992 118.10299323198772 118.28548148367854 118.54369337476567 118.87121092843907 119.26018325769034 119.7014632385075 120.18473781774826 120.69865141990051 121.23092199688207 121.76834418328312 122.2960269589897 122.79922652453897 123.26267833670263 123.66663052057598 123.99736916660144 129.29432209112804 129.32668368950578 + 127.94177597893473 127.67782729843584 127.40789254331641 127.13231736577383 126.85288539708694 126.56936231096878 126.28311801044289 125.99388660139185 125.70386025405882 125.41159710349159 125.11971577707865 124.82702788034054 124.53522942287782 124.24461821104315 123.95465881312595 123.6684612515906 123.38264921326606 123.10121123245935 122.82359280418821 122.5495790174008 122.28165276890151 122.01806861548542 121.76116643155154 121.5128190357168 121.2718465101701 121.03972062150427 120.81905592812574 120.61100152284016 120.41590859755513 120.23445776509595 120.0702660581535 119.92512591918951 119.80100489856832 119.70014739011243 119.62501317799993 119.5781806632385 119.56302265198579 119.58128855764522 119.6322363034633 119.7131132045619 119.81694550424125 119.94459547242087 120.09157653752581 120.25442121850558 120.42332250261686 120.60080033887049 120.78011915352646 120.95262835134965 121.12315987953278 121.27624277053746 121.41818082854657 121.54098384153635 121.64219483354553 121.72287959053432 121.77661255539064 121.80870747245744 121.8135332512629 121.79801896859955 121.75715188312464 121.69771949147287 121.6245323878061 121.53510616785003 121.44695645714236 121.36258246552565 121.29123112644153 121.23427273478693 121.1983065267756 121.1839160687599 121.19460437881162 121.23043786952074 121.29171624221269 121.37788726984459 121.48623317888786 121.61646550629915 121.7646703365774 121.92785669479936 122.10394642669199 122.29026234184678 122.48400255782116 122.68323123768823 122.88610599224099 123.09075804919777 123.29546318170587 123.49833158694085 123.69811207765211 123.89347687127928 124.08308929774527 124.26562652251518 124.43993272973076 124.60483548614852 124.75919085386934 124.90187437287568 125.03169443540699 125.14728807566739 125.24793258038287 125.3325268105074 125.39996376760344 125.44912949641919 125.47890333201153 125.4881594914159 125.475770009862 125.44060902153605 125.3815583848891 125.29702446080442 125.18625345896231 125.04821635405081 124.88160854554681 124.68567899499672 124.46009714248792 124.20554121924326 123.92363122297037 123.61662978695156 123.28739336703819 122.93932782876186 122.57634396740798 122.20281331820242 121.82352459301622 121.4436410039713 121.07352268626158 120.71703191162405 120.38518254171787 120.08493538956459 119.83094404572886 119.6290456090137 119.49288412799334 119.43828355113902 119.46260137253965 119.56410992678099 119.73935655756198 119.98335955248795 120.28976113688671 120.65097362909499 121.05847257395176 121.50253584193278 121.97264199094693 122.45773645133771 122.94505364888701 123.42183526595281 123.87508856770697 124.28941919354783 124.65106321594678 124.94655068487843 130.59030894472002 130.62504571000645 + 128.40945061390266 128.16748025495426 127.9211704570851 127.67095224657419 127.41792854226054 127.1626299921389 126.90590000751881 126.64740317156935 126.38918386916049 126.13026086545419 125.87216286429776 125.61519884553528 125.35929386175592 125.1053888819658 124.85425457268876 124.60555467368766 124.36057051241957 124.118930437634 123.8816759870868 123.65022826071991 123.42309342509931 123.20185340910677 122.98818920123067 122.7824513379202 122.58341813552828 122.39426935477391 122.21592838942215 122.04942203260981 121.89573971249206 121.75473274295851 121.62969153001804 121.52220493147429 121.43401109577536 121.36717163889467 121.32382073480898 121.3061719235288 121.31731895003459 121.35864957417658 121.4278049040665 121.52187735741167 121.63884210411737 121.77598851550391 121.92879301971819 122.08984714919315 122.2581832106709 122.43184360077517 122.60031513056529 122.76377090782717 122.92020849383131 123.05898278378294 123.18558967628066 123.2899625570322 123.37404555471126 123.43658630993937 123.47234503575731 123.48809993047136 123.47537857301631 123.44451969506355 123.3893469828127 123.31735379978721 123.23140193735027 123.13238582290467 123.03106489331587 122.93679714109889 122.85206871809568 122.78421719684573 122.73386277178125 122.70607073503612 122.70124917344347 122.72074155899737 122.76513537017958 122.83164825316526 122.92127637901787 123.03152438896717 123.15896211488679 123.30149443061968 123.45675121920523 123.6220199694496 123.79488781433554 123.97366503915741 124.15644840049752 124.34147446470134 124.52704311894321 124.71145869484644 124.89358098441816 125.07200560517626 125.24550467092045 125.41288396146405 125.5729809323189 125.72466681600464 125.8668371787023 125.9982256818383 126.11778341547011 126.22455433098585 126.31749210770852 126.3955783616978 126.45773886193889 126.50289420501466 126.5299608576264 126.53785352381848 126.52548883690606 126.4917903761065 126.43569500787402 126.35606236358376 126.25137027269027 126.12110026566111 125.9640949578334 125.77946109030341 125.56690168048081 125.32707583396912 125.06159554177488 124.77292088733937 124.46353751494533 124.13634136019765 123.79575051428309 123.44587058567132 123.09114614750987 122.73640096322886 122.39177991587914 122.06037485751578 121.75369720602119 121.47623941705339 121.24439961684243 121.0624214556865 120.94188284718552 120.89573227137483 120.92479568820433 121.02435147053241 121.19070742232444 121.41888470858213 121.7027337277906 122.03497003749906 122.40745181746834 122.81129091312079 123.23746964034703 123.67461189146903 124.11198053957409 124.53848421324615 124.94188670600988 125.30970550237058 125.63053093119628 125.88319625218092 131.87490629551152 131.91160099083024 + 128.88639586427823 128.66612553151427 128.4432607992817 128.2181514219278 127.99130587419963 127.76369540969972 127.53584978675526 127.30745380534908 127.08019301776574 126.85372407576479 126.62852195570889 126.40515897964403 126.18481124361644 125.9659303945702 125.75094400319071 125.53989556372802 125.33141402061338 125.12797932339822 124.92993987930248 124.73620020837133 124.54810789158702 124.36674112016736 124.19269474766293 124.02511266012014 123.86579879753356 123.71583620124164 123.57604493384295 123.44733649180262 123.33071702798702 123.22688370388705 123.13721772836236 123.0636757791171 123.00778005967153 122.97141418004493 122.95640706844206 122.96463484677103 122.99799307011361 123.05747785781548 123.14259515949848 123.25065836242965 123.3785288942792 123.52331154534676 123.676673779745 123.83998472510302 124.00744089107616 124.17455408788693 124.33694469764278 124.49289321938552 124.63741974009609 124.76528523628909 124.87923732835529 124.97012587997324 125.04157346380674 125.09011291304236 125.11374592891015 125.11691558383419 125.0935606609138 125.05228361290487 124.9885346731088 124.90817757940688 124.81355609409397 124.70932540423196 124.60078872414644 124.49780504468737 124.40549230528951 124.32688517385427 124.26696169646094 124.22646526038707 124.20833227953982 124.21337907092247 124.24060604471597 124.28978538885461 124.36126406406716 124.45135081915592 124.55917049040809 124.68128779755415 124.8157408326046 124.95997539363346 125.11226330042007 125.2706464102257 125.43330929813365 125.59863943762811 125.76485715758086 125.9307098181129 126.09493778601467 126.25627885177236 126.4135326990048 126.56554857345212 126.71121423515243 126.84944619380732 126.97885242966852 127.09867787419233 127.20793429452134 127.30559212568201 127.39057389828228 127.46187001209478 127.51847332993026 127.55934227723289 127.58343388050359 127.58970685744568 127.57712599987818 127.54466784941643 127.49132766592088 127.41612768871262 127.31765097274132 127.19503018473476 127.0475762692236 126.87418409696207 126.6747025868 126.44972909012611 126.20096680219886 125.93071867315166 125.64123881097082 125.33543751600327 125.01737880731942 124.69134702831055 124.36128907322401 124.03172987203574 123.71283623112933 123.40635988014584 123.12478074812206 122.87106853186106 122.65947687948393 122.49665696271332 122.39171128831171 122.35361943376948 122.3840976760496 122.4801026935414 122.63600068842315 122.84684872692868 123.10667232422895 123.40864647170024 123.74599557084119 124.1096540980595 124.49072475116617 124.88005113918423 125.26819500933544 125.64516852054054 126.00037228325085 126.32394295168542 126.60621273536803 126.8122909408482 133.14750829982154 133.18578508449508 + 129.37267841286936 129.1741199119431 128.9744138516952 128.77397254617685 128.5730480340349 128.3726065197849 128.17304393125053 127.97409455716165 127.77709445548238 127.58175220164897 127.38890056618797 127.19820571126101 127.0111329050502 126.82702606920604 126.64626919014738 126.46989041753314 126.29772369866663 126.13029066107437 125.96751599805083 125.81046452249491 125.65936745783925 125.51478195818075 125.37640859632334 125.24534074592493 125.12244512982957 125.00836834100011 124.90383171637448 124.80963650676007 124.72666857079692 124.65594420836926 124.5985791632129 124.55576263430756 124.528783416019 124.51932555640586 124.52887426948897 124.55895825428831 124.61208546067606 124.68894900744773 124.78858001087117 124.90828421788075 125.04449202458507 125.19216980530595 125.34941342511038 125.51400042145784 125.6789544653173 125.84133844084111 125.99887674137639 126.14767053249902 126.28339383933648 126.40297643011769 126.50673389525318 126.58826570402206 126.65084942804599 126.68952090450408 126.7054420600455 126.70031156868902 126.67107626353132 126.62298085141505 126.55598973776061 126.46989252594359 126.37223969275584 126.26575748699992 126.15401803989029 126.04565872092009 125.94719592743374 125.862111939036 125.79271589513341 125.74254589116677 125.71255800776599 125.70356313784464 125.71530358810742 125.74824410934039 125.8014925938641 125.87291552046334 125.96116800556047 126.06342058743984 126.17712063768404 126.30085833612492 126.43265294780493 126.57069047120268 126.71330374870604 126.85879219686952 127.00580055347879 127.15310618734063 127.29945361502607 127.4436535391148 127.58457039076593 127.72111111812224 127.85213726936757 127.97637877522186 128.09312785293722 128.20138560044592 128.30015828944525 128.3884536090096 128.46527816163527 128.52944227148754 128.58007213028955 128.6163622585116 128.63733023324315 128.64199880539294 128.62923566476448 128.59786041368523 128.54713656129343 128.47615330646616 128.38387461700006 128.2688317807907 128.13090360017213 127.96873173872555 127.78238804671827 127.57237866583553 127.34048325648594 127.08868434672895 126.81926539603093 126.53501110923331 126.2398080962944 125.93771427510906 125.63224518410661 125.32832307137399 125.03466333740417 124.75289163095289 124.49599515083592 124.26607622013329 124.073333888516 123.92865945986327 123.838017727161 123.80851701805538 123.83992319755934 123.92939888623872 124.07277628323426 124.26493920220246 124.49998053224479 124.77134330930504 125.07194910820952 125.39431292141884 125.73064387445778 126.07293131189199 126.41320022176018 126.74268289515133 127.05265925099688 127.33471020195405 127.57883113483683 127.74608471693797 134.40750911396913 134.44703354351927 + 129.86880245911328 129.6916393270604 129.51474426726955 129.33859488117858 129.16326353883397 128.98948934418343 128.8176370984416 128.64746453901813 128.48005372647776 128.31507074415583 128.1534141868082 127.99458592160751 127.8396414776912 127.68817934566059 127.54109509131398 127.3983594897273 127.25970407028335 127.12617874288334 126.99801982715664 126.87549751745775 126.75876965658695 126.64778383858027 126.5435756351091 126.44658679448902 126.35731609658292 126.27632361765903 126.20423469790757 126.14174356697126 126.08963205496002 126.0488042763399 126.02019256445799 126.0048165631373 126.00377623832826 126.01861229991825 126.05049964829973 126.1007116480054 126.1715211079688 126.26332088633089 126.37514711903847 126.50335104369863 126.6447662064601 126.79724142114307 126.95704701623207 127.1212985910416 127.28289246559312 127.44272004556122 127.59583210334229 127.73749665052607 127.86722205220904 127.980718693923 128.07712749208997 128.1519629887941 128.2087294746088 128.2410133559932 128.25278246135142 128.2428799666159 128.21157797369054 128.15978627732977 128.0926576437815 128.00556496517152 127.90718707042193 127.79980901563457 127.68852944279062 127.57887570384592 127.47626404610537 127.3857395587119 127.31018986681546 127.25080010861663 127.21016732291118 127.1885008916821 127.18576462742355 127.202983118965 127.23893003312183 127.29267875975083 127.36153410868542 127.44405585687737 127.53791341508574 127.64141258101718 127.75293518078708 127.87081462632102 127.99336114183136 128.1192405365527 128.24721726903837 128.37604983542087 128.50456599883066 128.6316503572822 128.75623310984756 128.87706828789297 128.99317900544617 129.10374934392775 129.20781517536707 129.30441981424815 129.39260995364717 129.47128955739302 129.53940138347835 129.5963186174315 129.64107856354588 129.6727753208538 129.69047339940172 129.69324590966653 129.68018010145983 129.65017769843186 129.60198526841572 129.53514948281605 129.44887657732053 129.34148480621818 129.21295723004468 129.0621150999866 128.88895796256026 128.69400016261986 128.47898165311528 128.2457227236638 127.99645023824141 127.73380680700438 127.46162206455273 127.18330232063212 126.90236215108405 126.6241603406201 126.35519470039712 126.09907773889934 125.86486664751341 125.65792522490136 125.48429034016446 125.35535317881163 125.27744281927366 125.254608622616 125.2861167005669 125.36879698630008 125.49854573802334 125.67048715891 125.87912171431931 126.11846150264918 126.38215164663868 126.66357687831061 126.95636723170291 127.25366592452723 127.54781701690197 127.83172121031387 128.09841482278196 128.340247075187 128.55000663259275 128.68446569140463 135.65430289427337 135.6947819204209 + 130.3749419214629 130.2188599632276 130.0644368263614 129.9122757054483 129.7621316077738 129.6145396374097 129.46985241262445 129.3277750127878 129.18930791014043 129.05398562298808 128.92250397351495 128.79458779670134 128.67094801538386 128.55116420550132 128.43592764469045 128.32542020267138 128.2194551431096 128.1186075123122 128.02299956149557 127.93276177256219 127.84828295453644 127.76982244524902 127.69781840796398 127.6326408715155 127.5747104711823 127.5245013820356 127.48254393267011 127.44942686519386 127.42584940180468 127.41256191789257 127.41034119102825 127.4200432656174 127.44258718724718 127.47938842380366 127.53129046417854 127.59935084930856 127.68562460631418 127.79010950030481 127.91092077386753 128.04625365529895 128.19322181523435 128.34900791147538 128.5097942085316 128.67195410461744 128.8321393003798 128.98918985266403 129.13715582216008 129.27426365000105 129.398975022142 129.5075022828442 129.5991411707477 129.6693526004624 129.722610898266 129.75131680865394 129.76164777277936 129.74970570268403 129.7192186863763 129.6668033034881 129.6003318161244 129.51666405548167 129.41920763675267 129.3139139531308 129.20408621894 129.0949340772654 128.99114878996903 128.89686898056937 128.81537427484943 128.74896559417746 128.69843689305418 128.6644768133111 128.64879462623904 128.6515338402771 128.67070709031202 128.70696835697413 128.75703945737988 128.8203321555894 128.89488979994528 128.97863253259962 129.07018770553242 129.16798361221186 129.2708310407174 129.37743325854993 129.48657195345567 129.59709977447142 129.7079280805776 129.81799451321487 129.92598744394417 130.03123075024598 130.1327828656919 130.22971687053322 130.32111506718027 130.40606470267812 130.48328188714973 130.55215620087756 130.61192332170438 130.66168734202293 130.70052626285909 130.727573659635 130.74194511132217 130.74276653278585 130.72918172484142 130.70035949669352 130.65489959177106 130.59218076051278 130.51172469934113 130.41209885292022 130.2929573153596 130.1534472595583 129.99349855161432 129.8136379638184 129.615473715121 129.4007728408844 129.17164290357022 128.93057385506498 128.6813761424111 128.4265819057158 128.16991829414783 127.91709575052695 127.67231755176097 127.4411836287071 127.22888495848015 127.04386826426261 126.88990000248651 126.77406865083455 126.70640910854068 126.68876296706665 126.7187449391859 126.79316352285848 126.90806146773565 127.05887107301179 127.24055612950879 127.44773982004503 127.67503752379278 127.91706118592822 128.1678492471985 128.42106864571397 128.6709080691852 128.9116484133834 129.13735059991618 129.34215936285395 129.5207404428903 129.62837174748725 136.88728379705321 136.92846576771805 + 130.89133572544884 130.75602553677385 130.62378440226414 130.49528914487135 130.3698951247668 130.24801469163046 130.12997199660475 130.01535768591688 129.9051535866447 129.79882978420608 129.69685628828162 129.59893174226585 129.5056235903118 129.41660940862698 129.3323095294199 129.25290736232114 129.17822178647296 129.1085934175951 129.0442010297053 128.98519901546138 128.93177729419114 128.88413991722376 128.84260225435756 128.80747694671177 128.77910519469742 128.75787423998298 128.7442187855931 128.73862645707197 128.7417249052738 128.75407186447157 128.77631567542 128.8091534167909 128.85332978757506 128.9101529747364 128.98011119855974 129.06408472832828 129.1635349512376 129.27836805706335 129.40782836370005 129.5494125761567 129.700423919051 129.85790543667233 130.01815295803647 130.17940350360567 130.33756878719657 130.49131926522853 130.63475322756616 130.76831248075638 130.88866278623289 130.99293580759516 131.08093233962782 131.14888613867817 131.20017942264465 131.22746972622141 131.23825529423493 131.22596941875355 131.1970140191193 131.1476643177264 131.0829333031382 131.00502081797825 130.91053539671222 130.80773611099488 130.7006398286359 130.5931049230695 130.48957801600244 130.39341215306808 130.30738969942902 130.2335336083901 130.1739201510457 130.12982484839813 130.10204031792543 130.08969167961786 130.09337877083726 130.11240118717774 130.145119385688 130.1896342170342 130.24496757232424 130.30940299881695 130.3814688887703 130.45978768733784 130.54335504724858 130.6309868830369 130.72157024376926 130.8140467361699 130.90716224025704 131.0001487378189 131.09208155877585 131.18205845542965 131.26919304847834 131.35260935544454 131.43142149323245 131.50426796087189 131.5708357433018 131.630274292298 131.68173233470793 131.72435667065494 131.7572845336688 131.7796886544234 131.79073466026537 131.78960317807469 131.7754961785852 131.7476443878686 131.7050422204364 131.6464377434909 131.57179689007432 131.47988547561187 131.3701256371912 131.241914831966 131.09515417239484 130.93035343819753 130.7489960084889 130.55278206902787 130.34368521328284 130.12426910100515 129.89742968555913 129.66595770811014 129.43314011631747 129.20512421627345 128.9838657217364 128.7768053016681 128.58621688159954 128.42114508067397 128.28517110263348 128.1836278237916 128.12343952786588 128.10784421248144 128.13471728581624 128.19953522212424 128.2985571078764 128.42758178781204 128.58206894927937 128.75798165971491 128.95020865160868 129.1536186272372 129.3633114232284 129.5744879973663 129.78248380893726 129.98274703552624 130.17056946048945 130.34167988267487 130.4919563813462 138.05526737618467 138.10584597862757 138.14752063792886 + 131.4182896504062 131.3034436614801 131.1933801517846 131.0879660772566 130.98685371397312 130.89022525062046 130.79832405829816 130.71072454694712 130.6279827271719 130.5499797569169 130.47687428495306 130.4082817805452 130.34460296175993 130.28557855758714 130.23141087107192 130.18219031860085 130.137836936625 130.0984982331319 130.06431053364318 130.0353662369639 130.01179101694652 129.99374523954026 129.98143503028479 129.97509836325207 129.97499417877876 129.98142026041452 129.99471362827765 130.01530659747024 130.0436384494371 130.0801581380054 130.12537129559334 130.1798194660949 130.24414219785436 130.31936492730793 130.40576227905333 130.5039626457996 130.615522496779 130.74002084277637 130.87668506518764 131.02313791155373 131.17676739451352 131.33497216635683 131.49496308069138 131.6545112157823 131.81005035828207 131.96004582579113 132.09996581440976 132.22999881612188 132.34633384167856 132.44752080492006 132.53257882428775 132.59909267107693 132.64841260612664 132.67660722604597 132.68747904243594 132.67770210660166 132.6507590558024 132.60620312850648 132.54455320007295 132.47029179715625 132.3824482979892 132.28336200170787 132.1789971525152 132.07340905145963 131.97012722936705 131.87226662678503 131.78254834469476 131.70319368172213 131.6359736475393 131.58207689716323 131.54225211271364 131.51587836663418 131.5049606858056 131.50725154972355 131.52288717092694 131.54929637387013 131.58575610964846 131.6311596018392 131.68420267626885 131.7436771196366 131.8084571768984 131.87748706056476 131.94976947191313 132.02435513411433 132.10033333727318 132.1768234953835 132.2529677151974 132.32792437700834 132.4008627273493 132.47081762684022 132.5367200990913 132.59816680540004 132.65435350518518 132.70447496651207 132.74772563013838 132.78329319615906 132.81038359274936 132.82820525628034 132.83597699275765 132.83293544270407 132.81834169164367 132.7914888736939 132.75168379454118 132.69720731223765 132.6283868948127 132.54412740471525 132.44373049957576 132.3267471879259 132.19309716319884 132.04326602310854 131.87858158924067 131.70067936552582 131.51139698017715 131.31328089627206 131.10839688684243 130.8997537522549 130.69074448293927 130.4861804129159 130.28806559315566 130.10349509572757 129.93479790794703 129.7869043607973 129.66682899196476 129.57811968019996 129.52596978526822 129.51172617637067 129.5329913956676 129.5865778584924 129.6688602450468 129.77575899137014 129.90353556796538 130.04817617557944 130.20553172906114 130.37152700247918 130.5422160332189 130.71387727516404 130.88305037690756 131.04585839535906 131.19969301183107 131.34131741079273 131.46706036125804 139.25790999054502 139.3093835953157 139.35138208357148 + 131.9561726725933 131.86179843636077 131.77339241790418 131.69064555496533 131.61335690576863 131.5415275054353 131.47528820096923 131.41421227566707 131.35864725303813 131.30821337940043 131.26314660018025 131.22309968026676 131.18841623689386 131.15871641239278 131.13402206708238 131.11435733340028 131.0996471367959 131.08990304554797 131.0851906524533 131.08553823681413 131.09100523106684 131.1016830711587 131.11771934122316 131.1393833441778 131.16672714860476 131.19995523069875 131.23934249910633 131.28517829884257 131.3377588456686 131.39742121807527 131.46452907269003 131.53947076551748 131.62281427772248 131.71540764239236 131.81730362082408 131.92897087413482 132.05153761169476 132.18452585417035 132.32724178528585 132.47762022270788 132.63326547768006 132.79182446456483 132.95070719357102 133.10784909980148 133.260341028404 133.40682533395383 133.54310275076196 133.66942607224652 133.7819027479282 133.88059285388917 133.9629818951455 134.02833733850372 134.07630567427725 134.1057418474516 134.11723172561034 134.1104827580608 134.08571548708994 134.0462932000876 133.98834676719642 133.91780583935216 133.83592712670804 133.74151332010732 133.64040409954512 133.53673746883763 133.4338355289512 133.33462197563796 133.24166749339793 133.15702615453688 133.08242002198284 133.01925289971717 132.96710609109712 132.92814793712003 132.9024906212519 132.88910745674042 132.88755694913166 132.89700829746226 132.91531481908137 132.94226803454927 132.97674499615135 133.01768092876983 133.0640779353701 133.11499413987798 133.1695337671101 133.2268381597573 133.28607773242075 133.34644486270096 133.4071477193399 133.46740502741574 133.52617741574153 133.58270723340615 133.63648604778737 133.68675800912027 133.73276570660605 133.77374938568275 133.80895008343086 133.8376137607685 133.85898938053379 133.8723354248639 133.87692484987622 133.8720509555863 133.85703417106458 133.8312297548306 133.79403641048543 133.74384014976513 133.68083932057303 133.60414559848215 133.51306428197125 133.4071841413607 133.28649648683697 133.15145395610483 133.00323119699772 132.84335950537627 132.67368607457283 132.4960385098183 132.31269032496516 132.12621977271175 131.9404664896129 131.75813142893378 131.58302138947042 131.41876172429593 131.2704277358383 131.13973528433996 131.0323616370667 130.9546044761609 130.9085983352904 130.89443289149187 130.90967520656338 130.95136146313862 131.01588158592813 131.10032082354797 131.20139149061447 131.3156301195655 131.4396596466473 131.5702500578771 131.70477705051087 131.83995008885984 131.9735610409652 132.1033448724138 132.22663376103364 132.34129289350508 132.44511290995243 140.44510590871286 140.49729080343639 140.539485657164 + 132.50576098226358 132.43153918867836 132.3642113361877 132.30371537758987 132.24979737187297 132.20231514600593 132.1612664445371 132.1262291210101 132.09734451252933 132.07422135801588 132.05693228378988 132.04512247358429 132.03883500198853 132.03786219757015 132.0420959148918 132.05146843781623 132.0658657223008 132.0852311120517 132.1095214830257 132.13869479706844 132.17273738943686 132.21166399838927 132.25551752560412 132.30436853885703 132.3583816949022 132.4180278966861 132.48304299570995 132.55359098226222 132.62985688039112 132.71204493273703 132.80037661138496 132.89508846632296 132.997073980653 133.10649733108224 133.2231386158085 133.34746673880278 133.48018677088547 133.6208000061917 133.76927502517043 133.9230712099375 134.08004949130404 134.23821732079023 134.39529732841694 134.54995177133526 134.69921116996775 134.8416569505201 134.97392335419968 135.09617874165318 135.20510238395687 135.30098921596363 135.38058360584557 135.4445778359577 135.49113961471738 135.52154020719303 135.53361263183277 135.52963595808473 135.50690486758486 135.47004123352227 135.41733253140592 135.35042077523826 135.27207152272712 135.18356368864318 135.085105287477 134.9832796483267 134.88072437860973 134.78008944710675 134.68376286688448 134.59381412134658 134.51199943327987 134.43862947563275 134.3757341437166 134.3245525598318 134.28418044446272 134.25609604399773 134.23799503159086 134.2302651062737 134.23177569834112 134.24085068066452 134.25732298838162 134.28027634890742 134.30883564028855 134.34216857282968 134.3794772895841 134.4199908262352 134.46295843036998 134.5076437401429 134.55331982233176 134.59885871977667 134.64387298370096 134.6877150324392 134.72968028307992 134.76906206163181 134.8051504655959 134.83723438552147 134.86460336415627 134.88655029071498 134.9023749302672 134.91138828824356 134.91291781006086 134.906313415866 134.89095437039833 134.86625698797107 134.83168317257153 134.78571630632538 134.72851509116646 134.6592649106551 134.57740951593505 134.4824429059778 134.37448598534755 134.25394675124474 134.12188275712623 133.9796791117346 133.82896806042868 133.6711672322371 133.50863694848746 133.3436702085532 133.17992258109032 133.01877146237427 132.86525302899292 132.72059882313562 132.58989931571605 132.47541629333855 132.38103289225597 132.3106489652922 132.26852232732972 132.2528959713504 132.26097808797311 132.28962178501234 132.33643935505444 132.39890667351963 132.47414912847543 132.55939088080825 132.6525158826705 132.75051635387314 132.85118001052098 132.95352125760232 133.05520339368755 133.15468853706537 133.2508353267457 133.34201937750828 133.42708998423956 141.6162059015811 141.66896175930876 141.71126691122456 + 133.06772501244473 133.01292995188075 132.96627639030663 132.92760656539542 132.8966042094782 132.873011444372 132.85667795917544 132.84719772014446 132.84449674930957 132.848189699829 132.8581628547723 132.8741038389594 132.89585319284686 132.92317792343684 132.9559040385376 132.99384299849677 133.0368130442143 133.08488693513658 133.13818977087104 133.19619378603466 133.25880605953537 133.3259583366349 133.39760610416562 133.47372743014293 133.55432158901695 133.6396120372965 133.73018569012623 133.8253350389456 133.9251176956009 134.02960269069962 134.13886829797045 134.25311936634418 134.3737444578204 134.49951354294916 134.63046263633885 134.76696810365692 134.90930464799214 135.05780524773436 135.21152149763077 135.3680757411503 135.5258337198873 135.68306763442706 135.83840654241882 135.9902450577825 136.1356903827056 136.27362024706645 136.40136931369437 136.51929660327903 136.62430881611664 136.71679006682305 136.79311377714797 136.85511881611774 136.89962203307198 136.93009548210995 136.9421440653281 136.93942593017277 136.91873887999097 136.88341291305522 136.83428828024887 136.77027035357722 136.69473557086252 136.6088672847433 136.5145653662378 136.41372325793472 136.3105487535307 136.20780169856315 136.10800083983918 136.0127083186752 135.9226106139647 135.84018714410902 135.76682404288064 135.70293244040622 135.64902531679644 135.60594898129654 135.57255366550856 135.54820286243768 135.5326789694857 135.5250990309372 135.52436791758808 135.52994340701133 135.54126265427743 135.55759591908884 135.57824061186213 135.6025111711733 135.6297328272553 135.65904835262245 135.6897770769831 135.7214289222427 135.75335545573932 135.78490523797038 135.8154231473455 135.84425045920665 135.8707256791144 135.89418613040075 135.91380869913948 135.9291404594439 135.93962740952577 135.94465269385168 135.9433488457617 135.93512837731515 135.91951305158076 135.8959783979474 135.86404699354466 135.82220956786244 135.77075601791867 135.70877917666544 135.63600472109292 135.55168514010916 135.45613305843403 135.3497009177267 135.2333210085656 135.10821810676268 134.9756325595578 134.83705593250102 134.6944640846412 134.55042299137273 134.40698162596365 134.2665185329538 134.13230486907713 134.00675073078966 133.89077326424783 133.7907444859372 133.70785337691032 133.64518259467602 133.60477717064416 133.58552037691956 133.58473684939622 133.59995220185328 133.62947873547293 133.67088343067525 133.72183146855653 133.78015410956695 133.8439005012732 133.9114895974716 133.98220269353357 134.05450490056282 134.12769390728292 134.2008793860696 134.2732461424715 134.34431759984514 134.4136694025994 142.77056074004267 142.82379061925184 142.8661613982713 + 133.64226466348086 133.60647133702534 133.5800720263752 133.56278787749676 133.55423625535354 133.55406134679006 133.5619636194669 133.5775445267213 133.60052012139573 133.6305329093651 133.6672733563551 133.71043613464914 133.7597218207478 133.81546070569777 133.87695031833366 133.94378246680438 134.01569964167572 134.09251143783106 134.1740689320251 134.26009820027252 134.35076850724792 134.44650807741985 134.54628847498094 134.64998828713516 134.75750193450952 134.8687376782081 134.98445381670405 135.10445946147567 135.22795215569556 135.35486270345274 135.48512450146876 135.61940020637644 135.75829862708912 135.90036018131508 136.0454983568493 136.1940025217702 136.34631376513235 136.50251687070354 136.66100686984933 136.82002207377545 136.978238906567 137.13443458990662 137.2881651542552 137.43650469922076 137.57767121040243 137.71061959161216 137.83329772882314 137.94634756225696 138.0468202211368 138.13487314327654 138.2073360572947 138.2662278954355 138.3080533171412 138.33614314112344 138.34761643787 138.34417074641706 138.32491574165897 138.29010455357272 138.2421161779422 138.1800179312881 138.1052002748 138.0206797828509 137.92728664853206 137.8274143700499 137.72362406883303 137.6182997853741 137.51363935310715 137.41165410477285 137.3141687522767 137.22282109351258 137.13904543443186 137.06230000433737 136.99562465205216 136.93775150262758 136.889663980249 136.84946848416183 136.81751710948538 136.7932764445298 136.77605870627656 136.76520747402893 136.76009098886215 136.7600961271882 136.76462304843412 136.7730805168348 136.78488189733972 136.79944182563415 136.81617355227382 136.83448696093456 136.85378726077528 136.8734743529158 136.89294287102797 136.9115828960418 136.92874359435015 136.94360871033138 136.9559031937023 136.9650387276435 136.97043607406022 136.97152980494894 136.96762906218416 136.95790747812902 136.9421148688928 136.91978340190826 136.89049304516138 136.85265143004835 136.8068493038049 136.75191654804905 136.68801083646235 136.61398491418936 136.53040858929856 136.43756886267846 136.3362646106753 136.22755368413416 136.1122630628196 135.99197975443852 135.86846118053708 135.743815853285 135.61942552003026 135.49836567598922 135.3816730713835 135.27268865771143 135.17211913876469 135.08314256770035 135.009646068355 134.95276785823197 134.9133934954423 134.89009917322866 134.8797184363412 134.88174317524167 134.89418814261595 134.9151547272142 134.94290149035123 134.9758997212502 134.99559656493605 134.90464266505242 134.82961803341928 134.769929153264 134.72446709056808 134.6923442256933 134.67259201821608 134.66417395799107 134.6658331976206 143.90752119499018 143.96117153958457 144.0036046708223 + 134.22994885578117 134.21271244034273 134.20612331308712 134.2097603596692 134.22317541203765 134.24592355346522 134.27756451101777 134.31768917437643 134.36583099762538 134.42163625811656 134.4852041747794 134.55602808835087 134.63340762667843 134.7168881849662 134.8062378066697 134.9010560932116 135.00096474460577 135.10688163321439 135.2178412306208 135.33310942880902 135.4523916155144 135.5754416631672 135.70321932680145 135.83514469171266 135.9701877936219 136.10813957164726 136.24879723205393 136.39408815703146 136.54180688544406 136.69159187682592 136.8432294532649 136.99772902163315 137.15517061853316 137.31376956314762 137.4732711375109 137.63387770258282 137.79678620885133 137.96029462197336 138.1235398401864 138.2849617590909 138.44353878643136 138.5994155803351 138.75059792219093 138.89515052750667 139.03165349640201 139.159182884171 139.27621499899587 139.38356092699664 139.47860595152724 139.5610124805176 139.62879318553618 139.6828281993684 139.7212182920427 139.74507647921035 139.75386122105397 139.7481213494019 139.7283642389246 139.6923997043102 139.64345975617312 139.58214964018433 139.5072423829522 139.4216012533305 139.32683963189382 139.2250228727978 139.11844095110123 139.00927969240112 138.89981906311945 138.79163419213373 138.68651873795787 138.58613036236525 138.4907385557293 138.4025857256567 138.3228134482846 138.2510624449992 138.18787724773398 138.13310376941357 138.08529387778353 138.04500720349992 138.01167811168273 137.98475997173466 137.96371985541703 137.94803383090118 137.93718285279655 137.93064924815457 137.92791379844815 137.92845341752798 137.9317394255541 137.93723641890415 137.94440173605705 137.95268551945327 137.96153137333053 137.9702795017976 137.97826529149134 137.98519816201338 137.99053272893457 137.9937292629233 137.9942578970111 137.99160342611432 137.98515134434456 137.97403186980492 137.95812175376687 137.937006546561 137.91022935629582 137.8762955166058 137.83599283061682 137.7878059314465 137.73223193799205 137.6682984509215 137.596158951475 137.5162735445818 137.42930153882887 137.33606599600026 137.2371616869464 137.13410310409952 137.02851862754355 136.92168071600437 136.81533679258385 136.71149812649392 136.61169545061983 136.516410335622 136.429205346676 136.35128361271643 136.2845278453405 136.23094807672476 136.19116900471104 136.06294569416914 135.8582339167769 135.66980775606677 135.498092783524 135.34331545631952 135.205516316011 135.08456318724382 144.1200957564503 144.25093053290584 144.37562990576856 144.49359511101594 144.6042273846254 144.70692796257447 144.80109808084066 144.88613897540142 144.96145188223426 145.0264380373166 145.080498676626 145.12303228139567 + 134.83140011405305 134.83224759393823 134.84499163627805 134.86905190753097 134.90391996936492 134.94906256617148 135.0039157574964 135.0680337501454 135.14108377556977 135.22334842659345 135.31341861303815 135.41081520006438 135.515167435768 135.62586299103623 135.7429138469485 135.8672447356911 135.99674741617451 136.13102599844646 136.26974212873483 136.4139674571536 136.56307273824558 136.71555293748068 136.871069811046 137.0303137667365 137.19378381975906 137.35930601118525 137.52654849035574 137.6962346654379 137.86897269524448 138.04235808235043 138.21608517455672 138.39086646788726 138.56743613163064 138.74308164073486 138.91740076198985 139.09045049031664 139.26403849467394 139.4351865386855 139.60336017319372 139.76735978768556 139.92640625181866 140.0817719946107 140.23033636842757 140.37093640246232 140.50247988199118 140.62419643231414 140.73501157588822 140.83539820286953 140.92404433531635 140.99977261916345 141.06155160353933 141.10940170639194 141.14269804510144 141.16126008340444 141.16563925581085 141.15451580542816 141.13008020253568 141.0918615388555 141.0399170632916 140.97574396794292 140.8999257826561 140.81183899675065 140.71438368717736 140.60932900928552 140.49873439372868 140.38459505332685 140.2688272909476 140.15326542350408 140.03965766116346 139.928757194599 139.82248517590773 139.7228250049558 139.62958743224618 139.54479959951195 139.46699902346543 139.39728270140793 139.3350662936943 139.27936946649413 139.23058915272944 139.18827768563426 139.1519916363759 139.12128829521058 139.09572267365624 139.0748450276802 139.05819890190392 139.04531969482306 139.0357337450442 139.02895793853705 139.02449983690298 139.0218583266601 139.020393623152 139.01956051314806 139.01906196332385 139.01839718052744 139.01706774240432 139.01458134780992 139.01045608479362 139.0042252161527 138.99525369660043 138.98281565297629 138.96681662938465 138.94689170538206 138.92236071978004 138.89228331747339 138.85718933735404 138.81544541523772 138.76771651868654 138.71343650385626 138.65208094019573 138.58438631016986 138.5108683427416 138.43205086646867 138.34849088726813 138.26150101004873 138.1722216082218 138.08175149498365 137.99192587229416 137.90342076832454 137.78738534019908 137.5162414659405 137.2459283162002 136.98027813739876 136.72226429989195 136.47569319937887 136.24311894293422 144.15039228139412 144.3103451347221 144.4682932393258 144.62362515583038 144.7757294448613 144.92399466704393 145.0678093830036 145.20656215336567 145.33964153875542 145.4664360997983 145.58633439711963 145.69872499134476 145.802996443099 145.89853731300784 145.98473616169647 146.06098154979037 146.12666203791483 146.18116618669518 146.2238797825096 + 135.44729237095788 135.46571315636095 135.49727041709252 135.54121183167763 135.59697790570905 135.66394068554104 135.74143711668668 135.82933882201579 135.9277483272195 136.03511779634297 136.1508417308344 136.2742504338656 136.4050559028236 136.54459309575225 136.69057624069364 136.8425178959006 136.99964600455198 137.16354553076886 137.33269805496198 137.5057899183862 137.68237811983764 137.8650783576926 138.0506030421961 138.23819800519271 138.42859995422347 138.62277874775108 138.81764496324772 139.01272664131884 139.21039114113165 139.40833054968547 139.6051429142445 139.80015269837267 139.99659527197937 140.19002134315278 140.37992496850615 140.56589406232527 140.75006866160194 140.92934903314386 141.1028919263707 141.2698437728776 141.42965891527916 141.58405833995798 141.730084157176 141.86668788681226 141.99307197113498 142.10864067830136 142.2126975727635 142.30468925382957 142.3856610887388 142.45359503169493 142.50794591132134 142.5481266468368 142.57450105981624 142.58594974872472 142.58397937986135 142.56676069400845 142.5361353072992 142.4924195149121 142.4344388373022 142.36451543479342 142.28327152662365 142.19144870423577 142.0890164740905 141.97862783469776 141.86221366875188 141.74160131285757 141.61858124021606 141.49490331727594 141.3714095890563 141.25029884090944 141.13337014741302 141.02152754056792 140.9157739133673 140.81752822876942 140.72628294593676 140.6420976133547 140.56532233482307 140.49560176981828 140.432033872607 140.37500867993876 140.32416235871457 140.279124938618 140.2395182844037 140.20495451840458 140.17503489325776 140.14934911484897 140.12747511547607 140.1089792772307 140.093417105599 140.08017435684388 140.0688371485027 140.05908956162665 140.05047684447433 140.04254349527784 140.03483661349392 140.02690969811684 140.01832689305328 140.0086676795602 139.99718338010754 139.9834704751143 139.96736866648567 139.9485582109985 139.9260474012321 139.89961267690677 139.86910052883343 139.8336742993902 139.7932332186783 139.74766882804767 139.69666346131237 139.64031000673722 139.57923682967362 139.4470368051962 139.2361199807647 139.01128945991925 138.7737974421986 138.5253710539778 138.2677703156666 138.003274346238 144.05944105163198 144.21886022896507 144.38058621357737 144.54399666757823 144.70846925307697 144.8733816321831 145.03811146700605 145.20203641965514 145.36453415223983 145.52498232686955 145.6827586056536 145.8372406507015 145.98780612412259 146.13383268802633 146.2746980045221 146.40977973571927 146.5384555437273 146.66010309065564 146.7741000386136 146.8798240497106 146.97665278605615 147.0639639097595 147.1411350829302 147.20754396767762 147.26256822611114 147.30558272668222 + 136.07834881664792 136.11378446573832 136.1635808434902 136.22680541218463 136.3028601544603 136.39100994131863 136.49052348154652 136.6026135953381 136.72495614456346 136.8568050839807 136.99759243425743 137.1468501118693 137.3063564011412 137.47290123597529 137.64581660538227 137.82578250444664 138.01362074727044 138.20618958778542 138.4029248607734 138.606785098472 138.81444707366248 139.02473587379004 139.23960583452316 139.4578014802363 139.67683149105727 139.89777267187543 140.1214742362987 140.34417046789898 140.5654589983048 140.78923015628362 141.0100367264335 141.22714344926496 141.44235321159897 141.65447378439006 141.86079501293787 142.06046307876028 142.25487192719265 142.44295910408306 142.62249576160906 142.79295275799527 142.9540048761957 143.04388728483298 143.06187482194935 143.0781988233255 143.09193048449248 143.10224601100356 143.10834044981794 143.1092713862987 143.10449813647097 144.02033985068525 144.09457937966772 144.1601389126699 144.21732565837831 144.26644682547922 144.30780962265905 144.34172125860408 144.36848894200085 144.3884198815356 144.40182128589475 144.4090003637648 144.41026432383194 144.40592037478262 144.39627572530327 144.38163758408024 144.36231315979984 144.3386096611485 144.31083429681263 144.27929427547855 144.2442968058327 144.20614909656143 144.1651583563511 144.1216317938881 144.0758770526679 144.02821346723545 140.9942555482049 140.94255612406218 140.89995286577204 140.86583346935893 140.83946137010096 140.81985621395017 140.80646972491962 140.7987474777971 140.7959360634318 140.79728207267306 140.80203209637008 140.80943272537212 140.81873055052847 140.82917216268837 140.83979748224576 140.85003238005172 140.85917579835052 140.86649117242027 140.8712419375391 140.8726915289852 140.87010338203666 140.86274093197162 140.84986761406824 140.83074655631924 140.80404482156922 140.7694459640138 140.7261965745023 140.67354324388396 140.60957387198445 140.5343722661255 140.44630232031489 140.34479475598678 140.2280506383536 140.0956420587558 139.9464154424944 139.78023972208328 139.59762844474582 144.0659221605503 144.19339218203461 144.32762735206813 144.46799603818127 144.61386660790436 144.76460742876787 144.91958686830228 145.07817329403798 145.2397350735053 145.40364057423483 145.56925816375693 145.73595620960202 145.9031030793005 146.07006714038292 146.23621676037956 146.40092030682095 146.56354614723747 146.7234626491595 146.8800381801176 147.03264110764206 147.18063979926342 147.32340262251205 147.46029794491835 147.5906941340128 147.71395955732586 147.82946258238786 147.93657157672928 148.03465490788062 148.12308094337214 148.20121805073444 148.26843459749784 148.3240989511928 148.36757666643163 + 136.7253397885839 136.77718415767356 136.84456760537708 136.92640843073852 137.02207382239155 137.13070394039102 137.25259614472785 137.3872871293656 137.53288791331647 137.68850500474167 137.85398022932745 138.0310246671499 138.21624358615665 138.40891072162083 138.61039104451012 138.81979122969332 139.03484312218242 139.256251386077 139.4848140787512 139.716816092188 139.95335448240314 140.19554630886608 140.43930577547317 140.68592907276314 140.93608165597092 141.18553394055002 141.4358512360014 141.6874384963789 141.93612568287526 142.1827004544568 142.4286446771145 142.66896776656716 142.90281047063414 142.9253194199921 142.9334137745665 142.94373559189776 142.95634429646668 144.2177350050259 144.42147570374777 144.61060507695737 144.78552807699947 144.94664965621888 145.09437476696039 145.22910836156882 145.35125539238896 145.46122081176566 145.55940957204365 145.64622662556775 145.72207692468282 145.7873654217336 145.84249706906496 145.8878768190216 145.92390962394842 145.95100043619016 145.96955420809167 145.97997589199767 145.98267044025306 145.9780428052026 145.96649793919107 145.94844079456337 145.92427632366415 145.8944094788383 145.85924521243066 145.81918847678594 145.774644224249 145.72601740716462 145.67371297787764 145.6181358887328 145.55969109207498 145.49878354024892 145.43581818559943 145.37119998047137 145.3053317268053 145.23856920063324 145.17122059052772 145.10359212184065 145.03599001992404 144.9687205101298 144.90208981780987 144.83640416831616 144.77196978700073 144.70909289921548 144.64807973031236 144.5892365056433 144.5328694505603 144.47928479041522 144.42878875056013 144.38168755634692 144.3382874331275 144.29889460625395 144.2638153010781 144.23335574295191 144.20782215722738 144.18752076925642 144.17275780439107 144.16383948798318 144.1610720453847 144.1647617019477 144.175214683024 144.19273721396561 144.2176355201245 144.25021582685255 144.29078435950177 144.3396473434241 144.39711100397147 144.46348156649591 144.53906525634926 144.62416829888355 144.71903055472242 144.82331272880296 144.9363779192354 145.05758663000904 145.186299365113 145.32187662853647 145.46367892426872 145.6110667562989 145.7634006286162 145.92004104520987 146.08034851006906 146.2436835271829 146.4094066005407 146.57687823413158 146.74545893194482 146.91450919796955 147.08338953619503 147.25146045061038 147.41808244520485 147.58261602396763 147.7444216908879 147.90285994995483 148.0572913051577 148.20707626048562 148.35157531992786 148.49014898747353 148.62215776711193 148.74696216283218 148.86392267862354 148.9723998184751 149.07175408637625 149.16134598631595 149.2405360222836 149.30868469826828 149.36515251825924 149.4092971542759 + 137.38908069619973 137.45664575949831 137.5408946242052 137.64060166949304 137.7551153477009 137.88342961891942 138.0271408904542 138.18355771180245 138.3516379544002 138.53021254280975 138.72218637153833 138.92391944676484 139.13405559194155 139.35453897452118 139.5841821223596 139.81998605270448 140.06428961614012 140.31599056224474 140.57166021539965 140.83485619283908 141.1022383853997 141.3713294345191 141.6476169152921 141.92418257328904 142.20156584971105 142.48252857716687 142.76097706513397 142.9206205535161 142.9168842222136 142.91488176746972 144.1388297680054 144.45066544277697 144.75046137075083 145.03700755228192 145.3090939877251 145.56551067743536 145.8050523949199 146.02705003807841 146.23187868695393 146.42003294220933 146.59200740450785 146.74829667451232 146.88939535288583 147.0157980402915 147.1279993373923 147.22649384485123 147.3117761633314 147.38434089349573 147.4446826360074 147.49329599152935 147.53067556072466 147.55731594425632 147.5737117427874 147.58035755698083 147.5777479874998 147.56637763500729 147.5467411001663 147.51933298363986 147.484647886091 147.44318040818288 147.39542515057835 147.3418767139405 147.28302969893247 147.21937870621713 147.15141833645765 147.079643190317 147.0045478684582 146.92662697154427 146.84637510023836 146.76428685520335 146.68085683710237 146.59657964659849 146.51194536829158 146.42734334389408 146.34306145071633 146.25938329051047 146.1765924650287 146.094972576023 146.0148072252456 145.9363800144485 145.85997454538392 145.78587441980397 145.71436323946074 145.6457246061064 145.58024212149297 145.51819938737268 145.45988000549764 145.40556757761988 145.35554570549158 145.31009799086493 145.26950803549192 145.2340594411247 145.2040358095155 145.17972074241632 145.16139784157932 145.14935070875663 145.14386294570033 145.14521815416262 145.15369993589556 145.16959189265128 145.19317762618195 145.22474073823957 145.2645648305764 145.31293350494445 145.37013036309588 145.43643900678288 145.51214303775745 145.59752605777183 145.69280643067728 145.79763316579746 145.91136271467388 146.0333489758931 146.16294584804155 146.29950722970574 146.44238701947222 146.59093911592748 146.74451741765796 146.9024758232502 147.06416823129072 147.2289485403659 147.3961706490624 147.56518845596662 147.73535585966505 147.90602675874425 148.07655505179068 148.2462946373908 148.41459941413117 148.5808232805983 148.7443201353786 148.9044438770586 149.06054840422487 149.2119876154638 149.358115409362 149.49828568450584 149.6318523394819 149.75816927287667 149.8765903832766 149.98646956926828 150.08716072943812 150.1780177623727 150.25839456665838 150.3276450408818 150.38512308362942 150.43017974273315 + 138.07043096228955 138.15294043599638 138.25324179323454 138.36996641163807 138.50246465287842 138.6500698078758 138.8143264744872 138.9915467378126 139.18120224382963 139.3837170158755 139.59954658210947 139.8250715503154 140.06083776807787 140.30867481247805 140.56375654257508 140.82804759299785 141.10108869420932 141.3791537342205 141.66665205904374 141.95841668703815 142.25410407695352 142.55659759033318 142.8594715802925 142.94955037403741 142.94004654569807 144.0282399598822 144.40266121027904 144.76992108404278 145.1287193492875 145.4777557741271 145.81573012667565 146.1413421750471 146.45329168735552 146.7502784317149 147.03100217623913 147.2941626890424 147.53846496325139 147.76320404218117 147.96882393654496 148.15590020870712 148.32500842103212 148.47672413588433 148.61162291562817 148.73028032262812 148.83327191924857 148.9211732678539 148.99455993080858 149.054007470477 149.10009144922356 149.13338742941278 149.15447097340902 149.1639176435766 149.1623030022801 149.15020261188386 149.12819203475235 149.09684683324988 149.05674256974098 149.00845480659007 148.95255910616146 148.88963103081971 148.82024614292916 148.74498000485426 148.66440817895938 148.57910622760897 148.48964971316747 148.3966141979993 148.30057524446886 148.2021084149405 148.10178927177884 148.00019337734813 147.89789629401278 147.79547358413734 147.69349416718543 147.5923779431558 147.49239492321647 147.39380876542336 147.29688312783242 147.20188166849942 147.10906804548043 147.0187059168312 146.93105894060773 146.8463907748659 146.7649650776616 146.68704550705073 146.61289572108916 146.54277937783286 146.4769601353377 146.41570165165956 146.35926758485434 146.30792159297803 146.2619273340864 146.22154846623545 146.18704864748105 146.1586915358791 146.13674078948546 146.12146006635612 146.11311302454686 146.11196332211375 146.11827461711252 146.13231056759918 146.15433483162963 146.18461106725968 146.22340293254533 146.27097408554243 146.32758818430685 146.39350888689464 146.4689998513615 146.55432473576352 146.6496829744749 146.75471347404437 146.86876712834666 146.9911923157978 147.12133741481375 147.2585508038104 147.4021808612038 147.55157596540982 147.70608449484448 147.86505482792373 148.0278353430635 148.1937744186797 148.3622204331884 148.5325217650055 148.70402679254693 148.8760838942287 149.04804144846676 149.2192478336771 149.38905142827554 149.5568006106782 149.72184375930092 149.88352925255973 150.04120546887054 150.19422078664937 150.34192358431213 150.48366224027473 150.61878513295318 150.7466406407635 150.86657714212157 150.97794301544332 151.0800866391448 151.1723563916419 151.2541006513506 151.32466779668687 151.38340620606664 151.4296613886915
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/detailed.tabular Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,2 @@ +# Branches Junctions End-point Voxels Junction Voxels Slab Voxels Average branch length Triple Points Quadruple Points Maximum Branch Length +96 60 7 120 1246 17.344 56 3 70.882
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/largest_shortest_path_basic.tabular Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,2 @@ +# Branches Junctions End-point Voxels Junction Voxels Slab Voxels Average branch length Triple Points Quadruple Points Maximum Branch Length Longest Shortest Path spx spy spz +96 60 7 120 1246 17.344 56 3 70.882 207.380 124 138 0
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/raw_transformation.txt Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,294 @@ +Width=144 +Height=144 + +X Trans ----------------------------------- + -6.96770130927673 -5.472819879361488 -3.9378957296217836 -2.377187263535068 -0.8060341576732453 0.7594860233083607 2.302918175286105 3.8077935808679313 5.258030411286163 6.645981551135081 7.981235665029328 9.275916580415934 10.542048175326935 11.791048061841861 13.033290418546379 14.277750569462043 15.531739500293186 16.80073183522234 18.08828614211192 19.3960520663518 20.7238549703966 22.069845694960605 23.43070092007681 24.80185848089441 26.177771896848988 27.552169235581495 28.918303110157563 30.269176141522202 31.59667963352369 32.89107627193599 34.14364677480617 35.346863299673835 36.49420159944624 37.57997099450091 38.599163924115864 39.54732391572089 40.420451383363876 41.217517675005794 41.94283832902327 42.601381990911726 43.19808914633897 43.73780493266328 44.225230666472854 44.6648920110549 45.06112267033242 45.41806280964228 45.73967132232648 46.029750763385366 46.2919833835062 46.52997630749354 46.74731357224261 46.94761251148091 47.13458187006909 47.31207905569765 47.484164080960674 47.655147990678635 47.82963387291495 48.01254887380358 48.209165928084666 48.42511413145782 48.666376775090384 48.93927600454721 49.25044283715945 49.60677087371698 50.015351493959905 50.48338767637422 51.01808290408515 51.62650101387162 52.31539245432874 53.09098242531565 53.95871701043455 54.92296498818137 55.98643688675497 57.14459246182654 58.38574204869199 59.696535950591674 61.06240923788926 62.46786329049827 63.89682718204273 65.33309258164972 66.76081047857639 68.16503278045928 69.53227697366975 70.8513831974294 72.11928440911993 73.34043024031992 74.52148629450693 75.67060574949652 76.79684202786966 77.90955439462972 79.01783517001263 80.12998597335547 81.25306762951067 82.3925441506664 83.55203573415854 84.73318926693321 85.93566775730649 87.1572528437582 88.39404751456502 89.64075987523384 90.89104366483971 92.13786763657788 93.37388418929146 94.59176796506966 95.7827390489258 96.9311959034771 98.02077676158063 99.03628103266942 99.96398783015998 100.79628378330173 101.52911986634106 102.15933976768929 102.68468507640691 103.1038337590592 103.41644100805124 103.62317534441962 103.72574517352037 103.72691278678198 103.6304941730071 103.441344032003 103.16532614233395 102.80926978242745 102.38091328779959 101.88883608461741 101.3423807005116 100.75156633971064 100.12699563768327 99.47975619262391 98.82131841612615 98.1634311598885 97.51801646450667 96.89706464485701 96.31253077853312 95.7762335036194 95.29975686441065 94.8943557735376 94.5708654918492 94.33961536940234 94.21034694882249 94.19213641392655 94.29332128103866 94.52143118903825 94.88312266065415 95.38411598741116 + -7.110729451185265 -5.607819209633623 -4.063012174253682 -2.490836429475683 -0.9069562260074578 0.6721825017316868 2.2297252710845816 3.7487869352697425 5.212837350153917 6.612917614081416 7.958350809634436 9.261643608752951 10.535204443869697 11.790820687359657 13.039206949000949 14.289637577818297 15.549671908453753 16.82497596946634 18.119239553977582 19.4341830269352 20.769644274098447 22.123733012120553 23.49303744549236 24.872867071437643 26.25751531430474 27.640526549563678 29.014953808185105 30.373581476688763 31.70788196212603 33.00786615090246 34.26468361802313 35.470695040990314 36.61927749929503 37.70464886225287 38.72171319771057 39.66592613776086 40.53320006183714 41.32246956996472 42.03811584040002 42.68519092798142 43.268727380356744 43.79367276065892 44.264842219386495 44.68688700460156 45.06427781765951 45.40130227326134 45.702075665199956 45.970563954851684 46.210617517065636 46.426013788917885 46.62050663478127 46.79788000882428 46.96200338749224 47.11688646688479 47.26673076442913 47.41597600750336 47.56933949799852 47.73184696646683 47.90885372288319 48.10605512358567 48.329485461318725 48.585504313420955 48.88076913290573 49.22219243813218 49.616881370765824 50.07205669565649 50.59494758502393 51.19265786958497 51.871998994388335 52.63928487433701 53.500084443769744 54.45892923983038 55.51873436685552 56.67514255631897 57.91660684807297 59.22992665319121 60.60068532131299 62.01352268443204 63.452488507403466 64.90147052726599 66.34468532236504 67.76721496424346 69.15556754393279 70.49841734055833 71.79194190102126 73.04039753548551 74.25034763888462 75.4298133700375 76.58768175024589 77.73310916634028 78.87494907383925 80.02123122490256 81.178716784704 82.35254933689735 83.54601620151833 84.76042797675643 85.9951171278662 87.24754919914828 88.51353326975473 89.78751206862479 91.06290714207265 92.33249100968725 93.58875664839285 94.82425345524094 96.02957263371565 97.18907041324512 98.28708189765064 99.30894872775139 100.24142897995407 101.07740589249812 101.81330723610247 102.44639559250855 102.97477840858812 103.39745056217008 103.71433848371856 103.92633896417323 104.03534803066944 104.04427701602802 103.95705427835819 103.77861202519982 103.51485843153651 103.1726357702725 102.75966564413476 102.28448265647111 101.7563580137135 101.18521463593726 100.58153537987144 99.95626596240847 99.32071412042293 98.68644646068294 98.06518434665061 97.46870004120339 96.90871417981633 96.3967954917469 95.94426352186551 95.56209493808993 95.26083384457743 95.05050636524852 94.94053962299705 94.93968512529628 95.05594648651415 95.29651138280425 95.66768766135357 96.17484177119923 + -7.251423515909009 -5.741140940698349 -4.187191750245804 -2.6043526839462228 -1.008587575586101 0.5833175091766089 2.1541392987101067 3.6866081192899633 5.163794800215684 6.575621492409993 7.931107506963755 9.243109097426464 10.524381420242186 11.787040961218949 13.04210104020938 14.299093893545885 15.565788154832465 16.848005587766846 18.149535960248024 19.47214428070318 20.815660519750555 22.17813864698991 23.55606949886307 24.944630760654512 26.337957212736782 27.729415291678976 29.1118678031867 30.47788602294798 31.818530704091412 33.12360887628174 34.38416648400899 35.592475564152714 36.74183337688034 37.826381887508006 38.840949668992735 39.78091523611548 40.64211209017266 41.42344396180365 42.12935855256756 42.76499093906669 43.33546464726492 43.84582794415737 44.30100748536193 44.70577719160764 45.064741292294165 45.38233085812541 45.662813108019066 45.91031250271397 46.128842259774814 46.32234453535183 46.49473718293118 46.64996476263285 46.79205136191214 46.92515280801522 47.05360599602233 47.18197330048529 47.31508034732421 47.45804574998996 47.61630170883737 47.79560458385307 48.002034632137395 48.24198401707249 48.522131925403265 48.84940517044269 49.230922036178825 49.67391637608069 50.18563819875756 50.77322625980935 51.443547682136845 52.20299953668773 53.05726787586314 54.01104122931977 55.06743386836518 56.222270336300355 57.464149943789515 58.78002625176814 60.155637347601775 61.575769381152995 63.02460196024821 64.48612909543264 65.94464387788666 67.3852697584621 68.79451644145963 70.16094673717309 71.48009047280298 72.75598062297502 73.9950567107983 75.20518299070085 76.39505341631963 77.57359446842942 78.74939468141491 79.93018804141812 81.12241529929355 82.33088274492648 83.55853232045992 84.80633039154974 86.07327540618654 87.35651746388903 88.65157593986184 89.95263520890103 91.25289361726959 92.54493752791207 93.82111080350604 95.07383617709405 96.29308940150025 97.46341698085234 98.56983433904651 99.59820961542434 100.53577142103397 101.37589000712737 102.11546087538322 102.75215800116321 103.28444821035853 103.71163729601096 104.03391691175034 104.25240563201847 104.36917975255291 104.3872910951146 104.31077036852759 104.14461560290971 103.8947658830684 103.56806111671244 103.17218892916091 102.71562001485 102.20753342510085 101.65773335224733 101.07655899764526 100.47478909621867 99.8635426208277 99.25417711151384 98.65818597199561 98.08709595249108 97.55236589781616 97.0652876868115 96.63689012803502 96.27784641247428 95.99838556260548 95.80820816502325 95.7164065385582 95.73138937989067 95.86081085431346 96.11150407271573 96.48941893206879 96.99956250719751 + -7.388124240184016 -5.871084638492684 -4.3087068385530785 -2.7159963349963827 -1.1091923374339883 0.4946067568939516 2.0778393724270887 3.622883418150779 5.112451472047174 6.5355348716963375 7.9008456612855475 9.221555878002802 10.510728983263933 11.780769349212154 13.04294676864869 14.307009822555516 15.580897135279672 16.870550448062176 18.179828344752178 19.510514670223312 20.86241147362688 22.23350292539597 23.620174278927053 25.017468680239162 26.419364492504855 27.81905673082372 29.209228046518543 30.58224035169313 31.928756269101157 33.238425207833565 34.502215565987555 35.71233220504482 36.862010119669755 37.945329701575645 38.95705577256631 39.892499450954666 40.74742351932225 41.52070576839739 42.21686043038694 42.8411044214226 43.39865044078428 43.894645086035304 44.334123608126426 44.72197918043713 45.06294565995795 45.36159322971115 45.62233629222428 45.849452721004404 46.04711320325434 46.219419017477826 46.370446251548884 46.50429422596815 46.6251357702251 46.73726701663792 46.845154518148895 46.95347774112721 47.0671652946696 47.191423587488 47.33175689979971 47.49397806770958 47.684209053415216 47.90887057870232 48.17465970975206 48.48851379636971 48.85755851020543 49.28903694309094 49.79021589694558 50.36826473299336 51.030101600578696 51.782201729429666 52.63036299112136 53.57942542523989 54.632697155497254 55.78618292225391 57.028630910271495 58.347152761903985 59.72764651599549 61.15505111389994 62.613683597361174 64.08765270182522 65.56133698456418 67.0199102895463 68.4498925096875 69.83977021093253 71.18453022230737 72.48796263406562 73.75636085289383 74.99740732360858 76.21957684679371 77.43154015612245 78.6415965700932 79.8571626804644 81.0843407510252 82.32758588316858 83.58948525929644 84.8706561869402 86.1697625929146 87.48364246774851 88.80753197495604 90.13536595850377 91.46012981982203 92.77423455266477 94.06988539782334 95.33936989500799 96.57212052376693 97.75307294800268 98.867879027812 99.90292174219076 100.84588865668279 101.69062441756105 102.43448024937999 103.07553113380735 103.61259397636702 104.04527676050162 104.3740277439482 104.6001783556099 104.72597556370262 104.75460112042752 104.69017633224075 104.53775193478648 104.3032833335689 103.99359196044722 103.6163138368147 103.17983666228965 102.69322689015205 102.16614832791979 101.60877382809393 101.031691620586 100.44580779193441 99.86224634227591 99.29224815314056 98.747070080953 98.23788525614978 97.77568551993393 97.37118677433912 97.03473786163778 96.77623343212952 96.60503111177975 96.52987315080985 96.55881263016222 96.69914423538317 96.9573395896292 97.33898718478852 97.84873512504288 + -7.519230300952119 -5.9960032613506415 -4.425877401778948 -2.8240682575773195 -1.2070671148787029 0.4077424677704045 2.002490737335231 3.5592351915661276 5.06036601210248 6.494121547251435 7.868936320591804 9.19826396006693 10.495437459342302 11.773107584420385 13.042758224516819 14.314312775661408 15.595840724601054 16.893368381272946 18.21079249463156 19.549890586150173 20.910417535016027 22.290274494029465 23.685733789417558 25.091702168869755 26.502004632083537 27.909672040227967 29.307217603598662 30.686796180364528 32.038691974234176 33.35244049211425 34.618957035284126 35.830399242094465 36.97995601667742 38.06165926454525 39.07022068502764 40.00089271748207 40.849374670657305 41.61452248085313 42.3009161574626 42.91385259121796 43.45863123286725 43.940494080527735 44.36458157296759 44.73590227915917 45.059315410060805 45.339525611698214 45.58108949405175 45.78843309591612 45.96587911575121 46.117682348763864 46.24807142971894 46.361294736217964 46.4616681863677 46.55362267802316 46.641749057123334 46.730838747042796 46.82591848247426 46.93227792267118 47.05548921630439 47.201417799232466 47.37622377750421 47.58635314179269 47.83851775295146 48.139662528719285 48.49691757043306 48.917532145338846 49.408786565003226 49.977877188094254 50.63176917991389 51.37701147981344 52.2195089117228 53.16424783452128 54.21472502057363 55.36712337487583 56.610341636178134 57.93165237489544 59.31711755970688 60.751833998388896 62.22026217670442 63.70663222260363 65.19541510846463 66.67184185205599 68.12244865464653 69.53566774953335 70.90603896547046 72.23709958786569 73.53497442336455 74.80713956780565 76.06182557111163 77.30742317131674 78.55192032149957 79.80239720381647 81.06460249030202 82.34262938749309 83.63870419699143 84.95309352408007 86.28412922683827 87.62834312360486 88.9806967981736 90.3348859909834 91.68369444444642 93.01936902974953 94.33398678774161 95.6196915881192 96.86549945833349 98.05687324696936 99.18005861482844 100.22193788779238 101.17064322689258 102.02047839981356 102.76923575631628 103.41537835161353 103.95806138523207 104.3971839062896 104.73343987839091 104.96836253539047 105.10435799877715 105.14472570421314 105.0936643830345 104.95626323867609 104.73847861204521 104.44709689746846 104.08968479570038 103.67452820721653 103.21056120417734 102.70728659275228 102.17468960309415 101.62314623199863 101.06332771991705 100.50610257419876 99.96243745776331 99.44329814993065 98.959551657072 98.52187040873298 98.14063932426319 97.8258663809066 97.58709716278626 97.43333372822266 97.37295800840957 97.41365985298961 97.56236977857081 97.82519646795691 98.20736912695047 98.71318294575218 + -7.643192924471328 -6.1142988356211045 -4.537067846055561 -2.926908044425738 -1.3005405059258237 0.32439242366127885 1.9297423547466976 3.497277995907537 5.009099183717044 6.45286026766435 7.836774052953119 9.1745425555995 10.479729424314659 11.765190384307148 13.042581283818748 14.321959230847044 15.611486053384438 16.917237990615238 18.243120208857757 19.590879746836816 20.960206121653815 22.348905318293642 23.75313042818403 25.167650905398148 26.586142294888788 28.00147928805373 29.406016923512887 30.79170384120289 32.14847145978145 33.4657818980465 34.73452000808881 35.94681453987081 37.09582305372069 38.17554081099288 39.180635938698 40.10630997912611 40.94820518937681 41.705159001534156 42.38181580038412 42.983550010354406 43.51574489291852 43.98373444745122 44.39276047112233 44.74794269798914 45.05426109725628 45.31654986156016 45.53950262379951 45.727688194091364 45.88557574158487 46.017567956128104 46.12804038178154 46.221384865862184 46.30205494253305 46.374610979906535 46.443763057797696 46.514409786894504 46.59167159215943 46.68091731567459 46.78778329225921 46.918184259190234 47.07831552804081 47.27464573134983 47.51389913492111 47.80302597431703 48.149158552902115 48.55954997849868 49.04149149801143 49.602203531177516 50.24869486233333 50.98758422433551 51.824878955354315 52.76570684148095 53.813748225106934 54.965361758319936 56.209597530458176 57.53389082701952 58.92447029736695 60.366594282740884 61.844871118297064 63.34365717401829 64.8475207433063 66.34175452880463 67.81291467766684 69.24939164595185 70.64536286058942 72.00411071481226 73.33156904940614 74.63498382956112 75.92231764869258 77.20165898699679 78.48066479095807 79.76606274575514 81.06323604714595 82.37590866842004 83.7059432718834 85.05325732117446 86.4158559629725 87.78997326288402 89.17030682260602 90.55032509424797 91.92262223467168 93.27929244411074 94.61229466456189 95.91362685806308 97.17205629928132 98.37365189470547 99.50521307750266 100.55410348436605 101.5088831141077 102.36429730071644 103.11856269456365 103.77051530045155 104.31963468843071 104.76609779287304 105.11083144683596 105.35555785728619 105.50282919179114 105.55604896542208 105.51947906865931 105.39823213488779 105.19824957174868 104.92626602639231 104.58976136323321 104.19690143791846 103.75646907878209 103.27778675620456 102.77063244464887 102.24515017105881 101.71175670303495 101.18104576498149 100.6636910833459 100.17034945587399 99.71156491734209 99.29767493892555 98.93871945439766 98.64435335882175 98.42376298037051 98.28558689050499 98.23784130027073 98.28785020062573 98.44218035396324 98.70658124607122 99.08593017932542 99.5841807931711 + -7.758509057821721 -6.224416610212049 -4.640682283671047 -3.0228904903960325 -1.3879709078002525 0.24620076141360472 1.8612262432413271 3.438616442874648 4.960214140919441 6.413239244617971 7.805770777764036 9.151723371670096 10.464852613265581 11.758178141703727 13.04348624525138 14.330927473855063 15.628718496066417 16.942952010664047 18.27751312654621 19.63409556529927 21.012306613857195 22.409846210804858 23.822743077027305 25.245629509239585 26.67203636535996 28.094690814820684 29.50580144919474 30.89711002824626 32.25822633018562 33.57857583664849 34.84903366706011 36.061716328652736 37.20976333447683 38.28714391785557 39.28849115801381 40.20896262546664 41.044149223798776 41.792872606106194 42.45983959095462 43.05049922036948 43.570315198030336 44.024709736251786 44.419021808021796 44.7584777654132 45.04817346305608 45.29306749000359 45.49798513106501 45.66763243826267 45.80661942946197 45.91949104191152 46.010764123700056 46.084968494730475 46.14668998052014 46.20061332870841 46.25156305377533 46.3045404977115 46.3647557061374 46.43765305214007 46.528929838400344 46.644547315012744 46.79073361313491 46.973977971104816 47.20101529395571 47.47879953464413 47.814463636698775 48.21526288359162 48.688497542751456 49.241409790658125 49.88104921894671 50.61410095444764 51.44667083519804 52.38402348586966 53.43001787794786 54.58118564006301 55.82672816639735 57.15424421072487 58.55013063418334 59.99980956056147 61.4880399496204 62.99930740849787 64.51828037332226 66.03031543442415 67.52198981177335 68.98165798432248 70.40320751031096 71.78966941691334 73.146764694232 74.48148654177177 75.80150767412199 77.11459441057502 78.42805589251489 79.74825442818019 81.0801992852901 82.42724137135559 83.79088037363582 85.17068936357794 86.56435495270975 87.96782420959204 89.37554312277871 90.78076583139817 92.1759095220366 93.5529271317052 94.90366904566076 96.21999686958813 97.49062217351485 98.70224341225276 99.84217928674788 100.8982545476687 101.85943825890082 102.72089786291515 103.4812556286496 104.1397035586791 104.69602989134836 105.15067456600228 105.50478286335893 105.76025169871562 105.91976493565974 105.98681554716606 105.96571355669056 105.86157951328278 105.68032385200601 105.42861291483416 105.11382269929969 104.74398159545403 104.32770349143635 103.87411269270746 103.3927621229394 102.89354626454146 102.38661025966255 101.88225653202895 101.39085020885025 100.92272452258526 100.48808725715263 100.09692917534579 99.75893522777702 99.48339920363728 99.27914234600519 99.15443632661788 99.11693086544572 99.17358619911965 99.3306105610948 99.59340284960209 99.96650074407478 100.45353260164183 + -7.863713721322036 -6.324838331954451 -4.735158858527695 -3.1104210879891148 -1.4677432912732074 0.17478982700848134 1.7985578897130174 3.3848441223485985 4.915265520968749 6.376751753465467 7.7773505227340864 9.131154690690243 10.452073506310573 11.753250205301933 13.046560992763606 14.342210819924373 15.64843511105499 16.97131110069631 18.314676978998477 19.680151932790945 21.067245708309134 22.473542760165184 23.894943578228318 25.32594450874357 26.759937329065423 28.189510926283774 29.606739511111492 31.003155779322327 32.36808399582198 33.69094556027836 34.96262455296392 36.1752401547782 37.32192568118904 38.39663376652002 39.39397000779614 40.30905416017893 41.13743085074448 41.87790816367545 42.535252973399224 43.11498564255628 43.622646604855525 44.06374218146122 44.443704047495196 44.767860360242004 45.04141774954968 45.2694538457703 45.456920046598526 45.60865398965627 45.72940083743734 45.82384209287011 45.89663031794191 45.95242787387858 45.99594766976135 46.03199390963797 46.06550096091282 46.10156870702573 46.14549305812397 46.20279062580335 46.27921686590007 46.38077719873742 46.51373067529677 46.68458562697373 46.90008638862137 47.16718961374603 47.49302792737235 47.884857736552355 48.349987024458706 48.895678012015104 49.52901884242752 50.256758135912456 51.08509663335034 52.0194315161728 53.06379559278053 54.21489037663499 55.46206772066645 56.79308959317098 58.194521387068846 59.6519498304274 61.15028562764738 62.67414472762923 64.2082964057186 65.7381609959155 67.250335378983 68.73313876701384 70.18022985555514 71.59439518808531 72.98112186129096 74.34712919759707 75.69978026451807 77.0465020198518 78.39424214221093 79.74898812903075 81.1153704702086 82.49636677524516 83.89311786243297 85.3048602969972 86.72897303465106 88.16112907069444 89.59553671388697 91.02524969490185 92.44252114702832 93.83917387262981 95.20695846491398 96.53762228951024 97.82003283954492 99.04148441122402 100.18979083073646 101.25321598611609 102.22111760226187 103.08906425014027 103.85606365140964 104.5216453962978 105.08588927707058 105.54948202173782 105.91377171201225 106.18081462987874 106.35341109217791 106.43512823326341 106.43030875565853 106.34406545412074 106.18226188774099 105.95147997693658 105.6589755779545 105.31262326896513 104.92085169363035 104.49257086826717 104.03709288010225 103.56404739509387 103.08329335978655 102.60482822605991 102.1386959527184 101.69489494562114 101.2832869906675 100.91350811431903 100.59488217824831 100.33633788305688 100.14632972686603 100.0327633452965 100.00292555861775 100.06341937998349 100.22010420790141 100.47804145104209 100.84144593178641 101.31364145229938 + -7.957371995341285 -6.414075116777429 -4.8189636286918915 -3.1879310441138244 -1.5382654658903456 0.11176256140011873 1.7433372053353515 3.3375430729978777 4.875801673143386 6.344892381644837 7.752944705431408 9.114195880070307 10.442671274965996 11.75159847542251 13.052904447980701 14.356811115757042 15.671538362874957 17.003117928984288 18.355316144782126 19.729658317228175 21.125543095516285 22.5404315873456 23.970093536726083 25.40889162719758 26.85008495699784 28.286133872915606 29.708990487602723 31.109974688609427 32.47816572854187 33.803008972368 35.0754140755668 36.28751606898726 37.43245249962213 38.50416770025032 39.49724647002624 40.406776230026054 41.228259891355314 41.9604937716483 42.60830208459374 43.177272923011294 43.67301947189561 44.10112780790394 44.467117599421655 44.77641377586298 45.03432842993877 45.24605269861752 45.41665840134376 45.55110898511227 45.65427896945417 45.7309806976585 45.78599685441364 45.82411695419812 45.85017587020425 45.86909247339765 45.88590658084799 45.90581265007942 45.934188965041194 45.976621390459606 46.03892106818215 46.12713563281507 46.24755357952178 46.40670127951397 46.61133178000886 46.86840393845839 47.18504964540363 47.568525936607344 48.02614776748957 48.56519624320199 49.19279632916232 49.91575771881657 50.74037286869214 51.67216754408421 52.715343756762394 53.86676952386595 55.115945553752205 56.45079579694951 57.858053297535314 59.32346877477433 60.83210411957653 62.36870480264459 63.918139470796866 65.46588967400305 66.99856797563443 68.50445498617215 69.9770311777286 71.41884681470668 72.83513525018964 74.23232269814751 75.6174453058728 76.99757647809642 78.37929216992143 79.76819927389843 81.1685483780982 82.5829472132449 84.01218525696571 85.45517350644383 86.90899670463911 88.36906868337279 89.82937535849125 91.28278466079672 92.72139866350334 94.13692067019922 95.52100927737541 96.86534576561283 98.1591326945914 99.3902157145568 100.5468785263594 101.61780077442924 102.5927071893055 103.46754534786024 104.24168715014787 104.91498027870323 105.48777792426944 105.960996419555 106.33617014003889 106.61549867432606 106.80188300748785 106.89894880387999 106.91105589092626 106.84329379580612 106.70146372890781 106.49204778904148 106.22216642518426 105.89952535934 105.53235327900701 105.12933166340348 104.69951812731338 104.25226465830363 103.79713209216555 103.34380212078068 102.90198805813102 102.4813455054654 102.09138395758566 101.74138028140136 101.44029487890955 101.19669122433325 101.01865934531827 100.91374370823955 100.8888758766649 100.9503122504403 101.10357717326056 101.35341173401278 101.70372869967346 102.15757202256526 + -8.038070962125396 -6.490660256045873 -4.890584362541928 -3.2538721890257882 -1.5979642176735052 0.058705030643445566 1.6971496387961507 3.2982834189034778 4.843361518135579 6.319153599301382 7.733987651873554 9.102212082244518 10.437931877462221 11.754421138541082 13.063620167921966 14.375732405312714 15.698930034036955 17.03917147578841 18.400128451867374 19.78321513347383 21.18770742830918 22.61093690554871 24.0485414312491 25.49475337692275 26.94270629210773 28.38474212267105 29.812703248680723 31.217691377957998 32.588584975087784 33.91487670832891 35.18751632115367 36.39866614648494 37.541477017679696 38.60989220114836 39.59848158706073 40.502305165491784 41.31682827954041 42.04083697815759 42.679209849989874 43.23759891444713 43.721685932650274 44.13713219426301 44.489540467222184 44.784427240531706 45.027204586859675 45.22317145826288 45.37751426692973 45.495316379300704 45.58157579956186 45.64122993419836 45.67918598368567 45.700355250367245 45.70968951454659 45.71221762740136 45.71308059541713 45.71756366547824 45.7311242259902 45.759414668529786 45.80829964959792 45.883867393605016 45.99243473034954 46.1405454170596 46.334960926843706 46.58264228430129 46.89072071404565 47.26645388896958 47.71716350689887 48.25014890965996 48.872570652244995 49.59129754265626 50.41271096745131 51.34246161308011 52.38491622887581 53.537105696820475 54.788677264423335 56.127714683851394 57.54111658194697 59.01479561672895 60.53396260959208 62.08348977785523 63.648341472035774 65.21405551246448 66.76725357500473 68.29617094104741 69.79415151779848 71.26351716243062 72.70922915825676 74.13740358711017 75.55473520225566 76.96793293655406 78.38319436752626 79.80574377492634 81.23945452505637 82.68657155059458 84.1475438850108 85.62097083776845 87.1036587907325 88.59077912083971 90.07611178610182 91.55235402027455 93.01146970398189 94.44505260105566 95.84467597779556 97.20202742851859 98.50677962871619 99.74728551940524 100.91227218707256 101.99081061303457 102.97296999962418 103.85505404031252 104.63677680541892 105.31828386326029 105.90018297919823 106.38360230866394 106.7702455175679 107.06243907939505 107.26316866652749 107.3761028403232 107.40560321606394 107.35672099563685 107.23518027654231 107.04734890671378 106.8001978990298 106.50125057791695 106.1585227266309 105.7804550548999 105.37583932461459 104.95373946396401 104.52340897258932 104.09420587466464 103.67550641491195 103.27661861568177 102.90669672293137 102.57465746750754 102.28909895891724 102.05822291634249 101.88976083195975 101.79090456207405 101.768241761161 101.8276965234243 101.97447558879159 102.213020520813 102.54696639113436 102.97910547934677 + -8.10441181860047 -6.553142189452249 -4.9485244941867235 -3.306712035245404 -1.6452815861168983 0.01718882842783992 1.6615671744934235 3.2686229045635904 4.819472592234632 6.301022428214987 7.7219121635503125 9.096568930954577 10.439142181388014 11.76291644847996 13.079810021786038 14.399974715046817 15.731505299996215 17.080261542282322 18.44980022448074 19.84140939075546 21.25423259221964 22.685467398699686 24.130620053437703 25.583796984727844 27.038013966578518 28.48550496231703 29.91801492727594 31.326420281568108 32.69944599759595 34.026650571984824 35.29903625614089 36.5088024528588 37.64912102571678 38.713940427615526 39.69782082413674 40.59579919672108 41.40330715653791 42.119121774473825 42.748172885859304 43.29617249300483 43.768866625007526 44.17198710714839 44.51121477378225 44.792152318457504 45.0203061691401 45.20107726554949 45.33976065917503 45.44155363856439 45.51157173494637 45.55487158227259 45.57647926163522 45.58142250262331 45.57476497522247 45.56164089939352 45.54728832193228 45.53707964096983 45.5365482613514 45.551410590382055 45.5875828759893 45.65119258829256 45.74858409423619 45.886318226441496 46.07116497095836 46.31008788524397 46.610218025603295 46.978814162021365 47.42320497252622 47.95070786236333 48.56851821107166 49.28356242516861 50.10230842873982 51.03052847777759 52.07274976996023 53.22616218757202 54.48055653338212 55.82417326449849 57.24407335005939 58.72632789403793 60.25629267871838 61.81896191115421 63.39938974577864 64.98316287830123 66.55690291010426 68.10879009045065 69.63206580202291 71.12882982959776 72.60375488924242 74.06263240647485 75.51180432752341 76.95760768390382 78.40585878904618 79.86140118693856 81.32773754091616 82.80676070084282 84.2985934384237 85.80154006981914 87.31214671419599 88.82536061851019 90.33477317633132 91.83292633639971 93.3116583584544 94.76246260087221 96.17683241539707 97.5465524518969 98.86185132403418 100.11155426594166 101.28480436787194 102.37103884207863 103.36064831226265 104.25026930204507 105.03993568190653 105.73007036087557 106.32151655822882 106.81559624005473 107.21416522451355 107.51966043795593 107.73513640158512 107.86428926127238 107.91146760323026 107.88166998300879 107.78052958626101 107.61428678151623 107.38975055503712 107.11424996561233 106.79557684589767 106.44192102357252 106.06179935185548 105.66397983240108 105.2574020887781 104.85109540805203 104.45409551275925 104.07536115672438 103.72369155697317 103.40764558242745 103.1354635212196 102.9149921467299 102.7536137036586 102.6581793470022 102.63494749778548 102.68952754079477 102.82682929451488 103.05101874775673 103.36548069989328 103.77278688663365 + -8.155002295933883 -6.600077792166445 -4.99129739687493 -3.3449291544315285 -1.6786714551536106 -0.011226827110340232 1.6381490378891033 3.250106154890652 4.805650076854921 6.291977071208864 7.718145027999412 9.098627219871354 10.447584067732176 11.778276532631994 13.102567945367213 14.430527973132591 15.77014699365983 17.12716350013779 18.50500161462927 19.90481066010165 21.325594322081034 22.7644134637542 24.21664432118002 25.67627269689428 27.136204901480504 28.58857748438829 30.0250511050102 31.436264818778785 32.810842929330214 34.13842242937284 35.41006844210972 36.6180255840511 37.755493258747414 38.81643046349344 39.79539221225146 40.68739651473066 41.48784486950066 42.19550654247402 42.81535939946425 43.353171407723984 43.81474848021014 44.20588821439323 44.53234437968346 44.79980041050315 45.01385135054096 45.179994183887025 45.30362653690851 45.39005352265346 45.44450215767477 45.47214240453065 45.47811355159937 45.46755438496916 45.44563546688371 45.4175918259729 45.388754483235545 45.3645794643709 45.3506732478792 45.35281392091141 45.3769676041278 45.429299902615995 45.516182184994925 45.644192339448175 45.82010927176905 46.05089978661168 46.34369564625095 46.705757580163784 47.14442190815772 47.667024363222524 48.280794824061864 48.992716204151826 49.809340957629715 50.736559870650474 51.77905648577474 52.93417562771996 54.191848049252876 55.540466933774596 56.967251198852416 58.4584254641109 59.999484778254846 61.57553857741005 63.17172265983377 64.77366272285562 66.3679684639553 67.94275270648986 69.4911819334652 71.01513790970283 72.51899038607687 74.00819435710129 75.48873082396642 76.96656114345572 78.44712135751868 79.93488008921886 81.43297965147042 82.94297510300179 84.46468031915224 85.99612399438257 87.53361217170865 89.07188774181446 90.60437172114447 92.12346634357608 93.62089639351892 95.08806302772231 96.51638716567237 97.89784100706804 99.22325377243942 100.48190204695831 101.66331697452726 102.75727653997293 103.75446956833042 104.65184209039894 105.44972541171262 106.14879926743731 106.75012328129598 107.2551953514004 107.66600653025495 107.98508809766022 108.21554805450205 108.36109544671748 108.42605181965246 108.41534975786209 108.33451893339847 108.18966040972819 107.98741016475736 107.73489293419371 107.43966755824424 107.10966505706322 106.75312067496087 106.3785011275771 105.99442826433429 105.60960032274235 105.23271190259419 104.872373727432 104.53703318882887 104.23489658772348 103.97385389908777 103.76140679578884 103.60460058032618 103.5099605965394 103.48343363653427 103.53033483209431 103.65530053814777 103.86224779450235 104.15434111021194 104.53396523292659 + -8.18844946256588 -6.630026061428395 -5.017421067249005 -3.367008971241781 -1.6965965611768574 -0.02499340679557477 1.6284420051035193 3.2442635620270206 4.8033896979457635 6.293483434661609 7.724102436389814 9.109737514669336 10.464528531201932 11.80168125753206 13.132973822385217 14.468366122586747 15.815720126060723 17.180633351745566 18.566382289039154 19.97396743156402 21.402247232776695 22.84814488289299 24.306909531140143 25.772412529001098 27.2374594563719 28.69410003186332 30.133919273033708 31.54731704357623 32.92285934641977 34.25027367288254 35.52069638697753 36.726423916063155 37.86068856619379 38.91746443341948 39.891305433775 40.77721434709189 41.57056604931651 42.27012313772039 42.88090827254919 43.408741352547615 43.859483765505715 44.238994075736656 44.55309379581949 44.80754156036703 45.00801520001474 45.160101704007495 45.26929511246498 45.34100217379945 45.38055526742499 45.393231720700626 45.384278311036724 45.358939488680804 45.32248771478277 45.280254297650835 45.23765922509586 45.200238712894595 45.1736694835307 45.16378910745967 45.176612024368616 45.218341053968096 45.295374247123945 45.414306770177355 45.58192712536348 45.80520637736334 46.091278196441316 46.44740649045016 46.88093626521961 47.39922224895642 48.00952890763609 48.71889497784189 49.53395581425396 50.46071800805773 51.50401753912124 52.661349956360795 53.9227817828075 55.276854103481284 56.71093825867078 58.21140602245533 59.7638842835023 61.35358892442677 62.96572694140709 64.58595065197294 66.20084334914908 67.79843556027048 69.3718410651754 70.92272505495556 72.455142247932 73.97420238606202 75.4855208267402 76.99468325100202 78.50675036477581 80.02582563355035 81.55470516725262 83.09462402016626 84.64510760538082 86.20393090883678 87.76718202739602 89.32942057597495 90.8839160460063 92.42294657612375 93.93813511079925 95.4207978193368 96.86230012852762 98.25486101869197 99.58993297661767 100.85723957942125 102.04667180482218 103.14832291067815 104.15315686144919 105.0584061846218 105.8646776209298 106.57288761113577 107.18429356769963 107.7005519324432 108.12377264116384 108.4565658920787 108.70207857881266 108.86401888115857 108.94666836124051 108.95488154002385 108.89407337616076 108.77019537722771 108.58970127751095 108.3595033451204 108.08692045655852 107.77961911534973 107.44554860435244 107.0928714562632 106.72989040777759 106.36497297199602 106.00647472180279 105.66266232453893 105.34163730600736 105.05126145111214 104.79908467180863 104.59227609448558 104.43755904396701 104.34115053728983 104.30870585645533 104.34526875672357 104.45522789934137 104.64228019120677 104.90940188834904 105.25882621345468 + -8.203352946553668 -6.641542243720947 -5.0254132660864155 -3.371440023006773 -1.697525968356244 -0.02257184358540898 1.6339802701954944 3.2526097577063795 4.814173110220863 6.306991531585573 7.741185324306651 9.131234749213695 10.491229837243969 11.834292229122873 13.172087578286318 14.514441519748237 15.86906675682444 17.24140319392436 18.634567561506326 20.049403947198552 21.48462234581361 22.937009003539366 24.40169012594272 25.87242953541738 27.341941105267342 28.80219818101905 30.244717238826663 31.65965786688679 33.03556846255463 34.3622753732738 35.630992659721244 36.83407370070474 37.96478801328174 39.01712863517366 39.98565200719996 40.86534920921466 41.651571932798845 42.34307727677306 42.94492949991836 43.46299643555503 43.9031905579898 44.27142659116983 44.57358857341872 44.81550475200162 45.00292985193114 45.14153475311545 45.236903667452886 45.294538709090375 45.31987142332825 45.31828047506662 45.295114364427654 45.25571778424559 45.20546009331207 45.14976436556482 45.094135586704915 45.044186787078445 45.005662188525385 44.98445675577522 44.98663182337992 45.0184266569069 45.08626584429125 45.19676225088543 45.35671487628179 45.57310031046272 45.85305561645524 46.20384941358087 46.6328367828278 47.147392486741296 47.75481605649952 48.46220176093091 49.27626659838399 50.2031305577732 51.247778356358744 52.40785192235991 53.67354884205685 55.03355246869668 56.47537993176898 57.98554237757363 59.54978937263933 61.153432426276005 62.78173697652122 64.4203670412774 66.05586230236752 67.6761538217281 69.27432021466953 70.8518089699601 72.41235022327297 73.9607027500364 75.50211511775062 77.04180117018699 78.584455175003 80.13382912615208 81.69239080773902 83.26107645559883 84.83914640793476 86.42414627342279 88.01197015623409 89.59701667655003 91.1724232329351 92.73035947906624 94.2623576123702 95.75965502955921 97.21359594598223 98.61664483297125 99.96089100624077 101.23652396035104 102.43376628420245 103.54300125121614 104.55544536524681 105.4685952871616 106.28331191024168 107.00072901080284 107.62228396345978 108.14977520433663 108.58541610462106 108.93188132919525 109.19234315662857 109.3704963236641 109.47057077817794 109.49733232704655 109.45607159377138 109.35258199464117 109.19312763555317 108.98440215218153 108.73347958581283 108.44775842210942 108.13489993167374 107.80276194686911 107.459329193079 107.11264126647293 106.77071931509275 106.44149243592838 106.13272474803652 105.85194404182933 105.60637283972493 105.40286263713568 105.24783203065081 105.14720938943474 105.10638069547298 105.13014317970895 105.2226654281211 105.38745474097868 105.6273327196288 105.94441792655738 + -8.198298588009031 -6.6331724158719805 -5.013787130611702 -3.356710700835056 -1.6799330259173577 -0.0024317775878843623 1.6562848622847477 3.2766416690524927 4.839460562595554 6.333931791966779 7.770774688899636 9.164432880305117 10.52891982616899 11.877247028885138 13.22094359366837 14.569679727079192 15.9310013218355 17.31017718848481 18.71015506845889 20.13161760145442 21.57312519751174 23.03132950719382 24.50123905389454 25.976517675360313 27.449796717288788 28.912983344676505 30.35752968363881 31.77335794866641 33.14903405315458 34.474489234918835 35.741019891834114 36.94104013723994 38.06786004940064 39.115494828660395 40.07850671400193 40.95187847673974 41.73094207672138 42.4144503778303 43.00750613363951 43.51602119736781 43.945954803038155 44.30327306188754 44.59391732807806 44.82377985663723 44.998686336478094 45.12438537051186 45.206545037726514 45.25075648185943 45.26254415229803 45.247381966086046 45.21071433259733 45.1579807330139 45.09464240686891 45.02620968270111 44.9582685976288 44.89650566302554 44.84672991659994 44.814891708170016 44.80709794128724 44.829623675631126 44.88892002781949 44.991618141571344 45.144528597746735 45.35463498775712 45.62907949430553 45.9751372574146 46.4001751334244 46.91158930207371 47.51671520700788 48.2227027394767 49.0363496543541 49.96388725466376 51.010445516880964 52.17380831151657 53.44429910077897 54.81073710212748 56.260777518685046 57.78106167785634 59.35745092481612 60.975339524373595 62.62003626463429 64.27719936988117 65.93330495228963 67.57616529366297 69.19883730991182 70.80254738908415 72.39069419063343 73.96768302125847 75.53839812881984 77.10768921910042 78.67989696213283 80.25843943412342 81.84547761781036 83.44167341612156 85.0460483272408 86.65594523156655 88.26708993283316 89.87374347709051 91.46893114982122 93.04472971777972 94.5925912047738 96.1036794914089 97.56936699726332 98.98231113853801 100.33520780386162 101.61878064527335 102.82355586654703 103.94018199073282 104.9601061974784 105.88106788261906 106.70416186889236 107.43072099690627 108.06234591317711 108.60096167695801 109.04887087517363 109.40879947606336 109.6839329947671 109.87794158862681 109.99499349047305 110.03975676868944 110.0173898151779 109.93352124426593 109.79422006985612 109.60595714187235 109.37555888782144 109.1101544372078 108.81711721698719 108.50400210257716 108.17847919537422 107.84826527625657 107.52105395580602 107.20444550605144 106.905877315639 106.63255586138314 106.39139103619154 106.18893361988489 106.0313166306349 105.92420125768638 105.87272805985575 105.88147413040699 105.95441699125317 106.09490610480952 106.30564310021325 106.58866966297725 + -8.171852521337069 -6.603448520225662 -4.981047258053111 -3.321306470243486 -1.642293802674315 0.03694873580840573 1.696862626339115 3.3178361774997454 4.880689638756478 6.375711330606899 7.81422695657137 9.21061969322731 10.578802468967957 11.931653797448188 13.280545551297857 14.634974812747176 16.002306526129193 17.387628141309197 18.79371208208467 20.221076996003916 21.668134609331805 23.13140584258058 24.605787793692997 26.084852347219027 27.56115751536423 29.026554073228272 30.47243093932289 31.88847935108678 33.263312208274016 34.58696946042353 35.85083277728486 37.047379535973526 38.16996286246439 39.212622802426864 40.16993038946177 41.036863401181435 41.80873758573885 42.484302976493325 43.068697854452886 43.567874300236376 43.987834078984925 44.33458998590973 44.61413552053783 44.83242135304476 44.995338194970124 45.1087061756636 45.17827089485559 45.209706140723924 45.20862295378991 45.180584369317266 45.131124850737024 45.06577318180263 44.990077447092695 44.90963071432927 44.830096136440176 44.75723039859617 44.69690471243091 44.655122860142704 44.63803605979758 44.651954600313914 44.7033562224569 44.7988910510519 44.94538247866042 45.14982274832609 45.419361095677274 45.76128123344725 46.182963775247806 46.69182802088886 47.29524652642283 48.00042526822764 48.81424224049913 49.74303830922086 50.79208547064976 51.959305043857896 53.23514074546251 54.6085405205266 56.06728887461932 57.59814672931281 59.187074570988685 60.81953448189518 62.48086114284945 64.15668687176841 65.83340144042909 67.4986770241287 69.1455586745047 70.77504650361368 72.39020354817127 73.99508241050329 75.59420912247822 77.1920807926257 78.79270122585372 80.39917592695427 82.01338415944485 83.63574118552026 85.26505866082935 86.89850563780531 88.53166701129516 90.15869080617786 91.77251074881448 93.36512636207671 94.92791963035526 96.45198710447198 97.9287858460697 99.35109250394355 100.71207037267644 102.00313331746081 103.2150847921517 104.33881450417783 105.36597942136541 106.29454153907685 107.12581077791313 107.86130220990424 108.50276453833024 109.05223558265806 109.51209446817148 109.88510688329578 110.17446105480643 110.38379309686653 110.5172011533785 110.57924831486122 110.57495469007604 110.50977928486404 110.38959251770879 110.22064030990005 110.00950074906885 109.76303435439334 109.48832898138792 109.19264040137763 108.88332957985517 108.56779766097296 108.2534196430554 107.947477702214 107.65709508795854 107.38917147682261 107.15032062925287 106.94681115462137 106.78451115418764 106.66883748910251 106.60471041918359 106.5965143896461 106.64806582130836 106.76258890198028 106.94270060297367 107.1904039811411 + -8.122555688679943 -6.550883854285094 -4.9256862588842845 -3.2637075667593605 -1.5830859902727512 0.09708306805576593 1.7572047863572422 3.377647405065482 4.939272686863428 6.433710230404473 7.872869480252393 9.27105185198492 10.642048777689217 11.998586272323992 13.351861822766887 14.711185259042926 16.083729897704227 17.4743947779551 18.885773540997533 20.318220721477534 21.770002186545213 23.237513384844945 24.715547103543287 26.197591650552283 27.6761407746419 29.14299811944985 30.58948731666834 32.00507803157674 33.37845399922595 34.69976561436152 35.9604811639148 37.15314266842577 38.271148014310356 39.308564312056895 40.25997417029568 41.120353659683325 41.88500594289456 42.55267980327427 43.128546255169084 43.61859397110872 44.028863150278085 44.36540866996286 44.63427107556339 44.84145390255601 44.99290696206071 45.094515711450235 45.152096907748344 45.17140057097446 45.1581179867936 45.117895140557444 45.056350663078554 44.97909712938001 44.89176441628041 44.800023808227145 44.709611642281864 44.626351485388746 44.556174107591204 44.50513480832508 44.479427914640844 44.485398441124694 44.52955092378069 44.618555264424295 44.75924901283593 44.95863485634795 45.223871192504696 45.56225257334793 45.9811756091028 46.48808472361229 47.090391125731 47.79535770775916 48.609942559891934 49.540594704718714 50.5927251780401 51.764388233165064 53.04614182979667 54.42705480825506 55.895031175406736 57.43693947636272 59.038824959961744 60.68620050130026 62.36440681328248 64.05902751821537 65.75634038366464 67.44385425162768 69.11460886456514 70.76937170590125 72.410868832488 74.0428041813343 75.6693552806782 77.29468197097513 78.92247174232025 80.5555425814654 82.19552058658661 83.84260520299063 85.49542995070505 87.15102118338126 88.80485199216756 90.45098311947177 92.08227795081363 93.6906745729713 95.26749476318514 96.80377839742326 98.29111558653928 99.72233052692599 101.09081123027941 102.38884355948542 103.60752712860626 104.73796962639511 105.77201809544454 106.70783853409854 107.54693884199187 108.29100125931517 108.94190913716992 109.5018010223541 109.97312174771116 110.35866699865039 110.6616190616929 110.8855724314716 111.03454869273847 111.11300064017044 111.1258059874171 111.07825128193265 110.97600681404742 110.82509341330177 110.63184208324984 110.40284745383518 110.14491603965439 109.86501029064235 109.57018941346888 109.2675479294129 108.96415291834647 108.6669808786659 108.38285510947429 108.11838449456006 107.87990453930104 107.67342148459232 107.50456030102669 107.3785173586341 107.30001858151492 107.27328394412623 107.3019992609531 107.38929638094206 107.53774314275145 107.749342270787 + -8.04891879983401 -6.473969028444528 -4.846181790715699 -3.1823871738574057 -1.5007882781266464 0.17947541170775727 1.838785097794884 3.45750363937389 5.01659418325322 6.509277890622212 7.947996233846412 9.346950273495134 10.719792155609639 12.079079366108205 13.435821478379474 14.799130557672251 16.17598107302694 17.5710797785958 18.986840853527113 20.42345691446097 21.87905258846323 23.349904360855362 24.830708533734505 26.314878415953157 27.794852303914347 29.26239531511464 30.708760269359544 32.12320723490589 33.49450912237004 34.81292655196166 36.07001430271607 37.258379369537714 38.37146542024775 39.40336845022365 40.3486852549039 41.202393490442915 41.9597874900702 42.61961656633525 43.18708187616106 43.66820523597811 44.069061344212884 44.39574269113754 44.65433187144499 44.8508798108752 44.99138954687034 45.08180569496093 45.12800981746217 45.13582175223086 45.11100667400218 45.05928733524866 44.9863606314171 44.89791740315018 44.799664256374975 44.69734616510127 44.59676872070502 44.50381908872096 44.424484998055476 44.36487137351957 44.33121447680819 44.32989358509718 44.36744025303659 44.450545023319094 44.58606103740072 44.78100333585019 45.04254173783028 45.37798409326505 45.79474548693043 46.300297758077086 46.9020926419487 47.60745114580516 48.423411694593796 49.356530422288095 50.41235470745569 51.58906723928149 52.87733386106509 54.26633581459417 55.744085800034796 57.29754664067042 58.91283221989179 60.575487067276526 62.27083561435606 63.98438724658632 65.70227906439885 67.41183153438888 69.10608266238465 70.78556040820521 72.45265527766864 74.110729822342 75.76362632815774 77.4151864068101 79.06880551440695 80.72704279489963 82.39130313539881 84.06160407359542 85.73643539874054 87.41271415395396 89.0858325206487 90.74979100202957 92.39740468165618 94.02056636509502 95.61054734487078 97.15835392221177 98.65571893900632 100.09545828412419 101.47095827777787 102.77536249411605 104.00024026486449 105.13689502491988 106.17734550235963 107.11994489234617 107.96638397859482 108.71849919990662 109.37829727771847 109.94800759923264 110.43013201802661 110.82748862440539 111.14324722445308 111.38095520575976 111.54455318812751 111.63838039175664 111.6671700368471 111.63603534923517 111.55044691572698 111.4162022353539 111.23938836956935 111.02633862157728 110.7835841843355 110.51780169628594 110.23575763833095 109.94425049738662 109.65005161180673 109.35984560204116 109.0801712759235 108.81736388234103 108.5774995710841 108.36634290323268 108.18929825007675 108.05136592592567 107.95710393012419 107.91059623761137 107.91542868962895 107.9746737139574 108.09088536783048 108.26610401151609 + -7.94941777996613 -6.371168431678862 -4.740994110225071 -3.075810117283249 -1.3938802301812458 0.2856197008020461 1.9430575670533394 3.558803878256256 5.114008033344137 6.603729464924111 8.04086374347526 9.439495874087122 10.813124238999766 12.174125336117617 13.533310967219563 14.899588532782623 16.279729847985358 17.67824859890357 19.097381493845962 20.53716360495938 21.99558458222253 23.468809551402945 24.95144671426522 26.436843016983627 27.9173897283376 29.38482128279084 30.83031042156065 32.242921816674475 33.61153055447571 34.92650544698518 36.17948628705639 37.36314442012885 38.47096969584723 39.49708846549196 40.43611418687817 41.28302941794587 42.03312355634216 42.68514843184667 43.244332980501326 43.71672892902862 44.10844173155118 44.425597186217814 44.674315076347256 44.86068835192603 44.990767487883446 45.07055015080529 45.10597640068956 45.102929508700726 45.06724220058273 45.0047078228265 44.92109563750619 44.822169227450324 44.71370686632651 44.60152269335511 44.49148762922945 44.389549162281725 44.30174939106847 44.23424098770013 44.19330099242723 44.185342506549354 44.216924360866614 44.29475865099759 44.425715612839895 44.61682464498815 44.87526937945964 45.208373597899225 45.62357356317891 46.12837110072636 46.730260677054666 47.43662298682059 48.25457742337492 49.1907865686381 50.2509317588641 51.43331967319614 52.72871736849076 54.12640936284775 55.614505253354416 57.180047424546984 58.80920050157599 60.48751937786532 62.200287371672374 63.93291124051141 65.67135561943437 67.40272579888567 69.12005891317473 70.82363657467636 72.51551790800588 74.19873453040115 75.87681020905542 77.5532909822289 79.23130819322589 80.91319436623009 82.60016848583322 84.29210316912291 85.98738161611222 87.68284729639602 89.37384430508203 91.05434144074925 92.71712856698353 94.35406995283712 95.9563962613571 97.51511082995484 99.02206555996524 100.47002400657738 101.85227626313228 103.1623968278451 104.39283328293888 105.53508583049364 106.58132791305968 107.53008513197621 108.38321838641914 109.14270775744035 109.81067451353995 110.38943145540549 110.88153120951718 111.28980907752214 111.61741818962955 111.86785562128227 112.04497883654636 112.15301234737032 112.19654485537731 112.18051740204389 112.11020322175621 111.99118009477885 111.82929605408636 111.63062932751305 111.40144340685295 111.14813813669727 110.87719771309466 110.59513647823246 110.30844339326569 110.0235260672093 109.74665521529921 109.48391041566111 109.241128029706 109.02385215201062 108.83728946391247 108.68626888811278 108.57520698802588 108.50808013684258 108.48840461152074 108.51922596352449 108.60311930170369 108.74219993203367 + -7.822489785354851 -6.240917285014638 -4.60856422153326 -2.9424321519811736 -1.2608427371129927 0.416997986332706 2.071453669029312 3.68291392585899 5.232834774989087 6.718342372545599 8.152687250623494 9.549825689575302 10.923091233332286 12.2846705464075 13.645171464076485 15.013293382859402 16.39560497960424 17.79642905691962 19.217829366917396 20.659689827896177 22.119872853139146 23.5944407446162 25.077922394806336 26.56360694573815 28.04384656008905 29.51035197478959 30.954202454783463 32.364283496258935 33.72958021729343 35.04056591347716 36.288962671443684 37.467504692422345 38.569727845813134 39.58978999603998 40.52232361904518 41.36231951661436 42.10506617478188 42.749320135322236 43.30033599592608 43.764192398626754 44.14702202897482 44.454979883518334 44.69421824414783 44.870866865005574 44.99101799224567 45.06071633755944 45.08595423305376 45.072672064109994 45.02676382088103 44.954087310847434 44.86047829582513 44.75176760171823 44.63380012787515 44.51245467003022 44.39366356617209 44.28343136263462 44.18785194807769 44.11312387306049 44.0655638105769 44.051618261385514 44.07787361105612 44.15106445394986 44.27807967653168 44.46596512149586 44.72192074335681 45.05328905399534 45.4675304166238 45.97217949090352 46.57477601451105 47.282762325731774 48.10333983249799 49.04327730806818 50.108388005084564 51.29709823481684 52.60026931919911 54.007279320071284 55.50632195814162 57.08450308529121 58.72801838380961 60.42240961457437 62.15289154650833 63.90473694380037 65.66370287200151 67.41665091441065 69.15661576185963 70.8836264769301 72.59941763337856 74.30670343897667 76.0087092235026 77.70871162333957 79.40960934804733 81.11354402024523 82.82158737349681 84.53350720821551 86.24762010898783 87.96073421128834 89.66818048520327 91.36392630497272 93.04076072547684 94.69053711228676 96.30445577396418 97.87354929294672 99.38973692972188 100.8456969056474 102.2346031668434 103.54999200542926 104.78525289335597 105.93237317130426 106.9836654738835 107.93781523090807 108.7968433112293 109.56286561381154 110.23811191041001 110.82497376630809 111.32605107119218 111.74419381374392 112.08253683240866 112.34452616117635 112.53393628087314 112.6548781073192 112.7117979247322 112.70946773355845 112.65296765282326 112.54766112181322 112.39916370464738 112.21330633038374 111.9960938131276 111.75365949990274 111.49221689437908 111.21800910498813 110.93725696775732 110.65610669756916 110.38057792637782 110.11651299337439 109.86952836125175 109.64496904700498 109.44786697929857 109.2829042336252 109.15438215994166 109.06619751654011 109.02182687284356 109.0243207600073 109.0763093523522 109.18001927006235 + -7.666529920378874 -6.081619417514461 -4.447312756262089 -2.7806999766606997 -1.1001591784899896 0.5750781326393957 2.225378928232713 3.8311619042559437 5.374358594691491 6.85435280766631 8.284637041223412 9.679029307183612 11.050690682786904 12.411612759060377 13.772196816716779 15.140934371141368 16.52419366475179 17.92611160980861 19.348585865363596 20.791357422700795 22.252170498386246 23.72699387157948 25.210286173362604 26.695287094381957 28.174317005286312 29.63906899290087 31.08051080990323 32.487366995197334 33.848735604196634 35.15518916836132 36.398528208677185 37.571547487720125 38.66782821320713 39.68156062527383 40.607398453768454 41.440344097849625 42.17568926284918 42.81219759043343 43.355147482752294 43.81064176319181 44.18483707155684 44.48391372173745 44.714052011680074 44.88141346554123 44.99212659900171 45.05227730687437 45.06790409235736 45.04499824258374 44.9895088158826 44.90735202357267 44.80442432346891 44.686618337486614 44.559840590977316 44.43003006139925 44.30317661841443 44.18533862131698 44.0826591833832 44.00138087446085 43.9478588618368 43.92857262921451 43.950136409011556 44.01930826505901 44.14299733468918 44.32826806347597 44.582339349496706 44.912575393689465 45.326463799817745 45.83157519101324 46.435497460433155 47.14573694566782 47.96957855030679 48.913897418388295 49.98463705691994 51.18033917331665 52.49195215258139 53.908937276008814 55.41955863959934 57.01096807465606 58.66937080267526 60.380269677780646 62.128780769871774 63.90000835563877 65.67946331325417 67.4537332608238 69.21584670792184 70.96557504778569 72.7043376856474 74.43454790198281 76.15915591589095 77.88119855450046 79.60337686583695 81.3276807624491 83.05507675273559 84.78527113346095 86.5165568362363 88.24574762338585 89.96819871431028 91.67790840373792 93.36769102295307 95.02940790282203 96.65424214731905 98.2332747700761 99.75842807081429 101.22226837021685 102.61783326789447 103.93850716985622 105.17788988742495 106.32903350790588 107.38450403775845 108.34313653955803 109.20710462359405 109.97865523831845 110.6601237291099 111.25397888494041 111.76286739913769 112.18965437565518 112.53745757110104 112.80967392765353 113.00999763467698 113.14242947651232 113.21127760403002 113.22115013323332 113.17694015028258 113.08380381163492 112.9471322904997 112.7725183529295 112.56571836134398 112.33261050933353 112.07915009529137 111.81132264727735 111.53509571915217 111.2563701888727 110.98093190389176 110.71440453603653 110.4622045300093 110.229499058041 110.02116793223108 109.84177048184839 109.6955184838911 109.58625635277514 109.5174499633803 109.4921857182739 109.51318179549341 109.58281132231099 + -7.479888857907921 -5.891645971148962 -4.2556397948531774 -2.5890521880941586 -0.9103175092070941 0.7613106180172984 2.406208643771335 4.004832956801612 5.539823994964411 7.01295209681895 8.437834797371693 9.828145469206147 11.196868533565304 12.555798814406527 13.915131951829531 15.283155021928376 16.666041553302964 18.067750179548632 19.490021480595676 20.932463388299357 22.39271207772125 23.866652705299913 25.348682802627273 26.832000639260368 28.30890141039441 29.771065597088132 31.209326112684536 32.61226696691751 33.9690972687528 35.270482125757816 36.50829558505224 37.67538993315227 38.7653905423523 39.77252059884601 40.69145718553889 41.517217633841454 42.24510106831722 42.87388078729127 43.408857411325755 43.8561554936295 44.22195262649186 44.51245082297971 44.7338541616833 44.892351132018966 44.99410122809104 45.04522585716935 45.05180376453991 45.019871079667794 44.955425867540036 44.8644368034063 44.752855338110905 44.626630527870184 44.49172559532819 44.35413528243686 44.21990315001568 44.09513815895731 43.986030105208556 43.89886373395766 43.840031577867045 43.81604569475226 43.83354846709521 43.89932242051199 44.02029858424265 44.20356223560307 44.45635394784072 44.78606273187008 45.20020679555092 45.706396145685645 46.31227007458988 47.02540169494969 47.85316134873047 48.80253119909352 49.87958376273147 51.08297205961941 52.403724098131256 53.83137346820989 55.35423990749228 56.959502313222956 58.63335203574255 60.361224876693946 62.12810520761399 63.91889100797039 65.71880459047802 67.51412760645614 69.29787674865771 71.06956206491293 72.83029959843887 74.58222101620133 76.32802788865163 78.07055016666793 79.8123296641453 81.55524726479354 83.30020973192913 85.04690852933699 86.79365910472956 88.53732481274804 90.27332524727436 91.99572440976299 93.6973900617382 95.3702119911021 97.00537160550924 98.5939964366426 100.1279452322659 101.59964890797286 103.001987076926 104.32817388278474 105.57164291131389 106.72592191790115 107.78457099456067 108.74663358120077 109.61443201767068 110.39034292609139 111.07680776339538 111.67637446157097 112.19173944423788 112.62578661913216 112.98162096670889 113.2625951912332 113.47232857782116 113.61471772103495 113.6939391775144 113.71444436921732 113.68094724822416 113.59840535066829 113.47199493580374 113.30708094305226 113.10918251821403 112.88393486963543 112.63704822265134 112.3742646501017 112.10131357022033 111.82386672146586 111.54749344706045 111.27761715035885 111.01947381659276 110.77807353917484 110.55816604344929 110.36421127349438 110.20035620673448 110.07041919788236 109.97788334231782 109.92590060687385 109.91730882391133 109.95466145869872 + -7.260871652492479 -5.669335331569465 -4.031925932697306 -2.3659214844595016 -0.6898135848703709 0.9771241195282891 2.615282432483075 4.205162811143189 5.730431861454184 7.195282662163384 8.613349735238073 9.998158615271299 11.362516259818058 12.718022470522119 14.074671511988171 15.440552598229981 16.82165307585688 18.221763314037293 19.642477762753213 21.08328259752659 22.54171703567655 24.013592948121826 25.493255909353927 26.973870371868998 28.44771219932013 29.906453258456516 31.34076217566954 32.739105565338875 34.09079701360882 35.38658624926877 36.61841496556195 37.77918923379006 38.86257693545278 39.86283446693117 40.77466419418214 41.59310165209224 42.313457601840724 42.93451769025151 43.46160344980158 43.9008590156188 44.25848023551016 44.5406875030271 44.75370473158233 44.90374284748973 44.99698729289079 45.0395895600364 45.03766293161945 44.99728252459316 44.92448953343973 44.82529932144992 44.70571277338518 44.571730142156404 44.42936652392446 44.284668094410485 44.14372833407548 44.01270364674605 43.89782800713802 43.80542651756065 43.74192796386121 43.71387658145592 43.72794322017412 43.790935883422875 43.909809176314866 44.09167151001731 44.34378798012148 44.67357569825424 45.08858707443387 45.59647522562827 46.204934466387805 46.921607905537854 47.75395375818921 48.70906235940119 49.79313444759011 51.00493044978224 52.335550325104265 53.77458846719151 55.31040451129314 56.93018403283751 58.62007912888937 60.36542791379885 62.151047047650685 63.96158686796215 65.78193469981177 67.59803245352909 69.40287772571864 71.19571724701787 72.97737779182404 74.74973143405683 76.51526059469298 78.27662456435256 80.0362478014831 81.79594839190862 83.55662241916305 85.31799674728158 87.07845899257984 88.8349694131951 90.58305524601876 92.31688385214889 94.02940708037119 95.71256570635467 97.35755761979505 98.95552083913446 100.49819855139155 101.97785979958178 103.38720283816542 104.71925138773838 105.9672494835269 107.12456317181321 108.18533838651206 109.14963889188834 110.02000483035384 110.79894487401401 111.48901098064445 112.09283599241095 112.61317275025493 113.05293126124813 113.41521143971285 113.70332977268112 113.92083893493115 114.07153990709625 114.1594865477772 114.18898285675195 114.16457336243919 114.09102719362775 113.97331647233452 113.81658970813987 113.62614089800783 113.40737504976198 113.16577085936463 112.90684128658538 112.63609279313816 112.3589840330616 112.08088481742313 111.80703621469634 111.5425126952928 111.29218728579903 111.06070076917652 110.85243605733623 110.67149898038373 110.5217068935237 110.40658671228965 110.32938426685556 110.29308723747737 110.30046175561462 + -7.007738144142211 -5.412994694094895 -3.7745350106561184 -2.109738546583848 -0.4371561635580354 1.2239194364305361 2.8538971366575816 4.433329740393065 5.947334571361293 7.402433240197577 8.812194184667696 10.189995023536866 11.548467717176251 12.89902207231582 14.251458400539994 15.613677545956179 16.991491781350497 18.388535390860525 19.80626935004278 21.24407060579543 22.699393244497276 24.167986470694583 25.644152902165057 27.12103026201919 28.590880093211894 30.045369272535325 31.474963365455245 32.86804043294328 34.21400654792062 35.50368691514323 36.72908408469276 37.88315349729913 38.95960340138316 39.95272333189072 40.85724265148499 41.66821824760511 42.380976689118185 42.99431875626486 43.513585873396345 43.944939934962505 44.29459268308018 44.56877991153624 44.773741757860435 44.91570738386059 45.000883464151855 45.035446447877874 45.02553873170257 44.97726882616536 44.89671541707787 44.789934995782154 44.66297251394645 44.52187435158688 44.37270279863284 44.22155125435876 44.07455944522182 43.93792813593078 43.81793303345898 43.72093782008392 43.65340645141425 43.62191496583663 43.63316301984433 43.69398514162147 43.811361246564104 43.99242526367772 44.24446978418753 44.5749434941856 44.99143685490589 45.501650146528505 46.11333673270828 46.83421341341072 47.67182923666428 48.633384403449014 49.725207581609155 50.94616289665836 52.287414344582686 53.73860500092317 55.28811760207362 56.923122471573414 58.62970499808151 60.393072342391484 62.197834234379165 64.02834823965954 65.86911591214796 67.70570384022241 69.5310818272126 71.34423319031364 73.14571167789946 74.93715438357951 76.72085703775866 78.49934774279662 80.27497896666081 82.04955588366431 83.8240167294108 85.59817782135933 87.37055240909207 89.13824870111765 90.89694842492615 92.64096328162825 94.36336282823918 96.05616383014457 97.7105929718858 99.31773970943385 100.8691885788797 102.35701831124572 103.77372038717355 105.11210585107055 106.36521002687923 107.52620307981277 108.589073310902 109.5544282555639 110.42594766283206 111.20642228611035 111.89852325340512 112.5049783709789 113.028607773743 113.47235887413055 113.83933799979563 114.13283692562472 114.35635318065079 114.51360354840244 114.60853059109027 114.64530233015756 114.62830542713229 114.56213234908432 114.45156309102724 114.3015420799937 114.11715091620343 113.9035776267045 113.6660831241146 113.40996558297655 113.14052347197978 112.86301801351556 112.58263588348177 112.30445301446701 112.03340042538554 111.77423307233997 111.53150280254272 111.30953660121722 111.11242145866657 110.9439973621293 110.8078601487415 110.70737625930039 110.64571182832529 110.62587637981204 + -6.718705483244803 -5.120903811136516 -3.4818190702752925 -1.8189381700405438 -0.15087416832279446 1.5030611575468438 3.1232974923819463 4.690446019690978 6.191629660721549 7.635432881928371 9.035318144269356 10.404518092578304 11.755495274590272 13.099477611407798 14.44608180805921 15.803032492770168 17.17598028909188 18.568417486193088 19.981685708835883 21.415066214445922 22.86594034657348 24.33000539785579 25.801529777075647 27.273630972761943 28.73856033835795 30.187976960919556 31.612112051920388 32.999272813146796 34.338946302524946 35.62202295709593 36.84055853341937 37.987552760776 39.056751605370025 40.04247728988117 40.939487610963596 41.74286376542708 42.44795218046686 43.05357159905161 43.56508261012543 43.988663392891425 44.33053959114846 44.59695979857395 44.794177149731965 44.928435221419875 45.005957577792984 45.03294085636399 45.01555148670901 44.95992610076055 44.87217553568275 44.75839212331577 44.624659760287116 44.477066100794815 44.32171613662814 44.16474643958782 44.012339439844304 43.87073728603248 43.74625505213208 43.645293284152885 43.57435006938181 43.540032910580024 43.54907064490343 43.60832541535797 43.724804244892624 43.90566905979534 44.15824306181586 44.49001018627786 44.9086030666555 45.421773550190785 46.0373385079547 46.76309263097165 47.60667931889133 48.575410910103486 49.675744241522494 50.906643635374515 52.259328945853156 53.72347915204993 55.28748218167971 56.93846954532055 58.66243027142369 60.444404503136234 62.26875239853484 64.11948956005543 65.9806762827319 67.83746641246455 69.68279202844701 71.51537491259742 73.33551405304841 75.1446386732286 76.94489318214059 78.73871723008888 80.52844022156616 82.31590811111624 84.1021581115786 85.88715416852756 87.66959281100996 89.44678540547821 91.21461906013538 92.96759460415208 94.69893635920702 96.40076498820446 98.06433344201754 99.68061074504578 101.24098542723864 102.7373151901722 104.16185696912298 105.50718448509258 106.76610280400423 107.93156755739638 108.9973809372283 109.9640423048534 110.83555638533964 111.61590865134355 112.3083021004 112.91557712613319 113.44063672823079 113.88648152190592 114.25623993972097 114.55319442750479 114.78080234095287 114.94271080056569 115.04276519285244 115.08501132791355 115.07369149424332 115.01323480908815 114.90824236505661 114.76346773755785 114.58379345741066 114.37420408023237 114.13975650779022 113.88554824251312 113.6166842887416 113.33824345524718 113.05524486425833 112.77261553349476 112.49515997062193 112.22753280613007 111.97421559444771 111.73949903967298 111.52747205968242 111.34201930142592 111.18682897497311 111.06541320169205 110.98114349351069 110.93730182819871 + -6.3919534677606284 -4.791321631887203 -3.1521262620322115 -1.4919683918399165 0.17047303251295653 1.8158663043215402 3.4246637813026086 4.977569500025657 6.4643514283988415 7.895243123197848 9.283602212194888 10.642522177065928 11.98430465238426 13.320006621765796 14.659074184702162 16.00907028744982 17.37549936426791 18.761727442132464 20.168992142263825 21.596493370148536 23.041552499513646 24.499825663398237 25.965555457534805 27.431844973791726 28.890938593142142 30.334481045145505 31.752435774524347 33.1330554069565 34.46589400398187 35.741895972543674 36.95316179939717 38.09272975357798 39.15438033060899 40.132467555801256 41.02177875020132 41.81742210512087 42.51476775396211 43.11265522240671 43.61646383595575 44.03238695617755 44.36666253930857 44.62554980233438 44.81531208462263 44.94220399528908 45.012462078762766 45.032298815583545 45.0078999943175 44.94542548236473 44.85101328957239 44.73078663373048 44.59086353660413 44.43736834310495 44.27644449077385 44.11426787491372 43.957060256084716 43.811102327542784 43.68274627420446 43.57842787438577 43.50467837494375 43.46813645870549 43.475560568977315 43.53384161298368 43.65001559801247 43.83127504033792 44.084977028308245 44.418644644089945 44.83995711074612 45.356722624185046 45.97682648204574 46.70814600270185 47.55842304790289 48.53508497561441 49.64471759423682 50.886382126101516 52.25134579975207 53.72931000453188 55.30864875547416 56.97642944860816 58.71851275878143 60.519732762204335 62.36415374375059 64.23539579655255 66.11701740847535 67.99372039522287 69.85838807887369 71.70948460619425 73.54707438724127 75.37240831507347 77.1875177402334 78.99479990657751 80.79661375883684 82.59490371740297 84.39086705351595 86.18467796982057 87.97527849658982 89.76024296839726 91.53571927884434 93.29644646155212 95.03584455955895 96.74617059313384 98.41867224210944 100.04413003554788 101.61369918067471 103.11898305203297 104.55197361308107 105.90497994314796 107.17055267815782 108.34141174316007 109.41115504101612 110.38015991995437 111.25237371646233 112.03185971878527 112.72273147251664 113.32882212846684 113.85325117445272 114.29909329991382 114.66951949054794 114.9678226177755 115.19743877778599 115.36196344749658 115.46516197743902 115.51097428818662 115.50351389127013 115.4470615341654 115.34605388916279 115.2050677842962 115.02880052573903 114.82204689749503 114.58967345543002 114.336590765746 114.06772427759759 113.78798456859917 113.50223776216929 113.21527698816624 112.93179584437938 112.65636491825104 112.39341254922266 112.14721115778897 111.92187064562985 111.72134059283832 111.54942325721183 111.40979973410973 111.30607208410977 111.24182210004759 + -6.025633575744108 -4.422496740406846 -2.7838126327667605 -1.1273035547209378 0.5282813706998588 2.1635889829521715 3.7590954929989144 5.295726148884593 6.766459701047031 8.182747564913344 9.557848149687999 10.904724253961659 12.235527765498732 13.56115823492373 14.890906509515345 16.23219045991276 17.590385527338963 18.968748573368902 20.36842953786905 21.788561898589407 23.226420046588363 24.67762957664873 26.13641522677974 27.595870819791703 29.048236042331943 30.485129067997644 31.896213670058422 33.26969949973444 34.595192511383495 35.86367887012442 37.06729451521318 38.19910982601103 39.252936057510595 40.22315765459214 41.10459212810022 41.89237699123977 42.58190964062579 43.17205313830542 43.66820542485828 44.076574339781665 44.40340900257548 44.65497754665231 44.83755121228208 44.95739275539921 45.020748288700815 45.03384227991843 45.00287567743964 44.93402715202775 44.83345733508995 44.70731577261591 44.5617501541814 44.402917257549156 44.236994997057955 44.07019499071287 43.9087751661024 43.759052095404655 43.6274129588991 43.5203272478809 43.44435848668451 43.40617632985986 43.4125693240864 43.47045836928213 43.58691043341631 43.7691513497621 44.024575553097094 44.36074941728288 44.78540349492121 45.30640751790856 45.9317206196354 46.669308048178166 47.5270148588009 48.51238694913198 49.63214048635834 50.88543048579405 52.26356270234286 53.75624664938885 55.351822030314636 57.037264955459044 58.798273248108465 60.61943268039134 62.484461454827944 64.37652595596113 66.27861690272184 68.17494290290892 70.05832646092378 71.92698002889152 73.78075545925815 75.62075724937624 77.4489448667621 79.26772258427512 81.07953531485884 82.88648784094966 84.69000311349144 86.49053302129329 88.2873322910686 90.07830307464042 91.85991442806238 93.62719741352976 95.3738130914512 97.09218653631763 98.77350508282849 100.40829469407625 101.98744008953527 103.5022541627917 104.94443056085217 106.30598349722563 107.57918218785231 108.75648701852415 109.831271026932 110.80377495337824 111.6778792088822 112.45762036699563 113.14712124384403 113.75055722766228 114.27212294365998 114.71564208473463 115.0844034701001 115.38173514374188 115.61107535402479 115.77598992415291 115.88018473746438 115.92751303576429 115.92197751152054 115.86772737896162 115.76905075122279 115.6303627469709 115.45618981546832 115.25115081680013 115.01993543451363 114.76728053917728 114.49794516898274 114.21668485118812 113.92822605825947 113.63724167663025 113.34832846563502 113.0659876016217 112.79460954103203 112.53846460176646 112.30170086225402 112.0883512229814 111.90235177964445 111.7475740377568 111.62787397597766 111.54715884791804 + -5.617882802807406 -4.012682726912566 -2.3752589479525024 -0.7234624809410918 0.9238826658398936 2.547399856444356 4.127589808767008 5.64585963494582 7.09882481852911 8.498737945252127 9.858766184762537 11.191752554797304 12.509712738560795 13.823404595079134 15.141981092678114 16.472733374814997 17.820926507414804 19.18972635958835 20.580212234897452 21.991466483835563 23.4207295501584 24.863606858969817 26.31431272443338 27.765936072050003 29.210713215518776 30.640217068989486 32.043781605859 33.409580780207904 34.72725631334563 35.98782302961754 37.1834422590513 38.30720936194387 39.35296195360464 40.31511294873697 41.188510206028184 41.968322440571484 42.64997748709325 43.232364572835266 43.72090044712543 44.121807148248934 44.441344288091834 44.68578772678004 44.861414844933265 44.9744942179058 45.03127867718075 45.038001379448296 45.00087477800259 44.92609243824406 44.81983355791876 44.68826991627861 44.537574838557994 44.37393366164932 44.203555148686036 44.032683336500156 43.86760940982089 43.71468336613639 43.580325439864374 43.4710374578867 43.39341445652917 43.35415695390493 43.36008419177578 43.418148392457695 43.53544958280796 43.71924979746955 43.97698448538756 44.31626772955677 44.74488650101067 45.270777687515675 45.90198018396985 46.646553061705184 47.512449944170605 48.50733944441225 49.6380700701798 50.903887679715496 52.296127263725644 53.804491282852 55.41726331539774 57.121298999925095 58.90209613033843 60.74394654067257 62.63016798813065 64.54341001049347 66.46602385558667 68.38168183160317 70.28313255784073 72.16834478294025 74.03698161790155 75.8900354952026 77.72943814012643 79.5576537897244 81.37727374714517 83.19062949312841 84.99944010566006 86.80450772474312 88.60547231831401 90.40063414759135 92.18684919780938 93.95949954564463 95.71253729737033 97.43858481627981 99.12868436154824 100.77305414003222 102.36226696819242 103.88730602265116 105.33953016495092 106.71062543823778 107.99254969799667 109.17747721559061 110.25853315599288 111.23580528861122 112.11309630319782 112.89440847132285 113.5838677311885 114.18568468734817 114.70412323147626 115.14347504758024 115.50803597811266 115.8018181845304 116.02835047580254 116.19119561159928 116.29402455201122 116.3406264203321 116.33491378558304 116.2809233159447 116.1828120227715 116.04484943302825 115.8714061111097 115.66693901276035 115.43597420565249 115.18308754212862 114.91288392629968 114.6299758847285 114.3389622303869 114.04440770563862 113.75082460361548 113.46265750096569 113.18427239216322 112.91995170176952 112.67389687397964 112.45024050902913 112.25307034731146 112.08646781143385 111.95456432426941 111.86161652290238 + -5.166843678163916 -3.5601598911175754 -1.924893966764301 -0.2790331860952012 1.3585186195464964 2.9683590026755255 4.531013483429845 6.0288082877451235 7.46220772698798 8.843895623190962 10.1869580106605 11.504131157027231 12.807310126805495 14.107128711204581 15.412621032165442 16.73097124475434 18.06735374918718 19.424862374432454 20.804523299683858 22.205383214546245 23.62466153586005 25.057953517427745 26.49946988610566 27.9422982451146 29.378671885705756 30.80009208306682 32.195535352180855 33.55314316048831 34.862575966844155 36.11486332788898 37.3021811334712 38.417641874105755 39.45510444759032 40.4090076523783 41.2742292627956 42.04597053845652 42.71969245346032 43.29431284608109 43.77526779330989 44.16879370697802 44.481160537941186 44.71865124867446 44.887548198555606 44.99412407453608 45.044636205749626 45.04532376592682 45.00240767280826 44.922093071440116 44.810574235849856 44.674041613450854 44.51869062194707 44.35073172751198 44.17640131008941 44.00197286842986 43.83376823289431 43.678168624674306 43.541625600770566 43.43067211951165 43.35193410839814 43.312142966778566 43.31814934177821 43.376938232357816 43.49564496752251 43.681570848513836 43.94219623806344 44.28518764261892 44.718393913606604 45.24982517021535 45.887606532095795 46.63989739580849 47.51476598264145 48.52000845663369 49.662608235141796 50.94189917455382 52.34923566995008 53.8742969455312 55.50528709130935 57.228909916698015 59.030423149528154 60.89377545208751 62.80182539256487 64.73663733440553 66.67984533932096 68.61454037197116 70.53338307162682 72.43410854501766 74.31621677140029 76.18062488317432 78.0292840517442 79.86477504238295 81.68990014077076 83.50728852383415 85.31903093257581 87.12635775650563 88.92937242311429 90.72684937922027 92.51610304311765 94.29293099633372 96.05163147846741 97.78504315788881 99.48396084890788 101.1382483791863 102.73812212532596 104.27419308065022 105.7374456021095 107.11920108211388 108.41107306598275 109.60492037569263 110.69359487978589 111.67701320129605 112.55888818354663 113.34317919186232 114.03400929821059 114.63562021624536 115.15233553482632 115.58853050466124 115.94860692105553 116.2369719843082 116.4580203653621 116.61603762288195 116.7148565608624 116.75822883979478 116.75000085416207 116.69411828475486 116.59462642532941 116.45566665494752 116.28146939898168 116.0763440006462 115.84466599052726 115.59086230405944 115.31939506400856 115.0347446223985 114.74139264792066 114.44380615354494 114.1464234872344 113.85364345910367 113.5698189547862 113.2992565926146 113.04622422916381 112.81496841422965 112.60974425602436 112.4348605971976 112.29474394241026 112.19402249989648 + -4.670692136251429 -3.0632649767241418 -1.4312258827669264 0.20729414949454755 1.8333065034100344 3.427380461309893 4.9700664547549165 6.445277429795772 7.8572338916255715 9.21876722947067 10.54289428229191 11.842259387368465 13.12865424742604 14.412607703476608 15.70305533483206 17.00709506450832 18.32983108367147 19.67430460611583 21.0415064037672 22.430462924655544 23.838385200540337 25.260867825503777 26.692124103679564 28.125243054581215 29.552454313164567 30.965151929784284 32.35193100688678 33.700899782664365 35.00171963454903 36.24542015841258 37.42418022150167 38.53112085442184 39.56011643512369 40.50562835739342 41.362563209359145 42.12615551362966 42.791901522415706 43.358749891787824 43.832156882128615 44.21837393674398 44.52368174872041 44.75437037169037 44.91672663615992 45.01702631316636 45.061529701748256 45.056480015023865 45.00810427867489 44.92261656587413 44.80622337077436 44.66513084028983 44.505553493838164 44.333724000413895 44.15590357575688 43.978392620608346 43.80754134278956 43.64976027763281 43.51153081832254 43.3994160552468 43.32007235915554 43.280262179857125 43.28686842268469 43.346910464971245 43.46756134856487 43.656164909460614 43.92025057735131 44.267542314172694 44.70595670592938 45.243583650706725 45.88864150539595 46.64939710752914 47.53403995765924 48.55049925210812 49.70589644542541 50.99965057895349 52.42312496217722 53.96595825956857 55.61625001350103 57.36051851626544 59.18373836328327 61.069462031938386 63.00002559135545 64.95683452664268 66.92072180249333 68.87414997053185 70.80967652776296 72.7248151131068 74.61893001815679 76.49290234531894 78.3487530506842 80.18923975398637 82.01744464819261 83.83637045353116 85.6485604075815 87.45575680645716 89.25861066608923 91.05645272272552 92.84713331434685 94.62693576590028 96.39056483547915 98.13107770271803 99.83891115664274 101.50353154390584 103.11475108370405 104.66276284795391 106.13813369922312 107.53178072581267 108.8349372319167 110.03911454962997 111.13686347694808 112.12790945866061 113.01586193639241 113.80462765750048 114.49832000653089 115.10120709379659 115.61766897366967 116.05216222866916 116.40919038496705 116.69327892843528 116.90895402165582 117.06072434404066 117.15306576106182 117.19040835001239 117.17700042965579 117.11677496264781 117.01368729881898 116.87176980175013 116.69512954737897 116.48794301639418 116.25444821456476 115.99893473142457 115.72573232696169 115.43919872495435 115.14370739531162 114.84363622987952 114.54335815969712 114.24723492976332 113.95961544395703 113.6848403233479 113.42725459341229 113.19123074001243 112.98120476389069 112.80172833564926 112.65754072766866 112.55366214078478 + -4.127675264072569 -2.5204309718702738 -0.892883968402461 0.7366839223010828 2.3491945327614814 3.925186496782814 5.44523655138236 6.895803648239607 8.284359569010842 9.623733082713324 10.926885268562945 12.206384756786404 13.473938403384043 14.739990287919065 16.013398605903337 17.30119642724602 18.60843857613063 19.938133229639522 21.291253404126657 22.6668204591749 24.062049236785985 25.472542576224654 26.892521774214327 28.315079126531444 29.73243897800691 31.135841403249458 32.51348175458111 33.85343026443545 35.14533074313581 36.38019743751013 37.55019988528193 38.64845831874228 39.66885603229305 40.60587296674695 41.454442680901515 42.20983297463104 42.867576871210055 43.42665575987105 43.89254728964991 44.271519105464684 44.56986364067021 44.7938786881526 44.94985574880781 45.04407338902363 45.08279410607222 45.072263934655865 45.01871440301472 44.92836659187504 44.80743705982071 44.662145345569535 44.49872269342801 44.32342160979691 44.1425258693751 43.96236066033119 43.78930268654755 43.62979021858077 43.490333278667194 43.37752432476052 43.29804992263944 43.258703917526915 43.266402490564985 43.32820116739653 43.45131330040914 43.643128749829785 43.91123043589421 44.2634051402881 44.70764344094224 45.25212203994713 45.90516009162805 46.67513959290816 47.570378633694155 48.59894553202693 49.76810341042575 51.077353615771045 52.51805708795911 54.07979332379623 55.75053041214385 57.51656495817414 59.36254218195231 61.271561447446715 63.22536833134835 65.20463027065774 67.18928897401487 69.1611293476151 71.11258948905656 73.04097592756074 74.94554662922738 76.82718854020668 78.68804600001366 80.53111768920216 82.35983908718958 84.17766727623935 85.9876842415016 87.7922336171218 89.59260415800456 91.38877112965329 93.17920436851219 94.96074904581843 96.72858225109104 98.47595895157845 100.19284919255742 101.8682788932665 103.49160529645324 105.0525546394847 106.54123014067942 107.94810187852794 109.2639841312391 110.48000612634019 111.58838758098105 112.58864081770216 113.48425674192158 114.27907851295227 114.97720202904803 115.58291634622375 116.10065421277984 116.53495092906542 116.89040990846387 117.17167358050031 117.38339859089875 117.53023457532196 117.61680608119556 117.64769746215285 117.6274407576054 117.56050668919283 117.45129895698842 117.30411421018428 117.1230273892274 116.91209761036355 116.67543848849408 116.41721341481166 116.14162930732472 115.85292950477235 115.55538658183669 115.25329600013612 114.95097166930753 114.65274467920001 114.36296668206359 114.0860196582629 113.82633409816287 113.58841798673973 113.37689939950815 113.19658602511193 113.05254554107584 112.95020872919721 + -3.5361613256350926 -1.9302393783289016 -0.3086728126645169 1.3100991997193239 2.9069046115350496 4.4622493256760976 5.956791943548638 7.380709311920701 8.743828816217643 10.058966821041903 11.339043184820158 12.596568025060723 13.843182669984522 15.089267239313388 16.343624112691924 17.613243088943726 18.903150471142688 20.21634079639902 21.553786628235343 22.914518894947786 24.29576782069525 25.69315266059432 27.100907286046994 28.51212820273049 29.91903181160801 31.31264383402382 32.68074990057358 34.01137309322542 35.294120641873384 36.51997544802535 37.68108473151695 38.77055784632447 39.782279656050584 40.71074379626933 41.55090815236124 42.29807304183569 42.94780903150516 43.499131820697684 43.95754201513585 44.329325171294805 44.62078709112932 44.83823465694919 44.98796499533284 45.07625997247446 45.10938432679679 45.09358651800591 45.03510178561756 44.940157091618445 44.81497766628678 44.66579485396241 44.49885491858306 44.320428453502586 44.13682006931811 43.95437811733827 43.77950434297014 43.61866353909262 43.478393460076234 43.365315428826975 43.28614618121842 43.24771149931893 43.2569620408388 43.32099143425369 43.44705614158293 43.64259577019072 43.91525143392167 44.272878435546865 44.72354800437391 45.27553114015903 45.93725588298839 46.71722767753754 47.62390109325637 48.665490200731874 49.84940383700826 51.175222585042405 52.63429278661178 54.21611472656164 55.90849614284907 57.697473171991405 59.567312135445114 61.50059837379234 63.478414279004085 65.48060465300983 67.4861236678379 69.47602695192997 71.44261587513782 73.38300650084837 75.29638187355464 77.1836793758544 79.04722368951654 80.89032272045924 82.71684311919763 84.53078214139342 86.33585217881684 88.1350933726631 89.93052833164275 91.72287115903389 93.5113007977681 95.29330619158507 97.0646080029306 98.81861039947448 100.54471975381244 102.23147543418804 103.86772604215285 105.44267916060377 106.94592532254426 108.3674420971928 109.69758333715629 110.92705918963549 112.04772620376019 113.05885964167572 113.96381494083917 114.76635921031139 115.47056184983144 116.08072644451181 116.60133391413206 117.0369950939713 117.39241102315323 117.67233943904073 117.88156626976394 118.02488123697898 118.10705699142186 118.13283147749226 118.10689344140661 118.03387115011236 117.91832447239743 117.7647404931621 117.57753279552594 117.3610444658657 117.11955476871155 116.8572850235766 116.57837857741275 116.28697204396113 115.98724270608855 115.68340825917171 115.37972770480954 115.08050541767034 114.7900999339223 114.51293928989766 114.25354506732545 114.0165676868949 113.80683594828287 113.62942357390465 113.48965289652277 113.39300503945202 + -2.8947048796447845 -1.2914877462817016 0.32235808958048096 1.9282304665695835 3.5068598269135673 5.0387177875315174 6.504846339240828 7.900045477304409 9.235619469115967 10.52438457011484 11.779234613519382 13.012638887633544 14.236192817608876 15.4602334812111 16.693528940233097 17.943047059705183 19.213806065529972 20.50880571397573 21.82903476811856 23.173547640815002 24.539600696338066 25.922836902632433 27.317506360601783 28.71670973741292 30.112651791186575 31.496066843368308 32.85433296743755 34.175411925306086 35.44885498882686 36.66559722110425 37.81774992059174 38.89840077011167 39.90142806993873 40.821333468589266 41.653095689559606 42.39204597860864 43.03379243480469 43.57738626568056 44.02835297725602 44.39299831194988 44.677643730127905 44.88860729333322 45.032193508527314 45.11468888770472 45.14236132023307 45.121462170556995 45.05823046897832 44.95889878381752 44.829700443578915 44.67687778801327 44.50669111864546 44.325428028349094 44.13941283822283 43.955015968059925 43.77866321180477 43.616845067861085 43.476126461777014 43.36315736246213 43.28468489249785 43.2475675238509 43.25879178703422 43.325491562009354 43.45496942742026 43.65471869688309 43.9324436582993 44.29607416527475 44.75376914265452 45.3139018213389 45.98501770065502 46.77575447112807 47.69471157188038 48.750255896118894 49.94994633257372 51.2934392895633 52.77205317629831 54.375187434361365 56.090458434339546 57.903600360715714 59.79844779583675 61.75700719956925 63.75962051182376 65.7852201279473 67.81167208924538 69.81924399300615 71.80008654484625 73.75114295101478 75.6715549377781 77.5623577545436 79.4261168127871 81.26652137604552 83.08795160102014 84.89503559989134 86.69221305537312 88.48332128736124 90.2712185662518 92.05745792467634 93.84202277669841 95.62313336026949 97.39713163825985 99.1574879620679 100.89297238072045 102.59158431418754 104.24160768553995 105.83167717152627 107.35081914320365 108.7884707845676 110.1344818718233 111.37910443428675 112.51379788927782 113.537574382102 114.45363484396404 115.26565603816161 115.97767028846856 116.5939879807173 117.11913260500306 117.55778647881046 117.91474531891964 118.19488000630713 118.40310415809537 118.5443464361684 118.62352684375408 118.6455365579617 118.61522109547626 118.5373667962449 118.41669072978321 118.25783418134756 118.06535986710723 117.8437529694242 117.59742598909341 117.33072729593317 117.04795313733686 116.75336274979571 116.45119612205032 116.14569388842564 115.84111879160993 115.54177814688073 115.25204676282199 114.9763898228351 114.7193853016514 114.48574557526194 114.28033797476174 114.10820412824873 113.97457802366279 113.8848999733707 + -2.2021302464125525 -0.6032756811092923 1.000826263574213 2.591405988900885 4.1490937818512466 5.654326196073749 7.089188040909223 8.453521190457723 9.759376203421612 11.019581864472372 12.247021328930632 13.454140693763446 14.652508865812077 15.852440376130618 17.0626898803133 18.29022392134704 19.540072255074126 20.815257796707705 22.116801186507313 23.443793230618926 24.79352616885009 26.16167295031072 27.542502526313196 28.929118630152512 30.31371034775445 31.6866209473442 33.0348424783002 34.34625438377087 35.610332431589555 36.81794699957983 37.961159342958354 39.03302402498638 40.02740388916257 40.93880208326196 41.7622138128758 42.49299879416159 43.12680181420267 43.6627103753944 44.106277214333225 44.46383111805272 44.74171218144506 44.9462525049354 45.083766565376926 45.16054774811677 45.18286891392218 45.15698573453089 45.08914202942056 44.985576598184146 44.85253116112605 44.69625906516314 44.52303443387466 44.339161475086826 44.15098372850652 43.964893148871106 43.787339074209285 43.624837310287624 43.48397974710375 43.37144507856821 43.294011282714266 43.258570493177174 43.272146708612816 43.34191640315437 43.47523148248535 43.67964315181 43.96292411376075 44.333085104406265 44.79838013436498 45.367292985120876 46.04849560147846 46.85076713351387 47.78286066161768 48.853303266758125 50.06980834828054 51.43210420849567 52.931466717092476 54.5571711142829 56.29660917237304 58.135168908166705 60.05619706444844 62.04105258506435 64.0692554220337 66.11873107650254 68.16614951833307 70.19093494261963 72.185066043964 74.14533557492028 76.07087992998258 77.96288259877215 79.82421355085278 81.65901941593626 83.47228044234626 85.2693508468517 87.05549930911293 88.83546602016574 90.6130518802149 92.39075417774184 94.16946139859337 95.9482177474107 97.72406425702799 99.49043826691525 101.23541359322378 102.94639315736723 104.61103852777727 106.21735551060573 107.75375307519448 109.20907836583888 110.57263168182621 111.83416622550948 112.98470867911583 114.02297971346802 114.95200418449915 115.77535190638166 116.49700548915233 117.12127258716538 117.65271211024863 118.09607249926457 118.45624012039299 118.7381959589095 118.94697903582745 119.08765527888494 119.16529091006967 119.18492973041951 119.15157396289176 119.07016853774144 118.94558886218839 118.78263220465483 118.58601284727223 118.36036112751887 118.11022641317538 117.84008394877344 117.55434539145021 117.25737273390052 116.95349520431442 116.64702864741443 116.34229683329873 116.04365411473452 115.75550885859423 115.48234711040641 115.22875600756129 114.9994465303458 114.79927526368434 114.6332649287726 114.50662352451342 114.42475912616186 + -1.4576370311958944 0.1348870619080856 1.7269062006547988 3.299480450088766 4.833138600685175 6.308282416243598 7.709167849251538 9.040417093327637 10.314328709064212 11.543756468372194 12.741587779592624 13.920262547836805 15.091341708162025 16.26513673116788 17.450408632431884 18.654141999932918 19.881396420326308 21.135234575411072 22.4167233332291 23.725001504264046 25.057405686666126 26.409643877588852 27.776005345418152 29.14959467363426 30.522572055502437 31.88478949299518 33.22287387631836 34.52460177692146 35.77935398096001 36.97791916273259 38.11229402809624 39.175488008636826 40.16133889239904 41.06434400627542 41.8795098151281 42.60222116062082 43.22815780792551 43.75644390550403 44.19266214525607 44.54316781472169 44.81432332191804 45.01247845608893 45.14396111327575 45.21507469050683 45.23209978383616 45.20129873305978 45.12892210103364 45.02121648077372 44.88443318165868 44.72483742644429 44.54871774410518 44.362395304778275 44.17223303361867 43.98464446895323 43.80610249374106 43.64314825404966 43.50240076010179 43.39056781198747 43.3144589643632 43.281001199334 43.29725777018102 43.37045026903195 43.507983323504575 43.71747041531005 44.00675812614004 44.38394465871816 44.85738678037603 45.43568744351127 46.12765432894143 46.942217540470686 47.88829278877837 48.97457480953915 50.20893587485097 51.59117152123117 53.11249903479378 54.76204425240593 56.52693885697196 58.39217780309756 60.34056081643883 62.35272725558677 64.40728981754914 66.48106866644244 68.54942768574011 70.59088213346142 72.59722314837016 74.56511611594301 76.4937306673719 78.38445192183335 80.24052160479984 82.06662336948413 83.86842800482646 85.65211510590176 87.42388820301714 89.18950029240565 90.95380618914575 92.72035714331054 94.49105174191041 96.26585528785661 98.0425835908289 99.81453388368904 101.56903566380733 103.29283657102599 104.97291754365064 106.59659884228127 108.15161795286924 109.62618134948802 111.00899335876296 112.28926646307445 113.45755763782836 114.51226516262643 115.45621315535988 116.29284493524693 117.02607803411152 117.66020537256304 118.1998119390816 118.6497050353306 119.01485602625036 119.30035160677764 119.51135280881236 119.6530602693099 119.73068461731161 119.74942117621825 119.71442848769763 119.63081042359768 119.50360184855352 119.33775792271145 119.13814719201196 118.90954860934326 118.65665257445839 118.3840659875559 118.09632119587698 117.79788858947228 117.49319248495782 117.18662983575773 116.88259123210594 116.58548360868785 116.29975406362384 116.02991420790767 115.7805645052843 115.55641812287813 115.36232388526128 115.2032880005825 115.0844942970243 115.01131986936427 + -0.6609318537772406 0.922946392316071 2.5001935038244887 4.05169825604213 5.557888256533949 6.999148284417218 8.363589439631905 9.65948119254986 10.899192970889468 12.095615212840778 13.261653456547595 14.409757119610642 15.55149621684131 16.697196996109003 17.855644846283656 19.033859959701946 20.236948239438473 21.46802696088497 22.72822185934385 24.01672974464251 25.33093854996993 26.666594994645823 28.018008843449092 29.37828211370041 30.739522540905835 32.09098822086099 33.41896584406743 34.711107977029805 35.95668129989844 37.146375822584034 38.27210898878214 39.326832654413835 40.30434933978137 41.19914248126597 42.00622374120997 42.72099885897301 43.33917998801108 43.859927823785334 44.288858135230896 44.632356767157496 44.89681282680744 45.088598240570704 45.21405864467667 45.27951151267304 45.291248902273324 45.255543161851776 45.178654530679346 45.066839917975365 44.926362345916736 44.76350065979857 44.58455919483778 44.3958771782532 44.20383775807838 44.01487669497793 43.835490926807225 43.67224740365629 43.531792769809556 43.42086460631437 43.346305005199206 43.31507718140305 43.33428559768806 43.41119963994454 43.553280199828684 43.76820757244929 44.06390784570225 44.44857344817903 44.93067175737927 45.518933694838466 46.22231212043515 47.04989768256417 48.01077771125472 49.11382191586978 50.367065432140315 51.77036540695024 53.314862907828044 54.98950724206177 56.781132275617814 58.67429049163908 60.6511726870741 62.69162369392681 64.77326077549195 66.87169747481411 68.960879344632 71.01834080673946 73.03567154073986 75.00943507417915 76.9388756279248 78.82563637563906 80.67340118146974 82.4874736277887 84.27430874014064 86.04101397173989 87.79483671010559 89.54265580482242 91.29049438478049 93.04307053827903 94.80340127893324 96.57247362984509 98.3489490461846 100.125883596087 101.88982014559494 103.62679314347425 105.3230454160863 106.96515562024081 108.54013603951145 110.03550190469542 111.43931480418014 112.74020401736867 113.92821877719862 115.00140114871067 115.9623460302705 116.81434693669715 117.56123736436551 118.20728015827439 118.75707401380282 119.21547514057633 119.58753191281106 119.87843034816309 120.09344843463515 120.23791760777823 120.31719002011458 120.33661060041052 120.30149323882102 120.21710072970636 120.08862833987115 119.92119103668699 119.71981450581914 119.48943011610727 119.2348739585756 118.96089001018045 118.67213736542787 118.37320135568172 118.06860825130016 117.76284312826236 117.46037038843205 117.16565635756403 116.88319335063247 116.61752458978097 116.37326938297248 116.15514801559709 115.96800586522163 115.81683631191162 115.70680207175471 115.64325169100293 + 0.18759789860861997 1.7601279747251781 3.3195279027596136 4.846516611458278 6.321422889946273 7.724921072522745 9.050568463626693 10.30879491697637 11.512044400811329 12.673254230335296 13.805360172959443 14.920834831379063 16.031272125766485 17.147028562352755 18.276929493335626 19.428045846650708 20.605543951125718 21.8126082273305 23.050433781784232 24.31828345041754 25.613601691813546 26.932176018697543 28.268335441061126 29.61517471314756 30.96471067572173 32.305509909491064 33.623544488856055 34.90632292499687 36.14297936840945 37.32408854831064 38.44147395802059 39.48801718207217 40.45747478129773 41.344307576084155 42.1435255842211 42.85055036160847 43.4611229865875 43.97444014656837 44.39615420034393 44.73268619827373 44.99045703055475 45.17586599951841 45.295281669531555 45.355040580727255 45.361450943190746 45.320799438395504 45.239359899565166 45.123403041560124 44.97920665488367 44.81306583583902 44.63130294557607 44.44027710889393 44.24639319957199 44.05611042055627 43.87595077085705 43.712507882241994 43.57245688397031 43.46256608109235 43.38971127323995 43.36089345452186 43.3832603781587 43.46413200090436 43.61102910646789 43.831703417234436 44.13416622492704 44.52671100429341 45.01792363877953 45.616671824054606 46.332062988372485 47.17335776798296 48.14982381851926 49.27051267603344 50.54362561904727 51.969074552897936 53.537904968838326 55.23886056908052 57.058437559153916 58.98069433824394 60.98714867948927 63.056773912723806 65.16610194902847 67.28943713289591 69.39919389889931 71.47184724730687 73.4987731452533 75.47646160148324 77.40427575319227 79.2841762264826 81.12036225419479 82.91884287842656 84.68695339977617 86.43283365162726 88.16488565479759 89.89122873013687 91.61917020385508 93.35470942733836 95.1020919501758 96.86342933804731 98.63829501058369 100.4194175211842 102.19251622569172 103.94285717716362 105.65589021119314 107.31739864827708 108.91361775053504 110.43132229498207 111.85788512364323 113.18130996116587 114.39109954637465 115.48490255543899 116.4650514615771 117.33466187055497 118.09745959995377 118.7576576350698 119.31985190579879 119.78893388082604 120.17001769538989 120.46837948963191 120.68940677481767 120.83855590886112 120.92131610091165 120.94317873398474 120.9096111585368 120.82603443985816 120.6978048174258 120.53019884197467 120.3284022905548 120.09750302246623 119.84248793658628 119.56824413441423 119.27956429719265 118.98115616507609 118.67765587672095 118.3736448026826 118.07366939698721 117.78226350644788 117.50397252144478 117.24337872618293 117.00512720871342 116.7939517161168 116.61469988040555 116.47235728570195 116.37206988429553 116.31916132139278 + 1.0851982906477262 2.6432521228998906 4.181320783764072 5.679958710167174 7.119401701548396 8.48154755003659 9.766071300879945 10.984379298792224 12.148995581104472 13.272911434855763 14.36910141539501 15.4500711133217 16.527449085002505 17.611633364703934 18.711500638377906 19.834183577257438 20.984919113638227 22.166967708765853 23.381601031857464 24.62815305289281 25.9041274514803 27.205352544596323 28.5261737007542 29.859672475992465 31.197717819270068 32.528099293761656 33.83650162538017 35.11027183584378 36.33839514429125 37.51131583783372 38.62074970244803 39.65949581932706 40.62125415995537 41.50045393490184 42.29209615189317 42.99161239958581 43.594768413948756 44.10079582835487 44.51538733582733 44.845004255566366 45.0961048729703 45.27512174077669 45.388452268325885 45.44245785565391 45.443468411784636 45.397790161154944 45.31171534008974 45.19153283410628 45.043539096582755 44.87404888772411 44.689405529147244 44.49599051746305 44.30023249984595 44.108615793185145 43.92768882201308 43.76407304458358 43.62447310753326 43.51568908596739 43.4446316900458 43.418341209894244 43.44401068548995 43.52901328638911 43.6809331320389 43.90759774938518 44.21710903438896 44.61786795623665 45.11858633314361 45.72827685228641 46.45621016124248 47.31182540610382 48.304578139590454 49.443707205695944 50.73758169130316 52.18615968178033 53.780370072892524 55.50872036696849 57.35732803025228 59.30970498649857 61.346631760893075 63.44613393217877 65.58356992974933 67.73183536758638 69.86170514740948 71.94851475345835 73.98341806126969 75.96286302953918 77.88637858933552 79.75630402764247 81.5774281288351 83.35655095950237 85.10198325434428 86.8230000335485 88.52926632878402 90.23025369455272 91.93466651773525 93.64989699900248 95.3815270582623 97.13289431031083 98.90454582849719 100.6888174425768 102.47057529189313 104.23426859850555 105.96450591149836 107.64622757200439 109.26484533079474 110.80634865943225 112.25737889221985 113.60527391483632 114.83895179527137 115.95562738059763 116.95733208909134 117.84696969065799 118.62812874974301 119.30494679389 119.88199499110765 120.36418130861762 120.7566697727468 121.06481335406548 121.29409810258562 121.45009639942059 121.53842752344309 121.56472410945663 121.53460345976723 121.45364303227343 121.32735974118937 121.16119295487157 120.96049125008679 120.73050308166229 120.47637155521734 120.20313345801495 119.91572262193829 119.61897757830098 119.31765333233785 119.01643695064811 118.71996653040449 118.4328530147291 118.15970424069626 117.90515055765876 117.67387133298966 117.47062166537971 117.30025864474767 117.16776652175814 117.07828016479986 117.03710317096065 + 2.0252342618610504 3.5652468970181435 5.0781073915411055 6.544217207013466 7.943730565764104 9.261517875504993 10.502747771678878 11.679094577987481 12.803163196901098 13.88800055073734 14.946622538154289 15.99157111090888 17.03451349614916 18.085893730691787 19.154644480319163 20.24796467888225 21.371165941669172 22.527588095430463 23.71858163571214 24.943552578607157 26.200063116630304 27.48397979998368 28.789659708404844 30.110164295800885 31.437135530944484 32.75752379530192 34.056756550588034 35.32200691085192 36.542098883477294 37.70733440070524 38.80931020823068 39.84073232108283 40.79523449255929 41.6672057619047 42.45163073250056 43.14394486410546 43.73993367076858 44.23886215634002 44.64646696749956 44.96925476647699 45.21372697618251 45.38635552974117 45.4935729707268 45.54177182329401 45.537309786865556 45.4865184300553 45.39571381097395 45.271207951345595 45.11932042878255 44.946389592131375 44.75878309780221 44.56290764359658 44.365217960169176 44.17222531590993 43.99050599442126 43.82671040034057 43.68757361540521 43.57992833112695 43.51072109015519 43.487032634577844 43.51610284405716 43.60536020940982 43.76245499214706 43.995294139317075 44.31207463809172 44.72131030179088 45.23184499049694 45.85284301571549 46.59374501091796 47.46417494187833 48.47378127995612 49.63199279057033 50.947344943645824 52.41983093772018 54.04024060054027 55.79681394116955 57.675248928639355 59.65846027088482 61.7264303192916 63.856165906778784 66.02177134476548 68.19464395510624 70.34382313404372 72.44343516465743 74.48441176913225 76.46319365250562 78.37952395653676 80.23618142500311 82.03861613151096 83.79450027006844 85.51320881350618 87.20524676482125 88.88164123050427 90.55331760701019 92.23047977062356 93.92201428029253 95.6349382299368 97.37390951278276 99.14050445120098 100.92662507458286 102.7162658502767 104.49302361767276 106.24062994778544 107.94314639986278 109.58512537413543 111.15173530088161 112.62885058024573 114.00310839251067 115.26280702806646 116.40468478510904 117.43042789240047 118.34268791273321 119.14487963047802 119.84103240421682 120.43566364583583 120.93367238483275 121.34025045918138 121.66080872494328 121.90091573686158 122.06624656727708 122.16253975119278 122.1955607260831 122.17107053628823 122.09479895974103 121.9724215623199 121.80954047257437 121.61166888468938 121.38421943535968 121.13249666241057 120.861693746833 120.57689367707083 120.28307486942003 119.98512114711943 119.68783583876723 119.3959596181965 119.11419158438109 118.84721297941935 118.59971286939245 118.37641506714526 118.1821055540155 118.02165965163067 117.90006819374126 117.82246193638558 117.79413036392374 + 2.9997389672112194 4.517728384849283 6.001140507404766 7.43024166503383 8.78523391251052 10.056382516329471 11.252370380468667 12.384984302142017 13.466905495539452 14.51123219956696 15.531017724602462 16.538836909814435 17.546392637899118 18.564172334449143 19.601162330092823 20.664625667845296 21.759946491582006 22.890541657923578 24.057837779328814 25.261309633928644 26.498573862157993 27.765530192639513 29.05654116348677 30.36464047284702 31.681138013661826 32.992116826439606 34.28277753729818 35.54011229901596 36.75277610974557 37.91092024897495 39.006013875381065 40.03066139377584 40.97842204082893 41.84363685773474 42.621266890844055 43.306745166097244 43.895871679590606 44.38794275927527 44.78874232901071 45.10482725418622 45.342747720247544 45.509021164323435 45.61012165560461 45.6524793035127 45.642485960348246 45.58650466075638 45.49088104794961 45.36195558920798 45.206075768161405 45.0296077248552 44.83894704473938 44.64052860711955 44.440835611184646 44.246408110095636 44.06385159620513 43.899846378629945 43.7611586545959 43.65465426726594 43.587316128503865 43.56626612495159 43.59879197838063 43.69237895635955 43.85474549086627 44.09388063160665 44.418079818393124 44.8359736964823 45.356542628817024 45.98910720547322 46.74328245820399 47.628880722434815 48.65574523801913 49.833493754287375 51.1708228984665 52.66774697506007 54.31489274092811 56.100200886603574 58.00890992466962 60.02328912527654 62.1224663726561 64.282365887681 66.4757672010917 68.67249289275294 70.8397671204738 72.95045194343184 74.9952660646731 76.97068153441849 78.87670562410109 80.71661633077639 82.49659315287273 84.22525532639133 85.91312223924166 87.57201289454824 89.21440303621274 90.85275985235567 92.49887501022494 94.16321712991156 95.85432465777637 97.57825944136393 99.33767780099282 101.12403529843476 102.92045018988114 104.70964749154754 106.47446195918765 108.1980555659525 109.86409912960266 111.45691607768157 112.96158806571812 114.36402396590394 115.65187156957316 116.82134793244451 117.87374408880578 118.81141191301856 119.63754805000342 120.35603284544696 120.97129286759099 121.48818497725722 121.91189943355522 122.2478793260437 122.50175364399145 122.67928147856408 122.78630515664977 122.82871048151466 122.81239266545883 122.7432269478834 122.62704326929358 122.46960469499525 122.27658953602302 122.0535772908689 121.8060386285203 121.53932965600609 121.25869067197637 120.96924951533221 120.67602949018568 120.38396170158259 120.09790148559858 119.82264847553155 119.56296972263604 119.32362519095985 119.10939487284868 118.92510672167788 118.77566456402236 118.66607512306149 118.60147324225501 118.58714124232897 + 3.999705366226901 5.491305571382354 6.940706764918496 8.328064126979523 9.634487704827183 10.85709536783414 12.00616872228029 13.093598523670744 14.132132018535854 15.13490819364556 16.115007186375635 17.08502632852232 18.05669409965247 19.040531685751965 20.045569933549462 21.079127336506346 22.14665237417439 23.251631149869365 24.395558933044352 25.57797201096158 26.796534280640756 28.04717134607532 29.324243590878314 30.620748817305277 31.927530147557945 33.22982018336724 34.5126198412202 35.76273866384894 36.968659422518016 38.12037820612892 39.209231009209766 40.227714311761915 41.16930609259032 42.02829253501518 42.799604444736424 43.4786661796508 44.06128669739508 44.54679120200708 44.94101377303424 45.25056592270232 45.48205187920572 45.64204045472054 45.737053478322984 45.773565035477134 45.758007493906206 45.69678152619145 45.596268202064714 45.46284182847913 45.30288264893499 45.122788840243 44.928987512280024 44.72794465633301 44.526174218752345 44.33024670506076 44.14679794056418 43.982538812164904 43.844266969088245 43.738881536958694 43.673401863917654 43.65499112950331 43.690985265754435 43.78892702556004 43.956604149562985 44.202089400348626 44.533778730759124 44.9604220232037 45.49113868397463 46.13540792201154 46.903020824132355 47.80397841637759 48.84831685184549 50.045837788339355 51.40538937357655 52.92698967794046 54.601076780955445 56.41525983357836 58.354279136160514 60.39971356016772 62.529786010972096 64.71928298090899 66.93960068378937 69.15892635423045 71.3426087640477 73.46220878363508 75.50825105482289 77.47728183622225 79.36962397625963 81.18911307509305 82.94272164629494 84.64008325049342 86.2929313125728 87.91446970054949 89.51869409928386 91.1196847241969 92.73089196358707 94.36443709240226 96.03045024876413 97.73646739351467 99.4862723701224 101.27089369248651 103.07258542829732 104.87320029543892 106.6546751370742 108.3992693471342 110.08976617667533 111.7096342414441 113.24314829790242 114.6754702166018 115.99357211463479 117.19310339015024 118.27490365531638 119.24096987640074 120.09422753899868 120.83835803898073 121.47765088680147 122.01687869213166 122.46119239288907 122.81603395814639 123.0870637767101 123.28010009577278 123.40106815317756 123.455957010934 123.45078250768582 123.39155516825289 123.28425230815289 123.13479392484001 122.94902225656526 122.73268510260905 122.49142313059725 122.23076144970729 121.9561057105132 121.67274291509354 121.38584699980224 121.10048910399608 120.82165227688826 120.55425021565831 120.30314948212134 120.07319451990143 119.8692346919901 119.69615247780673 119.55889190252724 119.46248620754814 119.41208369238059 119.41296742151364 + 5.015067207154969 6.475574647990062 7.886134682942114 9.226821140052634 10.481613012331364 11.65406235318411 12.754879605394375 13.796044308845856 14.79035343265251 15.750969710108327 16.690982797135096 17.622995231313745 18.558744101233145 19.508767894475607 20.48212622984599 21.486178164993547 22.526422587042237 23.606401932653636 24.727668240448327 25.88980840721404 27.090523588210633 28.32575602908056 29.589855305985992 30.8757762119005 32.17372448175298 33.46815874088888 34.74389856640773 35.98757461262643 37.18749881491746 38.33351137800922 39.41681265471099 40.42978728016507 41.36582698048254 42.21915739067855 42.98467306680224 43.65778373444562 44.234301751599716 44.713578413936816 45.10150023846329 45.40473720846366 45.629952303081325 45.78377108209378 45.872768952018944 45.9034700261187 45.882353276764256 45.81586296236889 45.71042122783703 45.57244143467904 45.408341258488996 45.22455496114522 45.02754454932849 44.82380980107082 44.6198973959441 44.4224096279912 44.23801340855718 44.07345046402594 43.935549777876545 43.83124338713729 43.76758658452566 43.75178336009621 43.79121749949554 43.893489100345974 44.066455337712746 44.31827307390102 44.65743934530174 45.09282385878502 45.63368539428715 46.28966145558972 47.07071767095514 47.98704036984271 49.04885252030407 50.26612989176229 51.64785750823203 53.194036173026504 54.89488805557292 56.73765834838146 58.70655206249641 60.78241678877728 62.94252694756213 65.16048662462833 67.40626451238461 69.64637050708006 71.84424081099469 73.97011979622518 76.01436761361838 77.97365224669862 79.8486650465444 81.64385560009958 83.36704747627935 85.02894672187546 86.64255791207921 88.22252511436099 89.78441725850672 91.34397908763914 92.91637007038567 94.51541436440186 96.15288512205363 97.83784610889144 99.57525420478912 101.35576513343058 103.1608001301162 104.97136086431696 106.76850670245379 108.53361200766317 110.24858530197388 111.8960470649008 113.45946467208701 114.92324485196764 116.27366560348425 117.50576087850675 118.61985619268883 119.61753014021122 120.50137464915291 121.27481226990871 121.94193915821494 122.507391741728 122.97623454658728 123.35386640163415 123.64594218791453 123.85830741970311 123.99694319260557 124.06791937715481 124.07735433640993 124.03137986873087 123.93611049048741 123.79761655073638 123.62190098932686 123.41487979652051 123.18236639809274 122.93006027392109 122.6635401253691 122.38826184756367 122.10956145077661 121.8326629264829 121.56269088449311 121.30468761288006 121.06363404460963 120.84447396250371 120.65214064149808 120.49158501312904 120.36780433538507 120.28587024949928 120.2509549860927 120.2683511604382 + 6.034714187155853 7.459148603448054 8.825838861599493 10.114926714793892 11.316195570302304 12.43721619554239 13.488821522670516 14.483058813277603 15.43275220409407 16.351064659386807 17.25107136056875 18.145356017052105 19.045640643642095 19.962458046369587 20.90487463728305 21.880269322651717 22.89417215478695 23.9501642909316 25.049838653695204 26.1928186265526 27.37683023048114 28.597821590344925 29.850122175770426 31.12662832347078 32.41672961809254 33.70422734566666 34.97377455534585 36.21183198209356 37.40654667166762 38.54760610454389 39.62607567687307 40.63422676027352 41.56536171969438 42.41364128312649 43.173918596827804 43.841583236070996 44.41244552566898 44.88587979027135 45.2678265196265 45.565017175289064 45.78417740319783 45.9319941460385 46.01510153576056 46.04007916345225 46.01345815364015 45.941731804458904 45.831368524276236 45.688825503474554 45.52056208890068 45.33305224031334 45.13279578839064 44.92632851307235 44.72023133652649 44.52113918229849 44.335750285984204 44.17083693830145 44.03325877568098 43.92997977652634 43.86809003789926 43.85483315891739 43.89763960353949 44.00416571741071 44.18233709494298 44.44039370322304 44.78693254591346 45.2309416802973 45.78181708322879 46.44935120985134 47.24367913035304 48.175164908541205 49.25420746204799 50.490941594966785 51.894468997672654 53.464748170317165 55.191756548092485 57.06234300950494 59.06014241678678 61.165235152405195 63.35391191748282 65.59856185868871 67.86769846296518 70.12613360594806 72.335379991233 74.46437554397518 76.50335697521048 78.44916645914095 80.30291812591928 82.0697293941546 83.75832635217907 85.3805351006989 86.95067407336902 88.48486506062085 90.00028293338393 91.51436586612331 93.04400917157609 94.60476666923252 96.21008380799199 97.87058654562831 99.59244866646851 101.36604404524554 103.17201452753572 104.99055625259416 106.80189566583576 108.58656273572672 110.32562533745576 112.00088119532386 113.59500544457605 115.0916537051507 116.47639935641725 117.74361222077184 118.89303455515821 119.92575455059485 120.84395825668001 121.65073881479738 122.34993182583088 122.94597487256787 123.44378872524639 123.84867749420428 124.1662449194237 124.40232407160761 124.56291795330787 124.65414880089943 124.6822142670728 124.65334907681365 124.5737911664326 124.44975170674181 124.28738875408139 124.09278454848382 123.87192667544865 123.63069342208773 123.37484369193305 123.11001180333143 122.84170739635267 122.57532052763415 122.31613185777118 122.0693276473317 121.8400190887275 121.63326532188547 121.45409931725237 121.3075556601425 121.19869913000265 121.13265282487544 121.11462441685609 121.14992571124365 + 7.046835990146687 8.429840073460934 9.747425970343519 10.980876960994326 12.127387871774012 13.196116171453435 14.197992084460044 15.145103382424887 16.050272463389394 16.926632528767144 17.787213770887863 18.644550563038866 19.510319833023978 20.395019634553613 21.307695449086054 22.25572001134573 23.24463052527541 24.278025103809906 25.357518211065077 26.482752895642133 27.65146576150004 28.859599003251837 30.101452499383367 31.36982988298978 32.65315069211169 33.934690670854486 35.19895408969749 36.43224576071679 37.62255819733716 38.75943309487366 39.83380472827433 40.83783232892727 41.76472776170193 42.60858393574176 43.36420841275633 44.026965693359294 44.59265891082072 45.06068212741282 45.43703045149115 45.72849882692993 45.94187848273183 46.083921417436954 46.16132472742403 46.180728079999135 46.14871950124153 46.07184603010393 45.95662680926421 45.80956694034292 45.637171005636226 45.445955611101596 45.242460680213824 45.03325955519625 44.824968257763864 44.6242545309628 44.437847521545315 44.27254915385404 44.13524836860474 44.032939423737034 43.97274534499251 43.961947333032434 44.00802044222652 44.11867510491093 44.301903047950965 44.5660248049778 44.91973434407174 45.372134292593024 45.93275284506123 46.611530695794045 47.41876326855251 48.36498015839981 49.460740109095276 50.716316090537525 52.140900187529105 53.73437931481911 55.4864558577449 57.38355041390163 59.40869564958337 61.541174678439155 63.75626879562463 66.02513349604297 68.31481799879245 70.58843933280527 72.80560510910435 74.93398590911522 76.96374840661025 78.89196703007758 80.72024406012287 82.45443674350855 84.10422893065095 85.68260417925667 87.20521550661685 88.68966834476595 90.15473727565833 91.61953902472435 93.10268556753958 94.62144204359325 96.19091446936525 97.82329200197753 99.52600210390375 101.28926902921013 103.09304756160694 104.91682580200776 106.74010268161035 108.54266761069697 110.30483718895191 112.00764484166547 113.63298115997793 115.16371956555577 116.58471939777817 117.8896374161972 119.07755716407104 120.14899575150181 121.10565079763768 121.95020431344189 122.68615261652246 123.31766033425592 123.84943611760016 124.28662744120507 124.63473177889882 124.8995214970043 125.08697998167365 125.20324678864432 125.25456994935016 125.24726395818891 125.18767237274166 125.08213435337775 124.93695482538679 124.75837824463395 124.55256617192929 124.32557900376106 124.08336226657688 123.83173786344689 123.57640057591044 123.32291998392893 123.07674778884835 122.84323032389686 122.62762582811766 122.43512585365215 122.27087997937484 122.14002281700832 122.04770211385998 121.99910656747703 121.99949175311927 122.0541990575541 + 8.040340693307638 9.376141714525424 10.638908768523265 11.813703424782718 12.90427164764296 13.920117616777452 14.872186803832859 15.77247618806093 16.63372655020186 17.46900421382081 18.291257645796392 19.1129353123997 19.945633212843386 20.799780062274014 21.684367564395195 22.606731609264077 23.57238843148987 24.58492784301925 25.645963693793785 26.755139795399057 27.91018774747199 29.107031507652817 30.33993220672694 31.601542155361734 32.87920244799523 34.15579655019432 35.41570290888954 36.64508911730103 37.83180768655255 38.96526508385355 40.036271357864265 41.03687723584077 41.96020493613069 42.80027814863472 43.55185575640391 44.21027296972552 44.77132097023886 45.23441007782771 45.60558964468331 45.89171892881289 46.09965647067965 46.23622182976687 46.30817817703079 46.3222287719657 46.28502225560758 46.20316311511865 46.083224741095805 45.93176330221682 45.75533127989315 45.56048999700108 45.35382088243825 45.14193556598449 44.931485211848205 44.72916977903919 44.541748136773215 44.37605014883011 44.23899194963001 44.13759563771987 44.07901447530595 44.07056436805096 44.11976186872808 44.2343681631816 44.42243742169016 44.69236650227919 45.05294125055414 45.51337253762102 46.08331270834306 46.77284028293339 47.59239758480545 48.55266248914716 49.6643317459156 50.937789387470644 52.3822851493348 53.997600674530595 55.77313166380844 57.69483924610518 59.74512529989317 61.90245240874694 64.1410775731683 66.43091933472913 68.73757549202848 71.02253504875334 73.24362425875626 75.36737245411474 77.38397686159806 79.290821841889 81.09003410422687 82.78820130022493 84.39595230254164 85.92741156709278 87.3995434124429 88.83140503119905 90.24332952460358 91.65606218923193 93.08987466572776 94.56368237950184 96.09419096867364 97.69509711893373 99.375069158387 101.12428851940005 102.922069406479 104.74724866986843 106.57867980006186 108.39552711204843 110.17751521099244 111.90512928303514 113.5597635696495 115.12381731312723 116.58159922315606 117.92606746820502 119.15550036296116 120.2695356243706 121.2690587268562 122.15622025250731 122.93408660806969 123.60646341431365 124.17776724331122 124.65291605249332 125.0372357902184 125.3363806743605 125.55626477562701 125.70300276034314 125.78285794698095 125.80219618495943 125.76744444744567 125.68505341464403 125.56146368384474 125.40307555403517 125.21622257802929 125.00714924209385 124.78199321709911 124.5467726281225 124.30737871879789 124.06957415458203 123.83899703021959 123.62117043656896 123.4215172150613 123.24537929605025 123.0980407875291 122.98475375501377 122.9107654073236 122.88134516506905 122.90180982004554 122.97754138906816 + 9.004545473668369 10.287457853975132 11.490119380456868 12.604587732176178 13.638024393722718 14.600144423190075 15.502032450099584 16.355756032446365 17.17396883302034 17.96951411134814 18.75506049702937 19.542875765080073 20.344433590302888 21.1700539546166 22.02863756369006 22.927448909508822 23.871951805139307 24.865699776016175 25.910281824739485 27.00532224058877 28.148531378235184 29.335802754573272 30.561350471453785 31.81759088780303 33.09073519227572 34.36340305944928 35.61987476957098 36.846203691835015 38.030120708005775 39.160910985995436 40.22927013424259 41.22714642666621 42.14757524398848 42.98451118139683 43.732662482869166 44.387331642433374 44.94429362501204 45.402971370120255 45.76946696359169 46.050703490352284 46.253607178722724 46.38506630582146 46.45191190370116 46.460913051632616 46.41878146954106 46.33218158950536 46.20774339008622 46.05207612469458 45.87178173393609 45.67346725956325 45.463756015803824 45.2492976501857 45.03677755598265 44.83292638637248 44.64453066064124 44.47844563074194 44.341611670027476 44.24107542648809 44.184016816930814 44.177782589594315 44.22992661258756 44.34825621661077 44.54088279740286 44.81627343541034 45.183298492745244 45.6512679841484 46.229946982590825 46.92953741542465 47.76061034953023 48.73396928189831 49.86042108614748 51.150427168313435 52.61325539997076 54.248544006899635 56.04534930394393 57.98914299952199 60.06167234060495 62.240612473658956 64.49932706702674 66.80663112857569 69.12679484801137 71.41972737463354 73.64145209712366 75.75737237092899 77.75772372949237 79.64021445165993 81.40752427991387 83.0670108974438 84.63027264110255 86.11258043439346 87.53219548314688 88.90959233248263 90.26660938461673 91.62555089213397 93.00826575963112 94.43522921469165 95.92465356735272 97.49165389529163 99.14610427898448 100.87825356469264 102.6668014712524 104.48995799869985 106.3259631370841 108.15339497447084 109.95143106823758 111.70005833175408 113.38022859087611 114.97395897749357 116.46522686079211 117.84662294245115 119.11606633669949 120.2728781193115 121.31750588854345 122.25131731267668 123.07643133536905 123.79561367859984 124.41260043239768 124.93198830470013 125.35885584247303 125.69867197980341 125.95722308861198 126.14054908533221 126.2548868470133 126.30661949301926 126.30223043249133 126.24826143801572 126.15127435599247 126.01781637895608 125.85438906337255 125.66742146278604 125.46324785187917 125.2480905402703 125.02804822024761 124.80909016987907 124.59705645525028 124.39766405780391 124.2165186092785 124.05913115965609 123.93093914090669 123.83733042379693 123.78366909276865 123.77532127379068 123.81767902333331 123.91617658277151 + 9.929084810761173 11.153666741535554 12.292707891053919 13.345983447694808 14.321710065681739 15.229774414058896 16.081360620906977 16.888577547901996 17.66407548005344 18.420662156201203 19.17092808168942 19.92689074951234 20.699666750129413 21.49922588824042 22.33429405724787 23.212026703508947 24.137801308614105 25.11510524548267 26.145477166997154 27.22850092783248 28.36184943868001 29.541374302658376 30.76123574428977 32.01350360956825 33.283273690268054 34.55301935459898 35.8069544784702 37.031044987107514 38.212921934712 39.341766165755566 40.408171285539545 41.40399141758458 42.32217977545453 43.15662347388453 43.90197930317286 44.55351445230364 45.10698396916775 45.561819639086245 45.92417354192586 46.201030663374254 46.39938380858695 46.526189629652734 46.58834731769105 46.59269253480628 46.54600111039043 46.454998519780844 46.32637230859546 46.166785511418446 45.982889809427846 45.78133773248502 45.56879367701719 45.3519439083996 45.13750606020163 44.93223893652011 44.742953661882325 44.57652739145813 44.43992087075074 44.34020109057082 44.28457008725772 44.28040055396804 44.335278319142404 44.45705087610804 44.65387997856007 44.93429481993038 45.30724046590585 45.78211399176532 46.36877818203194 47.07753968173335 47.91907515993719 48.90428538227634 50.044053126418135 51.34887666033857 52.82799554080572 54.48086871487654 56.29629527068042 58.25942601317036 60.35151062018251 62.549484027827155 64.82568048779868 67.1476932772121 69.47839656651287 71.77614109118913 73.99526300787075 76.10018482953049 78.0812748803787 79.93663936797371 81.66957031079843 83.28823611762073 84.80522364916865 86.23694555435961 87.60293032798266 88.92501562653415 90.22646785075993 91.5310528308989 92.86208363222737 94.24147205488183 95.68881037129938 97.22050927720524 98.84758998538219 100.56048671579117 102.33730478349867 104.15564492766164 105.99316002244231 107.82787682441433 109.63846865985985 111.40447401893405 113.1064580443836 114.72611603242261 116.24715734546683 117.66186895664865 118.96787117804882 120.16422489250199 121.25114114595229 122.22976257252289 123.10198537350294 123.87031794873694 124.53777185384416 125.10778063351185 125.58416986534466 125.97165368937141 126.27580508370954 126.50253130062835 126.65799401541292 126.7485534879125 126.78071746670652 126.76109412389695 126.6963486344913 126.5931633201475 126.45820153887574 126.2980757010546 126.11931991509461 125.92836780754122 125.73153602342545 125.53501380016158 125.34485883346437 125.16699943021777 125.00724268488983 124.87128813510608 124.76474605688576 124.69315925406933 124.66202687636141 124.6768284554984 124.74304596073736 124.86617787114122 + 10.804157913727833 11.96542175928241 13.039563153665465 14.03146728243499 14.949582956790813 15.803922539483711 16.6057238672967 17.36709215736208 18.100630855598418 18.819070789523092 19.534907093794928 20.260053164460494 21.005520363078055 21.781131347462125 22.59527378037587 23.45470002093855 24.36445612016616 25.327903960324992 26.346505929101244 27.419784696376876 28.545360283895395 29.719032267654566 30.934902120856737 32.18455885457705 33.45206883631469 34.719860008142795 35.97211503453402 37.19474238033735 38.37529801622384 39.50287809336684 40.56798899914524 41.56240104237382 42.478991657187784 43.31158350255066 44.05478222057522 44.703817959101706 45.25442275686992 45.70603335019975 46.06484777458498 46.33790946219166 46.53227509361562 46.654967736339295 46.71295341890162 46.713133542628064 46.66234749371583 46.56738133691765 46.43497964925928 46.271858471769946 46.08471808626556 45.88025491482169 45.66517232986018 45.446190578242685 45.23005637738266 45.02355303865812 44.833512207435085 44.666828465561 44.530478099854484 44.43154327155916 44.37724259506481 44.3749687145197 44.43233281797183 44.55721511446909 44.75781908636779 45.04272578718708 45.420942560661686 45.9019382924807 46.49565466456275 47.21247986442246 48.06316782159872 49.0586823224644 50.20995328470999 51.52762014164983 53.021082451749464 54.68979482996853 56.52225283939291 58.503061802850816 60.61276923647604 62.82744832881139 65.1184119920383 67.45207842371268 69.79000452948965 72.0890983860642 74.30216737952563 76.39284162295546 78.35173389372925 80.177430417367 81.87389850259133 83.4501571119014 84.91979497588434 86.30035108993046 87.6125761523953 88.87959658229065 90.12600513927596 91.37690383859967 92.6569258191631 93.98926312195391 95.39472702877434 96.89086677288323 98.48976325209138 100.18215778125762 101.94557482111196 103.75701487744112 105.5935629192015 107.43272385290848 109.25270623885955 111.03264891332962 112.75278735510246 114.39455892144288 115.9414746675556 117.38559455309222 118.7243165253411 119.95651240097187 121.08222103051605 122.1024167053157 123.01882149087695 123.83375706703566 124.55003124111471 125.17085422484601 125.69977991502273 126.14066770021752 126.49766066271026 126.77529120790616 126.9792138464719 127.11571769217302 127.19129730400695 127.21259799918005 127.18636659174298 127.11940570788174 127.01853187061218 126.89053774927392 126.74215910356494 126.5800470079979 126.41074591779915 126.24067803503559 126.07613426283142 125.92327180781143 125.7881182193304 125.67658135046084 125.59446439874974 125.54748483810624 125.54129568406164 125.58150713284542 125.67370616202982 125.8234677775875 + 11.62077976354422 12.715345161180192 13.724817653642067 14.655910579709566 15.517232663887146 16.318869734905512 17.07206190267126 17.788860799161426 18.481775214004916 19.16341393349782 19.84613478687706 20.5417087919324 21.261007865846423 22.01372383531364 22.808125466997602 23.650858983895628 24.546796085810755 25.498931912700467 26.508334966195772 27.57424728949897 28.69420346002578 29.863942874658747 31.07750585411116 32.325846999220396 33.59216168217058 34.85891230730356 36.11028821492584 37.33217295518272 38.51207455735937 39.63902631644726 40.70346418141094 41.697086748562015 42.61270359086712 43.44407722946457 44.18576352487115 44.83295468695888 45.38135728004904 45.83040898492074 46.18634841387421 46.4562724077117 46.647297163120186 46.76650850530424 46.820936264875854 46.81754502731196 46.76323548736225 46.66485217688396 46.52919453745905 46.363029257598065 46.17310255196661 45.96615167632696 45.748915483079706 45.5281442526458 45.31060939860994 45.10311394263179 44.91250488263455 44.74568872066831 44.609651454176415 44.51148423951774 44.458415678515756 44.457851223638336 44.517419509985686 44.645024467819624 44.848900815280096 45.13766894848342 45.52038331223518 46.006566033104114 46.60621492005188 47.32978591758586 48.18823930976369 49.192822170061554 50.354709928083004 51.68459617120469 53.191761649844565 54.87539140195555 56.72354406240116 58.720251520343204 60.84534772991066 63.07405246970717 65.37669167695307 67.71857515697273 70.06004753142422 72.3567227576414 74.56007812926639 76.63318439777414 78.56702726716156 80.36076265458557 82.019099460762 83.5519457397703 84.97389940317412 86.3035995936515 87.56295861621084 88.77629733557887 89.96940918430919 91.16857936470716 92.39958649359546 93.68671389071964 95.05179703516687 96.51333251482016 98.08433955800389 99.75598772852206 101.50522788310268 103.30845934647836 105.14220985713885 106.98348525984497 108.81006430053256 110.6007328422595 112.33545418732568 113.99547467946199 115.56418281382261 117.03350134664952 118.40069876694943 119.66454545607647 120.82498848082858 121.88290570745818 122.8399077781719 123.69818293176965 124.46037923153733 125.12951873082251 125.70893833004176 126.20225245196987 126.61333310336951 126.94630334235886 127.20554059598383 127.39569381148205 127.52221407425982 127.5916644861765 127.61084776776133 127.58666870622793 127.52608567741268 127.43606640010914 127.32354848091573 127.19540537358185 127.05841836332544 126.91925509362704 126.78445498626554 126.66042167451873 126.55342228602122 126.4695930868469 126.41495064040123 126.39540724750631 126.41678901524863 126.48485444199748 126.6053108868339 126.78382229174335 + 12.371036735922775 13.398161009870593 14.344008774174185 15.215619516359464 16.02170310438179 16.772360884871148 17.47877887911924 18.152901029349792 18.80709021157935 19.453785282894977 20.105162713442155 20.772811339864255 21.467428456301537 22.19854483643159 22.974285376040086 23.801170895023464 24.683965287404753 25.62557071424374 26.626971960106737 27.687229485198632 28.80351916855041 29.971216594774642 31.18411215795399 32.43234218040944 33.69845914754622 34.96501569260168 36.21624763620557 37.43804803938465 38.61790594613464 39.74481535317422 40.809160153759635 41.80258079892394 42.71782822960249 43.54861029276676 44.28943540823463 44.9354577517919 45.48235657114084 45.92956637873023 46.28335963293761 46.55087994222732 46.73929697185434 46.85575390622993 46.90733957412366 46.90107741362094 46.84392541194873 46.742782701240785 46.60449971317593 46.43588976699445 46.24374074658381 46.03482615984759 45.815915401789646 45.593783484550315 45.375220865324614 45.167044299324274 44.97610986363555 44.80932942517791 44.673691841550266 44.57629006147306 44.52435500177571 44.52529658770176 44.5867516188312 44.71663713074726 44.9232066315031 45.21510497464997 45.60143439844311 46.09191502532751 46.69682768447308 47.42691131680948 48.29326040219064 49.307141077585726 50.479700230080674 51.82153790405786 53.341752932094835 55.03920867979483 56.90149204564128 58.912038390930086 61.04996241864188 63.289648916628465 65.6004862990033 67.94676330165146 70.28774384510092 72.57792913959709 74.76770513162502 76.8198609721429 78.72589951613685 80.48564281026235 82.10461022480649 83.59363561615487 84.9683270488271 86.2483867657728 87.45681284540997 88.61900689566866 89.7618141585277 90.91252352954815 92.09785527724829 93.34296375910613 94.67048129035712 96.0996276683535 97.64420091327817 99.29591441334482 101.03114748879084 102.82568632898574 104.65550251023768 106.4971178183934 108.3279105339804 110.12635708565634 111.87220557774818 113.5465804379312 115.13282871455753 116.62283846074429 118.01385793974106 119.30466031630269 120.49519763775045 121.58633897639366 122.57966101219452 123.47728536115044 124.28175651268354 124.99595424064192 125.62303465026183 126.16639449471892 126.6296539431641 127.01665353714262 127.33146158838102 127.57838872381504 127.76200666649143 127.8871686594889 127.95927642614859 127.9850259985451 127.97150333037865 127.92584361079936 127.85518462017735 127.76662568613436 127.66719287686125 127.56381100148145 127.46328282402482 127.37227566402066 127.2973152624247 127.24478644645512 127.22093973881897 127.23190262947503 127.28369375935773 127.38223774611198 127.53337779495303 127.74287914476285 + 13.049025346615705 14.01012508654042 14.894203759605098 15.708437389872275 16.461572392807064 17.16366280406562 17.82578021488711 18.45970364042457 19.077596439361063 19.691678027408113 20.313898495237254 20.955624323239633 21.627343167005993 22.338395170232168 23.096737462937888 23.908747453614847 24.779069267567817 25.710506273399783 26.703961135339576 27.758423294765056 28.871002284351817 30.037003874879428 31.25003017308279 32.49901188443372 33.76582046507419 35.03295222535144 36.28470302065193 37.50701102615093 38.687376465303956 39.81477880709345 40.87956946135193 41.873345441845345 42.788809355176916 43.619620813674686 44.360244003201906 45.005795710664856 45.55192662466228 45.998063873908066 46.35050570034194 46.616434253415534 46.8030649394442 46.917591159486655 46.96715415359984 46.95883008065501 46.89962840592246 46.79649721629374 46.65633231674941 46.485987950196936 46.29228778216217 46.08203544590277 45.86202448463704 45.63904797722054 45.41990850316965 45.21142939461418 45.02046843040674 44.85393523768766 44.71881365882726 44.62219019179002 44.57128929063887 44.57351578867589 44.63650400273395 44.76821001747888 44.97706391489408 45.27194493177561 45.66220316851574 46.15768444073646 46.76872517520402 47.50610273933387 48.3809232169398 49.404424973062 50.587672432830836 51.94111038938299 53.47358823147308 55.18359189965457 57.05820145688219 59.08023543409747 61.22809008487228 63.47534442931759 65.79051446141834 68.13697609653073 70.47307063304054 72.75240011115463 74.92453695642357 76.95230999447466 78.8278973552093 80.55188926075536 82.13068606041486 83.57608164748893 84.90468858919134 86.13722446995564 87.29768265761504 88.41241345321308 89.5091433305039 90.61596071762906 91.76029658164677 92.96792705572096 94.26202364840363 95.66227437329182 97.18305541528522 98.81672797644346 100.539098832161 102.32531746603863 104.15079000981709 105.99156053055336 107.82462959376315 109.62820350437056 111.38187050337142 113.06670324210684 114.6660927341627 116.17200655380336 117.58179753201705 118.89436191420067 120.10976959762561 121.22898420864443 122.25364090353278 123.18587545172888 124.02819767104394 124.78340230726752 125.45451081971699 126.04473810839761 126.55747888428837 126.99630905749926 127.36499814204107 127.66752921879853 127.9081234486718 128.09126649016443 128.22173446507307 128.30461735350397 128.3454628000493 128.35106632483752 128.32875929875811 128.28586869581127 128.2296719752657 128.16736181201352 128.1060183819313 128.05258942086937 128.01387797116587 127.99653736507722 128.00707257718398 128.05184661100222 128.13709006661367 128.26891145735428 128.45330518847794 128.6961499302341 + 13.651649706993961 14.549111261347655 15.37408220257031 16.133803616308317 16.83698901797064 17.493578498488148 18.114466052174354 18.711206606732492 19.29570929590448 19.87992421117218 20.475530320126673 21.093632413197373 21.744474820241912 22.43717922256828 23.17951318807712 23.97769510524302 24.836240025759334 25.757849595970708 26.74334782107577 27.79166292515312 28.899854107237182 30.063180610076163 31.275142850802077 32.52367596710324 33.79042727117833 35.057970387049274 36.3104831902115 37.53374647204499 38.715110831991716 39.84349272114212 40.90922969768434 41.90389085262801 42.82014156997438 43.65160045896377 44.39269142031796 45.03849516305057 45.58463313422393 46.03052076446296 46.38247273727396 46.64769998530933 46.83345429512035 46.94697043430287 46.99543371074954 46.985965089831396 46.92561791373091 46.82138180811091 46.68019059953131 46.508932066012534 46.31445815502646 46.103594968909725 45.883152367433205 45.659933491013945 45.4407448763145 45.23240812044534 45.0417742444571 44.87574199802372 44.741281315924 44.645471652303975 44.595611051852025 44.59924503587399 44.66418531374573 44.79856393424106 45.010888406800994 45.310092775329174 45.705577847658034 46.20723143796618 46.82541679352753 47.570914364982585 48.454798766898136 49.48822920153945 50.68212783491382 52.046716683416534 53.590522910281976 55.31159639218201 57.19647580550568 59.22734621804282 61.381893556055964 63.6329317700388 65.94818557394169 68.29024719828729 70.61671928314169 72.88054915209531 75.03081079086924 77.03073478664263 78.87334385389431 80.56010255104259 82.09836317239673 83.50091064752003 84.785349513945 85.97335452794509 87.08981010775115 88.16186634203606 89.21794069889032 90.28669485625069 91.39601532573572 92.57202489707215 93.83814957655957 95.2142628521293 96.71507635802277 98.33368425451434 100.04531985288712 101.82446059118837 103.64592713875423 105.48528289021284 107.319165973211 109.12554655518225 110.88390542876711 112.57533325632397 114.18335327224398 115.70013697533088 117.1232807027707 118.45193901642793 119.68642780127469 120.82792377312575 121.87822774417774 122.8395843985889 123.71455076715671 124.50590561833918 125.21659241672953 125.8496891784402 126.40839934404003 126.89605859356274 127.31615327544124 127.67234677096421 127.9685106509391 128.20875790350973 128.3974758367609 128.5393565102476 128.63942275262104 128.70304800417227 128.73604160059836 128.74534598297137 128.73848566138076 128.72293052340837 128.7060511509421 128.69509158293752 128.6971501982398 128.71916827621982 128.76792534714068 128.85003993860167 128.9719737569162 129.14003670456444 129.3603894120892 129.63903570234504 + 14.177634934457773 15.014671082967425 15.78397134655835 16.49276557219144 17.14966129494032 17.76441550981429 18.34767995387978 18.910725737449418 19.465153310912925 20.022594519978966 20.59441403395834 21.19141769447425 21.823575305878165 22.49976506937734 23.22754626125715 24.01296589647 24.86040403947751 25.772461171930335 26.749889656447618 27.791569907007535 28.894530450613754 30.05400970211393 31.26338319081538 32.50963356169745 33.77439266304145 35.040424606341425 36.29202194145057 37.51501432723771 38.69674068034906 39.82598910207584 40.892909349094715 41.88890287733544 42.8064960060089 43.63922120161566 44.38146318177964 45.02826846741692 45.575229089160196 46.02174437168724 46.374134902694266 46.63962920002685 46.82550452056236 46.939026516103475 46.98741452873225 46.97782469235255 46.91734489147227 46.81299715404603 46.67174429035741 46.50049859273086 46.30613122943943 46.095481638447325 45.87536678058165 45.65259056583762 45.43395438247367 45.226287984866126 45.036491721196164 44.871539634725835 44.73850408301459 44.644588682034836 44.59716748944091 44.60383033305237 44.67243337045302 44.81115288105386 45.02853891809812 45.33356376519261 45.73565813744257 46.24472573756286 46.87112412950391 47.62559694532469 48.519139227528854 49.56277427481389 50.76721676379596 52.14239323541813 53.69643144925656 55.42688468216013 57.31971723569178 59.356468748921834 61.514131132676034 63.76480604781129 66.07552429783061 68.40824406567714 70.72003805166875 72.96347215571114 75.08747161696463 77.0560673485009 78.86330353822657 80.51162753415561 82.0094135985985 83.37046459660876 84.61335738513381 85.76065577239154 86.83801842760609 87.87323139501821 88.89519586236582 89.93290158584786 91.01441498612375 92.16590857450596 93.41075527237003 94.7687076184607 96.25452924942377 97.86210492370549 99.56609789054285 101.34026676323242 103.15881600038234 104.99681572490881 106.83054871145548 108.63777657988403 110.39792078513536 112.0921578033522 113.70423236483549 115.2266523575848 116.65740863393835 117.99606245747492 119.243317652032 120.40069664661178 121.47028708503214 122.45455090084918 123.35618709082468 124.17803943397018 124.92304089139509 125.59418720248524 126.19453311386968 126.72720562173167 127.19542949193071 127.60256109447505 127.95212722503047 128.2478660844463 128.493767962169 128.69411344581627 128.8535071871579 128.97690542487368 129.06963562428683 129.13740676583427 129.18635546576485 129.22360374769914 129.25680959938524 129.29352803231708 129.34116978253144 129.40698266917016 129.49804016128908 129.62123569340613 129.783280654668 129.99070328097935 130.24984489054233 130.56684557225057 + 14.627436797119 15.408042700095034 16.125831185810004 16.78794111326571 17.402798756562277 17.979907809054875 18.529613066310482 19.062842975646046 19.590836512731222 20.124860680470153 20.675925534906497 21.25450399036749 21.870263719388543 22.531818235314105 23.246503735006247 24.020187507960703 24.857112720874 25.759783208155415 26.7288905916529 27.763284674627275 28.859986665608535 30.01424344638748 31.21927473712623 32.46122123166407 33.72187619470477 34.984255575231685 36.23282206233632 37.45350346235832 38.63367532660428 39.76211166121281 40.82890807787876 41.825382078973654 42.74395532776897 43.57802275917205 44.32181327319275 44.9702465649914 45.518819514716846 45.96686846012136 46.32068405455763 46.58748809643203 46.77456629281062 46.889201827599244 46.93863644584176 46.93005019054373 46.870554585938216 46.76719473232341 46.62695601928136 46.45677407172976 46.26354603264186 46.05414243495069 45.83541940937824 45.61423143194063 45.397445177059375 45.191955310539484 45.00470322488933 44.842699774833385 44.71305299520359 44.62300155410517 44.57995428567283 44.59153553158368 44.66563517151592 44.81046111449908 45.03459063386933 45.34701524231579 45.757171811952844 46.27495034878863 46.91066624406884 47.674981972390526 48.57876012794393 49.632826440363004 50.847618060111735 52.23268903437367 53.79568723351604 55.533608107704474 57.43181134199522 59.471184954572976 61.628052237598055 63.8738679505938 66.17508256964324 68.49318962688815 70.78496370376276 73.00288867109342 75.09612191565563 77.02992363454725 78.79953948349544 80.40850821286473 81.8662935232855 83.1877380513599 84.3923639900399 85.50354673860649 86.54759132917948 87.5527433357139 88.5481665017554 89.56291847279202 90.62495391799395 91.76018118036448 92.99159467402096 94.3385008707861 95.81539527694956 97.41697332436766 99.11734116069186 100.88948118745957 102.7069405944319 104.54427394853154 106.37740704041741 108.18391313290628 109.9431967027078 111.63658403378918 113.24812949502521 114.77081522812593 116.20318696264808 117.5453717622323 118.7986150702928 119.96493004965895 121.04682506183475 122.0471003079189 122.96870384941352 123.81463720343444 124.58790123517211 125.29147394644208 125.92831281039304 126.50137539285937 127.01365303163621 127.46821325258405 127.8682473535124 128.2171201764958 128.51841952922516 128.77600303186853 128.99404039044612 129.17704926559537 129.32992304923664 129.45794900827445 129.56681542426205 129.66260656341916 129.75181037697152 129.84170555852447 129.94001144789559 130.05429974245524 130.19195613015552 130.36016735081043 130.56591215517946 130.8159532148279 131.11682618327458 131.47481771881118 + 15.003221862094547 15.732107090373383 16.403188190116538 17.023431423384398 17.601005925772775 18.14509242099894 18.665665613136582 19.173254828894326 19.678687876025542 20.19282398507217 20.72628238543298 21.289173494538307 21.890839846590247 22.53961374584973 23.242598204621867 24.00547703764418 24.83235906466353 25.725660264135676 26.686026473729186 27.712297903532708 28.801515373986902 29.94896687081327 31.14768540514863 32.383135885358534 33.6374176538874 34.89385779134966 36.13714301452649 37.35334744846041 38.52992558044278 39.655673759191224 40.720664185145274 41.71615573828803 42.63448621935513 43.46895066028607 44.21367032131991 44.863456874505815 45.413705171860656 45.86365747476656 46.21952332052727 46.488466733936846 46.67773714350159 46.79459977677515 46.84629329984385 46.840006871218606 46.782870585591134 46.68195476866228 46.54427480446029 46.376799178843186 46.1864592473582 45.98015991437865 45.76479096726047 45.54723925978652 45.33440229115848 45.13320398060852 44.95061358692313 44.79366875438311 44.6695035643637 44.58538221370369 44.548738502892526 44.567220673939595 44.648740264765905 44.80152252170633 45.034154516097104 45.35562543311297 45.77535153752337 46.3031760787383 46.94933189555206 47.72435175243663 48.638908532455936 49.70356439147636 50.92840492561139 52.32253141649589 53.89302936923343 55.63627590479059 57.53699993574224 59.575438637862526 61.72728206779196 63.96341650800497 66.24984166474722 68.54777447041606 70.81394414176579 73.00107460063332 75.05896336743123 76.95455134585342 78.68446351443066 80.2534363837386 81.67208621229626 82.95631113119404 84.12654416039652 85.20688623019605 86.22415147595292 87.20685867136982 88.18420267509542 89.1850382513676 90.23690574415922 91.36512407795676 92.59197174205482 93.93597115945641 95.41099980311564 97.01253500457044 98.71415442762893 100.48799760863824 102.30690395694543 104.14488081931827 105.97748637075001 107.78211742678297 109.53819664484787 111.22725834898027 112.83375113863076 114.35127152202605 115.77908650029023 117.11805568924015 118.37012885795667 119.53796503096295 120.62463803828697 121.63341865203137 122.56762247367925 123.43051264930702 124.22524704047393 124.95486043982613 125.62227359827456 126.23032206939371 126.78179906109449 127.27950753806142 127.72631769905463 128.12522664822015 128.47941759879873 128.79231631657524 129.06764276380318 129.30945608034577 129.52219117436724 129.71068532225792 129.8801933217824 130.03638992081937 130.1853584656133 130.3335649791642 130.48782455510025 130.65548833962666 130.84424010452605 131.0615769036408 131.31476126337094 131.61080522819032 131.95645134824395 132.35814213361232 + 15.308793153400979 15.991291536493316 16.62101840570748 17.20468571089698 17.75013069710576 18.266143655419974 18.762269173991342 19.248584887042206 19.735462228938022 20.233314665303816 20.7523396273393 21.3022608787547 21.89207827126291 22.529831783377475 23.222386392144184 23.97524371598922 24.792385519115616 25.676153124303394 26.62716559019767 27.644278225419 28.724581692198814 29.86344065401142 31.053678860621527 32.280291762359695 33.52579891120807 34.77389488204876 36.00954192700669 37.21900682333669 38.389863976941534 39.510967679170264 40.57239704693797 41.5653776367249 42.482184019427834 43.31602775346876 44.06093522555465 44.71161977789304 45.26338139663827 45.71536534464912 46.073680163195235 46.34541028058114 46.53774735967145 46.65791770529347 46.71313684815272 46.710583646283006 46.65738798463684 46.56062759649329 46.42733072369474 46.26448231831195 46.07903230192889 45.877905069053824 45.66800996950519 45.456252944846185 45.24954983264585 45.054842089273464 44.879115810564606 44.729424937983765 44.612919409225434 44.53687872644079 44.50875095019149 44.536196459885694 44.62713492993972 44.78979283619272 45.032747415013546 45.36496134085724 45.79580046863489 46.33502481823288 46.9927405861669 47.779298395043774 48.70512029319513 49.78043527027256 51.0149003539288 52.41708181063529 53.99341984931797 55.739615091624096 57.63974507992146 59.67340516016877 61.815698405793654 64.03703438953116 66.30310710376736 68.57506211565631 70.80985429411979 72.96078832008428 74.97873220762789 76.83277160653327 78.52108069499465 80.04969519188334 81.43044072586217 82.6802794112267 83.8205128870199 84.87587380953713 85.8735407085697 86.84211230995324 87.810576867638 88.80730981832873 89.85912935448654 90.99043458650995 92.22244519359917 93.57255526902196 95.05365436936216 96.66191196482055 98.37042824522537 100.15042580942824 101.97397762538407 103.81450345369282 105.6471742196451 107.44921321980922 109.20008786961304 110.88159099997023 112.47864387890455 113.98559617724598 115.40260473361846 116.73143248663209 117.9749019676496 119.13648042237459 120.21996035582102 121.22922477571169 122.16808522976893 123.04018055389754 123.84892479980337 124.59749384254175 125.28884146468273 125.92573709848276 126.51081874804677 127.0466558193715 127.53581760511015 127.98094398313282 128.38481549944044 128.7504204411456 129.08101679993572 129.38018722174337 129.6518851752049 129.90047068672277 130.13073411355515 130.3479065801043 130.5576558996745 130.76606704987387 130.97960656356653 131.20507053343064 131.44951627659862 131.72024224074 132.02473830068914 132.37027928910572 132.763825833264 133.211984334978 + 15.54946246348241 16.19142228384209 16.785582603802695 17.33832109861069 17.8570712774254 18.35016942239305 18.826674671452814 19.296165713823655 19.768518185044442 20.25366787399455 20.761365674540745 21.30093078790019 21.881008981218073 22.509342720692974 23.19255972587375 23.93598595128138 24.74348822042728 25.61735075425834 26.55818869797217 27.564900509703403 28.634659787624443 29.762945834886548 30.9423670204214 32.15767817732236 33.39190619370912 34.62916579758749 35.85474319127743 37.055141651315566 38.21809458243665 39.33254846262943 40.38861879291155 41.37752268050424 42.291492042155475 43.123671630278594 43.868006182542224 44.519121008072496 45.0722290632244 45.526376139892825 45.887549835472925 46.162732918631015 46.35903744114955 46.483629423755545 46.54368053579427 46.54633932074228 46.498716184624065 46.407877756514715 46.28084738924848 46.12460953062266 45.94611649216504 45.75229679927325 45.55006484202662 45.346331972274484 45.148019515165394 44.96207438124888 44.795488072077184 44.65531985624874 44.5487247383822 44.48298653192446 44.46555585766454 44.50409220290372 44.60650827255587 44.78101372763804 45.03615402878543 45.3808384803995 45.82434971251165 46.37632476223801 47.04669565889345 47.84557502675867 48.78306976547759 49.86900343780165 51.112525695905724 52.521585039460604 54.10189473284225 55.84842483648147 57.74458805858624 59.76935645928809 61.897304083358 64.09846906519451 66.33839950947474 68.5783902008743 70.77590779056422 72.88519240639737 74.85863006410793 76.66791600811821 78.31292934835997 79.8010987071788 81.14550751167985 82.3641819423987 83.47924219698602 84.51595205142375 85.50170435247014 86.46498082477434 87.43432340798915 88.43735135137041 89.49985369729231 90.64498089788717 91.89255253866352 93.25849096726691 94.75432044015923 96.37673931973515 98.09845087894854 99.88968172116657 101.72167316725549 103.56720938839543 105.4010457888716 107.20022563522663 108.94427786208792 110.61529454534022 112.19873921525604 113.68984830473381 115.08983491400397 116.40153595260637 117.62881704729969 118.77611982684047 119.84811417433387 120.84944390542353 121.78455291175563 122.65757850972263 123.47229926267283 124.23212562875906 124.94012318829239 125.59905972785488 126.21146895314851 126.77972496345205 127.30612278409941 127.79296119194754 128.24262478355524 128.65766274915202 129.04086216361122 129.39531383169154 129.72446887306992 130.03218434415896 130.32275630286534 130.60093885554528 130.87194789981203 131.14144850157146 131.41552512163815 131.70063423319644 132.00353923971176 132.33122800591963 132.6908137448511 133.0894204211712 133.5340660558436 134.0315092140449 + 15.73187249111195 16.339530255089734 16.904217984356862 17.43190276923221 17.929547219057284 18.404975549610892 18.866712280873863 19.323796535421323 19.78557564583931 20.261482862127547 20.76080483145849 21.292445160532914 21.864690736729838 22.48498756447291 23.15973266832298 23.89408813849262 24.69182267430352 25.555185053612053 26.484812866787742 27.479678653735263 28.537074326359473 29.65263350223474 30.818766450741226 32.02022060103875 33.24059508521739 34.46447308516915 35.67750946922669 36.86648481759814 38.01932820653749 39.12511073485452 40.17401249200735 41.15726623122326 42.067081425561284 42.896552661273965 43.63955648221341 44.29064087060896 44.84494009825647 45.30139841381611 45.66586260156297 45.94519164653731 46.14639597219052 46.276559683493524 46.34278951360805 46.352183273536326 46.31181218665015 46.22871282352698 46.109885470018334 45.9622966938758 45.792884649603806 45.608566299506876 45.41624624742398 45.22282729068446 45.03522309967324 44.86037363166758 44.70526396971039 44.5769472371316 44.48257205927688 44.42941470894958 44.42491556282165 44.47671879484883 44.592713323945866 44.78107190536961 45.0502839031559 45.409175707734 45.86691098241121 46.432960961753466 47.11703292628983 47.9289428012339 48.87841565122312 49.974795768635694 51.22664620222455 52.64121609084576 54.22341330242843 55.9674292921078 57.8560072431417 59.867525296174975 61.97609887055135 64.1515134240277 66.3593447744021 68.56127065996199 70.71556716004778 72.77777334114322 74.70225224456193 76.46376060005964 78.06401789479567 79.51192862906322 80.82187192302067 82.01292850528274 83.10797908746413 84.1327121662762 85.11458164557753 86.08175482369165 87.06209462719585 88.08218243021909 89.16643607553048 90.33638239502473 91.61006633945945 93.00159444874774 94.52079151200188 96.1647179011956 97.90591230068952 99.71364574024392 101.55835363662608 103.41216534366413 105.2493373860184 107.04658576821623 108.78331753721667 110.44176641102375 112.00791201966608 113.47814372350413 114.85504986321428 116.14271372250558 117.34621195364528 118.47112660312033 119.52316565587148 120.50788624605245 121.43050656042794 122.29579200996827 123.10800172327417 123.87088252909616 124.5876990849816 125.26129045897626 125.89414511320004 126.48848775190973 127.0463728070476 127.56978040496008 128.0607114845216 128.52127933878683 128.95379526507577 129.36084627642506 129.7453629975504 130.11067598537713 130.46055881635792 130.79925640062658 131.13149713791623 131.46248773473178 131.79788976149158 132.14377734128024 132.50657572358563 132.89298090003507 133.30986085728023 133.76413952766248 134.2626649835356 134.81206060833165 + 15.863773901295652 16.44361550303998 16.985092616882714 17.493690959107163 17.97584145696012 18.438805239527184 18.89053053575333 19.339484045241257 19.79446015584894 20.264372517459492 20.75803341854097 21.283927108224155 21.849983632418148 22.46335989315699 23.130234495381323 23.855622527666625 24.643215758189694 25.49525285011765 26.41242315561063 27.393806484766056 28.43685001864059 29.537383049432712 30.687661182902616 31.872647434435088 33.07656047998815 34.28449537162638 35.48251616906623 36.657718062328534 37.79825964522665 38.89336687928535 39.933311037324486 40.90936352414487 41.8137309374968 42.63947406456012 43.38041472540694 44.03103450144365 44.58639766923191 45.045345213409185 45.413563469008864 45.697765641157915 45.90483853222247 46.041762630019484 46.11555851003521 46.13325263066683 46.10185709328004 46.02835920692326 45.91971776715105 45.78286385516686 45.62470471018845 45.45212984327884 45.27201905867057 45.09125243737809 44.91672262084118 44.75534990757593 44.61410073679931 44.500010069258636 44.4202079735507 44.381950370650635 44.39265336426098 44.45992987501519 44.59162639042432 44.79585653240723 45.08102682988631 45.45584857407256 45.92932794910293 46.51072480503813 47.20946852469513 48.035017499873184 48.996646866505394 50.10314746499249 51.36241762828924 52.78092851797872 54.362709406925944 56.10113311906408 57.97827905073811 59.97197284899903 62.055954776884576 64.19988964673948 66.36956708680134 68.52729213155833 70.63245544281928 72.6422616922384 74.51351553877507 76.2244584719087 77.77875982611879 79.18686921517349 80.4644866457169 81.63172695641947 82.71219253921238 83.73194749622445 84.71834641021633 85.69895269194419 86.70054143074634 87.74820546229151 88.86458654023801 90.0692445640845 91.3781689362864 92.8034278599807 94.35294457363256 96.02398025088272 97.78929151330765 99.61735482212987 101.47797369179548 103.34279640373994 105.18573176088614 106.98326070532458 108.71464618562229 110.36204785217473 111.91144730462453 113.35950296768023 114.70957733791269 115.96720624169066 117.13951128614013 118.23399216435028 119.25759207660006 120.21693447101687 121.11815640997352 121.9667854582888 122.76768325725037 123.52504175709197 124.24241963667835 124.922808198487 125.5687178040285 126.18227757460879 126.76534253737894 127.3196036014845 127.84669669296753 128.34830807559075 128.8262733719471 129.28266811977178 129.71988790100883 130.1407162132235 130.54837835642542 130.94657971743933 131.33952697378808 131.73193092577844 132.12898990717696 132.53635302309524 132.96006281543794 133.4064773557068 133.88217220495827 134.3938231533428 134.94807114727297 135.55130486701623 + 15.953764140058478 16.512377678955275 17.03693024368338 17.53236267609351 18.00452137928527 18.46006175470428 18.90632268581483 19.351174266393162 19.80284185883317 20.2697107511887 20.76011666891428 21.282128145029812 21.84332723102965 22.450595224796214 23.109909999656622 23.8261611524823 24.602988572416123 25.442649199854664 26.34591574049882 27.31200997046288 28.338572068091338 29.421662929217355 30.55347420665381 31.71936460740534 32.904213526741486 34.09366602551606 35.274231317813964 36.43335266066761 37.55944885561385 38.6419284690163 39.67117865701045 40.638531128200725 41.53620828929761 42.35725300172268 43.095445645804865 43.74521236657158 44.301556316596 44.76321380051059 45.13569146050886 45.425535046809344 45.639485974047794 45.78439954793627 45.86718902602471 45.89478889870085 45.87413217356161 45.81213764281645 45.715704129359025 45.59170956295708 45.44701345232312 45.28846190712652 45.12289483767629 44.95715532588565 44.79810142137445 44.65262076884712 44.52764851080101 44.43018882340182 44.3673402207746 44.346324390425906 44.374517786514865 44.45948449632616 44.60900800011266 44.8311183624608 45.134110129122426 45.52654477147408 46.01722994845174 46.6151661849465 47.329449855622656 48.16911969315225 49.14293251120608 50.25905257049466 51.52463817162554 52.945308809232145 54.52414937337487 56.25368408848857 58.11534634733656 60.08646391820893 62.14049888353199 64.24714024874051 66.37258847031752 68.48002794064202 70.53027219392187 72.48255535106308 74.29658764571313 75.95447260357541 77.46190829024157 78.83099221369699 80.07890211576124 81.22686525450638 82.2990742398133 83.32157920006517 84.32119470515296 85.32446431187721 86.35671888866756 87.44125665509162 88.59866366447352 89.84628383767664 91.1978382152425 92.66318441907629 94.24819995500027 95.95010238922215 97.74232065227312 99.5927376716749 101.47073400289561 103.34768398147114 105.19734359392977 106.99613243508296 108.72331480380397 110.36108863007198 111.89551235592062 113.32351710056471 114.64881935043093 115.87729191504587 117.01641009782634 118.0748174795017 119.06196483865183 119.98724434992711 120.8581615981704 121.68114196657469 122.46177516182064 123.20481222272322 123.91420722466714 124.5931919218824 125.24437346483705 125.86984712385183 126.4713175429285 127.05022338472415 127.60786129078818 128.1455058816921 128.66452309110798 129.16647451030042 129.6532106644757 130.12695129932118 130.59035086964258 131.04654752967656 131.49919405493637 131.95246929780393 132.4110690046047 132.8801751047486 133.36540292168843 133.87272614645323 134.40837985068848 134.97874228890933 135.5901108365422 136.24813983995512 + 16.0109963177044 16.554921114607012 17.068714225333007 17.556717001784758 18.024147774496694 18.477023065602662 18.922048848243303 19.36648374199904 19.817976987666086 20.284385270627205 20.77357349299856 21.293205387217043 21.850530387852075 22.452173418288062 23.10393420252559 23.81060239086052 24.575794214739425 25.40181559406549 26.289555651349037 27.238413489140562 28.246259911645783 29.309422803287454 30.420149650193707 31.56433992332114 32.72756742521655 33.89605982715952 35.05680264619361 36.19761656921713 37.30720790097174 38.37519282328119 39.392096956709004 40.34933239747073 41.2391549560527 42.054604752981305 42.789433643743095 43.43802316911412 43.995324254516724 44.45996736942831 44.83726077266819 45.13356159992829 45.35544453955565 45.509618493146746 45.60286850917552 45.642016705519225 45.63389719301164 45.58534113205446 45.50316901167306 45.3941880506247 45.26519329792767 45.12297156784907 44.97430779103057 44.82599370425977 44.68483903759477 44.557685486427836 44.451423771457435 44.373013982452235 44.32950916126527 44.32808169416687 44.376051542227565 44.48091463244355 44.65036885688827 44.8923340838336 45.21496138329741 45.626625330342044 46.13589180639543 46.751452221387794 47.482013595429 48.336132556748666 49.32198014451025 50.44702348797516 51.717610131429275 53.13844117974418 54.71160097148954 56.42874723976586 58.27069871729302 60.21435405945193 62.23300786355931 64.29653023426009 66.37173850684553 68.42295299963506 70.41271685819945 72.30264840300697 74.05583331429212 75.65868012389963 77.11919934666135 78.45129488278063 79.67342940956982 80.80758701356689 81.87817512784605 82.91091654929512 83.93177902700086 84.96598429874714 86.03713089850939 87.16645604620564 88.37225201354464 89.66944213251688 91.06931168948466 92.57937993183754 94.20339187255163 95.93821418452468 97.75842794925539 99.63156622604183 101.52682209063515 103.41552662049638 105.27149860394013 107.07128792922886 108.79432079478526 110.4229578883915 111.94341774844469 113.35292545405719 114.65552283609175 115.85736037768933 116.9661633502714 117.99081824196809 118.94103010773256 119.8270363567211 120.65936457548224 121.44781517572157 122.19925917459746 122.91912370249366 123.61186439517567 124.28104780675531 124.92945984597037 125.55923133182986 126.17197348387003 126.7689176248678 127.35105455464071 127.91926995833819 128.47447286969847 129.01771466162896 129.55029633269672 130.0738620491224 130.59047703442593 131.1026880129383 131.6135645403882 132.12671971712928 132.64630899124518 133.17700602647548 133.7239549347263 134.29269855185711 134.889082862392 135.51905770247268 136.18814350956114 136.9013183716779 + 16.044867639801666 16.580444111101414 17.08938022999784 17.575373488092037 18.042980980224467 18.49755751624565 18.94516266242655 19.392438353730626 19.846459724625653 20.314563068728674 20.80415590549396 21.322514962147824 21.876578441279296 22.472739222874573 23.116645641778238 23.8130161981931 24.565474022281556 25.37640615674664 26.246851784204644 27.17642245600668 28.163256226466117 29.20398389386385 30.291047429042663 31.410998883053118 32.55013378592796 33.69528935507304 34.83395360923255 35.954349790564926 37.04549545697096 38.09723652708226 39.100257384919026 40.04606886288375 40.92697651242481 41.736032042403544 42.46697116551486 43.11414136041947 43.67245009972209 44.140421082429405 44.52314620411127 44.82677353137574 45.05769031288048 45.222438368171325 45.327654116481895 45.380027308660246 45.3862737171429 45.35311807804859 45.287284474053294 45.195492107398834 45.0844550500403 44.96088508194729 44.83149714578539 44.703017260304286 44.582192946053134 44.475806322565894 44.390690030053534 44.3337460028276 44.31196686676033 44.33245933949183 44.402468471480354 44.52940087285508 44.72084422457151 44.9845793785304 45.328580225052015 45.7609952737464 46.290103595659374 46.924236467395886 47.671654817625345 48.54037150051907 49.53790663085875 50.67096385962618 51.945015722734546 53.363787264605335 54.92831792365398 56.62939505791293 58.44726898936245 60.3584929087819 62.33631827663268 64.35096421777989 66.37007781870342 68.35937249439009 70.28342379555146 72.10671020931268 73.7964432686937 75.34370308163031 76.75867006678853 78.05679375413285 79.25757119699207 80.38347482436596 81.45884202087255 82.50877753400414 83.55811568218844 84.6304829007362 85.74749283076304 86.92809643372073 88.18809907367105 89.53984576525431 90.9920654669416 92.54985602377099 94.21478370862302 95.98306024498783 97.83083133074251 99.7255820120565 101.6365707336899 103.53533119407813 105.39597412744678 107.19538359616017 108.91331939205274 110.53243946534505 112.0392139446904 113.43118607972012 114.71269414426466 115.89010513053177 116.97130956452324 117.96533663826645 118.88203700805988 119.73181724344256 120.52541333021256 121.27369354212388 121.98745044194055 122.67542628528486 123.34289037964707 123.99384302629363 124.63133691120471 125.25761489884184 125.87425951726276 126.4823477791775 127.08260627622573 127.67556249165581 128.26168902391447 128.84153794051363 129.41586283641158 129.9857264046514 130.55259148701776 131.11839370080236 131.6855938681181 132.2572086315607 132.8368178408989 133.42854754905105 134.03702776500816 134.66732447510537 135.32479721885758 136.01459083691287 136.74149370163647 137.50977486098319 + 16.0646903932796 16.59792107139226 17.107507729742597 17.59647345405113 18.068693697835904 18.528849556081294 18.98235101872756 19.43522781133832 19.893991909522494 20.365475517356494 20.856649397923672 21.374427304201404 21.92546285132221 22.51594548077215 23.151402190878365 23.83651145623737 24.574935253376292 25.369174382731575 26.22045136787856 27.12862416772682 28.092132805728806 29.107948078115083 30.1688519540505 31.2621335688486 32.374831143336216 33.49441270496069 34.608889997442034 35.70690965935524 36.7778206382978 37.811717734018416 38.799462005473885 39.73267951431652 40.60374050079149 41.4057215962365 42.13235407647103 42.77796146710889 43.33741630181356 43.809134755533336 44.197975241771765 44.5098571888253 44.75096050420583 44.927639981580285 45.04636365149374 45.113669498885045 45.13613605506428 45.12036332712559 45.07296135631774 45.000544404873 44.90972936544907 44.80713747525458 44.69939880285688 44.5931592618929 44.495090091945706 44.41189982957012 44.35034876641884 44.31726574953713 44.319566913339536 44.36427553611887 44.45854168055063 44.60965960534497 44.82508012706033 45.112414177557135 45.47942276367242 45.93398742345828 46.48405413430174 47.13754252608233 47.90221127059607 48.785469762397256 49.79412580625572 50.93405913973108 52.209811431759476 53.62408512568666 55.17684436038288 56.858018015463024 58.647350262059206 60.52114779277841 62.45275653220191 64.41291810386417 66.37025611735942 68.29219137868294 70.1459819599045 71.89958339030339 73.52470618261489 75.01702895418404 76.3886695127918 77.65639757965783 78.84049094454917 79.96363943187302 81.0498328939218 82.12328421407422 83.20743338149803 84.32407150645237 85.4926146169898 86.72954673721074 88.04804068246588 89.45775384556586 90.96478563009768 92.57177373733607 94.27809881459142 96.07903653476075 97.95260053131662 99.86658440627878 101.79057253553377 103.6965534057408 105.55916460046083 107.35583417235259 109.06683375189601 110.6752603548898 112.16793473072056 113.54274751099793 114.8043081517718 115.95914193381361 117.01522135893961 117.98161744000952 118.86821486575649 119.68547331956677 120.44422155970179 121.15547449107683 121.83026630108786 122.4794948560949 123.11330796612353 123.73774771219992 124.35623418229196 124.97120495140561 125.58428588534001 126.1964607615158 126.80824205236677 127.41983834591383 128.0313147152949 128.6427429538456 129.25433901131765 129.866585249851 130.48033533344986 131.09689971479264 131.71810982355646 132.34635921806228 132.98462015568782 133.63643427849397 134.30587640397735 134.9974779029261 135.71580576489964 136.46518195879926 137.24964046160684 138.0726352523824 + 16.07883754171511 16.615243328341613 17.130588824029186 17.62713427006762 18.10799350773486 18.57712541058786 19.039294945351937 19.499983335332548 19.9651774802181 20.441229304236224 20.934699856930017 21.452169313998365 22.000037664108522 22.58432279718836 23.21046270218391 23.883128256098217 24.606052606566255 25.381882448464996 26.21205561024011 27.096708342764853 28.034614591340898 29.02312233281086 30.05549634162271 31.11982605557898 32.203907128412105 33.29585409665065 34.384218751561406 35.4580877262827 36.50715788924515 37.52178906515005 38.493034459859324 39.4126499251519 40.273083851636585 41.06745001991715 41.78948617625918 42.43350144183069 42.99434153843239 43.47031450954275 43.86602916785897 44.187157785425285 44.43965401036156 44.629666574090564 44.763476191512 44.84745044460984 44.88801241615583 44.891619709564715 44.8647512510899 44.81389992341651 44.74556962917047 44.666275832874746 44.582548983259485 44.500940475573884 44.42803097451984 44.37044097942602 44.334843469386456 44.327978311296604 44.356667841849216 44.42783264038707 44.54850599018971 44.72584488242501 44.96713465656638 45.27978350839447 45.671302156685215 46.14926297974974 46.72123196551135 47.39466593368444 48.17676677585033 49.07428403136755 50.09325711161295 51.23868906661306 52.51414515017448 53.92127180599035 55.45894341073289 57.1162595796794 58.872537394980796 60.703941101316765 62.58388917143895 64.48374112786288 66.37373004608929 68.2237307450142 70.00407199004282 71.68635316004195 73.24698285545273 74.68603625381807 76.01730942265398 77.25865062869951 78.43085825271234 79.55657196491367 80.65916973243067 81.76172108423677 82.88604140472789 84.05188415881835 85.2762983213758 86.57316742912394 87.95293519266922 89.42251113516011 90.98533890698376 92.64160039004663 94.38852103328814 96.2202040633607 98.1166883180367 100.04648054779788 101.97974951325511 103.8891877838298 105.75019232096439 107.54094413451837 109.24240631665785 110.83826067210683 112.31578376078097 113.67324923777612 114.91551950174592 116.04922727792699 117.08235032076426 118.02390536676643 118.8837019160627 119.67213625399316 120.40001137479302 121.07837282941345 121.71835391216418 122.33102609874848 122.92725240576698 123.51748698990619 124.10911585152743 124.70510964525175 125.30721606504154 125.91639437833167 126.53300147904514 127.15697527100401 127.78801126452193 128.42572895195045 129.06982501429547 129.7202107488088 130.37713134411072 131.0412648079013 131.71379850889173 132.39648145766682 133.09165064125742 133.8022299564811 134.5317020317507 135.28387885152134 136.06240394181611 136.87078937241768 137.71221791082218 138.5892193681418 + 16.093659849343062 16.63778874571119 17.163137704288545 17.67123044368296 18.164413553699603 18.645862184435806 19.119556753176266 19.59022907488307 20.063277024727327 20.544648070120424 21.040671818953747 21.557697560689036 22.101906411964272 22.67917876485977 23.294897092075644 23.953757321437966 24.65959543113264 25.415234659434102 26.222357859038414 27.081408523367802 27.99152291819464 28.950461078617646 29.95210347298807 30.985387749059193 32.03887576127539 33.10133889634207 34.16188057855919 35.21003990989874 36.23587468074013 37.23002291807406 38.183743003358416 39.08893317036864 39.93813187092703 40.72450106817413 41.44179498582652 42.08431721768393 42.64689430033365 43.1277256510947 43.53115548696249 43.86259160421454 44.12774360746742 44.332536188559416 44.4830448007441 44.585448889116826 44.64599870567016 44.67099251981628 44.66676172546105 44.63966194187176 44.59606870837184 44.54237678384137 44.48500238215624 44.43038790391833 44.38500886145218 44.35538273490968 44.348079438132935 44.369732908839104 44.427053064245484 44.52683697748205 44.675977631954005 44.881468004618455 45.15039752562947 45.48993718000417 45.907308686395666 46.40973235108169 47.0043474094981 47.69809800840659 48.497577544621 49.408823979270906 50.43705913283435 51.58636600549972 52.859300058259464 54.256433360843594 55.77555377337239 57.40496716574073 59.123409176238454 60.90675867509975 62.72908158902401 64.56321975377217 66.38147865974295 68.15638911964447 69.8614978035799 71.47213753572584 72.96955759679679 74.35789721843976 75.65235729292243 76.87161241333645 78.03672065693864 79.17001304800257 80.29400980136408 81.43041278466256 82.59921732516503 83.81797803567714 85.10125320787623 86.46024106630777 87.90260939620154 89.43250839011357 91.05074564584969 92.75509271498416 94.54068502512608 96.40028240559147 98.31593303444951 100.25729842621921 102.19537843080884 104.10380700931138 105.95896240288576 107.73997961238591 109.4286885422433 111.0095014211614 112.47025984990775 113.8096632097521 115.03281825070488 116.14642547342694 117.15840236858078 118.07762527253671 118.91372704256354 119.67692895724181 120.37789140533103 121.02757302792426 121.63709194240751 122.21758558097821 122.78006769004881 123.33528236443132 123.89355539680439 124.46322388143162 125.04716414732873 125.64638657343495 126.2611591426666 126.89120624607362 127.53590122874529 128.1944488489411 128.86605437625724 129.55007645035417 130.24616110465408 130.95435457178402 131.67519266574212 132.40976470898647 133.15975016261007 133.927426339161 134.71562078049394 135.5272192878698 136.36496613828456 137.23148640272228 138.12901270863722 139.05904101937665 + 16.113717922063888 16.669034383159598 17.2075339008997 17.73004454512669 18.238190021259417 18.73440761726423 19.221938595723444 19.704789250042836 20.18766143416525 20.67585251369756 21.175125921434994 21.691554783109776 22.231342272568067 22.80052911083227 23.404526841568178 24.048088214838476 24.73518200538571 25.468836206878365 26.251005307300908 27.082465284534532 27.96273888440922 28.890027658864078 29.85894520682556 30.85931602946373 31.88047131792846 32.91184458483849 33.94309797551347 34.96423159695689 35.9656737658616 36.93835100604738 37.87373749848494 38.763884480569494 39.601430790721004 40.37959635283124 41.09216089336574 41.73343058996537 42.29821982014046 42.78461896130181 43.196693868930325 43.53957186692532 43.818701992879205 44.039768106116014 44.208623553797175 44.33124292506411 44.41368718285976 44.46207915852286 44.48258701403071 44.48141381540597 44.46479181616307 44.438980421044874 44.41026708716371 44.384970620887955 44.369446442339644 44.37009341219489 44.3933617440113 44.44576135595403 44.53386974584551 44.664338102217506 44.843893894140265 45.079337621616546 45.37753077053065 45.74537132447264 46.1897524739289 46.717499478078565 47.335279037839065 48.04947511063956 48.866024937490415 49.79020928335309 50.82639165907323 51.97770276990419 53.24566882233372 54.62977731548473 56.12647894188258 57.72291260961844 59.39766502348323 61.12726391154305 62.88694260082664 64.65124970998217 66.39474964778337 68.09277388579133 69.72217735785343 71.26205156459932 72.69857795132441 74.03949680661805 75.30113985920691 76.50275093364066 77.66539177946665 78.81084066790866 79.96053751866745 81.13462359600034 82.35111693058482 83.6252556924347 84.96903123255474 86.39092097636502 87.89581939357936 89.48515352007928 91.15715860418926 92.90728000747447 94.72866007607192 96.61262715695698 98.54303626489866 100.4911664652772 102.42907455363134 104.33155246943846 106.17616292141524 107.94318084197572 109.61546805093988 111.17830818198414 112.62021827298123 113.94037290356059 115.14412590582842 116.23821998441083 117.23046196985301 118.12951627951576 118.94475051124812 119.68610946899186 120.364000939305 120.98918236206478 121.57264207656397 122.12547215534843 122.65873214001847 123.18330448530682 123.70974342116949 124.24811945429872 124.80709847906834 125.38968902610397 125.996148538268 126.62605375125025 127.2785127742263 127.95236320706985 128.6463569242045 129.35932834089212 130.0903433096059 130.83882604420947 131.60466167366363 132.38827221417765 133.190663941476 134.0134443588567 134.85867196035733 135.7282304853346 136.62394138986568 137.54745640396516 138.49996028912764 139.48180592043983 + 16.14187825885812 16.710796254003874 17.264547225416454 17.803310802928614 18.32803771711872 18.840478189179098 19.34318423681891 19.83948396366515 20.333426375836293 20.82969631982051 21.33350029429908 21.850425110197946 22.38627260533178 22.946874804354145 23.53789499049016 24.164587486985106 24.83126187100184 25.541178111969494 26.29658506872875 27.098612075113003 27.947187719386243 28.840976179482347 29.775421059546844 30.74126959969292 31.728620253369453 32.727569232496975 33.72834029589604 34.72139939446013 35.697551760108446 36.64801995068291 37.56450224042105 38.439211551590816 39.26489584113849 40.034841478326065 40.74286167432706 41.38327245854584 41.95088238919512 42.44367244065242 42.86541765443897 43.22095030728318 43.51544370564661 43.75432536364584 43.943210868685746 44.087854328493705 44.19411194707088 44.267915886457786 44.315256120803085 44.34216847032962 44.35472741066505 44.359042584955276 44.3612582002887 44.36755466427519 44.3841519098187 44.41731386346799 44.473353432426975 44.55863721505404 44.67958887855306 44.84268979707319 45.05447510887911 45.32152284321395 45.6504332035333 46.04779450042852 46.520131642152734 47.07383256364458 47.71504757194122 48.44955638995068 49.282597794342905 50.21865729107784 51.261209401553465 52.41240965602702 53.67251093790095 55.03938495016046 56.50832970418229 58.06622792396227 59.692083073436706 61.36330451707383 63.05650100598244 64.7481116566126 66.41510610087522 68.03571273932366 69.59012966276198 71.06117518417008 72.43999734150457 73.73735855356138 74.97045728827598 76.15885025481086 77.32335706699297 78.48497838464118 79.66387881827994 80.87848085312305 82.14470869229494 83.47541161991975 84.8799857170699 86.36420107494888 87.93022963721154 89.57685709007451 91.29985142907569 93.09245156549227 94.94593214570156 96.85019667058772 98.79052094222358 100.74026469557039 102.67273848173184 104.56408006303994 106.39321347342222 108.14171744699979 109.7936344741316 111.33525092571243 112.75586725413388 114.05518819742933 115.23882929146016 116.3135658134775 117.28706159089845 118.16771601822609 118.96456010426677 119.68717569028514 120.34561978913375 120.95034249956352 121.51209204640469 122.04180426173536 122.5504764351182 123.04902715085055 123.54814473159104 124.05812743450473 124.58871877628458 125.14848601842723 125.74048935396823 126.36426600324191 127.01872505336807 127.70239464484186 128.41362185807375 129.1507560271832 129.9123123399585 130.6971128726037 131.50440244030662 132.33393684841477 133.1860413265332 134.06163610035685 134.9618869403355 135.88767950002682 136.8398478603975 137.8189874661718 138.82513994657194 139.8574074794547 + 16.179421777971985 16.76336692165919 17.33350118040553 17.889407460166296 18.43141710835809 18.960647133170127 19.479012854788436 19.989213930296312 20.49469205613196 20.999559617369727 21.508499637338943 22.026638542776222 22.559394449234105 23.1123048332776 23.690838533232398 24.30019794978294 24.945118045436477 25.629649048019882 26.356635348279447 27.127584495116743 27.942845070305413 28.801554985889272 29.700057724108692 30.630063997022788 31.58243271895738 32.54791909028557 33.517307531172946 34.481531261936624 35.43177582278665 36.35956474479676 37.256826463751224 38.115942384302215 38.92977673629001 39.69168950822559 40.39553429216343 41.03564333360571 41.606824953973536 42.10695038343862 42.53949277250745 42.90897626941035 43.22028471402317 43.47857510691627 43.68921086846795 43.85771113665254 43.98971290303048 44.09094331158425 44.16719992554838 44.22433719167848 44.26825769242826 44.30490706981228 44.3402717272061 44.38037856436141 44.43129607403203 44.49913612345984 44.59005565862197 44.71025740262034 44.86598837273543 45.06353471714429 45.30921097990811 45.60934145493187 45.97023080674969 46.39812064774623 46.89912830821286 47.47916367074692 48.14381973209157 48.89823258862417 49.74690692017716 50.69350351993325 51.74041758980913 52.88824456349711 54.135908627322465 55.48047658303565 56.91665505915584 58.43128258690028 60.0039886541134 61.61326657800693 63.23728312168849 64.85451801225663 66.44445115686895 67.98825622972521 69.4694561714594 70.87452874032351 72.19951980481073 73.45757703088056 74.66650831658379 75.84593307102325 77.01619812318006 78.1973251938501 79.4080395647916 80.66492406754597 81.9817347904707 83.36890535293827 84.83325569346108 86.377909603672 88.00241329789334 89.70303574607007 91.47322092232955 93.30415311337326 95.18538952274696 97.1055100602561 99.05067662123287 100.99675430171682 102.91847266755792 104.79346744180314 106.60216768623607 108.32759123010909 109.95508765751093 111.4720625196248 112.86870105602854 114.14529633825016 115.30775149259307 116.3628812882416 117.31819401100202 118.18179209389729 118.96231948091992 119.66892771447944 120.31124123651149 120.89930951105076 121.44353919564139 121.95460377739927 122.44333102478089 122.92057051936484 123.3970446656549 123.8831871566979 124.38897309197282 124.9237449549645 125.4957189358896 126.10775550400949 126.75871454285792 127.44688230960186 128.17026038425223 128.92676328711758 129.71439626919954 130.53141014791564 131.37643032210687 132.24855732167197 133.1474364501915 134.07327732610162 135.0262954384852 136.0063643010242 137.01326774413573 138.046466898221 139.10476889222753 140.1859206019394 + 16.22620004411409 16.825694886387453 17.41247216400279 17.985572412054285 18.54476302365279 19.090582898012748 19.62436407833156 20.148228213309736 20.665055925941008 21.178428057082336 21.692538764222476 22.212081559522893 22.742110518836842 23.287880031840878 23.854667535614347 24.447584622044115 25.07138267762593 25.7302597523666 26.427675620947504 27.16615387812279 27.94676625011346 28.769133148514612 29.630530890323627 30.52368880986406 31.44021528284365 32.371516961503545 33.30893451742164 34.24386676884313 35.16788021027063 36.072801873216946 36.95079432701154 37.79441245185044 38.596642364461296 39.35092353859748 40.05115573389515 40.69169282983211 41.26734768110109 41.775881428164304 42.22045566862309 42.60527487842181 42.93492116313946 43.214268217480736 43.448414155094746 43.64262980050931 43.80231948678319 43.932991845963215 44.040238492714145 44.129718870415616 44.20714984449001 44.278298883780295 44.34897986330877 44.425050647609 44.512411670557746 44.61700471335294 44.74481099596063 44.9018475393507 45.09416052870444 45.32781411722394 45.60887276629977 45.94337483644837 46.33729474774289 46.79649065049566 47.32663422946082 47.93311906304253 48.62094394246256 49.394567810161305 50.257639960889406 51.21244743061335 52.26002094924771 53.40006536833552 54.6307537861458 55.94852209040606 57.347644931998225 58.81510375529728 60.33135032704557 61.87614364048568 63.4293629457665 64.97164342697408 66.48503872533554 67.95366946899766 69.36431503062602 70.70703380036234 71.98254620536432 73.2057567482629 74.3948265596885 75.56919880065213 76.74853644448727 77.95170807008465 79.1958692438142 80.49568116980771 81.86270030725774 83.3049629749727 84.82677805364008 86.42872928243419 88.10787689677927 89.85813705501221 91.67080723642634 93.53519711850656 95.43931786560982 97.37057872409498 99.31549986030646 101.25269387809435 103.15847607840254 105.01209099106826 106.7955775408979 108.4934936395299 110.09259446569354 111.58150105236113 112.95137357955534 114.20315164852056 115.34306128715824 116.3779795167539 117.31526676848065 118.16271923366949 118.92856662109902 119.62148523996402 120.25060539311903 120.82549970835574 121.35614512309677 121.85285582450155 122.32618770242384 122.7868170251085 123.2453973413855 123.71239928055743 124.19793816521937 124.71159433915112 125.26223097086519 125.85754062698966 126.49990261353781 127.18753630331881 127.91816748873585 128.68933734276717 129.49859349840904 130.3436580261521 131.22256917310364 132.1337939656527 133.07630898532193 134.04960113226068 135.05292150143748 136.08510970989613 137.14484261111963 138.2303756014445 139.33919546190631 140.46759372298715 + 16.2808273530671 16.89559370606509 17.498512254819484 18.088136337120314 18.663724916303558 19.225293474585392 19.77364348918276 20.310368228163583 20.83783274375786 21.359126747268512 21.87798999470357 22.3987108603658 22.925999882671903 23.464841181428202 24.02032571333678 24.597471295822444 25.201035133102064 25.83532517222033 26.5040169577831 27.209982710181933 27.95513910414075 28.740250092346592 29.563710940345064 30.419348232988185 31.29950653172905 32.19623306382402 33.10141729575033 34.0069192138683 34.904684435774755 35.78684381480638 36.64579607841474 37.47427286989764 38.265386322842716 39.012659976171044 39.71004442925852 40.35191964209805 40.9331069219167 41.451256947170855 41.90921153484803 42.31084550007959 42.66042842408238 42.96253927935825 43.22199898808434 43.44381783451774 43.633155009531 43.795287930615515 43.9355893293143 44.059510413694994 44.1725686853018 44.28033921077944 44.388448313105705 44.50256875264388 44.628415511659725 44.77174127618508 44.93833062606555 45.13399179937056 45.36454469524254 45.635803527310856 45.95355225014616 46.323510571858336 46.75128806204652 47.24232359985391 47.80180722611828 48.43458142273434 49.144983764557956 49.936362306415056 50.81104873105499 51.77041600431966 52.81472313900575 53.942951005711194 55.152639055567796 56.43973274922469 57.79823662574421 59.21545573403007 60.672843895242025 62.15158395384957 63.63339187420913 65.10113686780146 66.5394685704446 67.93541161415907 69.27888712249464 70.56345475788373 71.79412160919982 72.98695751613646 74.1602282723269 75.33297769347482 76.52399719437786 77.75085795097542 79.02905080359061 80.37127287514144 81.78689175406409 83.2816084067436 84.85732919253417 86.51224596566807 88.24111180815596 90.03568900715217 91.88533602438271 93.77769193240344 95.6994105935539 97.63689314634193 99.57663863626024 101.49995206714874 103.38492714880802 105.21248285799531 106.96632965658834 108.6326275775071 110.19960307711699 111.6571638420678 112.99751911489435 114.22230927206262 115.33812498046365 116.35194206956027 117.27100003676665 118.10280230432612 118.85516162624035 119.53625864694243 120.15469110216989 120.71949921287695 121.24015930509412 121.7265426308652 122.18883992467505 122.63745462571255 123.08286916966203 123.53548953786084 124.00547355519285 124.50254842622152 125.03582283173532 125.6135986821072 126.24290497535385 126.92539226148925 127.65868267788865 128.44001638771968 129.26654733367323 130.13552330744562 131.04443961918057 131.9911631945936 132.97402413749913 133.99179494286324 135.0427802466364 136.12476405926927 137.23526923776583 138.37128249004212 139.5288917205259 140.70283937463273 + 16.34089651714986 16.969968779282247 17.587883751285762 18.192761889206842 18.783407781423794 19.35936631816057 19.920959061620664 20.469298462384558 21.00627760423383 21.534533892870375 22.057385984820453 22.578744248269757 23.102996115789406 23.63486878088165 24.17927275224651 24.74113075586868 25.32519731062362 25.935874947287278 26.577033449809935 27.25183863750795 27.96259705572873 28.710622493072314 29.495734198948348 30.313526671235383 31.157137277885287 32.01924010491022 32.89226333619002 33.768521290873956 34.64033468543605 35.50013653170741 36.34056195704957 37.15452106528914 37.935254726814456 38.67637387977291 39.371883534664185 40.01619320117133 40.60413568736222 41.13325079416099 41.60605376568278 42.02608131713996 42.39728117615462 42.72392752317355 43.010553414839684 43.26189742420589 43.48286199968563 43.6784813356096 43.853896834413 44.01433850554865 44.165110876874735 44.31158218219573 44.459175728263844 44.61336243221688 44.77965355395189 44.96359262655645 45.17074551247951 45.406687386545556 45.67698527485808 45.987174570365376 46.34272771526511 46.749013007186804 47.21124127694526 47.73439803574067 48.32315271298025 48.981520753693424 49.71264289004282 50.518937773988505 51.40200262951345 52.36248615980379 53.39995733808888 54.51277568612395 55.6979708205082 56.95114154401582 58.26618294270451 59.6308943115775 61.027891718808455 62.439914031131146 63.850606384557324 65.24511400181822 66.61066471502785 67.93710235399784 69.21733337501603 70.44834968946101 71.63888391293236 72.80564654349865 73.96677195164497 75.14070140752251 76.34519350245145 77.5964096617876 78.90811716709317 80.29104574298003 81.75242561158564 83.2957253465895 84.92059730667266 86.62302738270353 88.39567477235192 90.22837703101528 92.1087862620484 94.0230944984101 95.95680054202192 97.895467152322 99.82535040491894 101.73012731570023 103.58986660784747 105.38718013938895 107.10746582252406 108.73850564578801 110.2700263177568 111.6932638042507 113.00152977485973 114.19721114031358 115.28730735106198 116.27894008212512 117.17927164182547 117.99554753066452 118.73518498475384 119.40587382364531 120.01566567497511 120.57303600138856 121.08691014144556 121.56664981545653 122.02200037931479 122.46300174043222 122.89986751174618 123.34283790197941 123.80201223238782 124.28716701228885 124.80756534558863 125.37176319510675 125.98741779010808 126.66076665256588 127.3925498201991 128.17985513930714 129.0195179898608 129.90837824788585 130.84344470027847 131.82202972150372 132.84185095820135 133.900998345542 134.9968751201605 136.1261964806758 137.28529598597626 138.46983916067705 139.6744457830289 140.89222369624315 + 16.403206494352613 17.045050283127917 17.676294445159808 18.29467853853586 18.89860402737932 19.48719496356633 20.06034049885194 20.61871678331392 21.163785744121277 21.69776890340573 22.22359521463242 22.74482284278263 23.26553584513815 23.790217779345316 24.323605321458214 24.87052596403367 25.43572472867417 26.023685517653114 26.638453200684662 27.283462749868715 27.961381674220327 28.67397165434849 29.421814648768365 30.20207731249663 31.009317089095266 31.837094250144673 32.67836725216686 33.525895866685616 34.372369985144104 35.21052136190546 36.03322016082391 36.833555183944306 37.60489743910394 38.34094741037244 39.03576702319653 39.68379784279106 40.27988635518733 40.821461017555535 41.31070513231296 41.750810399923544 42.14539478638167 42.49841890135976 42.81411840004982 43.09694993840846 43.35154839601373 43.58269330203875 43.79528262926901 43.99431233880691 44.18486025055643 44.3720729726173 44.5611547402895 44.75735708875383 44.9659683107363 45.19230163143789 45.441680969462304 45.71942304847021 46.03081448681521 46.381082332136614 46.775356340083135 47.21862114192367 47.71565634338201 48.270866369208925 48.887919690710575 49.569885823891426 50.31921642818165 51.13764783756057 52.02609820160819 52.984562266249 54.01200826552152 55.10628310809207 56.26403401590926 57.48065698264961 58.75009354089088 60.06079447648907 61.396676071340906 62.74213750415175 64.08281291958833 65.4061293657643 66.70183689095657 67.96247532793797 69.18374342503914 70.36601592643666 71.52101428546679 72.66565785633601 73.8177303323922 74.99489052158862 76.21373164560252 77.48892602563451 78.83249457071078 80.25323404666298 81.75632703570324 83.3431501551768 85.01128590666016 86.75473293381769 88.56429896687767 90.42815081982728 92.33248697106941 94.26229096011568 96.202118488522 98.13686807874397 100.05248375457836 101.9344861967367 103.76509287588073 105.5285798522595 107.21200196101215 108.80473917481979 110.29800813771888 111.68438165010787 112.95830209562955 114.12293537047003 115.18573143617246 116.15401089695962 117.03491568932176 117.83548676856813 118.56278964832063 119.22405274584334 119.82679333374179 120.37891440746765 120.8887627643146 121.36514405280397 121.81729461111482 122.25481275787588 122.68755404662006 123.12549606750282 123.57857888245461 124.05652729387832 124.56866102467168 125.1236986525079 125.72956089149312 126.39317862425904 127.11987658209719 127.90938848298588 128.75835173367176 129.66327603962725 130.62075211755777 131.62759564574574 132.68095804689898 133.77829909791913 134.91619540647528 136.09029472925678 137.29571981265698 138.52677505897142 139.77655424671292 141.0364554034821 + 16.464014947277775 17.116648919933187 17.759154056883993 18.38893743952798 19.00404477189987 19.603225000106306 20.185978389510982 20.752585524698684 21.304114543591503 21.842404517921356 22.370023656659242 22.890201908559906 23.406738536947476 23.923886288836073 24.44621483056634 24.97845711951875 25.52534327216301 26.091427221499615 26.680911986270228 27.29747966295313 27.944132273124175 28.623049339669066 29.335432473484996 30.079844701434297 30.851772183603938 31.645900686400566 32.456166672609996 33.27580227523072 34.09785908715619 34.915362722800715 35.721415642803215 36.50928430445009 37.27247007121049 38.00476403449163 38.70028654532193 39.35351281981989 39.95930436418326 40.51497779011665 41.02238049740848 41.48435374552045 41.904179198034875 42.28549633365234 42.63223491647506 42.94856033317964 43.23882971186432 43.50755689398507 43.759384506680675 43.99906155681884 44.23142512574377 44.461384875161635 44.693909173499414 44.93401171467518 45.186737525936984 45.45714724871069 45.75029852883839 46.07122327525538 46.4248994471437 46.81621592067678 47.24992888389004 47.73059174304717 48.26224833616943 48.84836966767286 49.49194809769378 50.19542627471579 50.96061655849799 51.78861709294423 52.679727008944404 53.63336435723218 54.64799170504751 55.72105587202992 56.84895001226731 58.027008138974736 59.24936605140254 60.50526694216482 61.780040993351435 63.05982293585309 64.3322630882812 65.58704123585052 66.81633821035479 68.01523252867455 69.18199284178233 70.32035025823623 71.44411141703797 72.5700853476021 73.71550650834821 74.89709734881478 76.13018337810973 77.42790161536266 78.80053862986726 80.25502796897509 81.79462889534379 83.41879935195786 85.12326633593452 86.90028682099316 88.73908247654009 90.62642214788696 92.54731783640287 94.48579317346415 96.42567849914516 98.35138396035875 100.24860178797114 102.10404966811554 103.90220544924772 105.62893948169298 107.27288815952878 108.82496215217363 110.27781764283681 111.62533763391632 112.86309503010818 113.99504923120537 115.02913479066224 115.97292511206766 116.83360674741407 117.61808378722715 118.33313286916433 118.98557278029287 119.58242239891692 120.13102924256634 120.63915796076667 121.11503371330626 121.56733960407487 122.00517036459433 122.43794650119682 122.87529434378301 123.32689806058754 123.80232991059381 124.31086494661959 124.86128618539058 125.46168602950196 126.11926954120096 126.84016509026657 127.62867508133994 128.48352748954602 129.40100230761632 130.37735193469368 131.4089651402771 132.4924855320764 133.62480866989722 134.80179406167076 136.01804373183165 137.26746384873894 138.5429723595567 139.83609264697793 141.13645013832178 + 16.51983689422054 17.181016068231674 17.832495474603448 18.47139348553503 19.095442479741283 19.703056985772275 20.293386896288343 20.86635312549251 21.422662843457477 21.963801962251363 22.49200326057868 23.010189389714625 23.521890967952196 24.03114099986782 24.542347900912645 25.060150414274244 25.589258622090675 26.134286025578287 26.69957825209637 27.28904430295597 27.905996355346815 28.553003958727157 29.231768401714028 29.942160118747015 30.680684009085155 31.442711999833417 32.2230312449932 33.015825513215134 33.81458646254772 34.61262851821357 35.403283453654915 36.179994030425576 36.936391828720815 37.66635921659994 38.36407606656778 39.024052413376864 39.641165697111376 40.212620418869776 40.73992559907057 41.22556814632253 41.67248825515567 42.083997923914374 42.463713563619294 42.815500765805965 43.14342933360219 43.45173677754737 43.74479860449262 44.027103862256126 44.30323452924394 44.57784744669776 44.85565757502808 45.14142141117305 45.4399194298424 45.75593640887292 46.09423847105466 46.45954562760169 46.856498550869965 47.28961822952421 47.76317041817161 48.280893375742394 48.846109765551894 49.46171323213861 50.13010402244127 50.85312154348132 51.63197522080779 52.467175727316 53.35846951733385 54.30478063068188 55.30416492226756 56.353783211577436 57.44990130913171 58.587926427482095 59.76232582210047 60.963257923981836 62.17755582205619 63.39313697539963 64.59966499293415 65.7890128712425 66.9556717700468 68.09707586708913 69.21385395823656 70.3130002090253 71.40944326343785 72.51966195650168 73.66016913098306 74.84662647861258 76.09302087993466 77.4109398266902 78.8089787896092 80.29230710948666 81.86241140257884 83.51702690211222 85.2502579709562 87.05287961361597 88.91280260439096 90.81567625247811 92.74559525290812 94.6858714290576 96.61981443687276 98.53150908474268 100.4065338801203 102.2322581245046 103.99533536198749 105.68314371697181 107.28577081574923 108.7955620951422 110.20653872505798 111.51383547468205 112.714128818527 113.81216763536375 114.81639478849412 115.73468688435186 116.57434309843131 117.34220719947432 118.04484364555215 118.68873118976579 119.28044696260487 119.82682238861388 120.33505933573628 120.81280054512222 121.26815272104335 121.70966381927117 122.14625823876453 122.5871349882575 123.04163465366284 123.51908130604038 124.0286055145235 124.57895449292388 125.17829521944228 125.83401621157739 126.55253357835805 127.33910705461955 128.19693555709668 129.12383480070574 130.11580845266963 131.16889694734712 132.27930400238748 133.4434296150464 134.6565570909923 135.91228969060853 137.20332639845884 138.52118765989644 139.85579543154446 141.19495222270064 + 16.56784355945523 17.2352321973392 17.893349813150017 18.53906466081675 19.169832836425993 19.783769653503267 20.379707679723246 20.95723871345022 21.516736661980595 22.059358768554745 22.587023297436065 23.102362601151132 23.608651427320044 24.10971133229204 24.609793106872498 25.113440133869474 25.625336534950545 26.15014477393996 26.692338018132777 27.25603297842165 27.844829122439997 28.46166006345498 29.108662565435452 29.78675644638403 30.493698140300708 31.22551967852452 31.977611166277814 32.74482026659679 33.521478626372335 34.3012993928549 35.07784152530165 35.8447234982427 36.59570754800031 37.324768409688225 38.02614686217982 38.69438910804786 39.32438953591137 39.91324084819389 40.46211273447305 40.97313532972462 41.448903506527806 41.89239656091972 42.306911016031265 42.696004855854106 43.06345147322019 43.41320165928582 43.74935204423118 44.076118497662335 44.397813096472724 44.71882335705149 45.04359250103381 45.3765995757305 45.72233828101874 46.08529336531827 46.469913448229924 46.88057911300591 47.32155866695258 47.796795472553804 48.30979891833015 48.86373382985202 49.46137488347256 50.10505100416765 50.7965881757017 51.53725187544187 52.32769089416088 53.16788496809668 54.05709944048915 54.993851080679725 55.97589021104571 57.00020540740969 58.063058219526916 59.160056567193884 60.28612395824246 61.43243803246361 62.58739980545103 63.740730680779336 64.88407831344996 66.01142433060899 67.11942783627617 68.20767866722058 69.27905285138243 70.34342025538223 71.41606070720012 72.51293692559284 73.64969739864613 74.84084951187282 76.09900111550422 77.43420467671395 78.85343347406814 80.36021321722866 81.95442526150858 83.6322895304652 85.38652669536437 87.20669045029732 89.07965261713281 90.99016681734444 92.92154575596236 94.85661672570922 96.77849103616751 98.67125074790886 100.52056163556962 102.31414760233045 104.04045020436283 105.68826155959334 107.24887692526218 108.71580648997389 110.08425468683302 111.35058886353745 112.51264779838993 113.57596232023333 114.54949566658172 115.4414711256035 116.25936654725355 117.0100449275423 117.69994295142014 118.33528085683211 118.92226612374269 119.46727162130526 119.97697574349878 120.45845766834431 120.91924523873153 121.36731620442988 121.81105584405753 122.25917547692555 122.72059725143419 123.20431102186114 123.71920924534848 124.27390577295658 124.87654428042933 125.53460197373039 126.25469417973332 127.04238554139025 127.9020138041615 128.83564190887103 129.84032817835657 130.9118480630599 132.04603928041325 133.23886934733864 134.48520397538343 135.77772680153535 137.10795242855542 138.46600562182678 139.84018811624384 141.2164407589856 + 16.60552580236002 17.27678497621449 17.939236001808574 18.58953049835499 19.22488014803343 19.843131099286833 20.44282659108182 21.023254983565593 21.584479992320855 22.127350355713087 22.653486779802638 23.165244780394204 23.665652944831177 24.158327126701646 24.647362117944244 25.137203364038797 25.632502246536035 26.13795930166727 26.65816042647427 27.197411603478326 27.759577918815324 28.347932635325346 28.965021802151696 29.61249208352873 30.289542194963197 30.99291433396609 31.71858160890293 32.46192020446427 33.21780863650712 33.980666477331766 34.74438372319734 35.50275493863978 36.249674334899716 36.979210813951056 37.68566800887132 38.36363007847405 39.008009714147946 39.61578884231968 40.18779833506787 40.725810500041625 41.23207219366305 41.70922572595435 42.16024190494103 42.58836376296061 42.9970594207512 43.3899825397393 43.77093885562934 44.1438573538228 44.51276472309941 44.88176179749577 45.25500076068691 45.636661938978655 46.030929047592856 46.44196178213709 46.873864667322195 47.33062547695977 47.81588359664033 48.33293866695492 48.88478162834848 49.47404760548466 50.102967177086384 50.773317240216045 51.486372560210214 52.24285952677851 53.042914151570734 53.886046946081194 54.77111800962835 55.69632642814893 56.65921892192518 57.65672356310625 58.68521528322863 59.74062077022724 60.81843063581517 61.91092611383642 63.00811758814008 64.10152702061143 65.18473285520581 66.25371903564591 67.30715250218861 68.34656668984478 69.37707420496321 70.41072594393948 71.46261852458095 72.5480403875988 73.681662177115 74.87677261999724 76.14458779687067 77.49366444483867 78.92944335346417 80.45394312617559 82.06561780790675 83.75938439753041 85.52681866678384 87.3564307805041 89.23403597647172 91.14370370334564 93.06851816922526 94.99127742326638 96.89517780300332 98.76445559333875 100.58495981841696 102.34463357131014 104.03315745492485 105.64067880500983 107.15950865308484 108.58411803099268 109.9106377691832 111.13635031249808 112.26007012189498 113.28830052213237 114.23066143587906 115.09575785459239 115.89130554214009 116.62426382677218 117.30102807699527 117.92764793764063 118.51004370844768 119.05420099959126 119.56633044873317 120.05298475585931 120.52112961377755 120.97816838044781 121.43192269075276 121.89057279467896 122.36256239428019 122.85647328477855 123.38087532481639 123.94415729060987 124.55434411483819 125.21890596181606 125.94456461525499 126.73710280264552 127.60118237646978 128.5401775616334 129.5550434818044 130.64224325007467 131.79732650068848 133.01588549586828 134.29252451267467 135.61913138065214 136.98607240290892 138.38209150352623 139.79386403606028 141.2054426519278 + 16.630721240736293 17.303573589689048 17.968142279767687 18.620890953987598 19.258813977815297 19.879513723903077 20.48126759914868 21.063081909702557 21.624729205469187 22.16676612746482 22.690529350776508 23.198107952171252 23.69229140432604 24.17649336952197 24.654652489188916 25.131112392125626 25.610484121690344 26.097495059376847 26.59682915070193 27.112963776672768 27.650008925824885 28.21155438369095 28.800530456287433 29.41908801326448 30.06780478578702 30.744340739458057 31.445235834437796 32.16638163495923 32.90311591285692 33.65032675940017 34.40248237941356 35.15362325806411 35.8977780160605 36.629112462956705 37.34199582087869 38.031052646346076 38.69121582709078 39.319358358864505 39.91597422080447 40.48247810281142 41.02076716863805 41.533143223419366 42.022246038470314 42.490996593168916 42.942548855305624 43.38024867246717 43.80759835462462 44.22822556836684 44.645855219618284 45.06428306316903 45.48734983714638 45.91891477533326 46.36282739949952 46.82289656207995 47.30280786055739 47.80591910384621 48.33531070597698 48.89378135277688 49.483804811942875 50.10748660903483 50.76652126735394 51.46215109630915 52.195127853489566 52.96567900517213 53.77348077063104 54.617640656064744 55.49669275864362 56.40860973955911 57.3508360109956 58.32034733378455 59.31374265232337 60.32737456754963 61.3573965297315 62.39725783497068 63.43859684542204 64.47470970961506 65.50103087332143 66.51542183707 67.51838350559501 68.51317663294118 69.50722014959408 70.5137862489756 71.54749048319505 72.62281659862056 73.7533720185931 74.95118945568076 76.22610498460428 77.5852397157331 79.0326078083119 80.56886811934656 82.1912305079284 83.89350388207379 85.66605286214227 87.4963397417461 89.3697584712902 91.27025095606479 93.18094970344622 95.08482929390404 96.96534072230504 98.8070044315237 100.59593991680487 102.32031181813828 103.97048474729476 105.53786114396118 107.01559495789286 108.39893329414038 109.6847497693876 110.87106404876275 111.95742846272302 112.95096840672359 113.86207904182852 114.70004087366137 115.47287208986288 116.187698190051 116.85095651163098 117.46861513359296 118.04639493720798 118.58997471501517 119.1051655313732 119.59804579472939 120.07505271197104 120.54302903283671 121.00922637153236 121.4812680481971 121.96707546619552 122.47476267111797 123.0125040538078 123.58838028023864 124.21020755856573 124.88535537494693 125.62055791371601 126.4217245730052 127.29375531913392 128.2403670886703 129.2639372535255 130.36439669737473 131.53772988684278 132.7792109375245 134.08330603686707 135.44129124368328 136.84243365701644 138.27412426337028 139.72141885530047 141.1664681891047 + 16.641634597189515 17.313912067867182 17.978512937400502 18.631737131868444 19.270384539184338 19.891835059206475 20.494119873569186 21.075980946822494 21.636915255799668 22.177200577265463 22.697900188680613 23.200844534674847 23.68858875421013 24.164345913608408 24.631896804924207 25.095478199011183 25.55965243694398 26.029162151008148 26.508774678534415 27.00312132471774 27.516537007925056 28.05290595610749 28.61551900037759 29.206947628831326 29.8287728505544 30.479941079994024 31.157561954544047 31.85803231250565 32.57714131067655 33.31017177473286 34.05200783741077 34.797137968687686 35.53975725941468 36.2741323095617 36.99470164750859 37.696133508557075 38.37338358378725 39.02321870423734 39.64579924616903 40.24218366157003 40.81391863726413 41.36296256453705 41.891619181633914 42.4024803559256 42.898376788155666 43.38233533419808 43.85754161683945 44.32730661731295 44.795035976942266 45.264200792138304 45.73830874431986 46.22087446677371 46.71538803653488 47.22522042269769 47.75345306828524 48.30292853617833 48.87623250590441 49.475653943599966 50.10314602445419 50.760288450043646 51.44825204214742 52.167766769076806 52.9190946732738 53.702009521023584 54.515785385124026 55.35919679467223 56.23053353452148 57.12763363815479 58.047938575138105 58.98857506703986 59.946468348615255 60.9184919952713 61.90154210844989 62.89028064030595 63.87797077851741 64.85963537036059 65.83247117372666 66.7960773297005 67.75260486413998 68.70690171471234 69.66859524574984 70.65123402559952 71.66880219695277 72.73487549172938 73.8619392202627 75.06075720484252 76.3398184975353 77.70488559354862 79.15866368564234 80.70060545602027 82.32679543034895 84.0296924376575 85.79876116626514 87.6211230099625 89.4820749202872 91.3656589270098 93.25525894849217 95.13420121104845 96.98633596424928 98.79658000677814 100.55140153103694 102.23923067741723 103.85075830267216 105.37837691513715 106.81596287823874 108.15937145153862 109.40605109648378 110.55459506709192 111.60513702517005 112.56525405292149 113.44578430964371 114.2567175807662 115.00673642505184 115.7032115658329 116.35269783720294 116.96116701746541 117.53422875200444 118.07733998018387 118.595988684853 119.09584275302511 119.58285877013525 120.06334872121035 120.54400493314641 121.03188527813144 121.53436179358685 122.05903658381348 122.613629272349 123.20584048193784 123.84319592891458 124.53287581432488 125.28153434223806 126.09511444392642 126.97866315887596 127.9361536152034 128.97032012269443 130.08251256123347 131.27174133157763 132.53355386303775 133.86233962498437 135.24901476840316 136.68181190651123 138.1468098891621 139.62746492066023 141.10402549651891 + 16.63683717429108 17.306514526081887 17.969219958575465 18.62111005811075 19.258809391822368 19.879493214856723 20.480962826643655 21.061710512254834 21.620970434220986 22.158752125819202 22.67585371739627 23.173852686139362 23.655072730565095 24.122526299002846 24.579833304529632 25.0311175899774 25.48088371553394 25.93387757718174 26.39493517766789 26.868824518084764 27.360086019365525 27.87287708981628 28.410826408672893 28.976903190174315 29.57329887974816 30.200424171889296 30.856114539165333 31.53726492801204 32.24011059205189 32.9603251986843 33.6931286956158 34.43339052474929 35.17561296852531 35.91417347493929 36.643584745383734 37.35856297370737 38.054090122324226 38.72683062561158 39.37661586959144 40.004150533389655 40.61063082091502 41.197669270771584 41.76722875564848 42.3215648365046 42.8631754123676 43.39475648643721 43.919162820151094 44.43937224495334 44.95845242987811 45.47952895046635 46.0057535640722 46.54027151791828 47.086128949382875 47.646120652365845 48.22282958680048 48.81860539720944 49.43552703912628 50.075366985738654 50.73955758810858 51.42916036498042 52.144839222454195 52.88683885092239 53.65496981659666 54.44860215587156 55.266669588661074 56.10768678508027 56.96978243893483 57.85075120888544 58.748127868259346 59.65928723877002 60.58157365079549 61.51246375028674 62.44965971215773 63.389061236825206 64.32553275705881 65.25575727280622 66.17858396786876 67.09519778063232 68.00920961695026 68.92708453947782 69.86009786755515 70.82147932284263 71.82446321908493 72.88163987925375 74.00433809242274 75.20206167583903 76.48200356362241 77.84865783388241 79.30354620144418 80.84497605269294 82.46762441993332 84.16312031519871 85.92057483412871 87.7270061367116 89.56782662367033 91.42737124716803 93.28944567409661 95.1378738958521 96.95702635435525 98.73231147351851 100.45061538038773 102.10067631907346 103.67338315793242 105.16172563409773 106.56021447392418 107.86516460624377 109.07444966861146 110.18708873510177 111.20365268813201 112.1320246567764 112.983344495236 113.76801971449015 114.49545119844822 115.17360571047062 115.809229570208 116.40837551225324 116.97662609900851 117.51930148983293 118.04164722742527 118.54899231577203 119.04687166408064 119.5411099832814 120.03786651910323 120.54364168461296 121.06524782316883 121.60974710086775 122.18436000399818 122.79634820320064 123.45287573359036 124.16085260808191 124.92676519333237 125.75649797914485 126.65515178483848 127.62686396343008 128.67463674439972 129.8001804126065 131.00377822042367 132.28358708954016 133.6344239237158 135.04713810506726 136.5090215873224 138.00489437403274 139.51664617977198 141.022636552351 + 16.615251728373206 17.28046839192686 17.939525348666372 18.588452904577142 19.22371637791021 19.842301344584282 20.441792911578887 21.020445889899833 21.577242115991954 22.111931409246026 22.625053089377182 23.11793559646204 23.592672534224302 24.052074360985234 24.499595942449034 24.939241210485154 25.375447193075146 25.812950642112085 26.25664133842239 26.711406851436372 27.181974034523037 27.672752814403854 28.18768786258526 28.730123508286912 29.302686768430338 29.906957951667554 30.541908846461567 31.204933209417643 31.89270965829921 32.60130120263271 33.32626164001353 34.06274959132836 34.8056054676315 35.54938227012476 36.28867292483456 37.01824699346721 37.73311715856929 38.42985029006055 39.10795467344817 39.767784683239945 40.41018670598549 41.03642533079282 41.64811775099754 42.247175734465664 42.83575426101191 43.41620577694674 43.9910389458033 44.56288075690969 45.13444087278134 45.70847714094438 46.28776124236983 46.8749988680907 47.472680337850306 48.08310486628581 48.70836095961464 49.350290650766496 50.01045613788872 50.690109319945 51.39016489518506 52.11117787268656 52.85332654356118 53.61640216560843 54.399806830896345 55.202561206186566 56.02332405579531 56.860425667944234 57.711917499398865 58.57564051767413 59.44931484185726 60.33065334710864 61.21750188795756 62.10800869490407 63.00072888353516 63.89280614950534 64.78066370832796 65.6625612937916 66.53887715601383 67.41222137501818 68.28748125467115 69.17288533390948 70.08041881400096 71.02272636750963 72.01219924867425 73.06038931941006 74.17745665820703 75.37167290618304 76.64900048372456 78.01276496788073 79.46335297844593 80.99765067506328 82.60947448427973 84.29004895523114 86.02834055061612 87.8114595797635 89.62511284806857 91.45408828016873 93.28275313056385 95.09554843249755 96.87746385122064 98.61447886986093 100.29395800529736 101.90498930290636 103.43865650779955 104.88819783825839 106.24862768041312 107.51659881405722 108.69028014226433 109.76898638595227 110.75359599315524 111.65216289514169 112.47599878798272 113.23580489220807 113.94141750210356 114.60157036849074 115.2234716395335 115.81332113754125 116.37675060228958 116.9190245723965 117.44522696955455 117.96042369342338 118.46979468591549 118.9787317510051 119.4929006081188 120.0182672923656 120.56109018496257 121.12787975909369 121.72532865668889 122.36021506229724 123.03928259566068 123.76910017822296 124.5559056001129 125.40543686486076 126.32275583859548 127.31206927002286 128.37655283333302 129.51818439148747 130.73759304321817 132.0339305034925 133.40436616916028 134.84052988690945 136.32892417468963 137.85317530496798 139.3936524788619 140.92685345281674 + 16.57612770757836 17.235200326326357 17.889038522187878 18.53356063749461 19.1650863162994 19.780424144183325 20.376954643914818 20.952705447635743 21.506414794800904 22.03757969713513 22.54648550288391 23.03421417039285 23.502629303798766 23.95433688083476 24.392621576382453 24.8213596114317 25.24491008748087 25.66798775119747 26.095521023863554 26.532499878067473 26.983818708742366 27.45411969281679 27.947642236589576 28.468083958590917 29.01847824646954 29.601080052566264 30.216332755685215 30.862265297286864 31.53599944322699 32.233988344040256 32.952121111757606 33.68583713443977 34.43024179632381 35.1801373853669 35.93021343784619 36.67529952398569 37.41044456710109 38.13212380905894 38.83952954866441 39.53267024362487 40.21204369683932 40.87856467344032 41.533499760655964 42.1784090159175 42.8150936605117 43.445548903826186 44.0719208942466 44.696466763232415 45.321516742118895 45.94943737524791 46.58256945498573 47.223078216890066 47.872952935830114 48.53399408560749 49.20777836454921 49.895626953611284 50.598577447508326 51.31736001133529 52.052378465018556 52.803697152907944 53.57103461362981 54.35376522309377 55.150930137556145 55.96125900911811 56.78320407699017 57.61498834705738 58.454669651254136 59.30022241742493 60.149638969269965 61.00105210371051 61.85288054861335 62.7039986769424 63.553844960548176 64.4007953851729 65.24277230725573 66.07951415861207 66.91279410803104 67.74648086227153 68.58669544167005 69.44326431639993 70.32804717608774 71.25299434800509 72.22958474968803 73.26830117827694 74.37814259919692 75.56619242096698 76.83725978086562 78.1935670844633 79.63410910256043 81.15480558563382 82.74899427027813 84.40768484219495 86.11987791092031 87.87294040922649 89.65302130734055 91.44549140543133 93.23539154001908 95.00787466636662 96.74862877780546 98.44426928973031 100.08269114015437 101.65337224303028 103.14762091154745 104.55876092345001 105.88207650559585 107.11446822019388 108.25429066210191 109.30104250249424 110.25579580921291 111.12665192076585 111.92497146967716 112.66163460675075 113.34678874096885 113.98966725591187 114.59825386112107 115.17904534341173 115.7377878349009 116.27976401565168 116.80997356213798 117.33329561658984 117.85462627588312 118.37898670298789 118.9115995133088 119.45793264550053 120.0237110681615 120.61489748358642 121.2376437524167 121.89821516091946 122.60288996208273 123.35783690984171 124.16897382694285 125.04181063896293 125.98128078605764 126.9915654790929 128.07591585263143 129.2364785964971 130.4741309823807 131.78833114512938 133.17697022019695 134.6340930222929 136.1464338541416 137.69651124692876 139.26323225724218 140.82127381244823 + 16.51901070336288 17.170438397591454 17.8176719649317 18.45652991586858 19.0831978519295 19.694318321060575 20.287077306429175 20.85928413411962 21.409440867715773 21.93679740278831 22.441388819087507 22.92405208292743 23.386419897539408 23.830890346972808 24.260571933576518 24.679204628042246 25.091058587729115 25.500813204308074 25.91342006616861 26.33395421703628 26.76745871671388 27.218787926178592 27.69245511942107 28.192489950694217 28.722310972243832 29.2846178107366 29.881072239398584 30.510790364429262 31.17134374181606 31.859578781823362 32.5717235211935 33.30350190829923 34.050255265831424 34.807031455730055 35.5686563670704 36.33002752279403 37.08623674102788 37.833674692229124 38.571225961684306 39.29855830860958 40.015822650805035 40.72358216331722 41.422747667207226 42.114519039749695 42.80033206525442 43.48180995394436 44.16071865285531 44.838925033943454 45.51835705356268 46.20095569750797 46.888539645688056 47.582760774548476 48.28510322219412 48.99684878184823 49.71904595171173 50.45248350336916 51.19766901008407 51.95481289218448 52.723818654524166 53.504280107335745 54.295486473144905 55.0964363849193 55.90586186991884 56.72226348484158 57.543957815236915 58.36913856960083 59.19595247940824 60.022591153608126 60.847399922827634 61.6690045380796 62.486456355316534 63.29939633624084 64.10816060909593 64.91232887712569 65.71124762569943 66.50602360707028 67.29968257372441 68.09718489912217 68.9060605732425 69.73698000759028 70.60128291343693 71.51014164203305 72.47407587420311 73.50248907561699 74.6032439695131 75.78229302223889 77.04336973544426 78.3874038248288 79.8122684437053 81.31331259385257 82.88356898657615 84.51399639658345 86.19378073531816 87.9106813652245 89.65140865382136 91.40201890824994 93.14831354520034 94.87623050755498 96.5722173780435 98.22357718419202 99.81877935632193 101.34772952121921 102.80199264622702 104.17496439458417 105.46196667944199 106.6600390763456 107.76763442422377 108.784342307959 109.71133077284641 110.55663796091537 111.33155890711328 112.04704178821163 112.71343963219108 113.34032579255458 113.93631052740228 114.50852899323789 115.06290915542453 115.60481536445553 116.13923384441591 116.67093062441184 117.20459025884665 117.74493039664247 118.29678913545258 118.86518354599461 119.45533883685046 120.07268842213601 120.722845726962 121.41154899116056 122.14458067842554 122.92766342606846 123.76633482885097 124.66580377211979 125.63079152756298 126.6653613859249 127.77274117846721 128.955143545747 130.21358911256831 131.54773762939678 132.95573263499304 134.43267367862848 135.96652012912585 137.539828310263 139.1302028499959 140.7105543605259 + 16.44370902803125 17.086173123540743 17.725597451379567 18.35771115676661 18.97857599164544 19.58467816524284 20.173018057315414 20.741194561852982 21.287480067715418 21.810882180087326 22.31118858376162 22.788991938726724 23.245692363646818 23.683475878067934 24.105268106093376 24.514663552723334 24.91583180387886 25.313403024018278 25.71233608185783 26.117773476879655 26.534887922371837 26.968725925714907 27.424053962297606 27.905212844218863 28.415985628355827 28.959483892256774 29.538047024493203 30.152275252815826 30.800346883312347 31.479507037846915 32.18632850018852 32.91682564079445 33.666577668236194 34.43084704080291 35.204632582711945 35.98291067158534 36.760823840001216 37.534686354848425 38.30308444095222 39.0653511104619 39.82129245386982 40.571118288158154 41.31537816413115 42.05490265031832 42.79074947956277 43.524153937087966 44.25648275402809 44.98919072475739 45.72377802415552 46.46168921561948 47.20421308456594 47.952488228022744 48.7074713028451 49.46990598003272 50.24029735755684 51.01889217360869 51.80566523979634 52.60031259366685 53.40225194752872 54.2106310816248 55.02434489008824 55.84206183359094 56.66226057886513 57.48327760790773 58.30336655414349 59.120769964579736 59.933804091639274 60.740957181834695 61.541001547293476 62.33311947781437 63.11704277437518 63.89320536024219 64.66283973872625 65.42668512459827 66.18542362152182 66.94140983375308 67.69877405324122 68.46351443379032 69.24458368107699 70.0525964113513 70.89825520936584 71.79189281320085 72.74304331678624 73.76003867981316 74.84964500623083 76.0167517895087 77.263953505793 78.59091685271183 79.99482490727587 81.47062127961512 83.01118509996246 84.60756415417266 86.24925520114499 87.92451970347845 89.62072299388709 91.32468523508794 93.02303332554611 94.70254404301096 96.35047006472101 97.95484190640722 99.50474012799516 100.99053321796698 102.40407726904246 103.7388738094375 104.990183335389 106.15502086039331 107.23186380574246 108.22031791771106 109.12156592598885 109.94348545772948 110.69720083235005 111.39362282691276 112.04320613284541 112.65576288014422 113.2402967366101 113.80469188510861 114.35525588437011 114.89748530596655 115.43641456882035 115.97676467825445 116.5230791441813 117.07984112759023 117.65156816624344 118.24288214644668 118.85855319137822 119.50351688681954 120.1828648251444 120.90180888115893 121.66561999865375 122.47954261757135 123.3486862515125 124.27789616252642 125.27160558407716 126.33367249806723 127.46720453052329 128.67437600686893 129.9562414690828 131.3125498174676 132.74156245417066 134.23910626111245 135.79378769481275 137.38811145387692 138.9994577942092 140.59942196688738 + 16.350259559787084 16.982619235271176 17.6132043600027 18.237663982589545 18.851945203699675 19.452386756671128 20.03581163460004 20.599615532918694 21.141847073148796 21.66127582248503 22.15744437168582 22.630701175619954 23.082211482791813 23.513944459463136 23.928635519713385 24.3297238670391 24.721266292450046 25.107829311250892 25.494362706781185 25.886058435648938 26.288199589337342 26.706004660185773 27.14447269125888 27.60823497398435 28.101418779645613 28.627528167667098 29.18934621465167 29.78866861447293 30.424798855266587 31.095396161032014 31.797386151686577 32.527081644929915 33.28030730568226 34.05252889366402 34.83892815000585 35.63457770996541 36.434679809665546 37.23548155742312 38.03528115455807 38.83308344341683 39.62835199496886 40.42094139062263 41.21103396068186 41.99908108529193 42.78574881792408 43.57186737214386 44.35838388891517 45.14631785093723 45.93669809182738 46.73043002044208 47.528277272975814 48.33084114781297 49.13852852200328 49.95152623302683 50.76978223107298 51.592993800928 52.42060318857575 53.25180100396461 54.085537803035294 54.92054427441502 55.75536046489542 56.588374468945524 57.4178709773725 58.2420900254221 59.059296198066505 59.86785843735434 60.66634045149651 61.45360154658933 62.22890748925969 62.99205076299006 63.74347930480204 64.48443250639903 65.21702308218791 65.94309126418945 66.66455466034975 67.38488735829817 68.10917720866128 68.84467893435927 69.60107220760831 70.38849765042316 71.21694544671654 72.09586751957181 73.03380457859086 74.03804069057402 75.11429724739993 76.26644029266654 77.49579708018035 78.80116809786367 80.17922968145729 81.62466128837745 83.13031950550037 84.68745870027841 86.28598867008799 87.91475918911705 89.5618613807173 91.21493630778318 92.86148199890607 94.48915121518914 96.08603349570829 97.64091627248034 99.14352099051568 100.58471108483552 101.95666925167178 103.25304163092082 104.46904625477856 105.60154201629143 106.64892509485365 107.61076149135698 108.48818327648544 109.28882364537031 110.02354120412588 110.70311065884158 111.33798774002398 111.93812305867877 112.51279137374952 113.0704081557405 113.61793948930733 114.16107762436314 114.70495574947269 115.25431003242016 115.81360900144374 116.3871694881321 116.97925504283754 117.59415389739709 118.23623445134376 118.90997694524192 119.61998051134297 120.37094521144192 121.1676290364264 122.01478019782579 122.91704542586106 123.87885542502579 124.90428913298423 125.99691896386099 127.15963974517925 128.39448449441264 129.7024303982783 131.08319817744987 132.5350472087086 134.05420937882096 135.63015398292382 137.24507191460165 138.87567711809436 140.49265724395863 + 16.238894373638402 16.86017941361659 17.481061057891957 18.09711673549649 18.704187478261908 19.298472921285583 19.87662649156019 20.435847574996195 20.973966608171718 21.489519040739147 21.981804311174166 22.45092637033598 22.897812863027447 23.324210817514746 23.732657568643177 24.12642661630378 24.509449156065315 24.8862130668553 25.261642153147534 25.640959367160775 26.029538532709882 26.432749713035335 26.85580377263755 27.303601848343188 27.78059534785051 28.29066172647303 28.83700065880883 29.422050674346274 30.046626101165245 30.709009620674827 31.40649008674865 32.13568903253423 32.892686397732064 33.67315423361848 34.47245689016834 35.28578106678414 36.10839883931367 36.93650042196053 37.76810720071467 38.60190293373835 39.43701111708806 40.27292900416186 41.10946521448369 41.94668123082102 42.784836727635245 43.62433844575689 44.465692198101834 45.30945537882895 46.15613121422952 47.00608176644781 47.85952359980724 48.71649587487976 49.576833703207726 50.44014937923057 51.30582170153402 52.17299357621185 53.040578082069565 53.9072731648127 54.77158511011666 55.631860919079124 56.4863296700953 57.333152895350786 58.1704839251595 58.996536057168015 59.80965928857382 60.6084252072802 61.391719472520286 62.15884112807155 62.90960778398996 63.64446547926478 64.36460180268796 65.07206060870818 65.76980460924631 66.46070369333464 67.14780114273687 67.83555636179794 68.53002546420072 69.23970554903883 69.9741466876668 70.74290850474037 71.5552135468319 72.41961040403126 73.34365506282603 74.33362079671173 75.3942456126754 76.5282929441193 77.73600917032392 79.01558488228308 80.36332262463165 81.77376200184028 83.23984897005141 84.75314158717494 86.3040438986796 87.88205944993076 89.47605611558353 91.07453447745812 92.66589279890965 94.2386826530473 95.781850368411 97.28496055554491 98.73839896682752 100.13355272135522 101.46296641147599 102.72047273374555 103.90129601942584 105.00212803265478 106.02115202908529 106.95783399026698 107.8132051822997 108.59458365894042 109.31247784516319 109.9774354334151 110.59981740061292 111.18961439081792 111.7562738651372 112.30853251484248 112.8540534609467 113.3988911583047 113.94831579974355 114.50712920825207 115.07978436053386 115.67049657600185 116.283341993371 116.92233995654583 117.591516715067 118.29494845138889 119.0367821218129 119.82123298564896 120.65255804232649 121.53500493835982 122.47273627682266 123.46972968077867 124.52965443167973 125.65572600473948 126.85054030835406 128.11588982200243 129.45256399428 130.86013604119393 132.3367374562834 133.87869911415146 135.47643417170718 137.11189272883487 138.76109607225592 140.39367443632554 + 16.110009182453442 16.719410782435734 17.329879894643504 17.936930355269944 18.53630540626605 19.124073762507578 19.696726970265953 20.251274889029673 20.78533524552268 21.297213158039007 21.785966673140546 22.25145469593689 22.694364221461345 23.116214471219365 23.51933638059478 23.906826836613252 24.282478092233518 24.650683838443456 25.016324451202536 25.38463489750095 25.761059634985145 26.151099527070226 26.560156279595795 26.993380152385118 27.455526685097198 27.950827887815123 28.48288278127601 29.05457134094634 29.66784675395493 30.322207777927403 31.015335179419413 31.74417178099598 32.50506484622746 33.293902684005495 34.10623261987546 34.937371282735675 35.78267171730723 36.63827844887088 37.50194799933503 38.372050509906195 39.24737186681204 40.12704958544 41.01051145883277 41.89741746965846 42.78760510263717 43.681037960222916 44.57775744915508 45.47782143629804 46.38117598764158 47.287625421834925 48.19681234643833 49.108188896600865 50.02099702842017 50.934258097405625 51.8467718127972 52.757124581672585 53.66370718892868 54.56474169480821 55.45831736588821 56.34243538435737 57.21506200075373 58.07418970466377 58.917905884541824 59.74446833095442 60.55238680719493 61.340509768243024 62.108115155277126 62.85500403116392 63.58159565630786 64.28902243870299 64.97922303271966 65.65503171473753 66.32021787069141 66.97859829108941 67.63422423757919 68.29242809160321 68.96052100920183 69.64743065057635 70.36226009525869 71.11391927820885 71.91082641241395 72.76062104623882 73.66989743519588 74.643966400782 75.68661568740079 76.79946531558159 77.9819928594828 79.23191359389585 80.54527548619633 81.91658651130975 83.33897626309086 84.80438513730397 86.3037740515517 87.82734768149363 89.3647845069246 90.90546753541014 92.4387103497421 93.95397404038344 95.44107155783487 96.89035696956982 98.29289794813778 99.64063047180876 100.92649511705135 102.14455440891729 103.29009043775244 104.3596813415581 105.35125647459338 106.26406825359825 107.09900957063111 107.86302539859773 108.56620020782232 109.21877217041535 109.83091777554668 110.41257280399174 110.97325995546973 111.5219186607465 112.06669271137358 112.61422625314063 113.16996561971744 113.73881787771997 114.32527153562816 114.93349976990258 115.567455512978 116.23095471641078 116.92774475800529 117.66155547501936 118.43613071271592 119.25523861666893 120.1226592055639 121.04214807219037 122.01737540018446 123.05183986820151 124.1487574415229 125.31092550317436 126.54056320597412 127.8391292552788 129.20711844383865 130.6438379973715 132.14716394990177 133.7132565317573 135.3333938921871 136.98942498937828 138.6566556370936 140.30366611821518 + 15.964134228817864 16.560994589613852 17.160486028631453 17.758066641732974 18.349390104589762 18.930402414531834 19.497440991724247 20.047333034363536 20.577489101247334 21.085987793176187 21.571647494082576 22.0340814169031 22.473732672943427 22.891886733130647 23.29065945296837 23.672959760184796 24.0424271180109 24.40334493506704 24.760532148151324 25.11921620767483 25.484891597624415 25.86316877512181 26.25961897526249 26.679620657494695 27.128213441081932 27.60996516998702 28.12885725426838 28.688192661109706 29.290529532696905 29.936908233484328 30.625679401657464 31.354122071482625 32.11886517946874 32.91602652862545 33.741342418156954 34.59027253091715 35.458263346792194 36.34142575207096 37.237263957861245 38.14384220333362 39.05961113255153 39.98334569664434 40.91408504494702 41.851075113601276 42.793714255602296 43.74150201824848 44.69399054091345 45.65069545270627 46.6109889063873 47.57409135136996 48.5390441696559 49.50468782804927 50.469650664853866 51.43234836783609 52.39099403878156 53.34361859896373 54.28810116369965 55.222208898038254 56.14364575544566 57.05010939385334 57.939355456194875 58.809268293984886 59.65793710185403 60.483736318357685 61.285409034778965 62.062152040836764 62.81370102677854 63.54041435864908 64.24335375164598 64.92436009010122 65.58612258696552 66.23223944629267 66.86723131672414 67.49576923438448 68.12279014094948 68.75467604582575 69.39969428126585 70.06651889133377 70.7637220466568 71.49951348336896 72.28148728606652 73.11638312611247 74.00986874370983 74.96634986966862 75.98863121783525 77.07735139682183 78.23141628321217 79.4481809761227 80.72354479549178 82.05207729459632 83.42716992441832 84.84120763404974 86.28575459734773 87.75174841139298 89.22969749413048 90.70987698206099 92.18251914843357 93.63799517352868 95.06698594013429 96.46064033413286 97.8107202365075 99.10973193617829 100.35104401672342 101.52899182867728 102.63896842178744 103.6775012658507 104.64231324407599 105.53236520615775 106.34833609796054 107.09675347826666 107.78721475026094 108.42957497389077 109.03374345291802 109.6095112095635 110.16638151907303 110.71339936199531 111.2589766136099 111.81039637647454 112.37338888277031 112.9529944880666 113.55377876063817 114.17992496455145 114.83532259598557 115.52364812139251 116.24843458887247 117.01312719493656 117.82112221694251 118.67578699827054 119.58045892971633 120.53842163442424 121.55285685652473 122.62677088718138 123.76289473368001 124.96355762649307 126.23053382106451 127.56486291146015 128.96664392411503 130.43480315604572 131.96683487819467 133.55851379211975 135.20173262667498 136.87844454228212 138.5632107121771 140.22356637411397 + 15.80190797740374 16.385709246966233 16.973790084649263 17.56156073768283 18.144593672049133 18.718720563799494 19.280132685610788 19.82548166659069 20.351976645041624 20.85747368019254 21.340553322396772 21.800582468108114 22.2377570441143 22.653122664585634 23.048571165581645 23.426811817734045 23.79131701449804 24.146243289934873 24.496329590850102 24.846775764421363 25.20310517403898 25.57101617353112 25.956227806755546 26.364325514338034 26.800612788026438 27.269974590897668 27.776757944786045 28.324674373673034 28.916727896005455 29.555049724516678 30.239309460510782 30.96716766170919 31.735551633668006 32.54082437401271 33.37892209645803 34.24546036268675 35.1359924993757 36.04660853997687 36.97457338986456 37.917653210710355 38.87396555759847 39.84191948193255 40.820156904993375 41.807496191499425 42.80287848908217 43.80531715940254 44.81384540341526 45.82740131229194 46.84476263789303 47.86453701817151 48.88513729239033 49.90476820973678 50.92142533869647 51.93290603337958 52.936832073789944 53.93068338696007 54.911842070584186 55.877645776464384 56.82544936458438 57.7526936074697 58.65697960694155 59.536147480409774 60.38835778120416 61.21217403752959 62.00664472854879 62.77138296553857 63.506642113276385 64.2133855744723 64.89334897117297 65.54909299483529 66.18404526440867 66.80252963233512 67.4097515946206 68.01113537684728 68.61251576632753 69.22150027978326 69.84640439138941 70.49548725839789 71.17672617246173 71.897596958515 72.66486495799506 73.4843920595775 74.36096488485154 75.29813457151302 76.2977007567573 77.35956727459157 78.4821877805067 79.66266156575128 80.89683260347996 82.17941140436028 83.5041150872916 84.86382093460597 86.25072876216518 87.65652768128159 89.07256324072404 90.49000148429275 91.89998710626836 93.2937935909921 94.66296393684496 95.99944123910848 97.29568899009529 98.54480139970264 99.74060430052495 100.87774724105466 101.9517871600157 102.95926355836627 103.89776434156278 104.76598050887601 105.5642824753029 106.29872171021374 106.9783575434407 107.61259753391258 108.21100889619234 108.78315420942498 109.33842709177156 109.88588396722707 110.43407070574487 110.99074185883751 111.56208595712914 112.15329456131415 112.76904156566602 113.4135641633986 114.09074204214838 114.80417244461893 115.55723760566629 116.35316138127898 117.1950521262643 118.08592908152455 119.02872972406041 120.0262957361438 121.08133548189642 122.19636114844783 123.37359901092638 124.61487159483998 125.92145079338884 127.29388118219728 128.7317727606945 130.23356200550484 131.79623928043603 133.41503911318998 135.08206938466734 136.77963223806412 138.4815152882453 140.15421067902616 + 15.624053743151936 16.194406716268468 16.770764491246343 17.348497553074797 17.923105782285546 18.49031524417227 19.046179379383485 19.587181677349207 20.110335920050762 20.613279877796312 21.09435831506381 21.55269133200915 21.988224427061468 22.401757211039055 22.794948417868188 23.17029571744036 23.531089810812823 23.881343338368033 24.22569621356938 24.569300060302865 24.917685429848827 25.276616353291953 25.65193749745497 26.04941969204538 26.474609843713473 26.932691218618167 27.428359738806186 27.965721291352565 28.54821409858165 29.178559542652636 29.85801024538538 30.584943329396623 31.35660353350388 32.16961705317917 33.02013488034336 33.90394263737081 34.81671471461201 35.754533699424215 36.7144384933621 37.69390497622434 38.69071943950515 39.70292110511199 40.72874526129265 41.76656817955284 42.814854617076215 43.87210846790445 44.93680989792107 46.00729115962216 47.08170922736709 48.1580296492503 49.23400971649522 50.30719541277376 51.374932130368656 52.43438872506127 53.482594157724456 54.51648568888694 55.53296735031871 56.52897721245889 57.50156179605178 58.447955838823965 59.365665521987104 60.25255318576561 61.106921517427054 61.92759517921558 62.71399785725849 63.46622275630867 64.18509463962538 64.8722216189809 65.53003503722356 66.16181595534314 66.77170695749474 67.36470822032408 67.94663379597512 68.52359851048423 69.10268607339357 69.69193694033828 70.29936326297543 70.93273233516055 71.59937914283975 72.30602719763846 73.05862190995664 73.86218050230401 74.72066211334551 75.63677909639034 76.61141992175163 77.64393696816606 78.73243456132874 79.87385006037832 81.0640535589097 82.29796332792907 83.56967318745316 84.87258801338183 86.19956375021906 87.54304859641927 88.89522244000085 90.24813212456789 91.59382069211114 92.92444934691648 94.2324114794343 95.5104386428827 96.75169885075769 97.94988792310345 99.09931481839598 100.19498191514967 101.23266102738359 102.20896553268057 103.12141835152416 103.96851464325859 104.75029035173733 105.47222574181656 106.1427939023527 106.7708998366861 107.36570212477069 107.93645841665948 108.4923682608882 109.04240962166261 109.59516786263191 110.15864311964212 110.73957917894712 111.34336778338852 111.97481192617522 112.63823737322679 113.33756016718877 114.07635319495228 114.85790830014028 115.68529061982414 116.56138197565986 117.48891027430436 118.47046199113313 119.50847494362064 120.6052087202357 121.7626903235827 122.98263280775116 124.26632491923475 125.61448994886193 127.02711210616043 128.50322864793378 130.04068561122614 131.63585417052212 133.2833031889693 134.9749333036584 136.69355893138993 138.41220236102419 140.09631154081504 + 15.43135923828937 15.98799210490106 16.552423252612925 17.11999178905088 17.686133989280894 18.246479412687915 18.796952399020608 19.33387614776588 19.854075556942597 20.354974739468148 20.834685053826288 21.29207959243335 21.72685037013526 22.13954494294856 22.531579851400483 22.905229103133355 23.26358685723902 23.610504512086774 23.950503486816693 24.288666076769292 24.630507804099373 24.981835624376245 25.348597136417254 25.736726527090116 26.15199332166136 26.599860067207175 27.085354825037854 27.612963773101328 28.18654831948697 28.809289916949204 29.48353830209167 30.209066621343812 30.98349321732913 31.803727804941925 32.66615415393249 33.56674443997245 34.5013091019306 35.46593719137162 36.4574550501439 37.473055908010984 38.51019618414138 39.56654067215514 40.63990776207876 41.7282161128623 42.829433836725876 43.94153075924355 45.062396733261586 46.189733592021994 47.32104768981533 48.45363328054344 49.58456583922653 50.710711006677855 51.82874882716481 52.93521247473451 54.02654025022339 55.09913927774221 56.14945903594426 57.17407262452156 58.16976348868276 59.13361520219115 60.06310184106479 60.956176463345315 61.81135524340167 62.62779488992717 63.40536110285257 64.14468599339993 64.84721260077312 65.51522488554801 66.15186186032633 66.76111482881998 67.34780704082823 67.9175554274928 68.47670779017126 69.03239431304588 69.59249684034523 70.16488018129701 70.75716275561598 71.37655918599914 72.02973003264864 72.72264186279678 73.4604406528586 74.24734126310142 75.08653479921016 75.97989187616268 76.9275655227239 77.9284798300911 78.98048410863984 80.08043760635083 81.22430705562503 82.40727398523899 83.62384875143671 84.86798836576294 86.13321542052915 87.41273572533107 88.69955265574279 89.98657666074206 91.26672885803359 92.53303814303531 93.77873172254337 94.99731943112498 96.18267256939905 97.3290982907995 98.43141073019197 99.48500008856934 100.48590074035168 101.43085909457005 102.31740140408482 103.14390096924588 103.9101175265668 104.62088368502867 105.28400505859267 105.90784123461327 106.50108436754873 107.07261867432379 107.63137219828229 108.18616024887629 108.7455192567919 109.31753122328179 109.90941755595898 110.52687625161265 111.17484987943395 111.85777783638339 112.57965028914855 113.34406383629445 114.15427546091202 115.0132514397305 115.92370793536328 116.88814004061568 117.90883608447335 118.98787406369789 120.12709714312128 121.32806527622633 122.5919801299859 123.91958063544261 125.31100659235041 126.765627776256 128.28183585044928 129.8567959697232 131.48615415115043 133.16369513430263 134.8807588534133 136.62067508492436 138.35576828853277 140.05043828299833 + 15.224658918480516 15.767406257831292 16.319804859881337 16.877171197470627 17.43488732510636 17.988495842746307 18.533801188574333 19.066974605675988 19.584659067165052 20.084070134823577 20.563088586830116 21.020340694843465 21.455262266929395 21.868143000239485 22.260148297429357 22.63331647652529 22.99053021994288 23.335462131358177 23.67249535878139 24.0066213522222 24.3433179040869 24.68841161659403 25.04792979911866 25.427947467167566 25.834435545304476 26.27311652680215 26.749333679866567 27.267939391760592 27.833207398999548 28.448772469933164 29.11759968053655 29.84111826543645 30.617668868983007 31.444467351039417 32.31815097562837 33.2348976555751 34.190669673097254 35.18157684506905 36.204246390681014 37.25559623070745 38.33275377317177 39.433004053899204 40.553737415761674 41.69239840710823 42.84643723665544 44.01326197023802 45.19013640220788 46.37410583998604 47.56199550192672 48.750399650055385 49.93568690644073 51.11402299507152 52.281410217596026 53.43374238375868 54.566873411288135 55.67669738849631 56.75923755748588 57.810741426783224 58.82777905832637 59.80734149286063 60.74693627676568 61.64467712811085 62.499364925481935 63.31055741426715 64.07862529540667 64.8047926842359 65.4911602945521 66.14071010742093 66.75729071701228 67.34558299794159 67.91104620075642 68.4598467225965 68.99909066952405 69.53685963482036 70.08101140733274 70.63910892399092 71.21830318112569 71.82521051267682 72.46579893108041 73.1452856473506 73.86804769032727 74.63754731522373 75.45625838655485 76.32523983674821 77.24408980959029 78.2113990389641 79.22484767787444 80.2812911774185 81.37685340858452 82.50702460000784 83.66676177769963 84.85058957591619 86.05269953555724 87.26704630943647 88.48743954201754 89.70763057234508 90.92139350861571 92.12260062516306 93.30529242010128 94.4637430257965 95.59252196508561 96.68655347348529 97.74117474103771 98.75219444655657 99.71595284207578 100.6293843774657 101.49008341717594 102.29637297753489 103.04781138081508 103.74859967863878 104.40576217141111 105.0270603060746 105.62067621095821 106.19506074212882 106.75880091157362 107.32047214111836 107.88847920973915 108.47088649227442 109.07517940721027 109.70749256463623 110.37291652032627 111.07601977268742 111.82089543566315 112.61120403159632 113.45021683129318 114.34085650513103 115.28573182326852 116.28716310345935 117.34719506534582 118.46759372289347 119.64982394095313 120.89500430119033 122.20383596160569 123.57650223581048 125.01253563166655 126.51064902495585 128.06852743404966 129.68257641778555 131.3476223345685 133.05655845742328 134.79988520508425 136.56130472257422 138.31256151581687 140.01700105130004 + 15.004818944461679 15.53361109169458 16.073958028870898 16.621162716539576 17.170562796459986 17.717623919392782 18.25804032293256 18.787840161561874 19.303492000698018 19.802008526551013 20.281043326401758 20.738976576083356 21.174985643342307 21.589096980416322 21.982216231628968 22.35613420864674 22.713507265285614 23.057811605082627 23.393272140231574 23.72476764514196 24.05771506160275 24.397936861320712 24.751516299609552 25.12464614571029 25.52347699780515 25.95397153660998 26.421771000588176 26.93207974866653 27.48957299585129 28.098331661230556 28.761806771225814 29.482627648278864 30.26054265993272 31.09312447290638 31.977286951645343 32.909435757621196 33.88570173178922 34.90223004492214 35.955462084471975 37.04204739742054 38.15878462951754 39.30257295268182 40.470362624831914 41.65910664748506 42.86571515421346 44.08700263313604 45.31957383787501 46.55978953586455 47.80376354216143 49.04736244426101 50.286224773008 51.515799362794326 52.73140175036282 53.9282867547158 55.10173478231629 56.24714891873398 57.360159503956574 58.43673264486232 59.47327899342595 60.46675910938734 61.41478182556332 62.31569223504732 63.16864621290227 63.97366875984541 64.73169389986852 65.44458436475318 66.11512984226576 66.74702313712409 67.34481417994964 67.91384240456131 68.4601485834287 68.99056895549992 69.51321909716242 70.03621322967443 70.56718669856306 71.11331463270659 71.6812218737375 72.27689497106364 72.9056039214694 73.57183485620074 74.27923471091759 75.0305687334177 75.8276266712587 76.67074803525054 77.55911457850223 78.491070811209 79.46420538089525 80.47543536959223 81.52109320904967 82.59701441495184 83.69862450628537 84.82102368268178 85.95906807592381 87.10744666599152 88.2607532500465 89.4135531665516 90.56044479711696 91.69611618540608 92.81539741418838 93.91330965601033 94.98511204656636 96.02634770829428 97.03289035965085 98.00099296671966 98.927339811183 99.80910314440804 100.64400525290972 101.43038625657398 102.16767368695346 102.85950008864323 103.51208137690897 104.13244225663719 104.72823107843962 105.30742133204231 105.87819809628868 106.4488276377522 107.02750734682138 107.62220328489461 108.24047191308847 108.88889679959708 109.5727675504797 110.29678797881245 111.0651738223935 111.88168117555419 112.74963719357795 113.67197002777107 114.65123484378152 115.68963265824796 116.78901861054884 117.95089617770395 119.17639374908059 120.46621990636088 121.82059369887185 123.23914615065938 124.72078915697358 126.26354778292915 127.86435170883823 129.5187811021823 131.2207614492967 132.96220075755753 134.73255920653648 136.51564336300893 138.28277548776143 139.9962390393678 + 14.77272454120052 15.287577402295177 15.815929956322243 16.35308114681453 16.894334427751645 17.43508897863264 17.97093905979356 18.497779182165637 19.011911647895563 19.510152609533122 19.989932541548832 20.449386937703583 20.887433154449653 21.303829620456312 21.699214124148682 22.075118565073275 22.43395839251423 22.778995928949335 23.114277851227286 23.444548235794418 23.77513971650944 24.11184640024292 24.460783179134037 24.82823691064594 25.220515550362737 25.643801664662092 26.104016774425325 26.606702649585532 27.156924962356793 27.759203603850285 28.417472480896034 29.135063730908826 29.913484573303915 30.75096245596307 31.64471295825561 32.5913942849201 33.58732377687952 34.628696745297646 35.71178176600854 36.832966442125965 37.98872022842247 39.17554952300738 40.38995158819423 41.628369569134804 42.88715048931418 44.16247756702303 45.45026850992404 46.74616968610556 48.04555404619629 49.3435344257369 50.63499846760083 51.9146644079686 53.177156013348025 54.4170941268206 55.62920159465246 56.80841781031292 57.95001873776256 59.04973806109532 60.10388505056269 61.109454829136155 62.06422695907048 62.96684863134216 63.816899216648444 64.61493350698284 65.36250162207017 66.06214425434389 66.71736265814181 67.33256353160067 67.91297967177849 68.46456798396135 68.99399369563582 69.5092017628849 70.01845207434246 70.52957953544836 71.04989979171826 71.5861288265957 72.14432073199951 72.72981377396553 73.3471857716265 74.00021925767683 74.69187677075986 75.42428645127086 76.19857543825962 77.01449822046852 77.8709249466909 78.76603404512137 79.69739244919258 80.66203607322514 81.65654917830838 82.67714142860132 83.71972162030904 84.77996726743258 85.85338944707061 86.93539253919131 88.02132873748268 89.1065474546605 90.1864399923161 91.2564800861468 92.31226116551105 93.34953137401601 94.36422757654964 95.35250971786785 96.31079698726535 97.23580727018395 98.12460131636865 98.97463290896282 99.78380606126608 100.55053987689296 101.27419752609835 101.95790431933003 102.60712071494056 103.22806598025235 103.82769721860798 104.41351670188887 104.99326478857309 105.57483804139062 106.16615870298502 106.7750213691653 107.40892753910494 108.0747718091822 108.77814684746687 109.5238888395291 110.31634678518189 111.15939505228664 112.05644987932992 113.01048655704848 114.02405434494538 115.09928598982222 116.23789852121482 117.441181811818 118.70997121648671 120.04460044418795 121.4448306703182 122.90975175093615 124.43765123428953 126.02584664532736 127.67047619986072 129.36624262909027 131.1061040960942 132.88090519531588 134.67893968523316 136.48375944913803 138.2664454646409 139.98821283678458 + 14.529269524342075 15.030274881290541 15.546756807039623 16.074020067037765 16.60734454705273 17.1420738929986 17.67371314701538 18.19803323873573 18.711179048723373 19.209777305946062 19.691040272165576 20.152861024288132 20.593896186910875 21.013632201088704 21.412431643907126 21.79155673074546 22.153167923365636 22.500296508417687 22.83679107005472 23.167238916260104 23.49686468300901 23.831409479267375 24.17699499045257 24.5399778673691 24.926800430796227 25.34384416041054 25.797292557490376 26.293009729046496 26.836440403066984 27.432536031049676 28.08571016254622 28.79982440435349 29.57782217818684 30.41922166761093 31.32157414067222 32.28181743437674 33.29647534199894 34.36180822663823 35.473924494810284 36.628955649740426 37.82304080366708 39.052285861758534 40.31272134755253 41.600261459676545 42.91066370047578 44.23944060188824 45.581797621204444 46.932636458726925 48.28656114929337 49.63790698220673 50.98079307846223 52.30919735822682 53.61705151849791 54.898352689168206 56.14728766716683 57.358365057624376 58.52655028585537 59.64739828542673 60.71717871049699 61.73298875404075 62.69284906147973 63.595778791147794 64.4418465647856 65.2321948458788 65.96903615207327 66.65562041988957 67.2961737649431 67.8958097887762 68.46041544542757 68.99655918380104 69.51203445786255 70.01522705667448 70.5140688412777 71.01601353865873 71.52797385632535 72.05614931460077 72.60599189739787 73.18218493210453 73.78862987656028 74.42844093540863 75.10394737186301 75.81669819079585 76.56718533427834 77.35472625185962 78.1779626678908 79.03498018527041 79.92338636484253 80.84038560153753 81.78284998666527 82.747385511435 83.73039313790503 84.72812443929466 85.7367316909721 86.75231247535818 87.77094904711153 88.78874288760896 89.80184505778514 90.8064831331611 91.7989856709711 92.77580531242714 93.73354175798589 94.66896596340281 95.57904698120889 96.46098290607688 97.31223736126563 98.13058287234486 98.91415229622007 99.66149918718816 100.3719834343337 101.04828244085469 101.69515509097903 102.31806123192436 102.92315819285113 103.5173013473598 104.1078253323972 104.70221721941763 105.30806503826989 105.93292656540832 106.58417285652554 107.26879666733674 107.99277982977218 108.76110253189181 109.57824900124199 110.44822554405914 111.37456174494393 112.36031330748432 113.40806386747668 114.51992285960061 115.69751625977658 116.94196676701114 118.25385973687128 119.6331909373652 121.07929196569602 122.59072893334427 124.16516978133285 125.79921530223284 127.48818858595646 129.2258771300259 131.0042212146621 132.81294129389593 134.63909606483486 136.46559867729337 138.26344884976527 139.9928007082278 + 14.275347767159207 14.762664094968926 15.267456174101898 15.785044730234713 16.31069706186528 16.839712664113474 17.367518665989074 17.88977313530361 18.402473143001004 18.90206398019998 19.385545559664894 19.850571831567034 20.295539019646075 20.71965865084957 21.12301171486926 21.506580847387372 21.872258171254067 22.222827333044567 22.56191930905001 22.89394268635474 23.223990304612865 23.55772531868807 23.90125085207392 24.260968392859176 24.643430873388297 25.055196908272194 25.502692883613157 25.992089440875816 26.529198339719503 27.11939468683821 27.767568070829167 28.47810425474919 29.254846453785902 30.09912836734402 31.00902159208087 31.981771188133145 33.014131200123515 34.10244202492509 35.24266407689137 36.43067795789192 37.6622905407539 38.93319872896413 40.238951800089936 41.574915321259475 42.9362224823008 44.317682361281186 45.71376203227176 47.11858937763704 48.525973579952016 49.92945164212551 51.32236049268902 52.69793279561962 54.04941331110214 55.37019158352276 56.65394589418141 57.89479282731907 59.08743646796565 60.227311178379225 61.310712077291676 62.33490775567994 63.29823038023416 64.20013913108534 65.04125385896212 65.82335689061443 66.54936201978582 67.22325085314003 67.84997779576156 68.43534602030363 68.98586887452821 69.50917868629656 70.01385773028542 70.50806311755389 70.9992915680159 71.49452463882461 72.00020255048166 72.52196439183277 73.06464096710963 73.63226469474303 74.22808517895177 74.85459002362974 75.51353046630527 76.20592134899269 76.93168215480074 77.6898183584515 78.47881891280227 79.2967431593163 80.14129462833472 81.00988895664966 81.89971563134999 82.80779341389318 83.73101943776604 84.66621210781902 85.61014806026547 86.5595935702099 87.51133091901814 88.462180357225 89.4090184199739 90.34879347069642 91.27853946372963 92.1953890258842 93.09658705765797 93.97950614262298 94.84166512275078 95.68075224045955 96.49465425508566 97.28149289968974 98.03966993774284 98.76792188852366 99.4656603396589 100.13517121226377 100.78056568577583 101.40659342820419 102.01865222825374 102.62280459788755 103.22578547236401 103.83474761652721 104.45690896719564 105.0995335451662 105.76979932446092 106.47463847853923 107.22036670326118 108.01217643855097 108.8546809994548 109.75202341914188 110.70786170100791 111.72535619182943 112.80715673905054 113.95538699337908 115.17162290266039 116.45686212205047 117.81148074552412 119.23517344921152 120.72687282883908 122.2846434075744 123.90554547657753 125.58546359152653 127.31889416079052 129.09868609649385 130.91572792933758 132.75857408870752 134.61300221546844 136.46099052629583 138.27350853839386 140.00969851982677 + 14.011846395300347 14.485690202921552 14.979021288724622 15.487186722955162 16.00545252045782 16.52908583632268 17.05344774766395 17.574094879073282 18.08688695070998 18.588096789890596 19.074518936077087 19.543572709681953 19.993395527732897 20.422922349647344 20.831947433162103 21.221165075196843 21.59218669785264 21.947532499346348 22.290596897358284 22.62558811239302 22.957443426625822 23.29172285646125 23.63448513496343 23.992150948641974 24.371359244116057 24.77882304590772 25.221191541588176 25.70492513504242 26.23618969226842 26.820775269241345 27.464043196812245 28.170903502427898 28.945823536284795 29.79190961942841 30.708230838730024 31.692363429872835 32.741322412246156 33.85154352887924 35.018850847012764 36.23887858357525 37.507098732811706 38.818789946571236 40.169005086615286 41.55253829529884 42.96385541139338 44.39704074844498 45.845794487784204 47.30344348102845 48.762979053059574 50.217123102716116 51.658421537433696 53.079362443307105 54.47251496048906 55.830683653672445 57.14707227391676 58.41545022344311 59.630314768422316 60.78704209294036 61.882020635380925 62.91276077110179 63.87797576815799 64.77763000416866 65.612951644809 66.38640829660197 67.10164550556735 67.76338932574855 68.37731547642503 68.94989014860455 69.4885573706115 70.00209191018172 70.49900238748114 70.98708473096568 71.47330671624465 71.96409873103438 72.46537221569483 72.98217446883754 73.5187073506078 74.07836594008155 74.66377995521633 75.27685734381114 75.91882952188028 76.59020801902705 77.29043541122432 78.0183062559045 78.77222648135209 79.55028929181236 80.35034299940652 81.17005099947235 82.00694407353274 82.85846530871292 83.7220080157352 84.59494711206582 85.4746645146967 86.35856916058418 87.24411234387611 88.12879912940416 89.01019667279859 89.88594034983959 90.75373867156074 91.61137803670394 92.456728448014 93.28775139104579 94.10251113970064 94.89919080591139 95.67611448389069 96.43177684157536 97.16488146952315 97.87438919268311 98.55981177382932 99.22309653131558 99.86775991048665 100.49789179606344 101.11817604392341 101.73391804500197 102.35106936887048 102.97624064848029 103.61639273261378 104.27846296645826 104.96938141240938 105.69593670163329 106.46457597196711 107.28082001819259 108.14940412751635 109.07460433463139 110.06021293874073 111.10950973886824 112.22523344480604 113.40955095620988 114.66402184208782 115.98955498070052 117.38635394283726 118.8538473253167 120.39059986962538 121.99419983254505 123.6611177068228 125.38653101123259 127.16410946776679 128.98575444437822 130.84128605223663 132.71807074364892 134.6005816773218 136.46965619714965 138.2961987071888 140.038422941773 + 13.739640517210571 14.2002782231616 14.682416791858984 15.181440211219844 15.692624798679372 16.211217591348216 16.732526043641194 17.25201749891772 17.765425711728234 18.268861123973643 18.758921141912534 19.23279634705603 19.68836842515012 20.12429563176328 20.540081842655983 20.936125667035967 21.313746728535257 21.6751870295396 22.023586286784425 22.362931227300148 22.697980021442348 23.034164252339362 23.377472019085975 23.734316878448777 24.11139827641873 24.515559834494425 24.9536522650303 25.432407728638587 25.958332055798447 26.53762038769734 27.176100417078676 27.879205517830894 28.651977655941078 29.498813898247487 30.420423755377524 31.414771589790472 32.47916479713497 33.61015484808627 34.80344052824998 36.05441349097939 37.35820750164494 38.709673050789725 40.10335064915262 41.53342558371908 42.99366751392967 44.47741363600825 45.97756964634843 47.486636954112434 48.99676988791159 50.49986331558334 51.98766909000428 53.45193790185046 54.8845815363734 56.27784925422403 57.62451108816971 58.91804029334667 60.152787016846695 61.32413545531954 62.42863732443731 63.46411533590164 64.42973151937868 65.32601658260286 66.1548580107267 66.91944619977949 67.62417953154898 68.27453086238286 68.87687935417293 69.43848628688565 69.96818293491674 70.47493786516857 70.96697776909996 71.45164173999572 71.9352844376015 72.42371796822837 72.92228143763313 73.43541081516405 73.96668156878405 74.51887343092208 75.09403449476682 75.69354407341358 76.31817317594607 76.96794689801374 77.64195525694122 78.33886116496325 79.0570514438472 79.79470713904642 80.54986409914947 81.32046435751204 82.1043989201297 82.89954261469117 83.70378169425487 84.51503491872766 85.33126886157984 86.15050821100175 86.97084185664019 87.79042557748484 88.60748217533904 89.42029993313095 90.2272303190991 91.02668590701761 91.81713953871716 92.59712581687326 93.36524608079112 94.12017808161649 94.86069162997299 95.58567152995651 96.29414912711718 96.98534376909872 97.65890925823098 98.31650325542861 98.96109888738083 99.59617688625494 100.22575505798392 100.85442469762607 101.48738590197313 102.13047991272353 102.7902036371465 103.47331543230388 104.18646434082058 104.93624119663394 105.72903886778768 106.57070159871915 107.46613830509564 108.4197462963201 109.43544905180126 110.51665108523457 111.66619297904008 112.88630464850401 114.17855450256818 115.54379175747665 116.9820787384908 118.49260958086418 120.07361131993673 121.72222294508425 123.43434758418448 125.20447258256632 127.0254518398856 128.8882443676316 130.78160263161055 132.69170386209984 134.60171718560196 136.49121710502027 138.33095238957705 140.07831747996724 + 13.459589321945295 13.907329679853584 14.378575913525491 14.868759633365265 15.373179289866998 15.88707442102433 16.405711869624806 16.92448264904163 17.43900694014645 17.945244098577323 18.43960405454096 18.91905612304943 19.381231035201314 19.82451197126607 20.248110539059716 20.65212400477031 21.037570648263923 21.406400872045307 21.761482623548982 22.10656076496334 22.44619120356812 22.785651828802894 23.130833531083336 23.488115735144824 23.86423189504286 24.2661311931373 24.700843185237474 25.175352265301633 25.696488519062896 26.27084074091941 26.90469606187218 27.60400875765022 28.374398379616764 29.22113665283316 30.14689747738078 31.150277554114 32.228895547791296 33.379451712804496 34.59753094952646 35.8782854850884 37.21650685668641 38.60660679846731 40.04258490779214 41.51798287015836 43.02585775310662 44.55877313517424 46.108815324688834 47.667639688104195 49.22654934839444 50.77660617432116 52.308771746863975 53.814073965475885 55.28379323262931 56.70966079954384 58.08406091747053 59.400227944676026 60.65242951556755 61.836127271518336 62.94810745088969 63.98657479043471 64.95120464027744 65.8431498682603 66.66500094791431 67.42069950534764 68.11540746156776 68.7553356689908 69.34758153035646 69.90079888204342 70.4244620381746 70.92733963439422 71.41727927930596 71.90107553630902 72.38439560370341 72.87237788221859 73.36975774294054 73.88035128292009 74.40711945786416 74.95225599191835 75.51727081662717 76.103068668962 76.71000954876315 77.33766151025758 77.98488786014394 78.65028678539794 79.332284224146 80.02919721330355 80.73928629701804 81.46079795322966 82.19199799938745 82.93119692776253 83.67676810069942 84.42715971078454 85.18090138397379 85.93660627845884 86.69296951126016 87.448763730643 88.20283264750296 88.95408334453306 89.7014781995073 90.44402728917947 91.18078218326423 91.9108320931815 92.63330340615555 93.34736370907453 94.05223148380205 94.74719272983376 95.43162583205175 96.10503602809202 96.76725454338354 97.41969420856958 98.06483421527719 98.70559626851963 99.34538124652242 99.98811256371833 100.6382800376885 101.30098271539657 101.98196916948466 102.68764422131862 103.42454508712692 104.19902733330306 105.01733888816592 105.88544775258966 106.80856303860041 107.79119091498349 108.83737430104358 109.95063823574165 111.13392835048754 112.38954759547372 113.7190892558602 115.1233638586186 116.60231712026535 118.15493562886117 119.77913649874877 121.47163679075527 123.22779806001155 125.0414409834026 126.90462463469564 128.80738462628975 130.73742403810283 132.6797508357493 134.61625539425498 136.5252030228334 138.3770701304416 140.12856082926433 + 13.172533400691567 13.6077204980579 14.068398936302648 14.550058731060359 15.048032505663196 15.557565302994616 16.073896962535326 16.592355953785646 17.10846236099998 17.61803708635932 18.11731380640018 18.6030498066747 19.072631557738895 19.524170804135327 19.95658703488809 20.369672500755158 20.76413644395952 21.141625905206165 21.504721355321497 21.856906438956862 22.202512278632483 22.54663802132049 22.89505055901483 23.25406755263499 23.630428961320582 24.03116314799612 24.46345421632261 24.934517454492273 25.451489543736702 26.02133946951688 26.65080480116397 27.346356150783365 28.11419017897706 28.960249740209278 29.889056655959358 30.900296417939145 31.99191711455437 33.16078943694638 34.40240771817387 35.711688967249756 37.0830762511708 38.51052016622152 39.98745047871506 41.50674948713961 43.06073768156826 44.641180670406385 46.239324258089944 47.845962147839735 49.4515381696655 51.04628234827767 52.62037766930549 54.1641521992511 55.66828936812131 57.12404781320827 58.52348126219876 59.8596485318581 61.126803837558114 62.32055822729343 63.438004027976206 64.47779565910503 65.4401819512891 66.3269871149986 67.14153964152996 67.88855058392328 68.57394476241723 69.2046524637104 69.78891584663879 70.33659693584201 70.85710795135772 71.35891705545882 71.84940192413782 72.33473322151954 72.81982626495613 73.3091017320726 73.80667137687952 74.31573303307664 74.83865337776484 75.37707578072718 75.93201966107392 76.50397133632917 77.09290769297749 77.69800646897701 78.31800930267147 78.95151127352779 79.59703013713128 80.25306157172687 80.91812282286261 81.59078606330235 82.26970271904483 82.95361993737349 83.64139029447938 84.33197576261247 85.02444688345028 85.71797802837995 86.41183957010982 87.10538774553181 87.79805295876112 88.48932725722347 89.17875171367895 89.86590446400265 90.5503901848125 91.23183184659001 91.90986564601543 92.58414010413979 93.25432041177908 93.92009920543987 94.58121505920975 95.23748007039424 95.88893211111764 96.5367798632524 97.18305559561335 97.83017100645294 98.48095951733933 99.13872486353958 99.80729157163685 100.49105607680391 101.1950372375432 101.92492504425049 102.68705397378544 103.48770545860361 104.33293714584926 105.2286467340119 106.18032229667244 107.19264887935299 108.26976830680239 109.41531278144645 110.63232637031479 111.92318512740317 113.28951362069238 114.73209584519388 116.25077803817813 117.84436043886589 119.51047456296588 121.24544210319364 123.0441111310698 124.89966487437002 126.80339799222995 128.7444549844004 130.70952517953188 132.6824886914639 134.64400787755946 136.57105896668452 138.43372898955437 140.18817700208825 + 12.879293171770792 13.30230003516364 13.752752845067446 14.226210834440641 14.718053017855695 15.223543322886007 15.737908806415305 16.256430057580356 16.77454169871997 17.287940249674836 17.79269605928468 18.285365558075984 18.763099774349083 19.22374490632037 19.665930775871594 20.08914321938342 20.4937769053931 20.881165705991393 21.253588577569392 21.614249904476665 21.967234392699424 22.317437824690703 22.670476244840533 23.032577371579674 23.41045915211307 23.811201308318473 24.242116382932743 24.71062709914755 25.224156713333482 25.790038397350123 26.415448474731498 27.107366513844525 27.872562835641762 28.717610939723098 29.648448374597514 30.666410948998458 31.769822988390047 32.955742082909545 34.21958688324524 35.55604540799695 36.95920189678232 38.42252829300721 39.93886761660156 41.500421131239094 43.098750189710984 44.724801908931525 46.368965550974686 48.021163848734794 49.67098069674749 51.3078238055981 52.921118254647766 54.50052451501722 56.036172570511226 57.51890232773497 58.94049963690916 60.2939169696041 61.57346811606812 62.7749871416604 63.89594322199256 64.93550478067357 65.89454848553444 66.775611010006 67.5827839200172 68.32155448589874 68.99859752961832 69.62170029636737 70.20067483606063 70.74565778136466 71.26584072053626 71.76929744288977 72.26285165154182 72.75197935298594 73.24078950737292 73.73295210868787 74.23194625239523 74.7403624166095 75.26000063560816 75.79199491692326 76.33692506534621 76.89491608290994 77.46556115669843 78.04776185008576 78.64021805569308 79.24157824600883 79.85049937262421 80.46569323195406 81.08596103972201 81.71021782430635 82.33750811093707 82.96701423080675 83.59805845614845 84.23010003792615 84.86272810978741 85.49565132251453 86.12868498905719 86.76173645267109 87.39478934081716 88.02788733621846 88.66111808463229 89.29459786714301 89.92845769362935 90.56283152376461 91.19784739232298 91.83362230593818 92.47026188712758 93.10786586540075 93.74654064985415 94.38642035558236 95.0277730277165 95.67163982215261 96.3196504866215 96.97375413515108 97.63626577816012 98.30991858206339 98.99791917265574 99.70400500379156 100.43250278006387 101.18838691426532 101.97733702827766 102.8056128441823 103.67919085045246 104.60382233607399 105.58503393904006 106.6278101233165 107.73639547111243 108.91450724272448 110.16527179276078 111.49112845693007 112.89372971748442 114.3738360335253 115.931203257441 117.56446008368697 119.27097250382914 121.04669178603723 122.88598207300551 124.78142331651776 126.7235849599432 128.7007655681875 130.69869352415898 132.70018401320652 134.68474787700367 136.62814864469595 138.49999117281445 140.2560466740945 + 12.580669794621423 12.991891159904258 13.432472085280958 13.898050335228042 14.38406368583931 14.88580869650248 15.398514486979424 15.917429342848761 16.437918279073617 16.95556903382758 17.46630338062284 17.966490163133418 18.45305610085795 18.923590210387612 19.37643765878998 19.81077902974865 20.226691350130107 20.625187796723782 21.008233772364576 21.37873798891408 21.74051829138002 22.09824316052676 22.457351086604987 22.82395124919392 23.20471009281323 23.606729372460162 24.03742197008925 24.504392163142015 25.015326972756878 25.57790465246126 26.19972523047861 26.88826624096601 27.650864346816505 28.494720475884343 29.426797418801268 30.450411565814143 31.56443015685516 32.76611574115503 34.050822312239546 35.41301072914234 36.84639993921306 38.343970211635366 39.89796041898935 41.499871481723 43.14048701899652 44.80992038914293 46.497694842087334 48.192860647494044 49.88415001272282 51.56016756361364 53.20961131260309 54.82151654328166 56.38551302958035 57.89208457933627 59.33281910825997 60.70063733709533 61.9899887522488 63.19700463542139 64.31959967837125 65.3575158576865 66.31230473508205 67.18724704202042 67.98721116781775 68.71845486241953 69.38839076814821 70.00621213402215 70.58267161285359 71.1277747295382 71.65039538793687 72.15812433756261 72.65715451671889 73.15220533884872 73.6465348182459 74.1430399546231 74.64456827805522 75.15312226432088 75.66996942042047 76.19577980054909 76.73074688286974 77.27467746510186 77.82678246579273 78.38582569910743 78.95052603243249 79.51963678572105 80.09199637644826 80.66656534206538 81.24245178621516 81.81892708164574 82.39543345531843 82.97158488493217 83.54716255469569 84.1221059541812 84.69650055910374 85.27056290787712 85.84462378338243 86.41911012589148 86.99452624077303 87.57143482372645 88.15043830715668 88.73216103433153 89.31723279361438 89.9062742938142 90.49988523389578 91.09863571600219 91.7030618694868 92.31366669405527 92.93092728950799 93.55530981333345 94.18733087286506 94.82789682686705 95.47827652392807 96.1400019050217 96.8149175074024 97.505234977803 98.2135915630468 98.94311183917397 99.69747187880401 100.48096501195369 101.29856831731212 102.15600836651478 103.05938768880912 104.01434402446804 105.0262958364459 106.10035919147892 107.24101942367987 108.45205715911503 109.73665579705417 111.09729854634585 112.53565280966504 114.05244933246485 115.64735447094631 117.31883347232375 119.06400220385929 120.87846433106212 122.75613054861763 124.68901613146524 126.66701282385023 128.6776309538177 130.70570769260678 132.73307763130813 134.73820240199805 136.6957570401588 138.57481161889808 140.3309192079734 + 12.277457996966906 12.677291306367016 13.108360366502826 13.566375292918272 14.04684512142337 14.545113147880874 15.056426031617468 15.576016269993389 16.099196392071498 16.621462557006353 17.138604643110696 17.646819402871554 18.142822864598628 18.6239579092691 19.088292865392543 19.534707064952343 19.962959603121607 20.373738049003023 20.76868456007601 21.150397744458225 21.522409665766993 21.88913855616856 22.255819042564436 22.62841293530276 23.013504804088566 23.4181875887311 23.849944273451595 24.316532099987818 24.825875814860307 25.38597595372199 26.004837085621215 26.690419214477863 27.45061313045077 28.29323741811304 29.22603960151759 30.25433175598629 31.377821877943706 32.59399421547231 33.89814839787665 35.28451996968187 36.74645696497666 38.27643675856675 39.866079583232164 41.506170866054006 43.18670340936309 44.89694845526247 46.62556203444964 48.36072993576675 50.09035137274411 51.80225819007213 53.48446345100274 55.1254306537708 56.71435278504779 58.241429036444444 59.698126350126444 61.077413043754376 62.37395257461091 63.584246981720966 64.70672160373158 65.74174519277435 66.69158239351437 67.56027858210258 68.35348010655424 69.07819588543921 69.74278821216953 70.35800711165304 70.93474369637191 71.48276326112277 72.01052854941094 72.52506440059975 73.03186382213518 73.5348366668773 74.03635518251522 74.53853125872367 75.04359136066681 75.55297691410063 76.06746260559271 76.58730349787368 77.11236163632826 77.64212670959347 78.17549509707345 78.71120461561182 79.24804814430837 79.78493035608034 80.32090851542213 80.85521997497264 81.38729864702427 81.91678243532525 82.44351334160491 82.9675317139371 83.4890658823971 84.00851823230913 84.52644859673673 85.04355570723564 85.56065732452058 86.07866957778486 86.59858597225383 87.12145647865137 87.64836709539473 88.18042027459308 88.7187166266909 89.26433836649838 89.81833503616885 90.38171213920107 90.95542344434865 91.54036786949192 92.13739203230031 92.74729975472141 93.37087007594525 94.00890360394128 94.66234700669888 95.33235809621202 96.02035715879417 96.72808243161005 97.45765027652612 98.21161952209624 98.99305936207271 99.80562012574723 100.65360617958103 101.5420501893282 102.47675161382499 103.4634989360958 104.50756668733318 105.61399199643745 106.7874227427641 108.03181797093153 109.35038868863914 110.74563351658749 112.21921259682773 113.7718119336247 115.40300127120061 117.11108388001115 118.8929361963704 120.74383485834534 122.65726832525678 124.62472998381237 126.63548946089914 128.67633881873167 130.73131045032034 132.78136388508378 134.8040394400554 136.7730778248657 138.65704396080292 140.41142487156486 + 11.970437477052732 12.359274282990093 12.781193456366989 13.23195112392092 13.7071403431181 14.202165594631806 14.712307182216287 15.232799279204304 15.75892034429453 16.286093810453487 16.80999634281438 17.326670430924477 17.832637654457216 18.325008666444962 18.801585799350175 19.26095423842021 19.702557939770777 20.12675690610659 20.534863070332296 20.929152865272982 21.312855553179133 21.690117515865182 22.06594391653791 22.446120376306144 22.83711848904672 23.245990044704502 23.68025565253808 24.14779395709251 24.656737725059298 25.215382659200245 25.83211378456199 26.515352586981496 27.273525722572128 28.115053049148973 29.04834898620058 30.08047816201951 31.212378762669832 32.441772821442086 33.76391510708832 35.1728180818871 36.66145484842334 38.221791573499814 39.84481966730418 41.52059970732431 43.23832790844678 44.986433833237214 46.752715235754266 48.52451268546283 50.288923177553876 52.033048546499586 53.744271384632654 55.41054851987892 57.020710080939445 58.5647508847903 60.03410038413906 61.42185772793904 62.72297958712149 63.93441020942907 65.05514558437866 66.08622648532291 67.03065835236355 67.89325931691502 68.68044097184604 69.39994534748013 70.0615761275432 70.67693664238749 71.25675778828975 71.81046594065879 72.34602344365767 72.8698126703483 73.38656547731645 73.89933824077634 74.40959221263088 74.9186517565198 75.42814143912892 75.93897535355714 76.45147981272527 76.96554659673099 77.48075558256278 77.99623502161099 78.51072294805537 79.02300225886535 79.53199018979636 80.0367844378183 80.53669382648279 81.03125633709486 81.52024693616715 82.00367726859807 82.48178896016627 82.95504198378083 83.42409929133794 83.88980869577304 84.35318280406773 84.81537764938527 85.27767054694009 85.74143760162778 86.20813122414765 86.67925796508295 87.15635695241212 87.64097921697707 88.13466821283058 88.63894188589116 89.15527671612597 89.68509425698947 90.22975082262936 90.79053112980611 91.3686468885379 91.96524155321906 92.58136658448518 93.2177424357845 93.8750293130415 94.55405126203289 95.25584827600748 95.98173155589096 96.73334398693301 97.5127254829772 98.32238275167846 99.1653629385682 100.04533052134336 100.96664675492934 101.93445091949363 102.95453116995137 104.03218055561761 105.17228675879579 106.37942533371358 107.65768662111624 109.01041654968807 110.44009917277536 111.94835672479606 113.53580725488476 115.20190935978056 116.9447996691268 118.76112156853338 120.64584329031261 122.59206319878572 124.59079987393417 126.6307644868416 128.69811300318827 130.77617599772208 132.8451643781189 134.88185018540722 136.85922297090886 138.74544442043106 140.49608686036981 + 11.66037020649721 12.038601613507096 12.451722913101188 12.89551532234606 13.365660566422214 13.857639081809992 14.366781533522117 14.888342175075767 15.417585106858063 15.949881557542605 16.48081570441007 17.006296005511484 17.522668565872237 18.026828728337705 18.51632689317093 18.98946455219207 19.445376691288836 19.884097080868326 20.306603539882605 20.71484101767572 21.11172126954152 21.501098974292272 21.88772530983596 22.277181207122204 22.675793672794875 23.09053962445311 23.528942528761437 23.998967675210583 24.508922058708013 25.06736448689429 25.683030586284264 26.364775783380907 27.121537033886565 27.962311047221153 28.896143027262713 29.93145189968355 31.07080042029389 32.31217953674028 33.65080780964374 35.08047768660192 36.59378582544478 38.182183080409615 39.8360277995594 41.54465403101365 43.29646498358699 45.079059869169676 46.87939931293111 48.68401111998853 50.47923460663151 52.25149820411294 53.987621863774514 55.675133139733106 57.3025838621797 58.85985315415967 60.33842224901586 61.73160714356548 63.0347365324293 64.24526462497765 65.36281122222495 66.38912466981665 67.32796682643877 68.18492280426362 68.96714175771679 69.68325281248654 70.34458938398383 70.96288852166207 71.54861372478904 72.11075630714306 72.65669384356768 73.19209647186912 73.72088188914468 74.24521815687825 74.76563966657426 75.28269001087273 75.7974189404293 76.31025288066839 76.82111814540102 77.32959693912896 77.83497885686903 78.33606215073752 78.83157703188593 79.32040549531266 79.80163478644712 80.2745925885047 80.73886754211178 81.19431807918848 81.64107208174707 82.0795194549878 82.51029933380619 82.93428332129342 83.3525558842606 83.76639280063785 84.1772383628043 84.5866818854953 84.99643394317366 85.40830266638271 85.8241703569484 86.24597063599735 86.67566631536262 87.11522818157187 87.56661490248726 88.03175431072093 88.51252638672022 89.01074835994908 89.52816247129279 90.0664270962496 90.62711211913157 91.21169967540675 91.82152038746032 92.4572369332689 93.11925569181261 93.8081043395028 94.52448377063159 95.26932205952411 96.0438339728773 96.84958583564847 97.6885654445588 98.5632566102469 99.47671779752082 100.43266422843438 101.43555272040344 102.49065956092389 103.60344662431424 104.77865641464038 106.02070986397796 107.33360565455463 108.7207413741253 110.18470200048607 111.72705573665031 113.34832228394067 115.04782811593327 116.82353334623937 118.67185121987286 120.58745897301667 122.56309856379775 124.58936562075456 126.65448492049973 128.74407083340392 130.84087151753323 132.92449626128192 134.97112635639064 136.95321133073824 138.83867338195114 140.5833328693088 + 11.348004137974442 11.716030125197944 12.120680702020445 12.557783154337677 13.023092065569037 13.51217889032612 14.020441950712637 14.543174892731772 15.075648440514117 15.613203794301565 16.151355415821282 16.68590039696016 17.21303113983581 17.72944771511637 18.23246603710518 18.720117922814588 19.19123920794275 19.645542389041005 20.083670753722945 20.507231645034047 20.918807366074667 21.321943237986257 21.721113436457635 22.121666393493737 22.529752693858452 22.952239439173837 23.396615907245298 23.870895903082232 24.383522381551764 24.943279621589532 25.55921735774369 26.240589749992708 26.996809842509222 27.8374172020996 28.772052753387776 29.810156906509146 30.95611352302157 32.20828220385632 33.56185303700649 35.010402880340806 36.54615398030766 38.16004347473228 39.84180020586476 41.58003979845178 43.36238764039198 45.17563708935968 47.00594717590836 48.83908056592821 50.660678873498505 52.45656885893373 54.213089860107615 55.91743020361516 57.557958493979335 59.12453469796159 60.60878588405962 62.00433234435187 63.306951562576806 64.51466999543977 65.62777575902115 66.64874888220623 67.58210960617203 68.43418906481614 69.21283311595133 69.92790485540944 70.59170712972539 71.21579071995617 71.81024789934384 72.38354204532192 72.94238706576992 73.4916783098605 74.03447472980625 74.5720302847035 75.10394573265637 75.62999926410714 76.15070005791333 76.66603168666427 77.17557199551919 77.67863725283861 78.17414120377373 78.66074032390796 79.1372389804156 79.60266776648888 80.05632491901271 80.49780049283403 80.9269869576278 81.3440792763073 81.74956698541503 82.14422032849737 82.5290720905922 82.90539644113429 83.27468580815305 83.63862657243928 83.9990741802283 84.35802812106985 84.71760709871798 85.08002463265305 85.44756526269178 85.82256148645664 86.20737153761823 86.60435811111243 87.01586816020455 87.44421393042813 87.89165545897154 88.36038485762248 88.85251281609271 89.37005791401788 89.91493951797374 90.48897526817278 91.09377903628962 91.72997510385368 92.39774549450074 93.09735568262055 93.82920543562082 94.59388048321996 95.39220990211373 96.22532914504967 97.09474852526708 98.00242684014245 98.9508496857582 99.94311188124436 100.98300329229963 102.07509722104506 103.22467454843392 104.43649783195545 105.71476472429867 107.0632972335391 108.48536545546398 109.98350157179433 111.55930839907893 113.21324317144133 114.94447635111983 116.750777819148 118.62833143147697 120.5715408373274 122.57282789512278 124.62242279367803 126.70814502496034 128.81517456012025 130.92581300336045 133.01923520109207 135.07123284463427 137.05395312131358 138.93529462685075 140.6715061347207 + 11.034077802289383 11.392306715982354 11.788786231572512 12.21945425567676 12.680104025936119 13.16641172587997 13.673861156543369 14.197805518288964 14.733544351831071 15.276412605672828 15.821879806685299 16.365656765531245 16.90380677130741 17.432857846113393 17.949912366527716 18.452750239926523 18.93992187043359 19.41082737767087 19.865778949400443 20.306043815131886 20.733866109190934 21.15246682354571 21.566022094511045 21.97962117133723 22.39920651338777 22.831499478622945 23.283915911525096 23.76447651782202 24.281717126722505 24.844603689791768 25.462456056220137 26.144883117208945 26.901729768436873 27.74303326971182 28.67898299531919 29.719790482519443 30.871661182675425 32.13347652724461 33.50040488698652 34.96581390586016 36.521558168588 38.15807005353393 39.86446229043324 41.62865226831363 43.4375167577096 45.27708332126208 47.13276155838825 48.98961376054018 50.83266084790901 52.64721590833291 54.41923452819353 56.13566861499331 57.78480873201161 59.35659920850772 60.84291050450194 62.23775448628269 63.537430338858584 64.74059168463786 65.84822893089998 66.8635647370095 67.79186456004157 68.64016828052586 69.41703579232343 70.13374423717556 70.80285733648671 71.43561518148238 72.04163647480972 72.6287677620045 73.20298643159846 73.76835808893892 74.32704693772642 74.87937601769072 75.42401445676867 75.95999844396127 76.4873372370934 77.005620744801 77.51413217001557 78.01186056863128 78.49740458880419 78.96945398516104 79.4269407790967 79.86908910052051 80.29544452580345 80.70588742599851 81.10063406555608 81.48022850876693 81.84552779948262 82.1976823755423 82.53811325632377 82.86848719191192 83.19069067681559 83.50680350121722 83.81907233007442 84.12988465746054 84.44174337374791 84.75724210113329 85.0790413942891 85.40984586448799 85.75238226546726 86.10937857679104 86.4835441358256 86.87755090399575 87.29401600900215 87.73548578526669 88.20442164390671 88.70318824546814 89.2340446283848 89.79913916875412 90.40037096396601 91.03834246750671 91.71303757187502 92.4244902381584 93.17283343307174 93.95834758761617 94.78151478525294 95.64307870984327 96.5441102584518 97.4860785855014 98.4709271958167 99.501154548113 100.57989847072312 101.71102353069311 102.89920025263626 104.14922372915078 105.46506292911758 106.85028326856914 108.30793996467648 109.84039027882602 111.44910005959046 113.13444738401492 114.89552473940947 116.72993840226825 118.63364441843086 120.6007919534555 122.62352321942295 124.69176742725017 126.79302992629499 128.9121767742112 131.03121546783052 133.12907332685106 135.18137612821303 137.16023112893387 139.03377249920794 140.75887608398776 + 10.71932551404761 11.068173231607712 11.456768842757532 11.881220044691775 12.337357284654717 12.82095586913363 13.327603350138103 13.852733405850861 14.391697702206631 14.939850218918252 15.492642252343261 16.045725772513006 16.595062332310526 17.137034328092657 17.66855511879456 18.187174349611848 18.691174818735178 19.179657388393178 19.652610784742684 20.110963656110233 20.556616956271064 20.99245556732395 21.422339040704916 21.851072366874646 22.284358722726722 22.72873711677944 23.191508670837024 23.68065584979018 24.20475918044898 24.772915787264704 25.3946633241866 26.079911516272002 26.83888148028802 27.682050237403534 28.620094369107257 29.663810498527695 30.821067784451905 32.09144881919041 33.47010598323306 34.9502066939423 36.523250617616405 38.17918348339244 39.906527317607214 41.6925359610561 43.523383290649456 45.384389126411264 47.26028464355528 49.1355155346419 50.994577491932034 52.82237510460979 54.60459225815057 56.328059807356226 57.98110483860833 59.553865346772284 61.038554668979195 62.42966151808403 63.72407385968341 64.92111804191919 66.0225083371863 67.03220617765348 67.95619263135275 68.80216183587383 69.5795205114858 70.30067355427845 70.97802191776802 71.62238194161684 72.24279869767616 72.84641768367943 73.43841350140914 74.02197499000987 74.59834428719117 75.16690553599194 75.72540665848473 76.2721726716826 76.80675921590796 77.32841534655682 77.83612852608337 78.32846112536633 78.80395786641574 79.26141459658882 79.69993999288765 80.11899202959442 80.51839538899759 80.89834440081134 81.25939523543569 81.60245033368852 81.92873742631608 82.2397849719684 82.53739541174534 82.82361729020772 83.1007170151183 83.3711508098367 83.63753724288345 83.90263058956232 84.16929518290232 84.44048083921335 84.71919939235107 85.00850233690218 85.31145956183425 85.6311391519238 85.97058824491225 86.33281495942411 86.72077145484226 87.13733825316253 87.58531004878827 88.06738336044637 88.58614654566458 89.14407290868724 89.74334710872094 90.38456368153452 91.06753127235513 91.79207929882688 92.55810421127417 93.36561389076418 94.21477765753488 95.10598199923075 96.03989199721775 97.01751828113186 98.04028917917486 99.11012755710397 100.22953165491396 101.40165903914777 102.63041259224676 103.92028649633204 105.2750906593218 106.6980574499227 108.19194286538487 109.7588413096791 111.39999114031352 113.1155754189719 114.90452036626928 116.76429371842913 118.6907047678825 120.67770707965138 122.71721646523844 124.79893373017747 126.91015256064898 129.0355596840155 131.1570377218294 133.25347260747577 135.30056909362253 137.2706793940112 139.1324676006263 140.84364898378044 + 10.40448318841791 10.744373515119669 11.12536784691315 11.543771885870807 11.99551382894762 12.47643213601828 12.982236684316268 13.50846319521895 14.050539751158267 14.603866013445042 15.16390354149462 15.726275142828907 16.286870709158027 16.841956587521913 17.388285221795602 17.923201603387273 18.44474301298993 18.95172863581996 19.443835902608082 19.9216608511526 20.386760411905033 20.84167527770623 21.289932891667743 21.736031034304563 22.185403454135297 22.644369895275826 23.120073650169907 23.620410315873368 24.153951663120207 24.729868342477637 25.35785445923512 26.048055767076825 26.81100129745133 27.657535621850208 28.598745640765518 29.64587299449257 30.808172616471193 32.08610660722027 33.4748160416808 34.96728043089505 36.55466461386544 38.22645680496281 39.97062799399405 41.7738201093541 43.621568861944375 45.49856472671201 47.38895237314404 49.27666533756823 51.145789155837704 52.98094284668764 54.76766582226785 56.49279522386486 58.144817500089964 59.71417785933847 61.19353206806383 62.577926895001994 63.86489822103623 65.05447929337623 66.14911560643166 67.1534872146916 68.07424368246872 68.91966345399716 69.70014392290663 70.42866269236893 71.11724270011 71.77616383960306 72.41380059084541 73.03651855364114 73.64863036344389 74.2524092872962 74.84815681429038 75.43431887111105 76.00774062641182 76.56607356115912 77.10847090413719 77.6338732536019 78.14079803532628 78.62762633875207 79.09298509959126 79.53582959423922 79.95548958408628 80.35169252078055 80.72456944342274 81.07464812205399 81.40283707415666 81.71040329696896 81.99894590779128 82.27036735363723 82.52684342559179 82.77079297680197 83.00484798139821 83.23182437117792 83.4546939353836 83.67655745585266 83.9006191664273 84.13016256477643 84.36852756140415 84.61908892093155 84.8852359326256 85.17035323991722 85.47780276294169 85.81090666581517 86.17293135441591 86.56707254487557 86.99644152272458 87.46405282337979 87.97281371278468 88.52551603935254 89.12462910787836 89.77075089746626 90.46353424294293 91.20262703241467 91.98771506662679 92.81856160541561 93.69505228993258 94.61724561007115 95.5854289500364 96.600180089017 97.66243386039532 98.77355348395669 99.93540588321358 101.15044008609746 102.42176758327554 103.75320137281463 105.14836362843361 106.61009887263185 108.14078331388357 109.74216542875986 111.4151736801707 113.15971827411627 114.97448949003694 116.8567549699971 118.80215812388506 120.80451952616932 122.85564287976348 124.94512685088709 127.06018389405449 129.18546819013795 131.30292204092675 133.39161429926165 135.42759315697333 137.38376042298157 139.22963198512187 140.923979263588 + 10.0902438907131 10.421608075983869 10.79528004215706 11.207770587941273 11.655190026991953 12.133417909502615 12.638288317434196 13.165460956055572 13.710465307255232 14.268774427266568 14.835890116952397 15.407437648662782 15.979267771701414 16.547563311662614 17.108947350975082 17.660589752698616 18.200308689082938 18.726663879096726 19.239038437927018 19.737706601623504 20.22388510756171 20.69976667128799 21.168534775619786 21.6343598388941 22.102377703407008 22.57865221743917 23.070124398843344 23.584551180092813 24.130436953250182 24.716960966085892 25.353902978616794 26.051568393550887 26.820712262862365 27.672459110621936 28.618212400397468 29.669543763151154 30.836744022066654 32.12129677948826 33.51833865299965 35.02067760345375 36.619172369217424 38.3028955473893 40.05932304048524 41.87455557666347 43.7335764787372 45.6205474106115 47.51914075257378 49.412903859975344 51.28564705842919 53.1218441208833 54.907031420771304 56.62819017407502 58.27409532436993 59.835614774824826 61.30594384674743 62.680761995465154 63.95830182914605 65.13932418945869 66.22699725760899 67.2266821092856 68.14563160690876 68.99265256128437 69.77911433129337 70.51802075239996 71.2208869749509 71.89734530091515 72.55500679593123 73.19938450685079 73.83387758362706 74.4598134233473 75.07654302758269 75.68158319048332 76.27090232579737 76.84152210713965 77.39223741581742 77.92149229764182 78.42749266719292 78.90866967572691 79.36379111777323 79.79202051219053 80.19294835968164 80.56660249288274 80.91344309840774 81.23434683755809 81.53058351892979 81.80378796984472 82.05592909805945 82.28927761201034 82.50637345776359 82.70999371514861 82.90312145680134 83.08891589628627 83.27068402134809 83.4518538140252 83.63594909130705 83.82656595077543 84.02735076970691 84.24197967973491 84.47413942033845 84.72750946265484 85.00574529130078 85.31246273821637 85.65122328233582 86.02552026650486 86.4387660437749 86.89428015507336 87.395278765997 87.94486575930574 88.54579331315695 89.1986718225664 89.9030142795308 90.65830596798467 91.46404323607075 92.3197674485212 93.22510398260492 94.17980648111673 95.1838064346695 96.2372680032391 97.34064780515625 98.4947592023431 99.70084039533909 100.96062541221227 102.27641683306346 103.65115844807909 105.0880323868841 106.58947257649328 108.15740018188677 109.7931415563086 111.49724117907202 113.26926812001135 115.10761860918709 117.00931726171181 118.96981942667266 120.98281701669586 123.0400500592728 125.13112612948854 127.2433498217873 129.3615645498517 131.46800929057747 133.54219347968754 135.56079419777268 137.49758113549973 139.32325873115317 140.99785808585648 + 9.776879591144597 10.100141567697406 10.466756936056646 10.873445082471786 11.31654150672369 11.792029750404748 12.295826240099235 12.823735844592415 13.371413863643502 13.93443422607449 14.508369133622868 15.088878633421386 15.671808111585763 16.253291299769874 16.829856051264397 17.398529895907423 17.956942245226262 18.50342010929518 19.037074318290234 19.557873521336358 20.06670366108148 20.56541118249996 21.056828905429345 21.544784236923746 22.034090174018537 22.530520290404905 23.040769541511267 23.57240318247188 24.133796287381976 24.734066198968215 25.38299964109108 26.090975117064865 26.868879535659776 27.728015719777154 28.679994560971267 29.736602133229656 30.908818364289704 32.199199279472424 33.6028973726735 35.11256948684359 36.71880583324743 38.41031826398689 40.174159836248776 41.99597946696678 43.86031391834829 45.75091695827651 47.651122583217386 49.544235979524636 51.41394273927302 53.24472402772868 55.02226317335359 56.73382771877914 58.36861047197637 59.91801360296043 61.37586134562955 62.73852932271899 64.00498178940292 65.1767120111881 66.25758533790014 67.25358906502113 68.172497632209 69.0236165373662 69.81902876549043 70.57139885236886 71.29160963539304 71.98853950131185 72.66895009916439 73.33743748446636 73.99644479541276 74.6463324240623 75.28549981471375 75.91055159319095 76.51661199458209 77.1001133887296 77.65929802546569 78.19218795678997 78.69699824018903 79.17227917520744 79.61699244319 80.03055331357848 80.4128474028998 80.76422882676967 81.08550516191518 81.37791343132248 81.64309032822656 81.88303908478173 82.10009474660941 82.29688911157167 82.47631620692214 82.64149889162145 82.79575696022026 82.94257697379902 83.08558393700501 83.22851486577211 83.37519423782082 83.52951127982082 83.69539901558682 83.87681497528428 84.07772344451979 84.30207911416413 84.55381197801812 84.83681331847531 85.1549226237975 85.51191529912359 85.91149107238371 86.35726306210364 86.85274757346998 87.4013548291926 88.00611826505232 88.6676681792258 89.38539103140589 90.15862511844495 90.98669459155155 91.86893709820328 92.80473605362147 93.79355778715298 94.83499366373232 95.92880711361177 97.07498531628192 98.27379507861792 99.52584222445206 100.8321335745706 102.19414034385188 103.6138615167763 105.09372854657829 106.6356968905003 108.24116540534398 109.9109703142646 111.64520801924417 113.4430497512574 115.30255240637902 117.22046824655011 119.19205617204588 121.21089728370002 123.26871746901284 125.35521979572596 127.45792961359466 129.562055489962 131.65036948262238 133.70311083412167 135.6979180081512 137.60979513597553 139.41101520892437 141.06308045437848 + 9.4644597507484 9.780033461359706 10.139846165081256 10.540827259253303 10.979544288541542 11.452190390052284 11.954733675313326 12.483122269356107 13.033160327134889 13.60054899964276 14.180960278516833 14.770120989332042 15.363905194202374 15.958432875611644 16.550172437107722 17.136044293785382 17.71352265681726 18.280732559674526 18.836539242837727 19.380627216388355 19.91356665578298 20.436865245982695 20.953004153138448 21.465457440182078 21.978694910377918 22.498169007348018 23.03028695724273 23.582369736050453 24.16259960414996 24.779957790501715 25.444153352171288 26.165543211216846 26.955041825592946 27.824016852328857 28.784164511592714 29.847355205153352 31.024956775424382 32.320536053987325 33.72929784471237 35.24377225061647 36.85432706319199 38.549380658043624 40.31565083988203 42.13844137826278 44.00196640876948 45.88971056346714 47.784819908185426 49.670515795546876 51.530520885608745 53.34948411453025 55.113389542062365 56.8099329654506 58.428850073570246 59.96218078682436 61.404456273315915 62.75279787250498 64.006920657554 65.1690384412594 66.2436714552857 67.237362462753 68.15831144643265 69.01627454297584 69.82367573961187 70.59259750303046 71.33317084164064 72.05342097463323 72.7591826619396 73.45407989636155 74.13956687516682 74.81502511317618 75.47790986000082 76.12393773096446 76.74741736022669 77.3439675622003 77.9113118846357 78.44743670577722 78.95064942875064 79.4196768377333 79.85372192351551 80.25248956936818 80.61618947978496 80.94552298949199 81.24165890890521 81.50620233227916 81.74115933497683 81.9488996906328 82.13211911951127 82.29380210805151 82.43718598971772 82.56572672429287 82.68306663482497 82.79300423963818 82.89946623523987 83.00648163157507 83.11815800363611 83.23865979519762 83.37218858599319 83.52296520961997 83.69521358434476 83.89314609289859 84.12095032184394 84.38277694897745 84.68272855237826 85.0248491119364 85.41311398907351 85.85142020906846 86.34357693954789 86.89329616515845 87.50389149630404 88.17601960866136 88.90895160823355 89.7018916619256 90.55400559984469 91.46444154511613 92.43235469179075 93.45693649984565 94.5374484282249 95.6732601571262 96.86389206084571 98.1090614840892 99.40873214940854 100.76316578293576 102.17297479127812 103.63917455539742 105.16319821925354 106.74636669063159 108.38949678006823 110.0928759524243 111.85609974513537 113.67789782221338 115.55595671723518 117.48674202442565 119.4653229000732 121.48520183038606 123.53815272334205 125.61407051205711 127.70083564064063 129.78419706907889 131.84767781330237 133.87250756474964 135.83758764658785 137.7194944979301 139.49242659740517 141.11953495074064 + 9.15307803283057 9.461374512944769 9.814635520909526 10.21000005623156 10.644268675934425 11.11388861820239 11.6149702830099 12.143543706726314 12.695581856700148 13.266937964709792 13.853411986524282 14.450828699000542 15.055124539761355 15.66244133846334 16.269224757038163 16.872324984424374 17.469097038334816 18.05749792971294 18.636177958266412 19.20456353804928 19.76292920178854 20.312456794468382 20.855280324046955 21.394515463249725 21.934273253697704 22.479658104313593 23.036750642574603 23.61257630435621 24.215060664905756 24.852972346767597 25.53585381926066 26.27393946495992 27.078058882285447 27.95952149246331 28.92997612760775 30.001236439898157 31.184791422402576 32.485074225958556 33.897381890598126 35.41414608307952 37.02556646054036 38.71984687906144 40.48347175667615 42.301522193058894 44.15802989194873 46.03636474082472 47.91964933058212 49.791191022619465 51.63491966749586 53.435817002571525 55.18032232198114 56.856698385586874 58.45534181826465 59.96902348558161 61.393046489101884 62.725312413979026 63.96629013712813 65.11888567431663 66.18821598376749 67.18129410777748 68.10663727342298 68.97435926827742 69.79682816831621 70.5853738753388 71.34926246096121 72.09557482382165 72.82915054224 73.55259612903777 74.26635346646682 74.96882226215982 75.65652882986154 76.32431454458462 76.96538858406963 77.57460438775772 78.14959481717193 78.68840467757366 79.18949586913641 79.65182342822895 80.0748733384816 80.45867236684562 80.80377805666006 81.11125519850822 81.38264358963681 81.6199206614404 81.82546157263023 82.00199860059327 82.15258108182165 82.28053672201591 82.38943478770226 82.48305147716667 82.56533762577156 82.64038880936553 82.71241785301925 82.7857297174545 82.86469871201125 82.95374796325095 83.05733104718948 83.17991566768052 83.32596923250372 83.49994614274286 83.70627657196175 83.94935647257934 84.23353851178109 84.56312361316134 84.94235276855517 85.3753987931124 85.86635773174149 86.41923969278615 87.03763776540339 87.72224046688655 88.47221268623493 89.28663466762333 90.16452454412509 91.10485126707322 92.10655114891028 93.16854830800779 94.28977915441641 95.46922088520154 96.70592376853806 97.99904678878545 99.34789600207098 100.751964715165 102.21097435120785 103.72491460548817 105.29407979963636 106.91891805095793 108.59960537100744 110.33583262416278 112.12665439020886 113.97032932660164 115.86415801361304 117.8043210627695 119.78572041674482 121.80182691077337 123.84453731382872 125.90404423709771 127.96872250505291 130.0250358503574 132.0574681394737 134.04848378407922 135.97852256773913 137.82603484099454 139.56745471272262 141.16768531012 + 8.842852685713018 9.144286545227704 9.491251964893427 9.88109553732673 10.31084979192287 10.777218406972885 11.276568136330054 11.805007649618892 12.358651794046338 12.933528921510874 13.525593499551636 14.130798101130747 14.745174318015723 15.364921015039211 15.986498020431654 16.606723072123906 17.22286962896741 17.83276302529295 18.434872410154185 19.028395977404728 19.61333716178447 20.190569744372624 20.761890164537945 21.330055752046672 21.898808039834236 22.47288075320292 23.05799244426129 23.660823993378823 24.288981269322008 24.95094306158312 25.655993909221213 26.41414059434035 27.236009802334006 28.132722752906062 29.11574048237546 30.196670954563164 31.386885975206585 32.691481751732425 34.105882059520674 35.622452258133215 37.231285698258624 38.92046120261366 40.67634427738082 42.48392950536466 44.32722004689709 46.189638133439836 48.054458119600724 49.90525131805558 51.726329731728825 53.50317414937002 55.222831076990495 56.87426278056995 58.44863539828061 59.9395316635741 61.343077221269645 62.657972715638955 63.88542762894833 65.0289960558949 66.09431898949796 67.08878202755938 68.02110378440224 68.90160162540535 69.7422289464655 70.55342872660403 71.3434966976987 72.11848728588683 72.88218629095748 73.63614714052348 74.379785428481 75.11052465976958 75.82394330041515 76.51364716815573 77.17187483972006 77.79315126230429 78.37511604644345 78.91593999404293 79.4142961571243 79.86941378066427 80.28109775796301 80.64972354700993 80.97621529708752 81.26201309135621 81.50903370093052 81.7196280368056 81.89653754077247 82.04285103637518 82.16196302799737 82.25753405462407 82.3334534423314 82.39380462756071 82.44283311719913 82.48491709087344 82.5245406189045 82.56626945282875 82.61472933420241 82.67458675434418 82.75053207800931 82.84726491516017 82.96948158631349 83.1218644792873 83.30907304076698 83.53573608826984 83.8064450709808 84.12574785638336 84.49814257885988 84.9280710619246 85.41991132291395 85.97796869293289 86.60611525573398 87.30507580015016 88.07391615854985 88.91160029537352 89.81700612375714 90.78893005942625 91.82609461523495 92.92715934423904 94.09073528994656 95.31540293393444 96.59973344508592 97.94231283309087 99.34176839337668 100.79679660310373 102.30619138997409 103.86887144893568 105.48390782469563 107.15063399557687 108.86850468795728 110.63657843872986 112.45334269730756 114.31657102947008 116.22317875653472 118.16907976478049 120.14904738694307 122.15658241892928 124.18379149891283 126.22127925262825 128.25805780947937 130.2814775318421 132.27718308848068 134.22909935670612 136.1194520712325 137.92882866450356 139.6361584270198 141.20811617563996 + 8.533925475678911 8.828920702359738 9.169859048559564 9.554291312689784 9.979479195109013 10.442380849193972 10.939642220380941 11.467598608945087 12.022431575815242 12.600349111819448 13.197484738129837 13.809946872962962 14.433893562095145 15.065614838962542 15.70162107747718 16.33873542705768 16.974188196439584 17.605710895334493 18.231627563188642 18.850941020479784 19.463411773259807 20.069627482595934 20.6710611663082 21.270116611869653 21.870159818928297 22.475535621601175 23.091568920704006 23.724550134155965 24.3817044951957 25.0711446363222 25.80180543755103 26.583359342753454 27.426109221854226 28.340854362824935 29.338723325985967 30.430965230516072 31.628620464127618 32.937208056280404 34.35230127003855 35.86623494503706 37.46906460830038 39.14884249500029 40.89194008692534 42.68341252761162 44.50739880043987 46.34754969292766 48.187473534292536 50.011187716400016 51.803562317539594 53.55074094825484 55.24052339516449 56.862694869984324 58.409287738273946 59.874763507849224 61.256105543517926 62.552816331451346 63.76681698460612 64.90225086473785 65.96519747653927 66.96330693391333 67.90537856869011 68.80172166655227 69.66358315641455 70.50040025836397 71.31940185391763 72.12554352244626 72.9215087727556 73.70777219575858 74.48271827370658 75.24270607752219 75.98194671940949 76.6930883390767 77.36779657740546 78.00036099570445 78.58850157193456 79.13057728132688 79.62552311338544 80.0728825424579 80.4728095848579 80.82604992949291 81.13390839313568 81.39820810894419 81.62124537357387 81.80574291284353 81.95480343404778 82.07186467038325 82.1606566474871 82.22516157519428 82.26957655496733 82.29827916525954 82.31579591814373 82.32677355007888 82.33595310099349 82.34814673595878 82.36821726295017 82.40106029180161 82.45158895922731 82.52472111066383 82.62536878143513 82.75842975865422 82.92878093386228 83.14127307814113 83.40072659050603 83.71192769141314 84.07962446103035 84.50852206128097 85.00327643600916 85.56848575875809 86.20830064169184 86.92348549794619 87.71301233382425 88.57573397917884 89.5103925440047 90.51561493715054 91.58991083048421 92.73167339987192 93.93918302735231 95.21061398483876 96.544043940416 97.93746593570856 99.38880227877665 100.89591958342966 102.45664396455686 104.06877517177679 105.73010001239109 107.43863462856504 109.19300546588352 110.99161632103593 112.83237627621041 114.71257584897867 116.62876255955403 118.57661853387154 120.5508429265778 122.54504210657126 124.55163070442079 126.56174678205791 128.56518455772743 130.55034831111138 132.5042313131199 134.41242388052393 136.25915495564118 138.02737196332723 139.69870489299956 141.24152925346496 + 8.22646061004516 8.515455695412003 8.850654324194808 9.229806943861952 9.65040009899652 10.109642529847218 10.6044564511696 11.131475698823156 11.687062338691899 12.267515711748143 12.869165747440208 13.488302529364468 14.121239850896615 14.764391370157773 15.414353142657145 16.067990880140535 16.722530054792962 17.375646789995333 18.025557363568506 18.671104104841806 19.311835496477183 19.94807839373118 20.581000439250626 21.212660964974564 21.846048911234604 22.485106526365662 23.134737800970257 23.800800696740644 24.49008220394411 25.210255056536255 25.969814503623084 26.777992841092733 27.64464841948184 28.580124552853132 29.59507217274747 30.70022824847239 31.906108868059352 33.21839803117891 34.632825753731424 36.14173557805048 37.73521924047641 39.40140787133658 41.12681157589679 42.8967007901875 44.69552140723107 46.507334007287234 48.3162657948739 50.10696225133767 51.865024253341396 53.577415660159886 55.23282627487465 56.821975728658785 58.33784526284229 59.77582657464166 61.13377977961164 62.41199600790049 63.61306403127551 64.74164442080418 65.8041588482026 66.8084060473256 67.76314076210765 68.6784155161159 69.56454679901428 70.42985495210571 71.28041545120453 72.12002307811072 72.95022088692872 73.77038477829976 74.5776405287693 75.3669085910873 76.13147529661777 76.86333756045781 77.55367487197047 78.19662075863354 78.79004396572617 79.33254789888939 79.82337416008743 80.26241451707585 80.65019675805176 80.98785332095495 81.27707935334294 81.52008504892338 81.71954567571278 81.87855160855159 82.00055985458908 82.08934796541956 82.1489708184308 82.18372048185063 82.19808921725635 82.19673558947918 82.18445362145069 82.16614492992382 82.1467937907848 82.13144509736055 82.12518518262125 82.13312547032476 82.16038889731719 82.21209900787004 82.29337156134591 82.4093084182889 82.56499338000069 82.76548955634514 83.0158377300052 83.32105507699565 83.68613349715525 84.11603670847249 84.61569516865472 85.18999780854062 85.84337311356312 86.5766273372093 87.38864198884671 88.27816145926161 89.24379348212315 90.28399497721036 91.39705973877061 92.58110833199231 93.834080417995 95.15372957067378 96.53762047910527 97.98312824898608 99.48743932765315 101.04755338155114 102.6602852544181 104.32226593074948 106.02994122394976 107.77986698170179 109.56971126278061 111.39721666503632 113.25971835947975 115.15404242982387 117.07640289677248 119.02230148047232 120.98643268101168 122.96259689681352 124.94362443443205 126.92131339420841 128.8863845485364 130.82845646753435 132.736044295295 134.59658574315458 136.39649804887566 138.1212698560604 139.7553799534519 141.26873923770944 + 7.920643660969507 8.20409605617925 8.533866772443439 8.907900374217487 9.32390262182945 9.779327284076759 10.271367556973512 10.796953634708155 11.35275777205712 11.935225919238741 12.540805654792907 13.165990345087945 13.807276327290388 14.461231072472197 15.124569520711582 15.794235602048467 16.467487304575393 17.1419834587702 17.81587026378503 18.487865494257637 19.157338299045513 19.82438253516463 20.489881664737855 21.155563367482927 21.824042167445917 22.498848515341066 23.184442876319626 23.886213411905576 24.610455775778195 25.36433332678787 26.155815661941432 26.993592755859652 27.886961140686097 28.845677466987087 29.879773469829082 30.999324873227255 32.21415058715283 33.529840869904895 34.9422729983242 36.443841603659465 38.02475293096658 39.67332731589274 41.37635087893476 43.11946805632932 44.88760528387208 46.665414707344375 48.437725381037765 50.1899882118786 51.908700079720816 53.58179225995342 55.19896860305628 56.75197995391641 58.23482303965501 59.643854486135325 60.97781365932319 62.23775154358069 63.42686670386534 64.55025334523441 65.61457037834725 66.62764401814793 67.59805148601232 68.53533823878496 69.44871196275713 70.34527528409103 71.22987459925557 72.10509287722452 72.97125934860675 73.8262455455819 74.66577750852865 75.48384405113083 76.2729995561089 77.02467511355151 77.72964708205214 78.38196825122716 78.97971860565187 79.521795935911 80.00778689544347 80.43795971937334 80.81323525203138 81.1351444596192 81.4057784104199 81.62773495727141 81.80406500068896 81.93822018872494 82.03400316523307 82.0955209589752 82.12714176414524 82.13345515614338 82.11923567840667 82.08940969611251 82.04902541537376 82.00322599187533 81.95722568498468 81.91628904036257 81.88571309760421 81.87081261397319 81.87690826785064 81.90931775513953 81.97334961924328 82.07429956235413 82.21744887558435 82.40806450150856 82.65140010882138 82.9526974188865 83.3171868814619 83.75008665461705 84.25659870360606 84.84190069558063 85.51069792812842 86.26383949985053 87.10011786217413 88.0181692445887 89.01646549806219 90.0932896483717 91.24671270783853 92.47457215215631 93.77445233297166 95.14366694922924 96.5792435429651 98.07790982016654 99.6360814263987 101.24985063200627 102.91497520463875 104.62686656937717 106.38057618052164 108.17109526608215 109.99501552983425 111.84942235583611 113.73109760638205 115.63643819214029 117.56137544022658 119.50129763305054 121.45097801600319 123.40451068376528 125.35525685689942 127.29580415426861 129.21794155476223 131.11265282601846 132.97013128058515 134.77981880345098 136.53047218109376 138.2102598527442 139.80659649119917 141.29066865910744 + 7.61668049938437 7.895070414142221 8.219754269681452 8.588864418390077 9.000319115481549 9.451810171246567 9.940794669702885 10.464492159534883 11.019888525481768 11.603747767483028 12.21265109034763 12.843220628968407 13.49215795111741 14.156211711048279 14.832246350745725 15.51731742726391 16.208750992406227 16.9042254126804 17.60185385311717 18.30026552723384 18.998683740933156 19.696998730376787 20.395833308264532 21.096599379872085 21.8015434548132 22.513779342808565 23.23730625710816 23.97701052920755 24.738649032364616 25.52881218805658 26.354864060097455 27.22485650246064 28.147413605444857 29.131581781866718 30.18663977215157 31.321861673511545 32.54621623214699 33.8649544505553 35.27407560927678 36.76607066013827 38.33134149952489 39.95851038339074 41.63477830457713 43.34632242238878 45.07872144697015 46.81739667028031 48.548055246343395 50.257121504970485 51.93214167386072 53.56214749939162 55.13796497887905 56.652455788792 58.10068101226111 59.47997938809601 60.78995543242202 62.0323762951144 63.21097994811049 64.33120108189868 65.39982471994357 66.42458085922588 67.41373151052427 68.376082747782 69.31958850165516 70.25004435511852 71.1709993745636 72.0835907900966 72.98648845586078 73.87625730168456 74.74762298806178 75.59375362582908 76.40655775855139 77.17698548304786 77.89549040699988 78.55611491358408 79.15720621757315 79.69799989297725 80.17845982252325 80.599253130795 80.96170788360008 81.2677609227481 81.51990108556707 81.72111139955139 81.87481258071419 81.98480923589 82.05523951394377 82.09052851314243 82.09534548239517 82.07456470968901 82.03322993527478 81.97652212961012 81.90973051203643 81.83822673611162 81.76744221644456 81.70284860875803 81.64994147212079 81.61422713509081 81.60121275353819 81.61639948675592 81.66527863122276 81.75333044032172 81.88602522646835 82.0688261929263 82.3071932796172 82.60658713369958 82.97247213420708 83.41031721215009 83.92559301337685 84.52376374949523 85.20980983794003 85.98462292763345 86.84690595673068 87.79518487167265 88.82779124847002 89.94282697653634 91.1381296480641 92.41123911908088 93.75936558085068 95.17935934420522 96.6676823965511 98.22038164354896 99.83306359655347 101.50087011458722 103.2184546575565 104.97995835721606 106.77898506558779 108.60889233063234 110.46510089079811 112.344056783178 114.24202542043916 116.1550261290963 118.07877408191219 120.00862547620245 121.93952790918351 123.86597798097588 125.78198822344653 127.68106550950085 129.55620314362372 131.3998888713692 133.20413107410684 134.96050543657327 136.66022438945504 138.29423163793717 139.8528997442575 141.3083410194126 + 7.314796247279557 7.588629809223408 7.908601114038937 8.273023338180856 8.680019612587346 9.127511601087368 9.61321163997138 10.13461970734318 10.689026300752738 11.273522318157458 11.885017019990254 12.52027530938026 13.176116927704987 13.849492786188868 14.537444255081441 15.23716897275875 15.946093995156028 16.661951903721732 17.38285828725304 18.107388865838956 18.834654412976406 19.564371555322722 20.296927485444954 21.033436604207548 21.775787104782612 22.52667550422183 23.289627101964285 24.069000275556395 24.869972388591986 25.698504860929088 26.56128461552773 27.465638654054292 28.41941791794554 29.430845869432762 30.508326403017396 31.660204821368836 32.894467531180474 34.21580528563355 35.62030128979612 37.10059052754961 38.64735300994217 40.249625474617474 41.8951606777229 43.57082312977079 45.263009072768995 46.9580775238053 48.64277843981195 50.3046636099035 51.93246586425302 53.516432688329346 55.04860140408335 56.52300474446159 57.93579788413303 59.285300737716035 60.57195250034209 61.79817885548561 62.96817585827911 64.08761804967736 65.16330169234915 66.20273697178907 67.2137335670974 68.20415501391867 69.1805821508446 70.14734617142281 71.1062790783514 72.05688622417509 72.99654221927833 73.92071028965191 74.82319893442035 75.69644188259657 76.53178800522353 77.31978918951748 78.05065293747735 78.71847584367413 79.32192145383227 79.8605998283083 80.33487805411538 80.7458390094294 81.09522730530756 81.3853888936908 81.61920881653766 81.80005002405734 81.93169503928152 82.01829142304204 82.06430143422351 82.07445592772434 82.05371233669153 82.0072165032564 81.94026811703664 81.85828956341764 81.76679805024995 81.67138095350748 81.57767438560695 81.4913450343862 81.41807533940464 81.36355206126606 81.33345825735923 81.33346860385419 81.36924790046335 81.44645246383246 81.5707339605116 81.74774505453234 81.98314605076163 82.28261150594372 82.65183555624118 83.09653447334725 83.62244470927706 84.23531441895649 84.94039658402464 85.73862370892847 86.62860685157845 87.60875716248405 88.67725870772138 89.83202174979837 91.0706362367695 92.39032604416876 93.78790439712769 95.25973077721298 96.8016694917287 98.40904995410324 100.07662859407183 101.79855218716814 103.56832226598905 105.37876015215204 107.22197202912668 109.08963321490589 110.97594141153147 112.87673547543778 114.78781722035188 116.70489557584818 118.6235506297582 120.5392005678522 122.44707306547872 124.34218273414548 126.2193162620408 128.07302691147018 129.89764004844199 131.68727138053384 133.4358595691117 135.13721486132073 136.78508535636112 138.37324247963687 139.8949688825983 141.32287177900542 + 7.015234255440567 7.285046050846177 7.600715625331076 7.960729526746627 8.363407422578376 8.806891654433757 9.289139882567907 9.807921956146922 10.36082196125524 10.945246411787796 11.558439531306652 12.197506520150444 12.859447301047101 13.541298983402228 14.240290859280897 14.953789499860388 15.67935255393278 16.4147985171316 17.158278375987933 17.90834755965219 18.6640364918854 19.424917921435274 20.191169118393198 20.963626952637124 21.7438338097782 22.534072238747623 23.337386149108415 24.157586269118013 24.999237420301917 25.867624944184435 26.768697317780976 27.708981607493385 28.695467935375927 29.735458578505796 30.836376718920334 32.00552925733683 33.249809325470785 34.57316343884892 35.971708479657984 37.43827451803199 38.96390188158674 40.538151581989645 42.1494595905982 43.78552418027662 45.43371336456166 47.0814787325962 48.71676151374004 50.32837660240133 51.906360611798455 53.442270864053896 54.92942359411546 56.36306154482931 57.740443523943505 59.06085131089191 60.32551244090856 61.53744072938987 62.70119978428835 63.82259803142655 64.9083267875733 65.96555550672167 67.00151075727614 68.02290560314077 69.03459645321367 70.03910154302457 71.03667364654149 72.02542938281422 73.00153430826492 73.95943101086618 74.89209686080363 75.7913182506334 76.64796903402117 77.45228236908176 78.19429163119602 78.86820593512506 79.47304708973066 80.00882960780704 80.47634367886658 80.87709947558282 81.21326293245254 81.48758855369876 81.70335292651396 81.86429120061806 81.97453776879414 82.03857167340591 82.06116680537276 82.04734669671186 82.00234358541164 81.93156140962502 81.84054243173537 81.73493727316458 81.6204782351929 81.50295587208848 81.38819885755547 81.28205723478399 81.19038915833032 81.11905121943026 81.07389239404499 81.06075156551447 81.08545845292612 81.15383762477079 81.27171509811772 81.444926819353 81.67932809601714 81.98080280214565 82.35527091218856 82.8086926297934 83.347067064061 83.97642306129941 84.70228251055632 85.52561556646602 86.44493710100328 87.45853656825604 88.56444049223536 89.76035387098577 91.04360137008308 92.41106895019067 93.85914646765919 95.38367167864244 96.97987596722378 98.6423320079095 100.36490346377512 102.1406967147201 103.96201450679753 105.820311314474 107.70615011391426 109.60949172583933 111.52330864001748 113.44288194501122 115.36361803576662 117.28099708364752 119.19055806811706 121.0878858903337 122.96860169537602 124.82835755222003 126.66283665207817 128.46776018632 130.23890205506913 131.9721125368561 133.66335201861477 135.30873584405876 136.9045912872808 138.4475275975091 139.93361440749516 141.33545696139527 + 6.71825511268902 6.9846101318277025 7.296427830840459 7.652360317683058 8.050914899589149 8.490444630058917 8.969141508083863 9.48503333801249 10.035985080258168 10.61970553229762 11.23376016192249 11.875590864930341 12.542543332155766 13.231902581268015 13.940962233954416 14.667225571377628 15.408406507891977 16.162437419655035 16.927534359214423 17.702262934588585 18.48560339221037 19.27701319643663 20.07648527349277 20.884599976527554 21.702568725362898 22.532267171662568 23.3762556277835 24.237784364349288 25.12078121605734 26.029818726791145 26.970057805794873 27.94716455332042 28.96719655107565 30.036454514925083 31.16129480396835 32.347897919498585 33.60197987104408 34.926591255616565 36.317836592117395 37.76879135762032 39.270936533290175 40.81446183326029 42.38860905293015 43.98204442187119 45.583246582442975 47.18089631673123 48.76425396559636 50.32351069158321 51.850100386313215 53.336960146826314 54.77872885294598 56.17187544945737 57.514751023597654 58.80756159261165 60.05226157523487 61.25237109189988 62.4127233841597 63.539151620599036 64.63812673750142 65.71633613051793 66.7801344339037 67.83468174640271 68.88303978132362 69.9260697084985 70.96252517990915 71.98920209522544 73.001135835208 73.991833565068 74.95352896425105 75.87744716804355 76.7540687615672 77.5733832700506 78.32531648715538 79.00424159800419 79.60957327658608 80.14175375912541 80.60201033787872 80.99228695987269 81.31517141898856 81.57382273436357 81.77190158396498 81.91350539476585 82.00310879912674 82.0455095764612 82.04577984376202 82.00922208032138 81.9413295216649 81.84775049406022 81.73425635008911 81.6067127805091 81.47105439668807 81.33326258511542 81.19934671909355 81.0753288646171 80.9672321326345 80.88107280584934 80.82285630441095 80.79857695222326 80.81422136616514 80.87577511686968 80.98923210464756 81.16060586021037 81.39594171894073 81.70132853033247 82.08290825011409 82.54688141865608 83.09950615026392 83.7470878356184 84.49541227136457 85.34548242873575 86.29571071697794 87.34425561044957 88.48897331744388 89.7273469089282 91.05641491984757 92.4727001914235 93.97213962934687 95.55001545887346 97.20088846451702 98.91853361017823 100.69587834595937 102.5249438213607 104.39678914173511 106.3014587264428 108.22793275369219 110.16444096224794 112.10278214872189 114.03774825266225 115.96443269076835 117.87818140995805 119.77459714768386 121.64954447342578 123.49915629816192 125.31984254376394 127.10830166136354 128.86153567686287 130.57686942302254 132.25197459110151 133.88489920102478 135.47410304773595 137.01849963297988 138.5175050365215 139.96977118420793 141.3473593196118 + 6.424135691674472 6.687630703807195 6.9960872458715375 7.3483149309501785 7.742999398325541 8.178693839364655 8.653812770134302 9.166628938569012 9.715274080577487 10.297744244667435 10.911910386421896 11.555534887836913 12.226294577796933 12.921810714968213 13.63968623992778 14.377550659517635 15.133158401892914 15.904556452986997 16.690051570275287 17.48824650815487 18.29809870960153 19.118977038029552 19.95071482206806 20.793657347873406 21.648701801561476 22.51732753349782 23.401614380394623 24.30424663360219 25.228500075925485 26.178209319255735 27.157712458467593 28.171769815070622 29.225453285414282 30.32400255060152 31.472644178979735 32.67636950366196 33.939659429950666 35.26456426205199 36.64712924377214 38.08072804246448 39.55735917643865 41.06793762682344 42.60262154909399 44.15116335827813 45.7032717579839 47.248971008401135 48.77894380849619 50.28484464642095 51.759571380322555 53.19748416142024 54.59456259227494 55.94849419113662 57.258689749051136 58.526223937978045 59.75370245362182 60.94505993900924 62.10529706917109 63.24015821630083 64.35566465360341 65.4576805163472 66.55149071572085 67.6407110529056 68.72664891236604 69.80855501869469 70.88374773444751 71.94777843526263 72.9946362425061 74.01698027077131 75.00638757940452 75.95360565610109 76.84879945431909 77.68178467731376 78.44244004178442 79.12534728216002 79.73034115103464 80.25830829460833 80.71092142856489 81.09055997122903 81.40023017091346 81.6434883429383 81.82436928362416 81.94732082097897 82.0171447113525 82.03894362298064 82.01807369519626 81.96010206947274 81.87076880756214 81.7559527032173 81.62164062520718 81.47390017505074 81.31885558336991 81.16266688923469 81.01151253678506 80.87157557572729 80.74903366285938 80.6500530287545 80.58078649707537 80.54737552499657 80.55595607399512 80.61266792339896 80.7236668070654 80.8951384884768 81.13331359253137 81.44448168316431 81.83500271260894 82.31131356623847 82.8799269793719 83.54741959875795 84.31983454226298 85.19820101492141 86.18082068324213 87.26570938898298 88.45053758378155 89.7325468760741 91.10846585958781 92.5744261404216 94.12587939823442 95.75751623721783 97.46318750471899 99.23582867997374 101.06738786271436 102.94875782174255 104.86971249714793 106.81884828695159 108.78353038975037 110.75025865392043 112.70976521490452 114.6564406726091 116.58516069381395 118.49124248482623 120.3704659247434 122.21909369944198 124.03389069153327 125.81214288034398 127.55167600083634 129.25087420137294 130.90869892749694 132.52470824255985 134.09907677626603 135.6326164691863 137.12679825521894 138.58377479505987 140.00448714723294 141.35989217141488 + 6.133168235332147 6.394432619233212 6.700060755272531 7.049011563429257 7.440139427926529 7.872186662146818 8.34377784591868 8.853416810041274 9.399486873694292 9.980254941621677 10.593880048891883 11.238426897837202 11.911884860950382 12.612192821972975 13.337270092613956 14.085053472477721 14.853540313924418 15.640837211848478 16.44523934545636 17.26538031347078 18.100218850769252 18.949059335090652 19.811598800496526 20.68796883078922 21.578770618748788 22.485101142753038 23.408568265721236 24.351292410677466 25.31589230980617 26.305452158343034 27.323467332331944 28.37376565564449 29.460401038150156 30.58751617315667 31.759170908588505 32.97913293698276 34.25062024586788 35.574622151272486 36.947088382216606 38.36174363417876 39.81117585338477 41.287111652274845 42.780721051529774 44.282941534970746 45.78480828486525 47.27777739772837 48.7540291875014 50.206739387095205 51.6303071710542 53.020530435191525 54.37472065789854 55.69175188651829 56.97204087484246 58.21745945714567 59.43121877727294 60.61759059115829 61.7815271303302 62.92833116756002 64.0633112125044 65.19143036579004 66.31689864669175 67.44181661342583 68.56577948220746 69.68648699254516 70.79989545993679 71.90039403853324 72.98101256094084 74.03364981223943 75.04931136363336 76.01834689872086 76.9306782580243 77.77601112995981 78.54423117112125 79.23016588794013 79.83408996907012 80.35734473993776 80.80205122759881 81.17102152050182 81.46767326768362 81.69594995887812 81.86024826942213 81.96535281452621 82.01637805227772 82.01871672923222 81.9779941121839 81.90002723990477 81.79078851360687 81.6563730871454 81.5029696874698 81.33683466891024 81.16426926351144 80.99160012047916 80.82516332158039 80.67129211000815 80.53630857446 80.42651948676357 80.34821640071273 80.3076799833615 80.31118837005526 80.36502911335366 80.47551403589982 80.64899599971072 80.89188626966914 81.21067077594208 81.61192316530898 82.10231206906202 82.68859949630458 83.37762667366292 84.17568562537818 85.0838233390986 86.10022043018122 87.22273611517704 88.44883708284233 89.77550126291676 91.19912083462282 92.71540556553029 94.3192875010063 96.00482795712264 97.76512770536009 99.59224117550524 101.47709544354582 103.40941471393475 105.37765095010565 107.36892125340997 109.36895253852845 111.36253807464871 113.33950613346337 115.29395067704459 117.22063577994503 119.1149640435079 120.97301171393285 122.79156057002639 124.56812643272995 126.30098415327073 127.98918894237316 129.63259390945595 131.23186368816738 132.7884840330072 134.30476728117335 135.7838535841623 137.22970782505362 138.64711214980463 140.03890791944647 141.37440114947796 + 5.8456594872514085 6.105355543406663 6.408730599681473 6.754884628235463 7.142831008568247 7.5714898692831785 8.03968295783179 8.546130708525912 9.089452013681088 9.66816720036386 10.280704695422392 10.925411821267879 11.600570101474613 12.304415366269026 13.035162831453295 13.791037178929031 14.57030749215775 15.37132669588743 16.192574917547596 17.032705930248024 17.89059592630598 18.765426847563205 19.656772056027375 20.564570299987444 21.489146226982136 22.431231560672284 23.391976126087368 24.37294651671195 25.376110056156506 26.403801571191373 27.458670366151154 28.54360467934578 29.661630823596635 30.815784185823244 32.00894931430336 33.24366649790091 34.52189554627493 35.843547390234875 37.204456778071105 38.59875149077943 40.01967434134871 41.459837627015055 42.91150110799805 44.3668639681299 45.818358246874176 47.25893135177161 48.68230575765314 50.08320487966576 51.457535364840204 52.802517660446775 54.11677343983608 55.400399368705344 56.65481480837374 57.88258198316101 59.08720943025099 60.2729098118367 61.44432148198143 62.60620471099879 63.76312434732659 64.91913113380909 66.07737558145357 67.23850984192416 68.40047630985505 69.55949416803065 70.71023838471127 71.84602238423798 72.95900494521709 74.04041100116045 75.08075648142919 76.07006826602661 76.9980916818749 77.85447966916624 78.62917205820128 79.31727202699301 79.91950681389235 80.43767648873734 80.8743481114852 81.23275942584374 81.51672905703174 81.73057489973587 81.87904122552492 81.96723427276319 82.00056562316298 81.98470244497483 81.92552363137096 81.8290809316716 81.70156431960208 81.54927103179392 81.37857791343903 81.19591690478448 81.00775367569942 80.82056955404313 80.64084698891415 80.47505883703177 80.32966175691745 80.21109394053158 80.12577730632495 80.0801241229513 80.08054783130734 80.13347758629679 80.24537575050195 80.42275724067308 80.67220925413498 81.00040948357697 81.41414046065655 81.92029714404322 82.52588427536139 83.23799935264957 84.06317282740144 85.00245903904894 86.05390520431295 87.21519763737929 88.48357883179372 89.85573838319378 91.32770328108052 92.8947288581565 94.55119162450315 96.29048515644524 98.1049201553814 99.98562973927352 101.92248097807301 103.90399363342236 105.91726701186049 107.94791578893795 109.9800156086333 111.9967051337471 113.98712547665096 115.94519126570775 117.86566985804012 119.74416943462145 121.57718476156322 123.36213709025776 125.09740769268453 126.78236455146458 128.41738175335374 130.00385116963048 131.54418604706098 133.04181617853519 134.50117437277086 135.927673997336 137.32767742826064 138.70845530229693 140.07425775845712 141.39224422694124 + 5.56192986839577 5.8207526386972575 6.122492468095537 6.4663821437180875 6.851584231018301 7.2771852119159846 7.742190835362477 8.245523255004871 8.78602036665659 9.362437752751237 9.97345362075161 10.61767708527287 11.293660087341731 11.999913166947305 12.734925205436147 13.497187131459278 14.285219437783685 15.097603186727852 15.9330139904632 16.790258241023633 17.668310636657676 18.566351810271414 19.483804617414414 20.420367392003094 21.376042673226618 22.351178009304626 23.34648177512326 24.362984946588533 25.402020176226664 26.46518818759264 27.55430633547786 28.671336974261248 29.818293272120755 30.997120170273917 32.20954834189888 33.45691929230704 34.73997352808803 36.057568639834386 37.40542595874452 38.778127010548125 40.16962711163277 41.57348415552273 42.98310571752988 44.39200471434162 45.79405201907537 47.18371569029661 48.556313152318744 49.908203715240624 51.236866771824296 52.54096337297477 53.820345224132915 55.0760074694294 56.30998694817969 57.525209761795495 58.72529395198238 59.91431480022708 61.09654166144772 62.27615630045057 63.45696338048693 64.64210404419784 65.83370179284837 67.03106187526546 68.23054970262567 69.42698351078069 70.61384327306058 71.78345564044855 72.92719626987075 74.03570012407535 75.09907094284998 76.10708211043871 77.04936252497937 77.91556274590239 78.69571707845058 79.3852269908653 79.98527782354499 80.49812650289948 80.92677895614953 81.27488763307298 81.5466586005122 81.74676897206893 81.88029448529129 81.95264644698939 81.96951695320486 81.93683118422267 81.86070561801016 81.74741114863595 81.60334029950279 81.4349779524256 81.24887524733921 81.05162652423645 80.84984936429987 80.65016793074902 80.45919990476297 80.28354735385591 80.12979185737188 80.00449414613189 79.91419839170814 79.86544110705366 79.86476439631579 79.9187330194796 80.03395441829078 80.21710048390825 80.47492943261118 80.81430569032206 81.24221516392716 81.76577268865734 82.39221777404802 83.12889401032193 83.98255750878292 84.95425745404715 86.04189328988042 87.2429599560854 88.55445307824834 89.9727471227987 91.49347324151499 93.11139831427165 94.82030664386544 96.61288570566231 98.48061730583291 100.41367545355853 102.40083220341702 104.42937267303279 106.48502038697418 108.55187403998445 110.61235671025518 112.64804205448876 114.6476494032384 116.60503845198025 118.5151009121582 120.37377393157966 122.17809279727881 123.92623481654306 125.61755358100139 127.25260287246716 128.83314953345618 130.36217469936386 131.84386287250177 133.2835784097923 134.68782909508067 136.06421657286003 137.42137353179857 138.76888764284573 140.111817382905 141.4147704667254 + 5.28231270187621 5.540989321815773 5.841753696470471 6.183963270334616 6.566920015502695 6.989865271453757 7.451975509497444 7.952359510350922 8.490057284499674 9.064041056941639 9.673218617706219 10.316439305436248 10.992502841768259 11.70017116795381 12.43818335116928 13.205273525706634 14.000191713646032 14.821727231162125 15.668734231416718 16.540158764850627 17.435066555181532 18.352670497941503 19.292356692222295 20.253707620623317 21.236520903340235 22.240821876956513 23.26686809480548 24.315143722655478 25.38634172067222 26.481331670627323 27.601111137278988 28.746738556368562 29.919245830672118 31.11952910199997 32.34821656272826 33.60551268662422 34.891012594554304 36.20258818339533 37.53587815250628 38.88598021474222 40.24763623647104 41.615433668790025 42.98401881233065 44.34831027051666 45.70370167572053 47.04624359117757 48.37279567692597 49.68114169889987 50.970061688749205 52.23935745601966 53.48982964016021 54.72320649390272 55.94202654077761 57.14947908121084 58.34920817335408 59.5450871339949 60.74097174831585 61.9404412120739 63.146536334330335 64.36150469326168 65.58648852782652 66.81957827947913 68.05565482672431 69.28822258436232 70.50965691064249 71.7113876007015 72.8840934971495 74.0178997734034 75.10257017538505 76.12768758585578 77.08281765260821 77.95765183599784 78.74235227285943 79.43263420206483 80.03013980237633 80.53757529868786 80.95837372056317 81.29658761214999 81.55679408019812 81.7440120619917 81.86363095336591 81.92134931819834 81.92312222763928 81.87511578422674 81.78366751797643 81.65525155327047 81.49644770016607 81.31391389237314 81.11436165378372 80.90453450874479 80.69118944549531 80.48108168842256 80.280953127245 80.0975247866357 79.93749369686131 79.80753444491354 79.71430554751632 79.6644605940394 79.66466386056733 79.72160979767925 79.84204544462602 80.03279442106638 80.30078069219067 80.65304978961515 81.09678459200188 81.63931211601185 82.2880970265866 83.05071672846849 83.93413773156357 84.93938941041728 86.06420707868133 87.30587376827604 88.66111356459179 90.12595723518334 91.69560807631461 93.36430972584905 95.12521763848716 96.97027586999644 98.89010076836355 100.87387311953357 102.90924024169999 104.98222946339914 107.07717435565728 109.1766550161353 111.26145362289583 113.31171781846713 115.3160488857313 117.2683774917682 119.16384420183817 120.99883870250423 122.77105548938341 124.47953752831867 126.12470688218704 127.70838139044649 129.233776597518 130.70549224794496 132.12948279958022 133.51301154934828 134.86458811790115 136.193889198148 137.51166263662398 138.82961508439146 140.15289933706438 141.44329800439374 + 5.007153486803968 5.266442093926745 5.566931570418224 5.908095991255658 6.289367063046071 6.710129560414105 7.169717426161381 7.667410947163497 8.202435261988743 8.773960446336966 9.381103402661273 10.022931749506498 10.698469863095342 11.406707167648594 12.146608701240558 12.91712790038476 13.717221449113634 14.54586592758801 15.402075872254361 16.28492272580572 17.193554012817998 18.127211928670935 19.085250378623506 20.06714935477551 21.072525395888935 22.10113674414081 23.152881699998854 24.22778858838292 25.32599569354584 26.447719504678844 27.593209647590356 28.762688968746886 29.95627739554704 31.173898430017275 32.41516745111787 33.67926141209091 34.96476404226579 36.268698597993954 37.58669884835019 38.91444713366382 40.247516066035836 41.5815293308023 42.912331261491026 44.23615244094385 45.549762370738904 46.85060104295036 48.13688234014643 49.4076635270425 50.66287662119346 51.9033190783326 53.13060293717252 54.34706327618564 55.555628481140324 56.759656351270216 57.96274143390393 59.16850012926095 60.380341014170234 61.60122847000083 62.83344805007893 64.07838207925104 65.33624651885182 66.60407408708609 67.8753712385194 69.14242169067772 70.39658917068053 71.62849622957415 72.82820851025961 73.98541703363503 75.08961187458635 76.13024169942015 77.09685498258278 77.97922025838811 78.76765402388908 79.45819386601632 80.05293102430477 80.55500810430193 80.96826916807059 81.29714884370756 81.54657623483743 81.72189268368194 81.82878190610495 81.87321076666205 81.86137892372841 81.79967568831479 81.69464265471362 81.55294093538903 81.38132213337384 81.18660248669221 80.97563990074808 80.75531383101465 80.53250817870278 80.31409750883232 80.10693698852685 79.91785647090973 79.75365911590211 79.62112484399367 79.5270187639319 79.47810450189827 79.48116208969547 79.54300974385285 79.67052848655747 79.87068812176838 80.15057258280764 80.51740210594805 80.97854905018013 81.54154346549953 82.21406369634829 83.00390637513269 83.9182304764605 84.95802872004333 86.1208540342052 87.40375513383536 88.80315819630262 90.31472038262419 91.9331843259024 93.65223559065385 95.46436505186459 97.36073808951188 99.33107243964989 101.363526484184 103.44459969583428 105.55904688064567 107.68980777631232 109.81795346953477 111.9226509890145 113.98282530183532 115.98728447845583 117.93015321570137 119.80694591171729 121.61462543957708 123.35165772162956 125.01805092639694 126.61537815740039 128.1467826477202 129.61696463491623 131.03214926596038 132.40003506881217 133.72972272384516 135.03162407217417 136.3173515066961 137.59958810309098 138.89193905995995 140.19882162379128 141.4790918096472 + 4.736809221636587 4.997497442419932 5.298451728667439 5.639254930616075 6.019458989836111 6.438580860689037 6.896098860749039 7.391449795508062 7.924027049164653 8.493179822299702 9.098213678473787 9.738392534407097 10.412942191721474 11.121055461709878 11.861898877929244 12.634620924521316 13.43836163126181 14.272263299962681 15.135482031898992 16.027199623691168 16.946635291260755 17.89305657025661 18.86578862936107 19.864221123258027 20.887811608408512 21.936084451256875 23.008624079702187 24.10506136969634 25.22505192519737 26.36824500732118 27.534241903637422 28.722542607629507 29.932479808021558 31.163139374634 32.41326677822539 33.681159202699405 34.96453775742975 36.2597012660893 37.562310021199785 38.86862049722476 40.174997445916524 41.478035322756625 42.774686775926334 44.06238370907866 45.339143781424895 46.603655960439 47.855339732857125 49.09437376153746 50.32169109843105 51.538939474644124 52.74840663416145 53.95291210617403 55.155668172613886 56.360114036871956 57.56972829633533 58.78782573110507 60.017345116883874 61.26063523213636 62.5192464469541 63.79373525069232 65.08345207365903 66.38454629515604 67.68927976491918 68.98881326880505 70.27359327960754 71.53352338638894 72.75813614254083 73.93675891770769 75.05866818960148 76.11322780497855 77.09000803244828 77.9788836753429 78.77034552698903 79.46075551736891 80.05264001001746 80.54956004961954 80.9557506565071 81.27600739061813 81.5155898794032 81.68014059506206 81.77561683218889 81.8082337479546 81.78441641662964 81.71075906296201 81.59398992900027 81.44094055939033 81.25851863149563 81.05368378580263 80.83342621132556 80.60474799699043 80.37464746390242 80.15010683870743 79.9380837111589 79.74550673766677 79.57927600667117 79.44626837183388 79.35334788655464 79.30738123968463 79.31525779880356 79.38391351470896 79.52035752845595 79.73169984856156 80.02517792713388 80.40817935372161 80.88825719592516 81.47313373454944 82.17068745323414 82.98891712937923 83.93515345209147 85.01033345233094 86.21180765419432 87.5363664169333 88.98011031952466 90.53829218238721 92.20516103508362 93.97381029919379 95.83603239288685 97.78218190064055 99.80104938413558 101.87974783530375 104.0036136871966 106.15612420074773 108.31883293421158 110.4713248762437 112.59119268293098 114.65642476346709 116.65635600268367 118.58542360951884 120.43963822574268 122.2166505212984 123.91580053356513 125.5381482380734 127.08648419449358 128.5653193115172 129.98085299088802 131.34091914104957 132.6549097913755 133.93367628542066 135.18940828287344 136.43549105181845 137.68634178266439 138.95722574399127 140.2508803744813 141.52334178194604 + 4.471647776878336 4.734550812316312 5.036746662767378 5.377919301738911 5.7577316330905415 6.175821783154128 6.631799612421418 7.125243735350636 7.655699185317739 8.222675850338357 8.82564778786185 9.464053503175691 10.137297245351734 10.844751336945542 11.585759508711966 12.359641158499443 13.165696394509533 14.003211657774552 14.871465647784698 15.769735199736209 16.69730068322197 17.65345041200697 18.63748347481196 19.648710320095603 20.686450356343475 21.750025766346564 22.838750682716594 23.951914836091383 25.088760771070397 26.248453732089803 27.430043356611254 28.632416380735826 29.85423966733634 31.093893013714265 32.349391389240765 33.618296497859724 34.89761228267708 36.18303942836353 37.4703035383281 38.75621904846376 40.03789742757536 41.31283139238313 42.57898530358863 43.83487538787792 45.0796343154981 46.31305536315361 47.53561227557989 48.74845196627705 49.953358325960345 51.152686592495215 52.349268934689526 53.546293071886964 54.7471568519131 55.95530270520793 57.174036751088344 58.406338026518675 59.654663817999385 60.92075738915311 62.205464502981144 63.50856503809673 64.82860807040157 66.16104114306773 67.49703409337233 68.82672599388168 70.13974083426638 71.4253494095797 72.67262722690846 73.87060302384693 75.00839335814618 76.07531979098037 77.06100640935756 77.95545677503871 78.74934966512396 79.43936716417755 80.02845106811844 80.52055825651722 80.9202909372924 81.23278156137837 81.46359657743345 81.61865660967544 81.7041704998356 81.72658071751974 81.69251785159108 81.60876219869844 81.48221082315887 81.31984884243654 81.12872406864254 80.9159244888009 80.68855837992155 80.45373711806445 80.21856094577728 79.99010810443565 79.77542781418539 79.58153759312012 79.41542534899865 79.28405655202896 79.19438660724606 79.15337829107268 79.16802379971212 79.24537057728023 79.39254964812214 79.6168046681202 79.92551932963738 80.32624009738043 80.82669050863419 81.4347724287396 82.15854869591442 83.00620049971246 83.98520657834786 85.09642710168195 86.33698859905594 87.70339771911927 89.19140087586744 90.79581557621442 92.51036490435743 94.32751770226027 96.23833690879962 98.23233844022481 100.29736290706929 102.4194623638727 104.58280417521388 106.76959395262418 108.96001937073488 111.13221650704737 113.26226179055713 115.32759307765598 117.31835628844509 119.2294155920445 121.05739465442863 122.80073748766156 124.459748528133 126.03661062444074 127.53537985399953 128.96195634545165 130.3240305571012 131.63100474546061 132.89388964817084 134.1251766977598 135.33868637291653 136.54939357845558 137.7732312206263 139.02684657664446 140.31032233202524 141.57714172312694 + 4.212047316500742 4.478005644557175 4.782254307533813 5.124570976392686 5.504720515316282 5.922451530577993 6.377492954424293 6.869550905517041 7.398305917357122 7.963410614968315 8.564487904660462 9.201129721643232 9.872896355435431 10.579316343323782 11.319886887594402 12.09407471304945 12.901317237731465 13.741023882276592 14.612577292541177 15.515334196919515 16.448625565119706 17.411755680314563 18.40399968298443 19.424599094073738 20.472754779176352 21.547616776438844 22.64827038103002 23.773717860869596 24.92285517452268 26.094443075587368 27.287072021505864 28.49912036157843 29.7287053621774 30.973626739866628 32.2313025183983 33.49869720632574 34.772237041960864 36.04714949046202 37.31926899514053 38.585946232581385 39.844987905445215 41.09470678232801 42.33397731122868 43.56227899211109 44.77972353479792 45.98706246760511 47.18567263643388 48.37751791027459 49.565086352355266 50.75130309097428 51.9394200953141 53.13288499557388 54.33519195224852 55.549718348147046 56.779551724480434 58.027311889246825 59.29497347733011 60.58369442761233 61.89365585883049 63.22391867418162 64.57229746984882 65.9337137558605 67.29842467805733 68.6556512406209 69.9942893215362 71.30306041855131 72.57065464039174 73.78586151124749 74.93768501319117 76.01544030545772 77.00883069948831 77.90800469973252 78.7038369476275 79.3933197812537 79.97978543434648 80.46755974067177 80.86158494627615 81.16730371607115 81.39056358187895 81.5375387830828 81.61466648967698 81.6285946020307 81.58613863849872 81.49424560726445 81.35996317703568 81.19041288416997 80.9927665193206 80.77422520772517 80.54200102102423 80.30330122576049 80.06531547809797 79.8352064117929 79.62010413485928 79.42710514892084 79.26327613416642 79.13566290298145 79.05130461785505 79.01725309507809 79.0405966756464 79.12848773840336 79.28817245636546 79.52702085237715 79.85255458982387 80.2724692309361 80.79464689953166 81.4271543843465 82.17822069790661 83.05618694563066 84.06865328973345 85.21637983801342 86.49624621957263 87.9044490858176 89.43635176417045 91.08630589758747 92.84747768043906 94.71168149823353 96.6692236810116 98.70875897632524 100.8171622325886 102.97941765340201 105.17852783538655 107.39544463435581 109.60902371647951 111.79600444257495 113.93102186344807 115.99147784642801 117.96852789681843 119.85758177412345 121.65598433265541 123.36306655455996 124.98017255288418 126.51066134055704 127.95988246000076 129.33512488390645 130.6455389247196 131.9020312229014 133.11713321657052 134.30484382251004 135.48044737604772 136.66030818084357 137.86164330566936 139.10213914524155 140.37831790126322 141.64146969658333 + 3.958395767009286 4.228272477805032 4.535416715935632 4.87969266516548 5.260958452694062 5.679062844444816 6.13384181513546 6.625115197210533 7.1526834632285174 7.716324685992253 8.31579170745836 8.95080953115484 9.621072933436157 10.326244266439092 11.06595140017908 11.839785723039473 12.647300089244983 13.488006569170048 14.361373824014617 15.26682389110547 16.203728130591365 17.171402049463016 18.169098685638872 19.196000204441933 20.251207333402284 21.33372624033629 22.44245244557382 23.576151353641254 24.733434994374424 25.91273458013007 27.112268516359432 28.330005549220253 29.563622798077432 30.810458504613354 32.06745943573237 33.331123006314115 34.597428928791025 35.86125212531392 37.1185814984205 38.367276883537684 39.605783536652254 40.83315176141109 42.04906129236557 43.253832012305665 44.44841834743529 45.63438525560135 46.813864387945046 47.9894897363528 49.16431285012161 50.341698487364404 51.52520233256269 52.71843313545021 53.92490228430106 55.14786439764192 56.390152984583054 57.65401557121554 58.940952908674134 60.25156696152669 61.58542232139791 62.94092550265795 64.31522731151597 65.7028780752784 67.09343288204266 68.47529986354274 69.836740151521 71.16600642256512 72.45147052441186 73.68173667344725 74.84573754102372 75.93281149775859 76.93276033355036 77.83588788843808 78.63326726945957 79.32218599081777 79.9063369244498 80.39038411396587 80.77957964577007 81.07964734205127 81.29668823721673 81.43710423040234 81.50753651225601 81.5148156973724 81.46592100798813 81.36794631199804 81.22807128868706 81.05353645479295 80.85162121295579 80.62962447005064 80.39484770379863 80.15458062489832 79.91608978365733 79.68661060165198 79.47334336876072 79.28345373361981 79.12407813154141 79.00233443907804 78.92533791969339 78.90022223116563 78.9341649026249 79.03441625683413 79.20833024955601 79.46339511916251 79.80726108069138 80.2477615518562 80.79292355416568 81.45096197781187 82.23025131916403 83.13926727668847 84.18570187105682 85.37019009508704 86.68934078371586 88.13901383136101 89.71416079700978 91.40863806102341 93.21502623672772 95.12445890337584 97.1264636015131 99.20881789650318 101.35742316577148 103.55619859631037 105.78699768856589 108.02954934962519 110.26142542246039 112.45803623974727 114.59269203493702 116.64335528984347 118.60232156094337 120.4656568532683 122.23152393647392 123.90021988382652 125.47418650687878 126.95799269423195 128.35828802080562 129.6837273641114 130.9448666390108 132.15403013542272 133.32515030796137 134.47358121663066 135.61588714834053 136.76960825586542 137.95300533066793 139.18438697164765 140.4559354742731 141.7171702313664 + 3.711090332692738 3.985768109863254 4.296678811489166 4.643766198321765 5.026973292548823 5.4462391155029115 5.901495163748956 6.392661799350286 6.919644580318825 7.482330548271195 8.08058447950382 8.714245093072842 9.3831211950638 10.086987722152115 10.825581629927933 11.59859755248075 12.405683139658441 13.246433957541491 14.120387816378104 15.027018368944466 15.965727801532823 16.935838420095916 17.936582916133545 18.967093081397966 20.026386728196858 21.113352563819777 22.226732764303804 23.365102995336958 24.526849637572663 25.710143991033508 26.91291325968689 28.132808153763715 29.36716699505751 30.612976270363355 31.86682765144652 33.12487158746856 34.38276227986487 35.63513623941178 36.87818196638237 38.11023627544535 39.33032205357092 40.53814173273892 41.734074160795565 42.91915697097836 44.09505292733759 45.26399922280922 46.42873926542042 47.59243708501272 48.758575106506186 49.93083664484655 51.11297506090973 52.308672057660196 53.521388074471176 54.75420813968735 56.00968685482499 57.28969639876042 58.59528155044337 59.92652573089383 61.282431959525496 62.660822409366205 64.05825993666485 65.46904539606227 66.88227364707731 68.28564759099602 69.6668855316547 71.01384861302948 72.31465311946927 73.55776661895626 74.7320860759723 75.82699694003513 76.83241316906788 77.73879915118255 78.53742438239574 79.22585189428966 79.80810113480098 80.28914018999964 80.67449808711935 80.9701486342074 81.18241714196604 81.31790593723989 81.3834349342687 81.385993977883 81.33270417269458 81.23078593212244 81.08753199540519 80.91028414965963 80.70641284218482 80.48329926398085 80.24831982037922 80.00883317281587 79.77217023323342 79.54562761711934 79.33646511176529 79.15190769289657 78.9991525258759 78.88538121804659 78.81777734724615 78.80354897856925 78.84995549695809 78.96433762608396 79.15414897196014 79.42698681898212 79.79061921101804 80.25300456312853 80.82229916063648 81.50684689940535 82.31514448980253 83.25577407015756 84.3364871054309 85.55776681838593 86.9159267667895 88.406463387146 90.02388869139713 91.76153633849682 93.61137582131279 95.56383807815365 97.60765567769919 99.72972055227406 101.91496206199666 104.14624795763311 106.40431057081726 108.66770029592311 110.9127681389248 113.1136787969404 115.24259725443149 117.27869060689318 119.21545493714841 121.0497122139647 122.78052584456921 124.40922136132384 125.93937721420971 127.37678498248069 128.72937873176633 130.0071336606582 131.2219345949144 132.38741528988882 133.51876988535682 134.63253821520945 135.74636700225142 136.87874926154498 138.0487444917229 139.27478832426422 140.54411766856484 141.80493876350118 + 3.4705370552512105 3.7509148143900344 4.066487210742681 4.417270896020379 4.803285764429917 5.224551637531791 5.681084574369504 6.1728929631172775 6.699973399252198 7.262306347952866 7.8598515801882245 8.492543362850103 9.160285373382605 9.86294529877992 10.600349067695095 11.372274652887823 12.178445369527479 13.018522583179086 13.89209772988092 14.798683539852185 15.73770434635563 16.708485352419203 17.71024072086248 18.74206034776814 19.802895176610797 20.891540910148315 22.006619980362675 23.146561643695605 24.30958008006024 25.49365039013919 26.696482406821 27.91549226380323 29.147771697919133 30.39005510212797 31.6386843938341 32.88957181871911 34.13815545873618 35.378939237034636 36.60835352232484 37.82517519551171 39.028940639737804 40.21991753587176 41.3990780279193 42.56805707875549 43.72909544230479 44.88496710418298 46.038891500178444 47.19443129497794 48.35537697639233 49.525619977560275 50.70901646658305 51.909244326341614 53.12965617497102 54.37313153954064 55.641931483869634 56.93755910027574 58.26062930090749 59.610751286001296 60.986426925127624 62.38496806667364 63.80243549596704 65.23295026799805 66.66542540294876 68.08696772374927 69.48484287383913 70.84659455043892 72.16014195814456 73.41385984558596 74.59663996768906 75.697933618438 76.70777573639454 77.61679198064436 78.41644214396727 79.10454118178043 79.68539737844338 80.16424574170223 80.54685700412095 80.83942195125971 81.04845950384428 81.1807440563925 81.24324806514636 81.24309642638381 81.18752975946107 81.08387428102769 80.93951650705256 80.76188153146322 80.5584140920121 80.33656203624471 80.10376213652182 79.86742846840208 79.63494375843861 79.41365422403948 79.2108684689127 79.033860962918 78.8898805254356 78.78616404736232 78.7299554291583 78.72852938119256 78.78921932752982 78.91944817385392 79.12676014184501 79.41885123196073 79.80359514848531 80.28906069732012 80.88351573872919 81.59541173254163 82.43334173862097 83.40596341546453 84.52105258137168 85.778912758997 87.17553762937564 88.7060341304984 90.36444857584098 92.14356721735025 94.03472696282428 96.02763977595833 98.11023408498265 100.26851630662871 102.48645535101028 104.74589270658213 107.02648041108355 109.30564889439269 111.55860633415328 113.75837079794496 115.87623062714836 117.89319933356538 119.80397015621922 121.60620726720882 123.29994119581667 124.88756971768585 126.37382643536604 127.76571675275413 129.0724214066622 130.30516817485852 131.4770728217677 132.60295076172713 133.699101307489 134.78306672201495 135.87336859953183 136.9892243639465 138.15024688745982 139.37442542925646 140.64366002883008 141.90530862914318 + 3.2371504157026694 3.5241396082322765 3.8452891080839033 4.200682016487235 4.590407429185473 5.014556983917277 5.473220942730125 5.966483954000564 6.494420484992945 7.0570899103975755 7.6545312366289595 8.286757435811104 8.953749357411573 9.655449179502481 10.391753355725534 11.16250500833362 11.967485712290332 12.80640661046396 13.678898795590678 14.584502891049112 15.522657759741287 16.492688268672605 17.49379203633636 18.5250250909085 19.585286369725488 20.673300994735268 21.787602264761745 22.92651231369543 24.088121394301318 25.27026576040513 26.470504135960763 27.686092778090597 28.913959162794253 30.15067434679623 31.392424087096426 32.634978831327 33.87365727507042 35.10292701307931 36.319497557182046 37.52254469640413 38.71205204480123 39.88876557145607 41.0541468820522 42.21031183963289 43.35995471855591 44.50625843858693 45.65279178920888 46.803394916277256 47.96205469306462 49.13277192493974 50.31942263163588 51.52561590450246 52.75455104075298 54.00887680636224 55.29055576928006 56.600736671985096 57.939637775709606 59.306444008171724 60.69922058420682 62.1148455476244 63.54896340763414 64.99556300142585 66.44364638511469 67.87985026078643 69.29107583079531 70.6646203320583 71.9882605058151 73.25031781198105 74.43970484723185 75.54595314993124 76.55922333968708 77.47029933241724 78.27082181947605 78.9588308420701 79.538882729473 80.0164398361046 80.39747741598798 80.68836868137667 80.89579427584935 81.02667133350268 81.08809790140491 81.08730913551905 81.03164231446297 80.92850832980751 80.78536788969947 80.60971120177922 80.40904037204858 80.19085416148116 79.96263507675704 79.73183903220747 79.50588800487135 79.2921662125105 79.09802037529562 78.93076457595525 78.79769011104435 78.70608052824508 78.66323177165889 78.67647700882877 78.75321528902549 78.90094268046295 79.12728395178137 79.44002219617936 79.84712303930039 80.35674921704373 80.97726034783615 81.71719164485081 82.58520410497863 83.58999735959323 84.7393340701324 86.0333092603613 87.46757256130506 89.0368166959101 90.73459852715088 92.55313584925179 94.48311652070375 96.51352365547616 98.63148033828988 100.82211705914871 103.06846476678555 105.35137611756404 107.6494771449668 109.93915119623405 112.19455657982661 114.38767894454708 116.48931763190345 118.48290810560867 120.36428861392741 122.13203607756105 123.78719656915085 125.33326395298455 126.77612425587617 128.1239659339415 129.38715669886776 130.57808805012655 131.71098911576996 132.8017118245247 133.8674898078718 134.92667375640673 135.99844622568924 137.10251910079185 138.25881708579732 139.48423646814774 140.7551926414526 142.01864083824327 + 3.011352976212475 3.305873564427511 3.6335312148704673 3.9944692706296805 4.388838710533138 4.8167944870839765 5.278491330687777 5.774079161223162 6.303698089592911 6.867472988519286 7.465507608657104 8.09787821315002 8.764626701104282 9.46575318815427 10.201208010399716 10.970883116557342 11.774602812237946 12.612113819885678 13.483074618141014 14.387044025259993 15.323468992777569 16.29167157788266 17.290835066011034 18.31998921898987 19.37799462871562 20.463526161837123 21.57505548727016 22.710832685604995 23.868866947596622 25.04690637795679 26.24241693060106 27.452560512340693 28.67417230374322 29.903737358503715 31.137366556155982 32.370771997285004 33.59923644685873 34.817277078287376 36.02191300684161 37.21267415576583 38.389924085864614 39.55480135343616 40.70915667334028 41.85547595298047 42.99678998536226 44.136571872230824 45.278623526044406 46.42695286474043 47.58564355877457 48.75871940914786 49.95000562214745 51.16298939618029 52.4006823441639 53.665487338245995 54.959072379998105 56.28225406760695 57.63489315199181 59.01580454727988 60.422683989753374 61.85205332622097 63.29922616154274 64.75808851083491 66.21797700923162 67.665207032825 69.08640149023246 70.46867923146968 71.79972571545686 73.06784495919372 74.26199274116235 75.37179167913351 76.387529480354 77.30014236172818 78.10143995181494 78.78965802045927 79.36955776048397 79.8467873720568 80.22748790951394 80.51817923259897 80.72567083574648 80.85699247152493 80.91934018568335 80.92003408339083 80.86648482869528 80.76616652580888 80.62659422899932 80.45530486804155 80.25984085118546 80.04773601223165 79.82650389897296 79.60362865465302 79.38655892091839 79.18270528948553 78.99944185045088 78.84411232823936 78.7240411621436 78.64654967773606 78.61897720833812 78.6487066619356 78.7431935874775 78.90999727354453 79.15681180900708 79.49149434537341 79.92208701856337 80.45682810693556 81.10414701424757 81.87263656124715 82.77099483714255 83.80792749097029 84.9911444443603 86.32050303866136 87.79128571473584 89.3977483029274 91.132937667546 92.98848659850923 94.95442334421872 97.01899965278548 99.16854088437019 101.38732143005997 103.65746831822452 105.95889550581093 108.26927093985287 110.56401803592878 112.81635275958487 114.9973570196379 117.07788036140487 119.04421316682894 120.89326144249056 122.62456789243812 124.24022313420524 125.74482019428785 127.1453732927938 128.451201603648 129.67377920206545 130.82655290720422 131.9247301836619 132.98503967106228 134.02546725860373 135.06497090550474 136.12317762558894 137.2200662041825 138.37563930001124 139.60499095035357 140.87916499973022 142.14511676646197 + 2.7935750592724697 3.096551165710953 3.4316587447543117 3.799095391628483 4.199066993971648 4.631783801610735 5.097455915029658 5.596288336606958 6.12847556413945 6.694195704791676 7.293604086676404 7.9268263448005865 8.593950958114213 9.295021214879968 10.030026584538906 10.798893475670804 11.601475361523343 12.437542256891035 13.30676953283677 14.208726058834088 15.142861665334248 16.10849392348462 17.10479424270738 18.130773291036984 19.185265747469213 20.266914400038964 21.37415360786745 22.505192149949735 23.657995487934876 24.830267474529876 26.019431543382247 27.222611420308294 28.436611399486008 29.65789623167004 30.882570674562995 32.10635875814649 33.324577274588115 34.531868169716525 35.72558233259092 36.90555620930902 38.07246612102755 39.22776003634726 40.37358225893086 41.51268482456536 42.64832682678858 43.78416310770917 44.92412395320282 46.07228761487468 47.2327476410276 48.40947713180526 49.6061921366591 50.82621648287877 52.07235036031915 53.34674498850904 54.650785657554984 55.98498536385313 57.348891156410915 58.74100517099177 60.15872215929242 61.59828512138653 63.05476042454737 64.52195173238478 65.98972843980007 67.4442628945326 68.87198370381135 70.25989672488413 71.59564436087517 72.86754600715008 74.06462002962216 75.1765882324096 76.19386437115183 77.10752888494153 77.90954657628777 78.59831781829274 79.17876378990461 79.65667566591465 80.03832047764361 80.33032806033738 80.539603158129 80.67325742096286 80.73855680523076 80.74288064528776 80.69368938119898 80.59849859709328 80.46485763517549 80.30033159584582 80.11248600937382 79.90887386555058 79.69702501226011 79.48443818050688 79.27857606137988 79.08686394957358 78.91669247864021 78.77542490556118 78.67040925696844 78.60899542676667 78.59855701503844 78.6465173204943 78.76037844224959 78.9477519094208 79.2163886360372 79.57420529006714 80.02930336384107 80.58997633253155 81.26469928027981 82.06209425179091 82.9908633419407 84.05968015822036 85.27616066259405 86.63989550264142 88.14577848284286 89.78760865354477 91.55790635328883 93.44770817811529 95.44637896196313 97.54144474280065 99.71845032631764 101.96084467094059 104.24989690128429 106.5646453110748 108.88188124258085 111.17616923136185 113.41990428831208 115.58340666286634 117.63830002196549 119.57393495283937 121.3882141615737 123.08168030515468 124.65747728745089 126.12127931865574 127.48118338717568 128.74756639609924 129.93290875489322 131.05158671194692 132.11963615334523 133.1544909682061 134.1746993838723 135.1996219006992 136.24911460452486 137.34320170655135 138.50174115974855 139.73726891051646 141.01583434088403 142.28473381038341 + 2.5842544614726943 2.896609693211136 3.2401144370340837 3.61501474822845 4.021564778416223 4.460022532906296 4.930645018882102 5.433682937635655 5.969374901375846 6.537941155623668 7.1395767892235575 7.7744444155186505 8.442666310216199 9.144315993859761 9.879409249568027 10.647894569733367 11.449643028626031 12.284437581250716 13.151961792272612 14.051788002294307 14.983364942144048 15.946004809051649 16.938869821567263 17.96095827274457 19.011090103397407 20.087892019081103 21.189782175788796 22.314954460135805 23.46136238998677 24.626702661021188 25.808398363605026 27.00358189251625 28.209077569548526 29.42138399578808 30.63665614642678 31.850687216361184 33.058884636399725 34.25607962353582 35.43996760713284 36.61064203144055 37.76902598630677 38.91679737345696 40.0563045796762 41.19046992955928 42.322682417989206 43.45668138101066 44.59643290220562 45.74600086802455 46.90941467806964 48.09053568370439 49.292924469574686 50.51971110704958 51.77347049598098 53.05610487166885 54.36873548798755 55.71160539610258 57.08399512220836 58.484152908639025 59.909241022153346 61.35529945295422 62.81722812996049 64.28877034080523 65.76045797223868 67.21853349508916 68.64931297869316 70.0397522490269 71.37749641987976 72.65091073451939 73.849093404572 74.96187164393511 75.97978262505191 76.89404163004919 77.69675383500842 78.38645208843116 78.96817170102302 79.44780316088163 79.83169900900472 80.12656184904137 80.33935762116512 80.47724876437924 80.54754272513102 80.55765206310919 80.5150631467366 80.4273111128032 80.30195938057217 80.14658255580416 79.96875203106485 79.77602398305619 79.5759297840428 79.37596908191846 79.183605961782 79.00626868116177 78.85135347157602 78.72623282138986 78.6382684993212 78.5948293446835 78.60331353941906 78.67117468757944 78.80595055895087 79.01529280304976 79.30699530494132 79.68901813156737 80.16950320188721 80.75677690064992 81.4593338378069 82.28579482673058 83.2448309077293 84.34504387248064 85.593913388647 86.9907351922011 88.5299953999126 90.20501995385554 92.00779096778642 93.92874382125821 95.95658365919962 98.07812533118108 100.27816037987519 102.53935423672077 104.84217630220641 107.16486507886334 109.48342998984292 111.77169096000735 114.00135626693042 116.14214059613175 118.1673759036401 120.06936712631028 121.84698411763861 123.50178394706835 125.03795199372746 126.46220490704738 127.78365669725133 129.0136498012107 130.16555350660337 131.2545325959111 132.29728947991578 133.31178341891498 134.3169306727074 135.3322895745252 136.37773458991566 137.47312340296526 138.63796097649288 139.8814442358225 141.16525755745977 142.43730395966148 + 2.383836198954695 2.706488644914842 3.059337609911639 3.442671990752002 3.856787866649731 4.301983914614705 4.778556206105806 5.286792552627851 5.826966384991107 6.399330153067096 7.004108235464788 7.641489351533377 8.311618471379896 9.014588223071186 9.750429799765307 10.519103373080254 11.320488022446073 12.154371193396837 13.020437700633732 13.918258294132249 14.847277808484185 15.80680291697277 16.795989512506804 17.813829737421532 18.859138683243234 19.93054077977349 21.02645589025571 22.145085125934855 23.284396389019737 24.442109647929435 25.61568194279618 26.802292112560774 27.998825227713468 29.2018567048945 30.407636071286245 31.61207033813609 32.81070133009141 33.99860368562381 35.17381999375814 36.336650313585366 37.48820075951284 38.630304435820406 39.76543132194218 40.89658716699039 42.02720304027279 43.16101729157444 44.30195176087816 45.45398414162006 46.62101844436758 47.806755529016336 49.01456567346551 50.2473651256709 51.5074985445661 52.79662917431471 54.11563851654816 55.464537167604405 56.84238837332492 58.24724572375012 59.67610626515619 61.12488014835809 62.58837776108458 64.0603159532572 65.53193230787232 66.98979059878062 68.42017379854161 69.81004845795549 71.14710618253508 72.41978683376244 73.61728434670071 74.7295365098985 75.74720052410176 76.66161664197827 77.46501532868369 78.1560295468665 78.73976264414941 79.2221605700007 79.6096207427206 79.90888117104254 80.12693478276053 80.27096354349432 80.34828781897646 80.3663272495073 80.33257015840034 80.25454920191925 80.13982158233449 79.99595268534104 79.83050246608511 79.6510142930909 79.46500626565536 79.27996524746386 79.10334400727908 78.94256192682525 78.80500972681243 78.69805857483941 78.62907377398683 78.6054329883823 78.63454864166158 78.72389372539605 78.88102977598932 79.11363521840671 79.4295316308199 79.83670475255235 80.34331623461902 80.95770121310922 81.68834576573434 82.54383718601345 83.53277877317588 84.66365948525167 85.94377984783546 87.37211393433991 88.9427242409852 90.6484515972913 92.4807337926019 94.42940687292086 96.48252821313868 98.62622540702431 100.84457452865352 103.11951080277632 105.43077417688401 107.75589171612583 110.0701981480378 112.34689527397674 114.5571503468948 116.67027870614669 118.66237906567588 120.52831854213848 122.26794948079161 123.88383780999285 125.3811782904993 126.76767134916196 128.053363364176 129.2504528514605 130.37306556093205 131.4370006329059 132.4594518358292 133.45871301307216 134.45386767588687 135.46446680900164 136.51019935779718 137.61055935517476 138.78451362714208 140.03714890265798 141.3266509435874 142.60172277957318 + 2.1927722815097104 2.5266291784253045 2.8897632356404195 3.2825007192671767 3.7051735815405005 4.158114519424297 4.641651421448064 5.156101389486113 5.701764326634392 6.2789160857760375 6.887801177164453 7.52862503725974 8.201545864994323 8.906666035474837 9.644023104709248 10.413580422143491 11.21521737046818 12.048719254192145 12.913766859763438 13.809925710452424 14.736635038714828 15.69319649725877 16.678762627504398 17.69232510052054 18.73270274084504 19.79852933786112 20.888241242648867 22.000064740522056 23.132003180879035 24.281823836653366 25.44704445567534 26.624919455809415 27.81242570499626 29.00624781651143 30.20276287909321 31.39802453135633 32.587740679637726 33.76727380681174 34.93500576179737 36.09139313500411 37.2376645540844 38.375739262782595 39.508134166137104 40.63786120727061 41.768316751739825 42.903164719267615 44.04621524768444 45.20130070072116 46.372150840656 47.562268979480116 48.77481089899734 50.01246829190388 51.27735842317677 52.57092164479556 53.89382831763182 55.24589660293477 56.626022482803194 58.032123254889115 59.46109562175644 60.908789360158835 62.369997410251116 63.838463069538996 65.30608022446562 66.76001634795973 68.1866006538719 69.57286914757904 70.90660214646074 72.17634180339032 73.371392991941 74.48180896100777 75.49836358897446 76.41251250573296 77.216596822982 77.90931778291426 78.49580117909478 78.9820049926532 79.37433121742063 79.6795161454562 79.90454564654279 80.05659004913846 80.14295411839375 80.17103844965494 80.14830934919712 80.08227495463852 79.98046595325923 79.85041978564271 79.69966767357504 79.53572418430555 79.36607933780363 79.19819347950984 79.03949527848 78.89738327008 78.7792313438959 78.69239848163755 78.64424287676222 78.64214031735409 78.69350638617402 78.80582162605214 78.98665833377912 79.24370707966975 79.58480040079394 80.01793038073025 80.55125600439018 81.19309525948529 81.95189594301905 82.83617801856154 83.85443915561126 85.01501376518328 86.32498054029864 87.78296731690702 89.38260088168279 91.11623000746658 92.97474836701728 94.94740209920536 97.02162144552106 99.18288045391614 101.41458819370088 103.69801434470371 106.01225141640427 108.33421522142967 110.63868457846829 112.89838056056264 115.08408494613084 117.165069906865 119.12109907540871 120.94914693647738 122.65004905805353 124.22735291879609 125.68720473370811 127.03820058759337 128.29120258468035 129.45912316764236 130.55668105331958 131.60013255493405 132.6069822949437 133.5956774585619 134.58528979776983 135.5951895743416 136.6447155352402 137.75284485399777 138.93783431012486 140.20003953283998 141.49511123955267 142.7726981461273 + 2.0115215121821204 2.3574735725188476 2.731821029727446 3.1349221638405926 3.567138995969621 4.028831989646757 4.520354161868972 5.042044813393562 5.594222877233309 6.177179888691861 6.791172584713248 7.436415144623322 8.113071088345082 8.821244851704487 9.560973061348145 10.332215533918832 11.13484602534057 11.968642756237273 12.833278738542463 13.728311926180158 14.653175209251208 15.607166266417698 16.589437284138103 17.598984544091042 18.634637871587426 19.69504992808976 20.778685320238008 21.883809486161635 23.008477307497675 24.150521382628877 25.30753988342432 26.476883904459548 27.655644200598967 28.840637196259838 30.028390138001164 31.215125251697756 32.39673718877219 33.56891181257661 34.73035180658691 35.881621733579124 37.02401635227699 38.1594784211948 39.29050553746787 40.42004866221043 41.55140393834142 42.688099436222544 43.83377847785809 44.99208119293086 46.16652595060775 47.3603922907158 48.57660694731409 49.817634517475355 51.085374278707015 52.381064600222686 53.70519632640621 55.05743643537226 56.43656319145906 57.840413917635175 59.26584641190451 60.70871492049928 62.16386145954968 63.62512314552293 65.08493651684203 66.53134823583706 67.95082443471718 69.33052738336147 70.65836711810553 71.92301518407513 73.11390258895597 74.22120335847697 75.2358054687523 76.14927133273636 76.95403919246671 77.64884799975046 78.23880164831347 78.72982776177324 79.12829344529254 79.44089680695676 79.674583110455 79.8364802526273 79.93384914754326 79.9740454152235 79.96448951586669 79.91264313798881 79.82599024011864 79.71202165988629 79.57822264103123 79.4320629878235 79.28098983762607 79.1324232459832 78.9937549049545 78.8723503647732 78.77555510162293 78.71070467069238 78.68513900382996 78.70622065504531 78.78135646446897 78.91802170153946 79.12378526011078 79.40633391043102 79.7734929637214 80.23323997223737 80.79370726887751 81.46316824326202 82.25000125367684 83.16262398500638 84.20938988166819 85.39843701349217 86.7365804319909 88.22208006192012 89.84811943859883 91.60655407499391 93.4877406589061 95.48035290019381 97.57122361766498 99.74521696323183 101.98513406398463 104.27165471988779 106.58331730312574 108.8965377562553 111.18567076302384 113.42310600410735 115.5794041972245 117.62434111931091 119.54194887648471 121.33084342209088 122.99280220837208 124.53228310803829 125.95628982182211 127.27420107590953 128.4975666143696 129.63987343126857 130.71628604102366 131.74336484905677 132.73876685631703 133.7209330120481 134.7087665233549 135.72130634423482 136.77739990958196 137.89537896191496 139.0925758792274 140.36426045856336 141.66443326266915 142.9438165097939 + 1.8405493091574894 2.199464702021732 2.585934546576376 3.0003438673848106 3.443079165520704 3.914522775793309 4.415046667337101 4.945005923044221 5.504731905119196 6.094525118987533 6.714647792467914 7.365316191324147 8.046692695858571 8.75887766591177 9.501901123329882 10.275714281503484 11.080180950845591 11.915068846963116 12.780040824712032 13.674646056268742 14.598311164785935 15.55033131714618 16.529861269830644 17.535906351060866 18.567313350259706 19.622761272650887 20.700751902647458 21.79960010476343 22.91742377535122 24.052133342778532 25.20142069800202 26.362747422199114 27.53333216354481 28.71013700177795 29.889852627344737 31.068882152161553 32.24331786008013 33.40919665006033 34.56551343594598 35.712894964305804 36.852650660335 37.986691223672125 39.11743755427407 40.247722700329454 41.38068828346666 42.51967686020389 43.66812167499929 44.82943525047383 46.00689824519631 47.203549989341525 48.42208208379977 49.66473641891412 50.93320893471987 52.228560404928274 53.55113548133403 54.90049118310554 56.27533595569833 57.67348035600417 59.091800342861 60.52621406422733 61.97167293322327 63.422167673933224 64.87057939005406 66.30601687328044 67.71521115882571 69.08550568596678 70.404980253489 71.66246275209755 72.84752604569594 73.95047130349253 74.96229944207735 75.87467271315911 76.6801147277218 77.377373544608 77.97148878338946 78.46831697617013 78.87415222424998 79.19561906180712 79.43958944402516 79.6131186965765 79.72339613486142 79.77770685859774 79.78340194960678 79.74787494743657 79.67854304845991 79.58283196903332 79.46816383210096 79.34194777925318 79.21157327681033 79.08440627517412 78.96778849571837 78.8690401591587 78.79546643389858 78.75436777251554 78.7530541193996 78.79886271251293 78.89917886700233 79.06145871740995 79.29325240765964 79.60222565274772 79.99617695181338 80.48304700756695 81.07091610048775 81.76798427664271 82.58252823487994 83.52282774305654 84.59705327605526 85.81310535524378 87.17749522275159 88.68809683766565 90.33764814475295 92.11751669127288 94.01753649621797 96.02583561321705 98.12869026300324 100.31041140247534 102.55326590291297 104.83743474522203 107.14100976166604 109.4400297346107 111.70855595226952 113.91878663070148 116.04120895252869 118.04685029684728 119.92420218179325 121.67310806984311 123.2962300647784 124.79885995407221 126.18876361648357 127.4759908065691 128.67265371777987 129.79267811305687 130.85153110789494 131.86592989263926 132.85353578830856 133.83263804642866 134.82183173385135 135.8396938963913 136.9044619804967 138.03371822197548 139.2436230142554 140.5242736851809 141.82879664501866 143.10910171839197 + 1.6803275466511534 2.053045520574522 2.452520274234073 2.8791583622628973 3.333365354203206 3.8155398733882593 4.326067122475528 4.8653121594794335 5.433612939727084 6.031273144270949 6.6585548197859525 7.31567085864879 8.002777350549607 8.719965838445702 9.467255511778825 10.244585368517354 11.051806374650956 11.888673645194867 12.754838664518324 13.649841555896668 14.573103400634551 15.523918595982499 16.50144722847357 17.504707425367847 18.532567631772892 19.58373874489642 20.656766019998432 21.75002064519065 22.861690864549395 23.989772511366144 25.132058796088902 26.286129176974406 27.44933712608664 28.618796589504093 29.791366928960947 30.96363612325581 32.13189796925022 33.2925571968948 34.44486694656104 35.58947298052376 36.72765350814834 37.86123884335876 38.99252099403932 40.1241618087318 41.259101028155406 42.40045560485909 43.55141685175404 44.71514677660936 45.8946747987306 47.09279603867827 48.31197236587667 49.554237381368225 50.82110650265751 52.113493303293254 53.43163324017899 54.77501587515849 56.142326662732046 57.53139933138408 58.939179830551964 60.36170274741922 61.794081016277005 63.23050964707919 64.66423895536258 66.0855165905582 67.48150053916856 68.83976555088564 70.1485979824846 71.39700718164048 72.5747229932956 73.67218054642308 74.6804938185345 75.5914198359048 76.3975581006135 77.09764006376027 77.69660182359301 78.20019085158609 78.61459250488458 78.94632435790139 79.20215402245417 79.38903548683764 79.51405984415595 79.58441704669715 79.60736601612398 79.59021105872534 79.54028308083166 79.4649245716643 79.37147771929534 79.26727535001476 79.1596346322727 79.05585366356603 78.96321116230435 78.88896951698601 78.84038140208607 78.82470005404463 78.84919311167673 78.92115966315463 79.04794980622651 79.23698561917527 79.49578195667206 79.83196492651261 80.25328526957122 80.76762315557932 81.38298012122138 82.10745301474279 82.9491838738599 83.9162786536035 85.01668664199497 86.25803126077084 87.64648308817205 89.1795181258809 90.84943507022936 92.64712942471928 94.56194113383509 96.5814925247802 98.69155593903801 100.87595447339653 103.1164985135096 105.39295999738071 107.68308559814727 109.96264927422115 112.205543910871 114.38391108246827 116.4683073110584 118.4320082556673 120.26767349979765 121.97608454267476 123.56072088556148 125.02762260259323 126.38521609157482 127.64410709520202 128.81684473102666 129.91766059951098 130.96218727541276 131.967160627043 132.95011045222404 133.92904387351882 134.92212580560397 135.94736060391028 137.0222787372168 138.16363201066235 139.38614350397214 140.6748937204183 141.98279152124172 143.263033451171 + 1.53133441146601 1.918658545923813 2.331986721220125 2.7717418325313687 3.238343244796283 3.7322005504106968 4.253706863708807 4.80323194632109 5.381115186179672 5.987658457824447 6.623118895588328 7.287701614007016 7.981552411224544 8.704750491096618 9.45730123800031 10.23912907494967 11.050070430429537 11.889866832373988 12.75815813894007 13.65447590521264 14.578236872801822 15.528736555576458 16.505142879659445 17.50648981946558 18.531670954188055 19.579432850956817 20.648368162142102 21.7369083052257 22.843315574592136 23.965674515816197 25.101882374874908 26.24963841756821 27.406431898710387 28.56952342063916 29.7359121836488 30.902339417048534 32.06527547586074 33.22149723363609 34.37046337272684 35.5128030949267 36.64972973207391 37.782964115608685 38.91465238022053 40.04727920113018 41.18357744689922 42.32643521863379 43.47880124210261 44.643589581174204 45.82358464824717 47.02134749878948 48.239124411226676 49.47875876850341 50.74160727179563 52.02846152806906 53.33947605939123 54.674103781032905 56.031039985393974 57.40817584769613 58.80256243536182 60.21038615436405 61.62695650111161 63.046706906368954 64.46320672676526 65.86780323065867 67.24826936725009 68.5924530601502 69.88887883682659 71.12676008419251 72.29599841533054 73.38717113055384 74.39150808191664 75.30085959914545 76.10789579197257 76.81131134487796 77.41590585703666 77.92728533938057 78.35149549202157 78.69491767512949 78.96418761964875 79.16613214218056 79.3077199251557 79.39602315011636 79.43818742862503 79.44140806199952 79.4129111775994 79.35993873558533 79.28973677574699 79.20954657899019 79.12659865225692 79.048109608972 78.98128210953382 78.93330804793864 78.91137512137296 78.92267679958744 78.97442552007304 79.07386867346405 79.2283066110749 79.44511150286402 79.73174539918898 80.09577530325524 80.54488244306646 81.08686224208186 81.72961072724712 82.48109228285328 83.34928276108589 84.34208099888394 85.46718077151735 86.73189414432261 88.14202086291054 89.69463486880366 91.38160968044048 93.19339143101799 95.11885763731712 97.14516779586997 99.25764489625593 101.43969101183967 103.6727393557372 105.93624441489371 108.20771100562102 110.46276233946836 112.67524645994709 114.81737972028236 116.85994126453832 118.77967181581263 120.57259446432417 122.24029811022461 123.78700334374335 125.21940634432784 126.54648853805419 127.7792956581901 128.9306902210652 130.01508170220183 131.0481388728967 132.04648883521665 133.0274072767721 134.00850436154946 135.0074104879218 136.04146589026934 137.1274177487704 138.2811281165788 139.5156178027854 140.81131242319637 142.12143803916558 143.40056119396147 + 1.3940542718539408 1.7967453424761421 2.2247334887741843 2.678452754484286 3.1583311268078322 3.66478406003264 4.198207589993163 4.758971365105499 5.347411622820318 5.963824144641055 6.608457225889706 7.281504697983558 7.983099040961099 8.71330462223909 9.472111094008605 10.259426976233907 11.075073444891594 11.918778335902404 12.790170364226046 13.688773544904782 14.614001788582668 15.565153628347216 16.541407017821705 17.541814122476474 18.565296007347076 19.61063710497647 20.676479327682006 21.761314798400733 22.863452360345377 23.981004230485528 25.111912809487894 26.253944786435376 27.40468139818892 28.56150663705636 29.72159305519659 30.881884806708342 32.039078259350134 33.19037835888106 34.33544495072927 35.47489500546664 36.60987633562024 37.74199589438335 38.87324370972565 40.00591321501722 41.142518714383876 42.28571071085232 43.43818982730244 44.602620063182016 45.78154215230565 46.977287816942535 48.19189574861207 49.427030184152336 50.68390298415215 51.96320015711007 53.26501380402781 54.58878048193012 55.933226998462985 57.29632465083934 58.67525290873949 60.06637351032496 61.465215891568356 62.866474800213574 64.26402085579927 65.65016060430385 67.01348741484864 68.34216026057356 69.62497029356507 70.85135661195338 72.01140829428856 73.09585534234432 74.09604963659746 75.00393734777644 75.81225833911898 76.51965630532015 77.13076820437341 77.65103225386434 78.0863288561655 78.44287844801804 78.72716123972766 78.94585437352622 79.10578277571292 79.21388065734365 79.277161233344 79.30269277969055 79.29757963233064 79.26894714935032 79.2239300091145 79.16966350128025 79.11327768438916 79.06189443289968 79.02262747784012 79.00258555861188 79.00887874879041 79.04862789601187 79.1289769251969 79.25710749542746 79.44025517377591 79.68572589429387 80.00091100729318 80.39329869318841 80.87047891695354 81.44013843448418 82.11004163222506 82.88799218853879 83.78176969282389 84.79903445125228 85.94719275313716 87.2332138788651 88.66249989665968 90.23172230347345 91.93234752460293 93.75439925904055 95.68632946868857 97.71488253556669 99.8249912531492 101.99970752698195 104.22016986051 106.46560890730487 108.71339158913551 110.93910352076071 113.11666875821187 115.21850520949788 117.2159184441002 119.09013991540809 120.83960403407318 122.4666406484688 123.97612842679267 125.37532332521751 126.67365485397093 127.88249405243965 129.01489739569502 130.0853310691299 131.10938016362937 132.1034473624385 133.08444561710724 134.06948915076003 135.07558689197302 136.11934214326553 137.21666193774672 138.38247915009038 139.6278671260629 140.92912160862656 142.2402031158552 143.51711519627813 + 1.2689773865140348 1.6877458505030656 2.1311501991971116 2.5996304074552605 3.0936179755986 3.613529274479952 4.15975853634679 4.732670849927197 5.33259519304157 5.959817539474428 6.614574078736299 7.297044587553646 8.00734599033038 8.745526142346886 9.511557864061215 10.305333247550358 11.12665824691339 11.975247553428957 12.850719743522461 13.752592673295068 14.680279077659906 15.633082315207378 16.610192181983617 17.610676176650937 18.63342993223023 19.67718982224241 20.74056075675445 21.82201402441793 22.919884035604245 24.03236405499104 25.157500600856586 26.293186165479476 27.437149891217764 28.58694582065854 29.73993832739165 30.893284327325794 32.04392007300752 33.18949617558119 34.329842764718556 35.46555330409344 36.59769952433879 37.72776520445409 38.85757665861791 39.98923045656893 41.12501888186703 42.26735362617427 43.418688227967905 44.581439789079255 45.75791054001538 46.95020987269228 48.16017751426705 49.389308575274704 50.63868126619842 51.90888813580274 53.19997173889631 54.51136568757507 55.84184207544979 57.189466286068296 58.55156020212479 59.92467481879607 61.30457323070092 62.686224905947846 64.06381208135905 65.43038884995201 66.77556759260848 68.0878575251103 69.35634134671217 70.57070407640545 71.72123819434074 72.79883851358287 73.79498767463319 74.70173348471987 75.5118884217717 76.22403620014674 76.8426311873454 77.37292301864436 77.82060600889305 78.19171916961811 78.49256717782583 78.72965811382429 78.90965447286591 79.03933458433443 79.12556214197363 79.175262058548 79.19540130754129 79.19297380222449 79.17498868789531 79.14846168560244 79.12040932461588 79.09784603579308 79.08778414843543 79.09723683894121 79.13322402036435 79.20278103777487 79.31296984506059 79.47089208455849 79.68370317177347 79.95862610366648 80.30296326093786 80.72410396300613 81.2295249599177 81.82678040963951 82.52347719420392 83.32723067702385 84.245595200687 85.28596277557011 86.45542252267515 87.76057251970767 89.20639407754794 90.78916015255565 92.49995276972152 94.32840491831789 96.26258463029637 98.2888733710083 100.39187686054348 102.5543708971974 104.75728393818702 106.97971738756578 109.19900375645145 111.39080210666285 113.52922947698343 115.58702633311061 117.53658829733021 119.36414502372692 121.06973427971468 122.65635279881221 124.12944989983593 125.49674311653592 126.76800383739655 127.95481707049028 129.07031970349553 130.1289217860654 131.14601542054106 132.1376758104574 133.1203588901092 134.11059975088617 135.1247158016146 136.1785182630294 137.28703521444027 138.46424899830507 139.7190793497869 141.02433287871418 142.33501408872638 143.60861421329594 + +Y Trans ----------------------------------- + 26.42007009485363 26.067527954211368 25.704480979389402 25.346725499744093 25.01002320075227 24.709459559045843 24.458789933279117 24.269808714456175 24.151748324051397 24.10584748363862 24.12009358887216 24.17937253277602 24.267509042606815 24.367957898763837 24.464490861699897 24.541849374588672 24.586335188651393 24.586314892356423 24.53261960220301 24.41882738128434 24.24142282065233 23.999835152795733 23.696362786037852 23.3359978226172 22.926168599966864 22.476421323939377 21.9980633090248 21.503793393661788 21.00793611557181 20.52655411332703 20.075716642840856 19.67109617704708 19.327815442990442 19.06033899426078 18.88240165715039 18.806962398894875 18.846134807651115 19.006984984267415 19.287299515587225 19.682666338683482 20.187592443623885 20.795661332101346 21.499658524099218 22.29167940866745 23.16323052274251 24.10533207928466 25.10862645981803 26.16349457282771 27.26017954996643 28.38891527023565 29.54005571213559 30.70420016165014 31.872308857166423 33.035803715961165 34.18664932004842 35.317410273961585 36.42128228854219 37.492095774362845 38.52429220921113 39.51287492895283 40.45333713198234 41.34157064567646 42.17375926032043 42.94626010437174 43.65547556883006 44.29771669441758 44.86905678331513 45.3651714332636 45.7811584516822 46.11132853291813 46.34895563889579 46.485975321586025 46.512804523062734 46.42211551052358 46.209187697082925 45.86817421454426 45.39208338704769 44.77300323579329 44.00240731357242 43.071552048602356 41.97196706738107 40.69603049030488 39.237611551884775 37.59301902633325 35.76662873226261 33.7713931784422 31.624690726783026 29.347885587994142 26.96583017104993 24.506168676764336 21.998471766498835 19.473244294528463 16.960857444512392 14.490462507407715 12.088945598152455 9.779980731437583 7.583233040274225 5.513754958134956 3.58160654855283 1.7917176771681427 0.1439953131114713 -1.3663351017121537 -2.748178606819353 -4.013845830280897 -5.178224929977575 -6.2577681300307715 -7.271342400035978 -8.236681085844987 -9.167421393621687 -10.07232799559594 -10.95602035558628 -11.820206482059671 -12.664447300992794 -13.486796700061515 -14.28433332694662 -15.053595650787656 -15.790931639655534 -16.492773877812816 -17.155850177289302 -17.777338835846574 -18.35497674036354 -18.887127571618922 -19.37281647457413 -19.8117367423785 -20.20423333393484 -20.551267405250236 -20.85436547790575 -21.115556383085895 -21.337298693627382 -21.522400975932328 -21.67393684584978 -21.795156487379494 -21.889395982737557 -21.959985502563473 -22.010157114768948 -22.042952691918174 -22.061132135475518 -22.067081899349276 -22.06272359690041 -22.049422330901503 -22.027894315583858 -21.998113390860464 -21.95921619603092 -21.90940635062207 + 26.571655067095342 26.205604050400428 25.82839390267734 25.45617926731865 25.105128690462504 24.790762825348683 24.527277427155234 24.326887634335616 24.199220725764484 24.146383956405 24.15641185359029 24.21374637532276 24.301717209990603 24.40325173882615 24.5015815227836 24.58091441260819 24.627043489818522 24.627867968449518 24.573806601180248 24.458090617336225 24.276930289326277 24.029556369351678 23.718144365462948 23.34763549157423 22.925472767180548 22.4612739004621 21.96646412229873 21.45390059126404 20.938204680753778 20.43566823748975 19.96252767532919 19.534604966759954 19.16715058856362 18.874733013869296 18.67116720516565 18.569470677505862 18.58179829267015 18.71525660052944 18.96768857405894 19.334743873661633 19.81099938662031 20.39012004862151 21.064986023652843 21.827800719873483 22.67019096489926 23.583307440609563 24.557930391848167 25.584582811556928 26.653650859375503 27.75550925670408 28.880647864852545 30.019794623546606 31.164029515533375 32.30488421813111 33.43442256774551 34.54529783481156 35.63078399357419 36.68477955891491 37.70178401797764 38.67684826386122 39.605501596942965 40.483658660131674 41.30751000063547 42.07339971579474 42.77769279769641 43.41663334489504 43.98619282529595 44.481905190971034 44.89868308886586 45.23060700876684 45.47067740921901 45.610519249595946 45.640214613726585 45.55212091606218 45.341267418832615 45.00163320371799 44.52614761594608 43.90692938306081 43.13560069647846 42.20368560848622 41.103093853106785 39.82668220364135 38.368876307665765 36.72649393991415 34.904032287572306 32.915168847690154 30.77805897456872 28.51474681139181 26.150632961395203 23.713752180707665 21.233891672856473 18.74159211030496 16.267082301118265 13.839203836350343 11.484383733647793 9.225710946669011 7.082166820004454 5.068050566081498 3.192629267685786 1.4600285754231792 -0.13063391112409084 -1.5848846577331352 -2.9123247024861234 -4.125892342671813 -5.24101152216383 -6.27488335618965 -7.247445509498878 -8.176438429556223 -9.075405275057918 -9.952859316154893 -10.813105982320653 -11.657557642634476 -12.485500614241671 -13.294735129591604 -14.082105636408793 -14.843933507612505 -15.57636394687108 -16.275638232421006 -16.938301577213515 -17.561355902220555 -18.14236580283264 -18.67952499488409 -19.171689596826695 -19.618383761423573 -20.019782424180814 -20.376675286409387 -20.690415590787754 -20.962856764376113 -21.19627958370446 -21.39331214395541 -21.55684457573284 -21.689940137107463 -21.79574400726979 -21.87739081633621 -21.937911662334805 -21.9801410933377 -22.00662427572137 -22.019524337639275 -22.02052968258297 -22.01076092806916 -21.99067706068083 -21.95998043891806 -21.91752045576246 -21.861196286105205 + 26.693733336892176 26.315730762721135 25.926074092498848 25.541226711144855 25.177705174598184 24.851398855686423 24.576872056131595 24.366686084846993 24.230777608257494 24.1719573406729 24.17831343519993 24.23385541252064 24.321441760674645 24.42350742735707 24.52278816142482 24.603009940930946 24.649513884254432 24.649791060976206 24.593907170065847 24.4748037025905 24.28846945786071 24.0339836144834 23.713438465149494 23.33175595184183 22.896416914984158 22.417125230549807 21.905430608521637 21.37435169626889 20.83880615634831 20.31528827670481 19.820180413344445 19.36943110309901 18.97839484198947 18.6617203139635 18.43327961845696 18.30612707942529 18.29243878695972 18.399345118653628 18.624734412845285 18.964310381158036 19.41271442320359 19.963689119911106 20.610206513471557 21.344575821333734 22.15854213177702 23.043384444103705 23.990018353065746 24.9891058704995 26.031172419848094 27.1067289973871 28.206395915459726 29.321023459719456 30.441804218203288 31.560371767471725 32.66888079751111 33.76006456301252 34.827266677574094 35.86444560887021 36.86615165783914 37.82747757339261 38.7439851241398 39.61161078649759 40.42655409937826 41.18515209348823 41.88374248133893 42.51851699463347 43.08536444036405 43.57970084789604 43.99628171208585 44.32898911606698 44.570584871255114 44.71242030461088 44.74428039857897 44.65824095886821 44.44910638807187 44.11070086821569 43.63588756361362 43.01682231231909 42.24527618055374 41.3130353529401 40.212379045460764 38.93662761107502 37.480744309595075 35.842070895039 34.025274396570154 32.04471092396866 29.919280793076087 27.67167377762054 25.32780297965023 22.91605762728264 20.466406104945435 18.00939143374587 15.575069636037721 13.191946344826267 10.885968313805472 8.679624071840696 6.591202032696024 4.63424534415506 2.817231273979412 1.1434897759861875 -0.388638046653639 -1.785414625477979 -3.057119486034824 -4.21730006564143 -5.281895810554726 -6.269158330817761 -7.199901877941363 -8.091813067305232 -8.958329607586027 -9.807706931002498 -10.643934468235688 -11.468130458643243 -12.279310473506984 -13.075026327512159 -13.851894037449513 -14.606023466463617 -15.33336186526942 -16.02996276484978 -16.692190715309465 -17.31687130548528 -17.901394816920014 -18.44378082167813 -18.942710064820453 -19.397529101390727 -19.80823239332792 -20.175425912288066 -20.50027573100505 -20.784444604926456 -21.030019131528537 -21.23942971078209 -21.415365201880725 -21.56068386622733 -21.678321895734406 -21.77120054332675 -21.842132597529144 -21.893728677314925 -21.928303572763173 -21.947782630908186 -21.953607997617897 -21.94664439279911 -21.927084040213042 -21.894350423691147 -21.84700073588645 -21.78262753437171 + 26.78753583389463 26.399075070558712 25.99863670036926 25.602945534704336 25.228809176665695 24.892420747692636 24.60864231981269 24.390307469519033 24.24758288834987 24.183817631891383 24.187135593063385 24.241125620270253 24.328199195327315 24.43033418771994 24.529815289260785 24.609938617231258 24.655650203638068 24.654092215617606 24.595036438945378 24.471191361329613 24.27837660775728 24.015565975197852 23.684807372864178 23.29103413438857 22.84178705158589 22.346869816107283 21.817962198174293 21.268247826279094 20.712936707151776 20.168698785677925 19.652040966985776 19.17901537069986 18.76505684214096 18.42487070177239 18.17236335426778 18.020604347494093 17.98177104564288 18.06300117973511 18.262217743935878 18.57517100929024 18.996561564484907 19.520205846628127 20.139165004962635 20.845851900242963 21.632127993632274 22.489398733229883 23.40871300734029 24.3808694357454 25.396529805591317 26.446337893476315 27.521040299074258 28.611604782041113 29.709330959754222 30.805948084496613 31.893694946378805 32.96537768723591 34.01440237890782 35.034780510684804 36.02110692052423 36.96851105687103 37.87258363423553 38.7292816154583 39.53481490410895 40.285518077042 40.97770988291194 41.60754207801117 42.1708375239657 42.662915458381796 43.07839967545563 43.41100331938663 43.653282510775526 43.79635063534548 43.82973288370519 43.745257428668346 43.53753088745879 43.200244005400904 42.72620910583847 42.107628013336 41.33642301485231 40.40463841751156 39.304912925381004 38.03101501524322 36.57842526743438 34.94500867082116 33.13565122446582 31.16534541874922 29.05369863837225 26.824006485605274 24.50265413079464 22.1183455591682 19.70119270145722 17.281706701170034 14.88974120123259 12.55344196354384 10.2982580469312 8.146067099105712 6.114461256579233 4.216231116255415 2.4590738656184943 0.845538710272959 -0.6267909083635974 -1.9648922441817502 -3.179701594533917 -4.285355322888258 -5.298317933273038 -6.238235376055847 -7.126489646704485 -7.980696229247846 -8.814179080948922 -9.634931991331698 -10.446628458721325 -11.250095614458607 -12.044083210709351 -12.825900575121283 -13.591941464548118 -14.338110005632183 -15.060160349219778 -15.753961796125653 -16.415700097690856 -17.04202449634632 -17.630148926641212 -18.17791470233502 -18.68382100758391 -19.147028611039016 -19.56734143845355 -19.945169969400617 -20.28147985669754 -20.577728688164658 -20.835793402191012 -21.057890513805127 -21.246490990568635 -21.40423132428741 -21.53382206538608 -21.637954815815544 -21.719208411585544 -21.779954769443165 -21.822264629730622 -21.84781320874683 -21.85778559265259 -21.85278157915233 -21.83271962617444 -21.796739628483543 -21.743104451953858 -21.66910084194368 + 26.854594197357414 26.457096677634123 26.047476685113153 25.642675377325553 25.25973651290658 24.915093878420862 24.623838234732098 24.399003025609407 24.25091021347782 24.18328775465068 24.184254951453603 24.236992738368247 24.32349068782013 24.425305686452088 24.524316639308573 24.60344205715622 24.647289700820096 24.64271169918462 24.579244377970003 24.449418984200676 24.248937050863233 23.97671177803027 23.634783987886845 23.22812747312079 22.764363518593917 22.253407762712722 21.707074229711793 21.138715074305555 20.56382493922983 19.999222732739486 19.461518334714242 18.966844482077768 18.53069287944337 18.16780220999776 17.892090721874688 17.716621984287134 17.653555017227237 17.710018823983948 17.883960879230127 18.17117089554332 18.566403551648108 19.06354548157949 19.65574426183461 20.3355143371897 21.09483182538048 21.925227034108254 22.817880511628168 23.76372566690511 24.75355852791117 25.77815312332507 26.82837932355928 27.895318797213317 28.970374047914053 30.04536529310845 31.112610205849602 32.16498221181977 33.19594403920917 34.19955445718186 35.170447489275055 36.10378471942745 36.99518248597801 37.840616655548615 38.636308174003574 39.378592622441424 40.063776515742674 40.687982068678245 41.246980674277104 41.73601351073678 42.14959571334077 42.48129870407763 42.723503957929374 42.867121218665005 42.901452490912064 42.81811256069318 42.6115384932311 42.27531069824618 41.80220785336134 41.184488453267726 40.41422985271323 39.483731430639565 38.38598160639927 37.115180864983024 35.66730519647641 34.04073075935723 32.24060737739386 30.28252651351587 28.186759686876297 25.977163961754698 23.68055241971389 21.325901493820915 18.943427774818264 16.563576509617643 14.215971052300546 11.928376464611897 9.72573099912559 7.629296283683156 5.6559708538268865 3.817802668552219 2.121725002841768 0.569527393987646 -0.8419400225759945 -2.120343532939506 -3.27725092414496 -4.327364507810837 -5.287785304773824 -6.179768312794165 -7.024980308585633 -7.840955444763969 -8.640898747527702 -9.432541140533523 -10.219242198872678 -11.001542377052335 -11.777931494384832 -12.545482919230237 -13.300374640493288 -14.03831094777441 -14.754857749710224 -15.445703580511797 -16.106857198377607 -16.734791464499132 -17.326541983742647 -17.879767842882 -18.39278073575441 -18.864547836926626 -19.294672982963437 -19.683360039300986 -20.031361759619692 -20.33991696730339 -20.61067848658789 -20.845633905692907 -21.04702094846701 -21.217238950504363 -21.358757669580903 -21.47402440195499 -21.565370123177576 -21.63491512636473 -21.684474398300857 -21.715462764194296 -21.728799659473612 -21.72481327034515 -21.7031437479909 -21.6626452750596 -21.60128698681118 -21.516053476708947 + 26.896697263093213 26.491506124467428 26.074229195226277 25.6619810963331 25.271989073912824 24.920866737904422 24.62386670759404 24.394152142740243 24.242129229707515 24.17175448353092 24.171082961680423 24.22290213451541 24.30880610265746 24.409967857236953 24.507906365690985 24.585214912576717 24.62621946235726 24.617540175521825 24.54853515928776 24.411612611618175 24.202405199855875 23.91980825729007 23.565890654725212 23.14569353754009 22.666937127281944 22.1396591975379 21.575810499747252 20.98891509932341 20.394740542659935 19.810228239819608 19.252069327834636 18.736454307757814 18.278908578251883 17.894181395408413 17.5961809712873 17.397944308166434 17.31159304209137 17.34423199564607 17.493823683156407 17.756190683583277 18.126137028783663 18.597616126591518 19.163859466585173 19.81748116710397 20.550570467975025 21.35478120634186 22.22142433017883 23.141566735313965 24.106137246332587 25.106038465151983 26.132261533518438 27.17599963395522 28.228755309104297 29.282436413951224 30.329435707858273 31.362689696671662 32.37571327638921 33.36260791224306 34.318042395034055 35.2372065228714 36.115739230779695 36.94963360906649 37.73512180636961 38.4685429233651 39.14619662189056 39.76418429955995 40.31823836280165 40.803538485480196 41.21451195360307 41.544613543765735 41.786079240665444 41.9296479622808 41.96443420208902 41.88187343293931 41.67626194337258 41.34109387265323 40.86913261126533 40.25270514111819 39.484048611047385 38.555714842400384 37.46103199198236 36.19461548599745 34.75291305420902 33.1347917409819 31.34570316385656 29.40180482237898 27.32398525830269 25.136615043177677 22.866888327433383 20.54401014641536 18.19826264073355 15.85999230266936 13.558566813156874 11.32135348457274 9.17277149806727 7.133466982738125 5.219653723657252 3.442653317819345 1.8086575159359448 0.31872302844425926 -1.0310039398480062 -2.2488488734380363 -3.346982872022802 -4.3406490744868815 -5.2478333120512906 -6.091415546958744 -6.893131530093514 -7.670427291613072 -8.436386858120073 -9.19847956998357 -9.95975492349667 -10.720472422476803 -11.47886868882523 -12.231788158634243 -12.975199786645856 -13.704613994377471 -14.415413278542925 -15.103108810395211 -15.763534120910203 -16.39298567717843 -16.98831888626176 -17.54700686796243 -18.06716825270947 -18.54756930418848 -18.98760484408161 -19.38726176348959 -19.747068329813676 -20.06803202178513 -20.351568229318392 -20.599421819125116 -20.813583273324017 -20.996200841247983 -21.149489892677025 -21.275640416461105 -21.376723369036544 -21.454596344209016 -21.510808814616908 -21.54650699658655 -21.562338228076648 -21.55835464326315 -21.533915901774233 -21.48759081722456 -21.41705796870016 -21.319006149801773 + 26.91584647874232 26.504221398923537 26.08072800471518 25.662613664249687 25.267238808801284 24.911338596673634 24.61026343303056 24.377238967589886 24.222688270439107 24.150655515505107 24.149057680084773 24.200305174041745 24.285624720144035 24.38584363519681 24.482167347461377 24.556916232060182 24.594190261456514 24.580434458241452 24.504884210789335 24.359876704631514 24.14102250591584 23.84723915850857 23.480655992872013 23.046405719525584 22.552323408215457 22.00857686413395 21.42725405999378 20.822054043119422 20.209001346782824 19.60513382567523 19.02720209150325 18.49143179614982 18.013359359137482 17.607722501225844 17.288398320083147 17.06837750916589 16.959726097076434 16.969510123053222 17.095698612083893 17.33414112215078 17.679686778546344 18.126352660926216 18.66745187830495 19.295696485822837 20.003287488012443 20.782001146939972 21.623277863004827 22.518317147973754 23.45817975113765 24.43389589474906 25.436576874194806 26.457526019337383 27.488344219271347 28.521024888086686 29.54803337633411 30.56236636885449 31.55758768597229 32.527838029823165 33.467817480080626 34.37274082095585 35.238266947999115 36.060404538747434 36.835396770977816 37.559588056502314 38.22927548126361 38.84054690068239 39.38910648063325 39.87008700731524 40.27784669269563 40.60574673842004 40.84590494989122 40.988920686526875 41.023755472740305 40.94169894907499 40.73693534486414 40.40289689763259 39.93235055077816 39.317704056855916 38.5513593469303 37.62611794139311 36.535637127128275 35.27492896282698 33.840887349739894 32.23284385006654 30.45658199626958 28.528795866243676 26.47094063051196 24.307849824208837 22.067050191497007 19.77793104305606 17.470801744056267 15.175879253290397 12.922253509130677 10.7368814364272 8.643660177457082 6.662626803730545 4.8093254415397855 3.0943738458958165 1.523250563188224 0.09631164448291196 -1.1909667946569842 -2.347536198696182 -3.386140597951411 -4.322537201719253 -5.1760133704799625 -5.970831809167288 -6.7286790163457715 -7.4669095435336805 -8.198487419617063 -8.930624090988744 -9.66606453232535 -10.404794195219038 -11.144803975807164 -11.882716807788574 -12.61429951208408 -13.334874629269178 -14.039646020893281 -14.723950837975835 -15.383449133621836 -16.0142610353553 -16.613060064086866 -17.17712994331353 -17.704391118571777 -18.193402221663888 -18.64334087165915 -19.053967499481114 -19.425575301684365 -19.758928953529153 -20.055194321016543 -20.31586108527135 -20.542659911255722 -20.73747553989397 -20.902256945786508 -21.038925473687357 -21.149281642351383 -21.234911085388827 -21.297089891095418 -21.336689417012543 -21.354080504916606 -21.349036927671097 -21.32063788623355 -21.267169475377614 -21.18602529131932 -21.073607171840237 + 26.914212424697723 26.497325327759572 26.06896438173191 25.64647114240973 25.247291436014162 24.88822657014855 24.584663889953962 24.349827849266482 24.19409479681742 24.121465046715013 24.119634078369607 24.170654152514267 24.255414550167398 24.354436295194926 24.44865809805475 24.520179413479855 24.552928975109733 24.533231787605153 24.45025374556154 24.296310339271216 24.067033768919348 23.761400669777522 23.381630020813528 22.932967195627143 22.423375135450254 21.86315701037623 21.264536345948123 20.64138983931609 20.00997884396765 19.38741220663563 18.790478281333126 18.23541565214248 17.737749763787768 17.312185582486855 16.97254903588861 16.731765841655353 16.601829243083415 16.589752950780625 16.693505037558854 16.908956962969622 17.23099925717863 17.653709956924178 18.17048175594224 18.774123093972477 19.4569455436488 20.21084687037079 21.027396224882935 21.8979252047572 22.813626073880688 23.765656321340067 24.745247022373384 25.743811172533913 26.753047326568325 27.765033492914988 28.77230629870046 29.767920909750117 30.745488001452564 31.699185142220493 32.62374116599251 33.51439335590317 34.36681841626866 35.177039158037594 35.9413094621838 36.65598033838089 37.31734971751744 37.92149800192845 38.46411039153952 38.940285710271205 39.34433004568701 39.66953223617031 39.90791743713492 40.049975122032315 40.08454707676299 40.00280960358939 39.79886295972514 39.46610151875835 38.997314440993144 38.38500235471709 37.621736626329735 36.70056510134108 35.61546255201356 34.361817843523696 32.93694345619086 31.340604460794673 29.57893871197176 27.66914957253116 25.633206077859782 23.496352597189222 21.286399402003195 19.032876297687324 16.766083298501684 14.516079989002478 12.311660527394663 10.179363771697119 8.142567516907903 6.220712305762424 4.428693915316556 2.7764548204260375 1.268794253691326 -0.09459539294808783 -1.3188703796944283 -2.413572128249612 -3.391985704335207 -4.270385861950482 -5.069883441633479 -5.815659027020473 -6.5293278956099705 -7.228153188860883 -7.924982941332434 -8.62677668304977 -9.335982003637533 -10.052318246562187 -10.773538677964488 -11.496052469644813 -12.215431306392647 -12.926815808523237 -13.625235905823946 -14.305858015100057 -14.964170471051526 -15.596117230498674 -16.1981884840908 -16.767475519218365 -17.30169601654144 -17.79919494808168 -18.258925381545307 -18.680412777187925 -19.063705776038308 -19.409316002593183 -19.718149019598528 -19.991428255390428 -20.230613455178432 -20.437314969268567 -20.61320497013325 -20.759926477556906 -20.879000862729512 -20.971734298852134 -21.039123433030696 -21.081760382099883 -21.09973701842878 -21.09254843070632 -21.05899544504301 -20.99708620635966 -20.903937090589757 -20.775674085148662 + 26.894093960267934 26.473025365459616 26.041048097314853 25.615561518800185 25.214051733839124 24.85333397872632 24.548775357791456 24.313539542990007 24.157897005922955 24.08567963060828 24.08427455294636 24.135397327158202 24.21963162506335 24.317232630201566 24.408919358588822 24.476621670818556 24.504150337426662 24.477763263325418 24.386607271275867 24.223022215781217 23.98270211467784 23.664715895028042 23.271397724054285 22.80812326578235 22.28299319160004 21.706448613980584 21.090844670879346 20.45023794689221 19.801102219737214 19.160592704060488 18.54551396052359 17.97209585819848 17.455831747208308 17.011373721138852 16.652477723792252 16.391987125513054 16.241806469337533 16.208884838757612 16.291183088624614 16.48459041255068 16.78403570254826 17.183655674328612 17.67692085517414 18.25673470169503 18.915518294206095 19.64529011419659 20.437747534382325 21.28435395613201 22.1764330983774 23.10526983659084 24.062215258873337 25.038792287098946 26.02679733035065 27.01839300495181 28.006186958879194 28.98329224320607 29.943365419950155 30.88061960201935 31.789810786064564 32.66619705002751 33.50547132690381 34.30366942231348 35.05705561734235 35.761988514045214 36.41476969454391 37.011477270680324 37.5477855417847 38.01877085090294 38.41870249729413 38.740816463567484 38.9770690765756 39.11786797188376 39.15196695813543 39.070460142245814 38.86739072976983 38.536138339983836 38.06953221760281 37.46017718494596 36.70081779960829 35.784743743569344 34.70623421425411 33.461033290522366 32.04684231061114 30.46382517905698 28.718489551950007 26.828521572624474 24.816349919505214 22.70757706786973 20.53024816717256 18.313991260414838 16.089063083558347 13.885341722314926 11.731312173902332 9.653092957802524 7.673551132048711 5.811549395273719 4.081362586977393 2.4922922223779156 1.048497254901699 -0.2509522897667522 -1.4118040823463103 -2.4441514602701684 -3.361787792496224 -4.181643818634328 -4.926997796972745 -5.623516866387764 -6.292744157148912 -6.9518548492118555 -7.613587893100911 -8.284659034733384 -8.96722705515695 -9.660754052921439 -10.362764276407653 -11.06946110136484 -11.776228110299106 -12.478029900704335 -13.169727087576739 -13.846318591983703 -14.503122829145742 -15.135907915405536 -15.740979573169678 -16.31523407711684 -16.856182386712526 -17.36195056667878 -17.83126071252078 -18.263395865829832 -18.65815180929865 -19.015778154477125 -19.336910753921153 -19.62249716082207 -19.873716602214028 -20.09189570815194 -20.27842103451541 -20.434649221625335 -20.561815439883237 -20.660940587375674 -20.73273752797775 -20.777516501964325 -20.79508971947257 -20.784675080627704 -20.744798981021365 -20.673198290963043 -20.566721883700932 -20.42123300750041 + 26.857880979906465 26.433616849898634 25.999171725279 25.571968635062284 25.169491697560996 24.808521336577048 24.504351312441063 24.270029536840283 24.115666477430775 24.04480558465949 24.04444081024901 24.095975116820306 24.17972022247392 24.275706795519522 24.364481074400803 24.427853591339648 24.449568489161226 24.415866787222747 24.31592333978976 24.142144663239357 23.890322754556923 23.55964793405457 23.152591095531267 22.674672073476366 22.134135767149793 21.54156093744364 20.909428083864032 20.2519755208137 19.58586092011258 18.928262311190615 18.295979294349515 17.70521214022564 17.171402065369744 16.709129484648095 16.332062997376596 16.05294775831556 15.883585159324493 15.830848774419717 15.892687279083923 16.065004422278232 16.34276511688327 16.720162950986733 17.190744831201282 17.747508039607574 18.382982210177065 19.089305836346107 19.858304086106738 20.68157203926636 21.55056505201398 22.456695855696776 23.39143625754712 24.346419969444767 25.313542173595458 26.28505095263636 27.253625657694975 28.212437630029715 29.1551893749248 30.076129233040213 30.970039708638538 31.832198788025764 32.65831470265369 33.44443555124852 34.1868358987095 34.881882842748425 35.52588403868726 36.11491979259211 36.6446606123827 37.110170638287634 37.50569631259284 37.824438721008455 38.05830755549825 38.19765501995911 38.231177099867985 38.14991516778989 37.94788063953638 37.61846001132333 37.154539111083714 36.54883692631119 35.794273548865554 34.88437445364892 33.81370844933555 32.57835125402986 31.17636113743465 29.608263178649448 27.880944484856666 26.01254701356849 24.025904301700734 21.946924555258523 19.803840522942355 17.62633865663689 15.44460194520322 13.28830724525191 11.185622186155783 9.162248422426117 7.240556954549465 5.438857443378298 3.7708370982594186 2.2451961961435978 0.8654971081799188 -0.36976749434925926 -1.466893106556821 -2.436485494609136 -3.2928134042136765 -4.0537822207806995 -4.744896620678473 -5.391993535027499 -6.016546733347894 -6.635650185039919 -7.2619434563253265 -7.901908651536251 -8.55742561877781 -9.227708871866067 -9.91006267040534 -10.600492709680697 -11.294201488622159 -11.985983388259312 -12.670534233367864 -13.342688654015415 -13.99759701546759 -14.630852130974265 -15.23857448045705 -15.817463278941224 -16.364819504331912 -16.878545921934325 -17.357128236787226 -17.799600757542237 -18.20549935240398 -18.57480399836744 -18.907872846698766 -19.20536942683132 -19.468184365513785 -19.69735278895656 -19.893968387665407 -20.0590949460806 -20.193675966547595 -20.298442849158768 -20.373821930371296 -20.419840543840483 -20.436032161582396 -20.42134062284646 -20.37402348855166 -20.291554704696214 -20.170527061460895 -20.006555910603765 + 26.80802133843943 26.38145035466015 25.945578932368868 25.51782196556623 25.11562238067294 24.755680828326472 24.45316908715424 24.220969394839305 24.068983620135906 24.000348769924024 24.001587877169083 24.05381813176461 24.137114583735134 24.231325285479144 24.31687012366612 24.37548905916023 24.3909085147266 24.349399632746817 24.24020859175447 24.055846645098768 23.79223549689965 23.448711515361193 23.027899583024205 22.535473641105547 21.979825836050015 21.37166937019455 20.72360157121264 20.050044025091974 19.367805789557522 18.694065482300694 18.04559713489815 17.43855150072503 16.88829890943148 16.409330806463544 16.015212737225877 15.718577466066888 15.531110427665324 15.459600367056513 15.50198020709361 15.654166120901701 15.911157443628525 16.267203323215234 16.71592589310078 17.250415232327573 17.863308648833666 18.546863976059477 19.29303378274303 20.093544771153624 20.93998425531529 21.823893524830822 22.736866158270555 23.670647990918127 24.617234492669553 25.568960786200705 26.518579427422182 27.459321351998913 28.384936012446403 29.289707617317635 30.16844544646155 31.0164473512247 31.829436647934536 32.60347357273792 33.334843193780706 34.019922101378654 34.655026275491345 35.236242255865434 35.759243150452285 36.21909019980584 36.61001971601221 36.925214450097 37.15655810779422 37.294372218546854 37.327323373153675 37.24642769476376 37.045687972056975 36.71851723625122 36.25787251389254 35.65659507909161 34.90778102904612 34.00518364597553 32.94364449182911 31.719545193753298 30.331266776242664 28.779655363475605 27.07198250030919 25.226817528350665 23.267344356267866 21.219725793882155 19.112337159393107 16.974886725654926 14.837457428633435 12.729510122626687 10.67889243342448 8.71089858787567 6.847424314858037 5.1062570296753655 3.5005352228213487 2.03840263195302 0.7228728807432949 -0.4480905748690298 -1.4812854716922734 -2.3877897151715404 -3.1823148980700724 -3.8842658388219187 -4.521096102211983 -5.118637500070985 -5.6983008763192275 -6.27710893499291 -6.8676142098809585 -7.476077165941786 -8.104109755956845 -8.750689252601042 -9.412909284042748 -10.086586067066403 -10.76674798098056 -11.448024887773645 -12.124952255664493 -12.792203612923867 -13.444763247162236 -14.078049456466994 -14.687997119613655 -15.27110693225871 -15.824467386907422 -16.345754473630468 -16.833213149873497 -17.28562386441177 -17.70225680758336 -18.082816076948188 -18.42737557107349 -18.736308130156804 -19.010209207833956 -19.249816163747642 -19.455924095174257 -19.629298966822095 -19.770588644527635 -19.88023228996301 -19.95836843388278 -20.004741924395464 -20.01860985911642 -19.998646576374483 -19.942847827760545 -19.848434416440334 -19.711755905844562 -19.528196039026877 + 26.746992173774892 26.318903422812706 25.882537099113208 25.455270640621283 25.0544698566041 24.69671474433557 24.397011290748623 24.16803161614961 24.01942643716346 23.953807191331876 23.957160620891326 24.01034734579367 24.093242364636033 24.185553203955525 24.267618887704998 24.321155569825716 24.329917935361614 24.28025056478056 24.161509986019173 23.96634563368883 23.690835868098944 23.334483040229085 22.900078812075925 22.393457107283655 21.8231568190656 21.20001949903446 20.536748551877924 19.84795029706557 19.150548823143758 18.46170272215126 17.79814060720741 17.175944961742598 16.610397958286626 16.115886486943538 15.70585915996183 15.392824037585044 15.188339592838105 15.099102106973895 15.123026625632622 15.256040702319968 15.493177264194118 15.82874021304535 16.256426056907074 16.769416790077308 17.36045655751522 18.02192184515802 18.745892195927755 19.524225867673053 20.34864249590628 21.210812755397175 22.10245327558675 23.015423693111778 23.941821748713746 24.874071770119087 25.80500172389585 26.72790424347709 27.636577600743177 28.525343416724656 29.389038917261065 30.22298263373139 31.022913524078444 31.784904445081306 32.505251654388864 33.18034249101529 33.80650353398629 34.37983136336889 34.89600758030896 35.35009906586787 35.7363437117918 36.04792124482465 36.27670857084985 36.41301965468116 36.4455182964368 36.3652206242567 36.166141478902205 35.84173767865181 35.385049730712595 34.78904703033578 34.04699988349503 33.152879124357995 32.10177992870909 30.890361816707408 29.517292128602335 27.983695868395074 26.29723041557602 24.476861917679347 22.546071274419642 20.53122684225697 18.46080451262276 16.364501734913738 14.272279832565617 12.213374276495703 10.215315893121607 8.30300697784429 6.497894805118252 4.817281090160928 3.2737997511677523 1.8750871864911298 0.6236596929321006 -0.48299781574586076 -1.4521383386062094 -2.2952714032408394 -3.027542314141952 -3.67054233311711 -4.2530797281760275 -4.800950831558521 -5.335513541427798 -5.873732299511341 -6.428087456969646 -7.004631549021566 -7.6047207039174225 -8.227105879286231 -8.868679683812367 -9.525077095536808 -10.191159257199493 -10.86139709344905 -11.530170068117505 -12.191993803868293 -12.841688618421719 -13.474499373279661 -14.086175447925136 -14.673018193500061 -15.231901917248596 -15.760273319841994 -16.256133356257692 -16.71800471058187 -17.144887451104122 -17.536204943883337 -17.89174172692861 -18.21157475870874 -18.495999230400862 -18.74544995030199 -18.96041915420567 -19.141371455019232 -19.288656511351704 -19.402419866490835 -19.482512289797345 -19.528397851194544 -19.53906089079161 -19.51291203026601 -19.447693437437827 -19.340383734959833 -19.187103281527786 -18.983021653293815 + 26.67727560833949 26.248356705283626 25.812314336114337 25.386461817113545 24.98805543717923 24.63351803578684 24.33765115960814 24.11287819114345 23.968562025429684 23.906666556235596 23.91259286088237 23.966976435280678 24.049529785187666 24.139861740877272 24.21827452690756 24.266504759959645 24.268377952549034 24.210351284584835 24.081925980398154 23.87591812256394 23.588584624327922 23.21960883974823 22.771957414068307 22.25162602921264 21.667296335412882 21.02992934715222 20.352323035949595 19.649266084168158 18.937761592640882 18.23492807176183 17.55742982651554 16.921263678089232 16.341608037593524 15.83273152758661 15.407953932447237 15.079648296330094 14.85923705627974 14.753318174671412 14.75978818198719 14.874586078272607 15.092778334349115 15.408723310948263 15.816191333532435 16.30845556054274 16.87836615121767 17.518417498883395 18.220815605746004 18.97755013667444 19.78047337069355 20.6213862219 21.49212976984306 22.384679360173802 23.291237338119764 24.204319876073445 25.116833151360392 26.02213429993419 26.914073073549773 27.78701089838469 28.63581499110545 29.4558262408179 30.242800613665672 30.992824784964117 31.70220746618622 32.36734840391402 32.98458724415873 33.5500343704132 34.05938546929939 34.50772103202842 34.889291395213185 35.19728745528961 35.423597123451124 35.55854827198088 35.59082661102496 35.51147108520997 35.31452645979908 34.99350782017214 34.541548722925036 33.95174986532125 33.217551370551604 32.33312883516716 31.293809445930307 30.096500228927876 28.740116158110546 27.226017325747524 25.562245640376737 23.768130983217905 21.867399709354306 19.88657946428369 17.85420842426525 15.799945092788448 13.75361281752963 11.744217996410114 9.798983836870427 7.942442229738415 6.195624659573318 4.5753891185559485 3.093913900372371 1.7583812494171158 0.5708645785345019 -0.47157711028504723 -1.3766042596806969 -2.1561177837719185 -2.8258385570212132 -3.410033011419208 -3.93829154494332 -4.436384948443903 -4.925631556411839 -5.422953446729053 -5.940775967230097 -6.484958990796535 -7.056615809328964 -7.6542824897395185 -8.274660431947536 -8.913211621530845 -9.564636755975561 -10.223253294076542 -10.883288983971788 -11.539104772954445 -12.18535928513196 -12.817125351009826 -13.429967450510576 -14.019987436010744 -14.583844567080018 -15.11875473142737 -15.622472751806642 -16.0932608802146 -16.52984594415564 -16.931367114714913 -17.297315888946997 -17.62746959478316 -17.921819511283672 -18.180494529096876 -18.403681137668826 -18.591540403937035 -18.744122493974036 -18.86127918179932 -18.942574691388614 -18.987195137418816 -18.993856781863126 -18.9607133276001 -18.885262553753826 -18.764252795151243 -18.593590123537492 -18.36824825505839 + 26.601338635705567 26.172174338632953 25.737160758625535 25.313523285041608 24.918380057494467 24.56796491442611 24.27684177624097 24.057152787163947 23.91794193478392 23.86039868336947 23.869308917678943 23.925116083479917 24.00740823460769 24.095736575322274 24.170408655697216 24.213222827951846 24.208114110583143 24.141686872188426 24.003616349538188 23.786908484995458 23.488015392654216 23.10681142034364 22.646441776523943 22.11306161179055 21.515487950405408 20.864789735449346 20.173847416969284 19.457626093990207 18.733172426212853 18.017545605551483 17.327327893288537 16.678414595330906 16.085866583969725 15.563822518008312 15.12546356829773 14.783019561836433 14.547769852775986 14.426210075821857 14.416219111448443 14.513748589341256 14.71389926081797 15.011084160742122 15.399147163316073 15.87145195668652 16.420953882747263 17.04026440557155 17.72171533733072 18.457427460710814 19.239385906754617 20.059522626255237 20.909804573264363 21.78232483728434 22.66939294499475 23.563619920005458 24.457993441273434 25.345938559314547 26.221359875195006 27.07866180138018 27.912744429603247 28.718973540626003 29.493124310176963 30.231299202482425 30.92982131546986 31.585104985250315 32.1935057319906 32.75115162640388 33.253757905347854 33.69642624024646 34.073429588274394 34.37798321764196 34.60200254734397 34.73584920910533 34.7682535626083 34.69029756900142 34.49607072344744 34.179157790133964 33.732791923454926 33.15020535644691 32.425000786078485 31.551543047618463 30.52536714599682 29.343594813066378 28.005347778790608 26.51217621872717 24.87250322285168 23.10598681582523 21.23654977163437 19.290836190197226 17.29741250295825 15.2858751104101 13.285898527187783 11.326262239411667 9.433896995509283 7.6329916913135225 5.944200248293339 4.3839839444744 2.9641187123176693 1.6913892739930643 0.5674830657787795 -0.41091277762846357 -1.2518179825793307 -1.9674853232434435 -2.5745601241211062 -3.100125901806781 -3.574132229338828 -4.022339612145759 -4.466043425659303 -4.92214199097927 -5.40302498094762 -5.914376288257822 -6.457080175793541 -7.029469678600263 -7.628064962649869 -8.248163262548811 -8.88431153663781 -9.530679158451818 -10.18134641332824 -10.830522869746913 -11.472707936755057 -12.102804179213969 -12.716192304840758 -13.308775209044796 -13.876997098041223 -14.417842525969766 -14.928819183215163 -15.407927455461714 -15.853619122338003 -16.264747060871137 -16.640507438758743 -16.98037560066512 -17.28403664294878 -17.551311516299684 -17.78207937317235 -17.97619677365005 -18.133414270623685 -18.253290809573855 -18.335106302120682 -18.377772673932157 -18.379743660532807 -18.338923649225336 -18.252575968703425 -18.117231244651027 -17.92859681323015 -17.681469422980655 + 26.521616887503072 26.09268827357293 25.659293746484018 25.238550050649472 24.847412578106844 24.501899253612436 24.216308911787642 24.002476317031356 23.869099772797952 23.816462473136408 23.828727268339122 23.886179884431577 23.96832193789455 24.054686792815158 24.125626995581065 24.163040426787223 24.15100597193047 24.07630484226358 23.928810287117624 23.701735864434816 23.391740171752325 22.998893476451038 22.526518545031383 21.980923744221137 21.37105085033963 20.7080627456591 20.004910101645585 19.276724623058794 18.5405624432977 17.81340507300027 17.11173632622047 16.451335835468665 15.847135116034167 15.313133292615095 14.862365335936236 14.506911839820988 14.25790411912027 14.121733355497096 14.096263144092157 14.17746003778349 14.360460585618629 14.639733217626445 15.009195370882496 15.46230073612853 15.992108981994585 16.59134769144688 17.252473669116387 17.967738340522725 18.729259726613584 19.529101486584985 20.3593578189361 21.21224163060645 22.08017235552852 22.955859144991695 23.83237486584486 24.703216413388297 25.562347238414663 26.40421864736304 27.223767289317387 28.01638720997893 28.77787584139647 29.50435421922068 30.192162497671735 30.83773240387317 31.437438598826873 31.98743098322513 32.48344982977153 32.92062530916992 33.293262622575 33.59461373331055 33.81663684384658 33.94974560302927 33.982735762223456 33.90674976390177 33.71593337525744 33.40394915698301 32.96413315617062 32.389846208539076 31.674843302883758 30.813660118879355 29.8020126233905 28.637202038258156 27.31851384633558 25.84764251348324 24.233387353504316 22.49569668114783 20.658643707839516 18.74895008104746 16.79518113391202 14.826853273307078 12.873486994517442 10.963642903103256 9.123980302097145 7.378378124079415 5.747156140644021 4.246430491577298 2.887631804556916 1.6772068117773284 0.616515809549969 -0.29807096898490215 -1.0748844558502082 -1.7264908000566974 -2.2710337372353857 -2.738172034273582 -3.157958875113526 -3.5561660863390645 -3.9540856950766132 -4.368613371205619 -4.812124399028494 -5.290144655256145 -5.803343923963582 -6.3498644624786404 -6.926055331667623 -7.5270572634223605 -8.147270124164114 -8.780720526996943 -9.42134555050256 -10.063206785998872 -10.700647143817283 -11.328401078266872 -11.941667202664398 -12.536150707894109 -13.108081603543049 -13.654213588858095 -14.17180733803955 -14.658601146335869 -15.11277121699829 -15.532883355042378 -15.917837448656762 -16.266805837998255 -16.579166469340528 -16.854431587450375 -17.09217261140318 -17.291941753986425 -17.453190872647173 -17.575187976406976 -17.656931759830584 -17.697064499425622 -17.693783643263245 -17.644752471035194 -17.547010326019425 -17.39688315712342 -17.1898955018162 -16.92068635545508 + 26.440501920573638 26.01218620028167 25.580886840633685 25.163594550665184 24.77708165966369 24.437128443364426 24.157747139683813 23.950445529431274 23.823551795853554 23.776307032235817 23.792265866791602 23.85159137911728 23.93373620155813 24.0182538305182 24.085578527470755 24.11774156867042 24.098995373618912 24.01632241913364 23.859812442681335 23.62289879736727 23.3024524463232 22.89873947983598 22.41525474158969 21.85844976253812 21.23737741360024 20.56327830067157 19.84916118044919 19.110310857374703 18.363760568069385 17.626396833297232 16.914590101758858 16.24399199443137 15.629394908050557 15.08465106106064 14.622643887978942 14.255300954488954 13.993602696936069 13.843835609078049 13.803851843181775 13.869636261639434 14.036363498381732 14.298558600280804 14.650212861753582 15.08486955369989 15.595691785545558 16.175522180571924 16.81694153054739 17.512331213514486 18.253941966992777 19.033969652590162 19.844636965730636 20.678278670426433 21.527426902266615 22.384892401757433 23.24383721945416 24.09783446113791 24.940910983584445 25.767569558387038 26.572787825664435 27.35199228228807 28.101006505583527 28.81597371937888 29.493254589163808 30.1293017268492 30.72051275531539 31.263063919284075 31.752726157100014 32.1846653329674 32.55322808248696 32.85171461055788 33.07214002541785 33.204986690993145 33.23913448143027 33.165800971108304 32.97919634499891 32.673065627953136 32.240847640472786 31.676025573201112 30.972493267437653 30.124935905777736 29.129220872626096 27.982791279959052 26.685051321511253 25.237793606477716 23.650187331422394 21.94243145815424 20.138707155462235 18.265779016373894 16.352186875930446 14.42735467883428 12.520649406351774 10.660426567514824 8.87310063899786 7.182278880921871 5.607995060516819 4.166075806915021 2.8676667493603936 1.7189385262120638 0.7209845627814224 -0.13008634995510127 -0.8428686881351641 -1.4302114858075576 -1.9125504228109853 -2.3214843859068197 -2.687089478330893 -3.0351754603586714 -3.387054883770613 -3.7596441380733685 -4.165327163109908 -4.609490946880316 -5.09260603780928 -5.6126365543059435 -6.165770753241334 -6.747001156584785 -7.350587176286995 -7.970417987670768 -8.600291774333183 -9.23412570454968 -9.866109183223408 -10.490811127860638 -11.103250303129625 -11.698936164010036 -12.273886236095889 -12.824624823420498 -13.348166786882212 -13.841989276794664 -14.303993619297616 -14.732459029829565 -15.125989434816896 -15.483454400372903 -15.803924969321995 -16.086605072202516 -16.33075908416483 -16.535636032228272 -16.700390905574384 -16.82400348032201 -16.90519504025589 -16.942343362973208 -16.933396359807034 -16.875784827169475 -16.766334913207057 -16.601181161335443 -16.375681404700835 -16.084336180833745 + 26.36033166019221 25.932902704549228 25.504061907152998 25.09066012361391 24.70927082897805 24.375420309584754 24.102818820506528 23.902634210646433 23.782799562048393 23.741376490520516 23.761348638652343 23.822791717252322 23.905145728324396 23.98801994907682 24.051963662843086 24.07917109255753 24.054092856517368 23.963931670915816 23.799006586642772 23.552977318927013 23.22292772369599 22.80931471148366 22.31579542038655 21.748950910335292 21.117928696609304 20.434028921272187 19.710306716085803 18.962182966251188 18.206637664663596 17.46044624215418 16.739852470263394 16.06036952804346 15.436643045780965 14.88237319223364 14.410288789827602 14.032162797773974 13.758824040675753 13.596455957099257 13.542904538988916 13.594177410938599 13.745490335056214 13.991426693507913 14.326052215640143 14.7429994407257 15.235534008766244 15.796612380361266 16.418938137332404 17.095021692122344 17.817246091592946 18.57793968228534 19.369454746530053 20.184249855540706 21.01497264502475 21.854539020116544 22.696204445618715 23.533622964108417 24.360889879543883 25.17256460056192 25.96367089280771 26.729672668835615 27.466424366800133 28.170095855333763 28.837072579280793 29.46383227143001 30.04679996222741 30.58218321289871 31.065789500393038 31.492827556138906 31.857694309706613 32.15374906830668 32.37307688641625 32.50624402509849 32.54223121051225 32.472342950074456 32.29085852338759 31.991606547795904 31.568124992259012 31.01400976018607 30.323276893120486 29.490736766238573 28.512375967040523 27.38573957279006 26.110303503029662 24.687912440340202 23.1280977973394 21.451268373752484 19.681674646136777 17.846094100091932 15.973021761696689 14.091782077814477 12.231594592932105 10.42062900969162 8.685086842160297 7.048346774329318 5.530208928403431 4.146269551121675 2.9074522806504226 1.8197154090429724 0.8839467473765885 0.09604924739788245 -0.5527881020839329 -1.0757846204927795 -1.4963632533516984 -1.8473455964420085 -2.158813184899898 -2.4566532169307775 -2.7622260738916857 -3.0924942438746292 -3.45987491395951 -3.8696363715814988 -4.322065846545326 -4.814962364121625 -5.344363901362311 -5.905123175647388 -6.491365847795458 -7.096849051399047 -7.715236512072561 -8.34030474069995 -8.96609295267787 -9.5870075517156 -10.197890282303575 -10.794057547283783 -11.371316940539053 -11.925965781016846 -12.454775362193258 -12.954963748944905 -13.424159250970703 -13.86035616094317 -14.261863944437405 -14.62725078296755 -14.955282176372918 -15.24485518297571 -15.49492879491663 -15.704450895457379 -15.872282213317085 -15.997117670250214 -16.077405511895723 -16.111264624355236 -16.096400482284533 -16.030020267509613 -15.90874786654599 -15.728539735128185 -15.484603051105108 -15.171319057346565 + 26.283383678825558 25.85701332708534 25.43088423221815 25.021697390954415 24.645816377131748 24.318502725025326 24.053155572664 23.86059660078132 23.74833432043089 23.713116055277784 23.737412674142046 23.801247460957104 23.8840825235355 23.965615773315957 24.026541007035682 24.04924030884076 24.01838193048881 23.921402220066568 23.74885667825636 23.49463238462122 23.156021383425177 22.733661681406502 22.23135885640924 21.655806537464418 21.016227912211424 20.323962767708128 19.592101640041378 18.836181138273663 18.073099953173724 17.31950765437034 16.591509712167245 15.904472385722444 15.272889016724365 14.710304794833325 14.229293080252061 13.841472817680872 13.557522542720445 13.38352608662074 13.317329952475426 13.354970013591878 13.49170694500411 13.722184679014807 14.040544250595058 14.440507282577618 14.915441029769589 15.458414480155952 16.062252629750247 16.719593785206026 17.42295265797941 18.164790136157077 18.937588990571136 19.733933423033097 20.546589324279633 21.36858139710339 22.193262923379276 23.014373903850032 23.826083550632436 24.623013621020696 25.400239788507346 26.15326908277575 26.87799231840879 27.570611296066133 28.22754133067239 28.845290283057334 29.42031570868724 29.94886197947183 30.42677930297731 30.849326514770162 31.210959452657654 31.50510678241999 31.723935533695837 31.85810958419997 31.896725271360243 31.831182993688824 31.65583231734549 31.364583014030714 30.951065043156284 30.40897396706308 29.732428163957096 28.91633594902116 27.956768282448483 26.85133003654511 25.599520026690563 24.20318942904427 22.672222810756885 21.02719753889691 19.292398786140115 17.494591536273624 15.662211778917852 13.824482730879012 12.01048789627901 10.24823560144237 8.563751045122448 6.980231706593733 5.517300067637054 4.190384049259134 3.010250466122762 1.9827103870846017 1.1085078721326478 0.38339551646291703 -0.20160800037902504 -0.6603863065783999 -1.0196887687518812 -1.3130034092286786 -1.57040744753363 -1.8178812119986647 -2.0768793383700546 -2.364437517239958 -2.693032101954385 -3.0678338459331416 -3.488963267813128 -3.9540678127469784 -4.459046013545263 -4.998619404046535 -5.5667867702103795 -6.157178775585885 -6.7633293409504756 -7.378878372020979 -7.997718589571707 -8.614097391975779 -9.222682930530777 -9.81860195084684 -10.397455484442892 -10.955317186241794 -11.488718016591822 -11.994620060717676 -12.470381555010835 -12.913714632145526 -13.322636884573468 -13.6954175546615 -14.030518964988698 -14.326533680579152 -14.582117825164246 -14.79592093882422 -14.966512752181256 -15.092307255737872 -15.171484460871849 -15.201910286491865 -15.181055074006903 -15.105911351499564 -14.972911661634864 -14.777847570776254 -14.515791431869076 -14.181024043613716 + 26.21187108008123 25.786631285816014 25.363360295854026 24.95860328214497 24.588507808897596 24.268065616422884 24.01036191974988 23.825872704465034 23.72164278158889 23.69297891767505 23.721915719183343 23.788458130940246 23.872123008618324 23.952726544526136 24.011132395418333 24.029930548270208 23.99402095471425 23.891081365188057 23.711905227874478 23.450602554551725 23.104663837953353 22.67489398105139 22.165229351812194 21.582456154600894 20.93585204361051 20.236775126542398 19.498341427578037 18.736179732148795 17.967081875446492 17.207558202245956 16.473565981143196 15.780318022717415 15.142151947329543 14.572457187887354 14.08365293801138 13.68720680124406 13.393650314053342 13.208972882554988 13.131029519387713 13.1558908308212 13.278866917722178 13.494664978861788 13.797502537524895 14.181190270363764 14.63919615860502 15.164700334459539 15.750647684330811 16.389803071649396 17.07481200644566 17.798267754824302 18.552784283440282 19.331073103413978 20.126021042232754 20.93076525083458 21.738761354482705 22.54384057362233 23.340251851351816 24.12268548739021 24.88627543957265 25.626578246848254 26.339527380254303 27.021362667995824 27.668535201443166 28.27758875708214 28.845019230430943 29.367113861152333 29.839772152892127 30.258310409910052 30.617251817799136 30.91010412487477 31.12912742270304 31.265095525397054 31.30723322467681 31.247042969816558 31.078942355386907 30.79691633161301 30.394676187334706 29.866000716461286 29.205087610471203 28.406912997307828 27.467594846380205 26.384753502790563 25.157860097514934 23.788727591229293 22.287583093670662 20.675131529463428 18.975662279081963 17.215907066276404 15.424233559082076 13.629767053828902 11.861471354468595 10.147222507467214 8.51291027873239 6.981601995675968 5.57280154437756 4.301832924243589 3.179372932694837 2.2111514841669595 1.3978310457724126 0.7350690457017643 0.21375927352903545 -0.18115628280137575 -0.4797124259767509 -0.7156872651725763 -0.9191589101005055 -1.116168323572353 -1.3283352762453413 -1.5728015935185757 -1.8621298092559018 -2.201415227954988 -2.5906290124183533 -3.0272811118670075 -3.5071418937250742 -4.024810689512935 -4.57416660407916 -5.148719713170089 -5.74187912021316 -6.34715256126017 -6.958290408743576 -7.569385096653098 -8.17493523041815 -8.769882002256828 -9.349624043388339 -9.910015532560141 -10.447351258351121 -10.95834140251614 -11.440078065904018 -11.889994982570443 -12.305821441710304 -12.685531137868669 -13.027286473308887 -13.329378718837736 -13.590164379482964 -13.80799809141151 -13.98116238315564 -14.10779465967249 -14.18581180994648 -14.212832901939443 -14.186100523496956 -14.10240147212361 -13.957987715651164 -13.74849887322363 -13.468887944166259 -13.113353676553356 + 26.14794089494458 25.723806758446013 25.303438109421858 24.903222574449213 24.539090699362454 24.225765209263617 23.976020943614028 23.79999531633157 23.70421404026882 23.68243375770417 23.71634370298275 23.785963240695967 23.870894107873696 23.951096882748654 24.00762604193563 24.02329450194781 23.98324257088426 23.875391603518818 23.690768993037793 23.423698026029683 23.071853130987186 22.63618772870991 22.12074784624202 21.532389547193894 20.880421806108654 20.17619855547827 19.43285275678292 18.666078733784573 17.892538582190888 17.128591497127726 16.390038354135445 15.691933881343067 15.048458547403426 14.472847291446655 13.977368455973195 13.573342926834485 13.271160371264786 13.076722578925859 12.987902327198736 13.00081240015714 13.1108175557572 13.312691489370156 13.600729736464844 13.968832193838763 14.410566756155804 14.91922329409741 15.487864961975413 16.109381689715434 16.776548735220864 17.482091385406484 18.218755330477695 18.979380926870157 19.7569785364764 20.544801403192857 21.336412111437536 22.12573856012548 22.907115558756786 23.675308572848188 24.425516762677496 25.153353210048497 25.85480104422205 26.52614499153134 27.163878620400236 27.76458818317795 28.32481443462491 28.840894123173914 29.308783022165883 29.72386244347862 30.080731241843786 30.372985503551345 30.59298859524234 30.731635258849526 30.778289741007782 30.724559981564283 30.56492597413138 30.293438411161052 29.903875826501807 29.390080530311387 28.746303437647924 27.967555588306887 27.049962169307104 25.991112625957992 24.790398161544577 23.449550019108376 21.979125482209305 20.39991696989755 18.736191672403073 17.014631783347262 15.263532038974578 13.511927783726563 11.78868391988084 10.121577409389824 8.536407080929338 7.0561642004252 5.70029551299505 4.484087268189527 3.4181941962601257 2.508331692451454 1.7551428452387419 1.1542447299227034 0.6964509407657751 0.3647996029284357 0.1264016601410507 -0.052621157771427285 -0.20236813729698078 -0.34889111553759466 -0.5140010145685299 -0.7150186592516325 -0.9646206272044271 -1.2678497434223797 -1.6245460224879027 -2.0320967274353077 -2.486155965155225 -2.9812103995830697 -3.5110271554066337 -4.069002088615971 -4.64842496010354 -5.242676280682835 -5.845368767665064 -6.450444528674231 -7.052237325166015 -7.645507614378687 -8.225456561606093 -8.787723880658433 -9.328373213697137 -9.843867806234405 -10.33103846364586 -10.787045179160998 -11.209333381460446 -11.595585440602315 -11.943667870305145 -12.251574549151435 -12.517366231439627 -12.739106611847548 -12.914795232760488 -13.042297570229117 -13.119272701024867 -13.143099042408705 -13.110798777975322 -13.018961754358054 -12.863669879401863 -12.640423405617186 -12.34407098529126 -11.968747146737307 + 26.09367508468953 25.670528812448428 25.253010193903506 24.857352012495745 24.499272009998414 24.193230550391863 23.951701973655645 23.784498786016215 23.697547607837514 23.68297278721711 23.722218239378293 23.795348767900872 23.882078281674115 23.962534065452246 24.01797784629281 24.031455442219265 23.9883508234772 23.876825730920963 23.688132223667004 23.416792262219225 23.060645245996024 22.62077089648652 22.101300626636057 21.50913524199763 20.853590238564717 20.145991948517942 19.399483387346187 18.629794722170637 17.853438206249166 17.086611377960732 16.3449521692608 15.643354378749226 14.995841756409575 14.415497891015951 13.914445437812438 13.503864965882075 13.19401107906093 12.990706252807524 12.891851465598137 12.893610048797857 12.991407362541004 13.180087363641093 13.454025505320224 13.807211321532039 14.233311946395213 14.725725628578417 15.277632137017086 15.882044889099767 16.53186771227001 17.219957410664783 17.939191781652823 18.68254144255388 19.443142811640822 20.214368859493113 20.989893816493655 21.763747886130464 22.530358153058877 23.28457225556071 24.02166196629009 24.737304534600057 25.427540423777657 26.088706861915057 26.717347355752764 27.310097943412277 27.863551451738235 28.374101365818323 28.837767127197313 29.250002799036572 29.60549115174486 29.897925452077892 30.11978174839329 30.26208545210238 30.31434951413193 30.268288191685354 30.118434991751133 29.858893569506446 29.483492316632063 28.986114180850958 28.361034272450755 27.60326299609507 26.70889065829996 25.67542748820887 24.502130934134538 23.190608510409326 21.751733320880973 20.206346770677442 18.57867140832451 16.8953278520046 15.184537589188134 13.47525814956481 11.796280208979695 10.1753182913831 8.638127713962515 7.207680125746923 5.903428349058309 4.740688249785979 3.730161119200171 2.877614705943875 2.1837348198775675 1.644152624511432 1.2496227250874403 0.9803997917951008 0.8014965077061316 0.6789579720779972 0.5826421000267219 0.4864785657641306 0.36857187847713124 0.21131154733929414 0.0018539881195280827 -0.2648149932183097 -0.5884234813090945 -0.9662518013163304 -1.3938505729125854 -1.8656041322454513 -2.375176076444893 -2.9158551207074854 -3.480817842663871 -4.063323144899644 -4.656851457122032 -5.255199886066263 -5.852542760149387 -6.443465355471349 -7.022977068527036 -7.586508946603821 -8.129899315975125 -8.649370266885366 -9.141496959846855 -9.60317109901559 -10.03155945848197 -10.424058025269126 -10.778242115665588 -11.091812706011616 -11.362539173449395 -11.58819864758444 -11.766512215723445 -11.895078292603277 -11.971303556295046 -11.992331967541608 -11.954972539223505 -11.855626722249735 -11.690216547993895 -11.454115047856103 -11.142080999038646 -10.748201912051364 + 26.051094486295103 25.628730316017887 25.21391952689543 24.822747327616764 24.470728175375886 24.17207261136078 23.93897060901036 23.780929816643845 23.70316276106778 23.69612052472344 23.74110429726021 23.818253272202544 23.90741773876172 23.98891008549945 24.04421115658328 24.05660465588802 24.01171633112013 23.89793991140647 23.706737869849803 23.432811643555755 23.074142555530962 22.63191094358697 22.110306545341693 21.516247709498213 20.85903027349656 20.14992882821663 19.40209151736871 18.631251548645253 17.853754069614734 17.08562579565784 16.342336681303518 15.638618372907796 14.988340007565599 14.404438639191154 13.89889803256279 13.482766406066572 13.166171582670103 12.95486636348642 12.8467914667726 12.838170032444044 12.924494683884769 13.10068396936316 13.361195599557963 13.700109481809509 14.111191533941614 14.587947152393307 15.123671122908807 15.711498766083603 16.344461250169626 17.015546314473095 17.717764159170024 18.444217000151827 19.188169786196056 19.943118849877656 20.702854823225216 21.461515991723537 22.213628369072293 22.954129118728083 23.678370482061663 24.382102042072404 25.06142989509108 25.71275205888588 26.332670156756787 26.917878036376987 27.465028477565227 27.97057950338611 28.430622047231996 28.84069088697337 29.19556091104826 29.48903104321884 29.713698678025004 29.860728471434996 29.919789681384145 29.882701224754637 29.744038122315622 29.497941017628047 29.138267623145 28.65891563754722 28.054152554069308 27.318950097975993 26.449319425890838 25.44264140197101 24.29798438264663 23.016791863420405 21.610236203566497 20.099171343482855 18.507756442660597 16.862542358389 15.191680824513314 13.524067278650739 11.888446059046839 10.312508634348408 8.822016432749173 7.439979570095595 6.185921268545391 5.075255004854622 4.118797497694951 3.3224356731994162 2.686959937187302 2.2080696846793115 1.8763350301436161 1.6685725329205954 1.5484034941862026 1.4817776558241382 1.4384867115560445 1.3924145613398018 1.3216316628123428 1.208344961833614 1.039382387317886 0.8097180041192722 0.519715207950707 0.17218364321941504 -0.22833777729626803 -0.676142527972516 -1.1648001934582712 -1.6875004246449041 -2.237313712327232 -2.8073838531696014 -3.3910652008139106 -3.982016000251342 -4.574257350938138 -5.162205681947833 -5.7406850902790545 -6.304924520767715 -6.850543571832513 -7.37352970420209 -7.870208809143616 -8.337210449820407 -8.771428609191968 -9.16997844079377 -9.530149302694149 -9.849354237126839 -10.125076016961202 -10.354809896046174 -10.536003258096638 -10.665992447547648 -10.74193718068998 -10.76075307770845 -10.719043034092383 -10.613028378736388 -10.438481069228883 -10.190658584096983 -9.86424372791043 -9.453293539199942 + 26.022166337642666 25.60029647178579 25.187969100661096 24.80113379698666 24.455116596623167 24.16389660450485 23.93940170262001 23.790860925115066 23.72260972341644 23.723443808893748 23.774618549810953 23.856374181389572 23.948718368412404 24.032163051419797 24.08841557305941 24.100997695701228 24.055770130225458 23.94134534547151 23.749377380720002 23.474723759663547 23.11548100770516 22.67290132018962 22.151203268452026 21.557293772313585 20.90042169582929 20.19178520816766 19.44453488945493 18.67437092521083 17.897456942648716 17.12964087453443 16.386221000367215 15.681766999583798 15.029996933789272 14.443707554925664 13.934751909725598 13.514055147521164 13.191627837576963 12.973163907331033 12.856656375754149 12.838398315890185 12.913957001082316 13.078330506654563 13.326061638993005 13.651321816511349 14.047975597668131 14.509634528271404 15.029706972533699 15.601448667026173 16.218016938400396 16.872529888506907 17.55813040428372 18.26805362245891 18.99569549565154 19.734679386109008 20.478917166363843 21.222661131005815 21.960543105433075 22.687597446851832 23.399265128274514 24.09137672625939 24.760112840134944 25.4019411958081 26.013530376413687 26.59164072983411 27.13299349873739 27.634119590519933 28.091189663921035 28.499827394793613 28.854907965341916 29.15034410412736 29.378862533402142 29.531774646402607 29.598912077078197 29.572194402760047 29.44622320531996 29.215157118035087 28.872859663915957 28.413214577127412 27.830447314013888 27.11945054595562 26.276109988140917 25.29762527883639 24.182818914649708 22.932931981997278 21.559417112420867 20.08310677198678 18.52808136248532 16.920817204993206 15.28940302336932 13.662690811705708 12.069408942234487 10.537267175964924 9.0920840949494 7.7569672609266345 6.551575050191192 5.491486608118262 4.587702760893707 3.8462961311367088 3.26822330080118 2.8493058716436 2.5796217449317593 2.4322363632105084 2.369918995362717 2.358503225882326 2.3676902136638436 2.3712920876312023 2.347319160637017 2.277919422544147 2.149685870381793 1.957384225021361 1.7014290285728224 1.3847013452395487 1.0118140875883865 0.588551646342732 0.12142748058629671 -0.3826584323713167 -0.9166788520143054 -1.4736701316474479 -2.0468678290478515 -2.6297984541136756 -3.216336999319088 -3.800738240127094 -4.377648253315428 -4.942101212743975 -5.4895053057538625 -6.015620580433552 -6.516530686351317 -6.988609802741989 -7.428485545559534 -7.832998290344856 -8.199157120525182 -8.524092488362843 -8.805005636661544 -9.039114853974853 -9.223598708385644 -9.355536513456121 -9.431846418722749 -9.449221686405892 -9.404065922962312 -9.29242829329825 -9.109940079411263 -8.851754384983241 -8.512491373051532 -8.086193509627847 + 26.008816388292463 25.587077991653835 25.176936117204864 24.79422137219195 24.45409157213839 24.170318541473844 23.954596335546945 23.815907591333666 23.757483564173338 23.766563927415547 23.82443927927428 23.911475128680234 24.00785428416618 24.094298830541796 24.152745699436586 24.166950356704348 24.122997089861364 24.009699418987097 23.818879948213507 23.545525156220943 23.187816813511407 22.747047543824227 22.227433184472225 21.63583876911692 20.981437952126612 20.275327547916252 19.530659918510057 18.76306309612439 17.98850743188468 17.2226551313963 16.48063020202561 15.776841681269193 15.124861235115592 14.53735266560935 14.026047553310676 13.601758291775475 13.274388706201506 13.049585616400709 12.925407845194952 12.898229363288106 12.963700223656375 13.11690362001312 13.352470867097978 13.664666528696989 14.047454082214378 14.494550573266832 14.999476786256377 15.555607603323194 16.1562254884949 16.794578449758006 17.463942428518084 18.15768687071723 18.869341271023558 19.592659769850474 20.32168043287304 21.05077565339629 21.774690175730743 22.488563515770004 23.187934014301604 23.86872235075416 24.52719301582404 25.15989293516791 25.7635671011884 26.335051662628675 26.871145412423548 27.368460991063117 27.82325739546145 28.231255587359133 28.587439195162517 28.885842596474664 29.119329190599498 29.279363598868965 29.355944481594204 29.341085885000243 29.229398216795904 29.015036261241374 28.691843061814716 28.253657041016673 27.694624786045217 27.009517395537788 26.194046997311997 25.245178569924878 24.161430649593477 22.943805560038612 21.60401463190047 20.162837552434237 18.644263586525604 17.07469263857249 15.482159786415615 13.895494434374426 12.343441056734495 10.853770199942701 9.452409246563407 8.162622303606287 7.004267392676288 5.993156871191875 5.1405437395934594 4.452752281797268 3.9309664908937565 3.5711841418191157 3.3625081360266336 3.2742754485240284 3.2687764737516787 3.311707204727654 3.372654023698354 3.4253319933696096 3.447666608336788 3.421727080740851 3.3340447545470866 3.17930695769114 2.9577390597114652 2.6722329026999354 2.3274577932486196 1.9292609559261127 1.484225982972414 0.9993312300744721 0.4816916470936867 -0.061630851435246825 -0.6237616705259708 -1.19810393435238 -1.7783947464391066 -2.358735406289881 -2.9336021365405704 -3.497842473606159 -4.046661238059093 -4.57559894266511 -5.0805046208470825 -5.557504362685472 -6.002966318713019 -6.41346255764755 -6.785727923178278 -7.1166159055869835 -7.403051504984335 -7.641981094580653 -7.830319378104656 -7.964893662966421 -8.042385833119962 -8.059272602071056 -8.011764863235351 -7.895747245501441 -7.706719348066767 -7.439740600636467 -7.089381312158306 -6.64968467245361 + 26.01294704518183 25.590910382943754 25.182592304982204 24.803725870653977 24.469326163057094 24.19298753190298 23.986204276080354 23.857750369600833 23.809442126637183 23.827172159664276 23.89231912797724 23.985395626142633 24.086774257471145 24.177394202837444 24.239421092653686 24.25683560280157 24.215930087219018 24.105697474463227 23.91810227779716 23.648229546944737 23.2943135615398 22.857653680535904 22.34242970205401 21.75543309177168 21.10573331140902 20.404302576318628 19.66429110105007 18.90121773166055 18.13084851699119 17.36865375878374 16.629581407142243 15.927882004897295 15.276986311040572 14.689433310828448 14.176843118440907 13.749926401580066 13.418491444173902 13.188150477794311 13.057042494968288 13.021634150091396 13.077667172782345 13.220316181111604 13.44430507127002 13.74399378998919 14.113445554724262 14.546482741054405 15.036737810853129 15.577703873924833 16.162787803795812 16.785367298511897 17.438851918541896 18.116746972827674 18.812718184280964 19.520654365991525 20.234724889401384 20.94942852546973 21.659630276964318 22.360583069498976 23.047931594337655 23.717696151726816 24.366234978382455 24.990184204115764 25.586375221070213 26.151729823281634 26.683133955401775 27.17729128525558 27.63055809367802 28.038761188950357 28.397000761599084 28.69944038879006 28.939086901663842 29.107563709354185 29.195039839958206 29.193615571881136 29.097889792764697 28.901988949829754 28.59970674140095 28.184802511917482 27.651304949236664 26.993819125643643 26.207833777960932 25.290024392754322 24.23854625425449 23.054128715168904 21.74871752142888 20.343011137194395 18.860897870113952 17.328701662471676 15.77441525608347 14.226867757280386 12.714852674728824 11.266244114522225 9.907129650663903 8.660988339322271 7.547941342762129 6.584100647798078 5.78103842616442 5.145395762068496 4.678644885140665 4.377013858349096 4.227984410591056 4.197509729287559 4.247614096046231 4.343834945665321 4.455620716859771 4.556565684834403 4.624487819373651 4.641357270884782 4.593628692874025 4.476081726263917 4.288992154492244 4.035009910298835 3.7187272274319145 3.3460341090556627 2.9235688236979156 2.4583744765081548 1.9576415267934681 1.4285190200414206 0.8779813172239734 0.3127387954425149 -0.26081732004651315 -0.836644198753806 -1.4090573898904388 -1.97272680627154 -2.522662709346844 -3.054194614888221 -3.5629451361006446 -4.044800057211898 -4.495875377783712 -4.912481672093979 -5.291085850879142 -5.628270274114863 -5.920689122465679 -6.165021971842533 -6.357924613171029 -6.495977305011133 -6.575630832246892 -6.593150967924643 -6.544562202564064 -6.425591928533008 -6.231616667118362 -5.957612432121279 -5.5981119745328325 -5.147173972844227 + 26.036463529430122 25.613641350172813 25.206732381051946 24.83139826512054 24.502542032546646 24.2336158579791 24.03595394903433 23.918144953424033 23.88022977389531 23.907050499287333 23.980102439969844 24.08006479477122 24.187511733039543 24.28360318112413 24.35072902098256 24.37308299636776 24.33714642703316 24.23206660555045 24.049920191565192 23.785857688236757 23.43813083850708 23.008010180375443 22.49960474961662 21.919599766055697 21.27693090205307 20.582424294230396 19.8492209376197 19.092695132556383 18.32839818731286 17.571602791324565 16.837079526839453 16.138923049457215 15.490429134526575 14.904020490760225 14.391216150715215 13.962636460318851 13.62800574481312 13.392914693335753 13.255597617297344 13.212626447615628 13.259844284773955 13.392524257652651 13.605487671718722 13.893192813555252 14.249804136507697 14.669249798482209 15.14527375984314 15.671486941991308 16.241420339507137 16.848581504090866 17.48651450560195 18.148862350370756 18.829429922611343 19.522244829060842 20.22161308005602 20.922166332252058 21.618897437669506 22.307181267434203 22.98277817225079 23.641817962422802 24.280762889740593 24.896348741960274 25.485503770958985 26.04524572839652 26.572557749897594 27.064244198000875 27.516767852094347 27.92607004930977 28.287375588435808 28.594984492819716 28.842053204293126 29.020368602181147 29.120272210780755 29.13394039549226 29.05593773375713 28.880335390356436 28.600846489822473 28.211115341116994 27.70501174349472 27.076928598451534 26.322080033126934 25.436796045386803 24.418808401997676 23.26854152075846 21.998148517557958 20.62822111616649 19.182538958436968 17.687352231850568 16.170623895597412 14.661205686431153 13.187973071468635 11.778945861061286 10.460422043833514 9.256152459719365 8.186583116080591 7.268190243712699 6.512930591795149 5.927826025115568 5.514697307865122 5.270055110604828 5.178972761407556 5.204659833871888 5.3089379794999445 5.457166734320583 5.618635537939932 5.766796611795725 5.879340363244136 5.938120370497066 5.92950043767295 5.84833892103713 5.695066578591276 5.472442639385702 5.184878734145094 4.8380289382380814 4.438529540555206 3.9934716889351423 3.510106337124312 2.9956559986456357 2.4571821833668928 1.9014969427041297 1.3351085979673005 0.7641933372665353 0.19458589731567777 -0.36821603890236254 -0.9190378278156768 -1.4530072282257827 -1.965529205568572 -2.452257489139013 -2.909063613791041 -3.332003758022105 -3.7172834150282217 -4.061219783128491 -4.360201716689581 -4.610647118778679 -4.808957764943645 -4.951471710149152 -5.034413639279481 -5.053843772995239 -5.005606239153025 -4.885278177077295 -4.688121277487252 -4.409038003276682 -4.04253542304026 -3.582702030940828 + 26.081310638510537 25.657168939393404 25.251213306546205 24.879064728480177 24.55554991410417 24.294019466451932 24.10569253119718 23.99894068974099 23.97170926241053 24.008099827520553 24.089749421179533 24.197521330033354 24.312200547072052 24.41516855047887 24.48903200278609 24.51818250933008 24.48926827567752 24.391563124093768 24.21722357858428 23.961430285117686 23.622415567806367 23.20138411487293 22.702338354113312 22.13182377943446 21.498612153532555 20.813364143371338 20.089200554465595 19.341317767270624 18.585042043643142 17.83544287340885 17.107112253654122 16.4139916185846 15.76924770868223 15.18519549849772 14.673263318502244 14.24399260474572 13.907035351779612 13.667974038026403 13.525154145390598 13.475266267704031 13.514265400567723 13.63753112068185 13.839987825015502 14.116195938833682 14.46042346153645 14.866705559186027 15.328898233404011 15.840730463144887 16.395857673089612 16.98791796374392 17.610591272372925 18.25766054631058 18.92307312330752 19.6009998447068 20.285888986225938 20.97251187830502 21.655997092753378 22.331850272965312 22.995957049117642 23.64456696706973 24.274256924476738 24.881873202687768 25.46445176371748 26.019117010106346 26.54295965476876 27.03289470538774 27.48550083874807 27.89684265062703 28.26227746625937 28.576248661678246 28.832067884705427 29.021689318322572 29.135627971056717 29.166124359761827 29.107683672990937 28.954292580522964 28.699550262628964 28.336948093326335 27.86015430866458 27.2633020993943 26.54127866246399 25.690011672696723 24.70674847502976 23.59157894527197 22.356833805153403 21.022975454399177 19.61366883551013 18.15509375886051 16.6751964833044 15.202874114556316 13.76711608203097 12.39612845010693 11.11646769583191 9.952210750580829 8.9241874891006 8.04930041603425 7.339954042188834 6.803613392793009 6.44250731844596 6.25341615886998 6.218288084367835 6.298306714793798 6.455081160248982 6.6537765516910845 6.863505448566478 7.057560093119477 7.213486647169292 7.313007852999293 7.342385443974487 7.29654577907615 7.176065202022858 6.983834895815434 6.7243831190331775 6.4033550331006985 6.027109356686028 5.602549946712226 5.1369509929412684 4.637591583793087 4.1116049163119595 3.5658904240862217 3.0070601860409605 2.441411200478899 1.8749166246004432 1.313230493515773 0.7617017137141957 0.22539425142132785 -0.290888607738113 -0.7825772703035963 -1.2453068518090458 -1.6748864879489123 -2.067266933499031 -2.4185062784231093 -2.7247335589520194 -2.982110082902204 -3.186788405666322 -3.334869072015646 -3.422355469583758 -3.4451074189180515 -3.398794455283573 -3.278850149534959 -3.0804292880839252 -2.798370312722474 -2.427166146202503 -1.9609490952062636 + 26.149523424055044 25.723493767723777 25.318007694452877 24.948680793034654 24.63030405155046 24.3761721871645 24.19743943028567 24.102145963000893 24.085904608935053 24.13237833823687 24.22336984696862 24.339942349847064 24.463098901658757 24.574441073320777 24.656782451374468 24.694694905626395 24.67496914997276 24.58697557636603 24.4229163934788 24.177965443361057 23.850297386624806 23.441012936822073 22.953971215795466 22.395543868666724 21.774308153740286 21.10074212937414 20.387931146508954 19.65086208116506 18.904625631507763 18.164082233074463 17.443643754848388 16.757100698386274 16.11749630435386 15.53704592646321 15.02709715425583 14.598123547015698 14.259716089550961 14.017462413817858 13.869835640977502 13.813659192416328 13.845011345211999 13.959386982010802 14.151820229263215 14.41697841712055 14.749236359153091 15.14273838532699 15.591453967381678 16.089231217407736 16.62985106317413 17.207083541812388 17.81474643553034 18.446765424417812 19.09723407388937 19.76047132455355 20.431073719794504 21.103959391492346 21.774400817139536 22.43804354156716 23.09090839324752 23.729375180512623 24.350146383833142 24.95018992180994 25.526660618329252 26.076800500239855 26.597818482730496 27.086750340562457 27.540300121196115 27.954664353734096 28.325340590614974 28.646922057243007 28.912880576718038 29.11534061359045 29.24499054734659 29.294121412566135 29.257151783830516 29.127952545154308 28.89997365481646 28.56651399024319 28.120996189735312 27.55724516910835 26.869768190026264 26.05403339480624 25.106742669254338 24.02762424921712 22.829154146780226 21.53164576777094 20.15864459851795 18.736264059917787 17.292446609476812 15.856156424116163 14.456527022996731 13.121988644559544 11.87940110203463 10.753218122434319 9.764708757191238 8.931260292611872 8.265785167776269 7.776251740754017 7.465355378912267 7.330010461002681 7.34859210452584 7.4808459197391 7.688158336960087 7.9354876608724405 8.191755950606474 8.430081774073283 8.627854389455795 8.76665512699882 8.832635567496673 8.82078092392865 8.731804281500413 8.568722165224372 8.336173662460208 8.039898621590343 7.686332756846775 7.282300968281633 6.834791190238126 6.350901098360133 5.837793232263057 5.302436989937337 4.751532207418809 4.191481913178875 3.6283839751901947 3.068036036932356 2.515949425752198 1.97736885928712 1.457295755821459 0.9605137636244283 0.4916157616452015 0.05503205559302238 -0.34494018875251875 -0.704106053273641 -1.0183402344344206 -1.2835524284868711 -1.4956506186811644 -1.6505023419242253 -1.7438942649181834 -1.7714907065735765 -1.7287921063772167 -1.6110948668582026 -1.413454510008319 -1.1306547088352783 -0.7571855214278553 -0.28723684636027436 + 26.243295913816894 25.814789491086533 25.40927552561485 25.0424037607581 24.72897470480501 24.482277705630466 24.31345708289478 24.229992491229957 24.22505839112075 24.282153556372347 24.38326954894806 24.50968423429627 24.642624568079533 24.763909181477516 24.856547080808408 24.90527116870298 24.89698873937056 24.821135379766925 24.66992355668558 24.438482295198092 24.124889457296746 23.730102923426323 23.257801205291614 22.714147461465082 22.107493389281718 21.448119723130077 20.749056279731427 20.02505041666898 19.290946158597425 18.56138834204973 17.850606389650594 17.17224131912987 16.539217529396552 15.963657985143834 15.456838645769006 15.029175444613307 14.690209002743876 14.445545236195006 14.293801897329676 14.231950155696254 14.256203844754289 14.36218299858197 14.545039165198235 14.799552436990355 15.120208811021488 15.501265024193307 15.936806499803776 16.42080255917817 16.947161640883206 17.50978796550592 18.102639915023556 18.719789387490362 19.35548056132566 20.004185874949606 20.660656605911665 21.31996521933417 21.97753663897832 22.62916575604868 23.271018802292833 23.899616638922065 24.511798510509763 25.104665340922647 25.675502166190128 26.221679772421076 26.740536010076 27.229237576164145 27.68462329562194 28.103030112478397 28.480103161029742 28.810591490777416 29.08813135618937 29.305019573430986 29.452116673060107 29.521748935455513 29.508219078652807 29.405249024062076 29.20610258059803 28.903845232262853 28.491609026207318 27.96286149509574 27.311676839708433 26.53300673700359 25.62294718486208 24.58084041318111 23.41927318903995 22.15839315935979 20.821622543431474 19.435012452646735 18.026513560342536 16.6251769148252 15.260307364687122 13.960593485469214 12.753238842508967 11.663119819235941 10.711995016331944 9.917790334817791 9.293982267003866 8.849099631161172 8.586361025247257 8.502570323964058 8.572340552421224 8.754436324565138 9.01001636499137 9.30382510544614 9.60458585415523 9.88523493526228 10.122996730883932 10.299304687055466 10.400195454653968 10.420705386349372 10.361675702099776 10.226241467456232 10.019147574740064 9.746225155456294 9.413985707539993 9.029314306742972 8.599244852538034 8.130801920821296 7.630895450873022 7.106285457088022 6.563680495329323 6.009570382715151 5.450161664737221 4.89138096759559 4.338888702248113 3.7980982025973127 3.274198023972181 2.772175964006782 2.2968440340772114 1.8528641086538666 1.444774321449957 1.0770164749363094 0.7539648004226542 0.4799563673617584 0.2593233100180701 0.09642683198444324 -0.004307324890312714 -0.03835259520469414 -0.0010455325703517815 0.11244850960711616 0.3071658961927657 0.5883687000217046 0.9615586260217492 1.4324745144442552 + 26.365072927326242 25.9334965654889 25.52745920531176 25.162688344132324 24.854043617268953 24.614864069347394 24.456343700961934 24.385016966010326 24.391707498221916 24.459971823690037 24.572013398943255 24.709339004264166 24.85340468025704 24.986242315304636 25.091044016783673 25.152683688550454 25.158158534237913 25.096937300811863 24.9612067175622 24.746012495056547 24.449296142385933 24.071833465975942 23.617084683344483 23.090969415943828 22.50158226457388 21.85899454307923 21.17615498642589 20.46754276636212 19.74774312176949 19.031177606677193 18.331889630789885 17.663370853382553 17.038430131029365 16.46910392081502 15.966604365450335 15.541298823484833 15.20268714224418 14.956406138839277 14.801235603482912 14.734310094880069 14.751992180973104 14.85003793611793 15.023725165775735 15.26795378971485 15.577326596669671 15.946217213996142 16.368830714251757 16.83926087393755 17.351546755170936 17.899730034649966 18.47791338522259 19.080319248612692 19.701347544069964 20.33563025230277 20.97808040555126 21.623932803245513 22.26877374924775 22.908557252630718 23.539605422063556 24.158591179955238 24.762501887833835 25.348582968818917 25.91426109814513 26.457046975440484 26.974418068291246 27.463682012451347 27.921821570884642 28.34532220913659 28.729983474492638 29.070715528320036 29.361322456265878 29.594274478706325 29.76060188982072 29.852649328787095 29.864572516567915 29.7899095533777 29.621699817771333 29.352733565418617 28.97580680874718 28.48398067613544 27.870843825246617 27.13077571690544 26.25920769404263 25.25507467567798 24.131037972375555 22.90706565354563 21.606453572540442 20.255194248279622 18.881257028522477 17.513796841500817 16.182313133115663 14.915781971895647 13.7417852815894 12.685661662170023 11.769703219715367 11.012422190509401 10.427909877311954 10.02530849906996 9.808413996152808 9.773587360011252 9.891722884010612 10.120943021015998 10.422180352877783 10.759965092581698 11.102820049754852 11.423496768553743 11.699052128538675 11.910769727263354 12.044569955125358 12.095533870475048 12.064622125794987 11.955080915906812 11.771754977576393 11.520562213495868 11.208086721761076 10.841271684994643 10.427195119495014 9.972913063345942 9.485356390640082 8.971269066702735 8.437177289893816 7.889379132770304 7.33400524164654 6.777072001839852 6.224373683096582 5.68147863771461 5.153750462908351 4.646370407422421 4.164360216378917 3.712605135394904 3.2958771613849143 2.9188588446333377 2.586168029736654 2.302383888710441 2.072074464703168 1.8998257242781484 1.7902718215201494 1.7481259146995978 1.7782104460053763 1.8854852897213652 2.075071578815466 2.3522683102443054 2.7225579726181524 3.1915944950157726 + 26.5176710534029 26.08244534237409 25.675407935689172 25.312411408614 25.00842817131771 24.776906267905694 24.62915331141592 24.57016688799453 24.588781902401344 24.668749626797773 24.792508954503777 24.941810177660066 25.098343816338236 25.244351352870115 25.363195787604955 25.43987210394537 25.461440867361272 25.417372086253067 25.299790892921333 25.103621297538144 24.826628957181168 24.469368325964677 24.035043476836076 23.529295115227857 22.959928693123405 22.336796861642615 21.672735460764798 20.981927946985994 20.27868722929979 19.57720229067931 18.891325224384776 18.23439663554882 17.61911128468497 17.057423171335024 16.560486679151246 16.138628014649402 15.801314393014746 15.554225340844626 15.396320377161027 15.324913754520312 15.336530852039324 15.42707575523309 15.591962580955293 15.826219452441686 16.124572923065056 16.481519377789848 16.891388607529425 17.348403421868174 17.846737888549175 18.380575600601674 18.94416830376958 19.531894292850428 20.138315225880767 20.758229424575244 21.38671933602232 22.019190624307427 22.651400332583183 23.2794716883397 23.89989339131453 24.509501592150006 25.10544320384727 25.68511964915194 26.24611059878779 26.786077666312373 27.302648371514927 27.79328095247691 28.255110796377142 28.68477938562255 29.078246750777105 29.43058853615123 29.735778990783807 29.986461595189287 30.17383272421108 30.290236857289276 30.3296497980743 30.28538951603573 30.150231680773302 29.916649044219962 29.57705634699506 29.12406021261825 28.550712943817963 27.850768451547147 27.018937771726886 26.053730746480504 24.967846154433825 23.781061748400678 22.51654452099649 21.200231377449995 19.86011858944764 18.525478259152226 17.226022545144613 15.991037746507395 14.848511340961425 13.82427566704322 12.941192068106274 12.218398922221173 11.670646022083512 11.307736213004333 11.134093033841049 11.145238822962106 11.308593824861537 11.581873858942915 11.925795036846383 12.3046810719287 12.68686019416939 13.044903594498297 13.35570404322041 13.600398241690131 13.764792575164503 13.844007496468068 13.839113954557975 13.753460822240207 13.59198529857634 13.36068592911557 13.066214568596951 12.715568849238847 12.315868234334708 11.874198274094752 11.397509241328564 10.89255690353886 10.365874773055278 9.82376874989939 9.27232661080495 8.717436277356335 8.164808190899285 7.620011414284554 7.088545904047765 6.575773045635639 6.086914237602006 5.627069487771546 5.201237361037528 4.814335006040629 4.471218693080305 4.176705267290332 3.935594783448603 3.752694356612163 3.6328429478535815 3.580936413870572 3.6019516842577683 3.700968384689836 3.88318558404454 4.153930585904005 4.518655778610546 4.982916487291309 + 26.70443596093398 26.26501558904306 25.856538366349163 25.49503260069432 25.19564078645448 24.971983159565603 24.835510349438245 24.78893591510614 24.819731525048027 24.91189158430129 25.04811531066503 25.210412361675665 25.38071432746554 25.5414697772327 25.676201522461383 25.770006798762353 25.80998403421933 25.785573577384326 25.68880397628005 25.51443988184119 25.260032139286444 24.92587488207636 24.514878232032657 24.032368348584026 23.485828918526465 22.8848878359645 22.24222901451585 21.57171363230709 20.88736685325818 20.203133720580873 19.53266747382061 18.889153641833243 18.2851719798893 17.732595759635053 17.242525440260376 16.825251432539442 16.49021461030546 16.243147896751086 16.08320835367253 16.007906808769444 16.013946394977534 16.09739227498522 16.253806200198035 16.478354266638853 16.765895237281438 17.1110556318271 17.508296540048107 17.95197586293654 18.436408477073634 18.955925689844833 19.50493433670473 20.07797499148827 20.669778036559684 21.27531578553381 21.889848474807025 22.508961740849784 23.128593169384143 23.745045623054587 24.354985301228513 24.955422828251454 25.543676069991804 26.117313806654284 26.674079807966915 27.21179723472968 27.728253605319022 28.221066803708773 28.68753276534647 29.124455570981063 29.52796073389924 29.89329252799102 30.214596337324064 30.484687299986252 30.694922686787784 30.837626610891995 30.90656038833855 30.894784374545786 30.794770698315197 30.598632528092885 30.298359155854296 29.88605661725927 29.35419308278459 28.695847648072736 27.904960457605284 26.979602729217692 25.932473913574768 24.783154054258354 23.554679439980994 22.272933323378247 20.96594431745027 19.66311030722114 18.394367819477157 17.18932808576724 16.076402039075575 15.081937151640938 14.229389295065868 13.538552629326325 13.024869854812078 12.698843950823166 12.56557074823204 12.619302433205103 12.824395730260711 13.138308880946832 13.521560871363311 13.93828610497722 14.356633021229223 14.749004813976814 15.092140263507934 15.36703747930215 15.559394843277971 15.664367879687514 15.683127945427069 15.619116682257804 15.477354468974442 15.263912241793099 14.985502599255295 14.649171887510725 14.26207645646155 13.831327776890065 13.363892622292678 12.866536047337274 12.345796430433836 11.807983376866439 11.259190782015583 10.705318808556912 10.152099912537537 9.605125336228308 9.069869647510675 8.551711926067533 8.05595305963444 7.587829350409167 7.152542008970687 6.755234736919815 6.4009972019212915 6.094879789694063 5.84191106629467 5.647116143828943 5.515535683319478 5.452244849929648 5.462371035276921 5.551108574218951 5.723727996419538 5.9855783713199795 6.342097951484247 6.79885944943733 + 26.929444378558166 26.485340611964805 26.075039482404726 25.71479854046539 25.419990895748533 25.204475672831446 25.079710626609174 25.0455345308896 25.088686692231672 25.19344026038532 25.34278198592924 25.51899905858845 25.704273031419724 25.881259332365193 26.033631735530033 26.146573056612343 26.207196122581472 26.204882567859595 26.131531014287287 25.98171046437124 25.752719034075806 25.444552237925016 25.059788702154716 24.603404241168423 24.08252755131466 23.506559191670817 22.887983783549405 22.24031451752981 21.577271086869928 20.912540670675035 20.25956738594539 19.63137482923509 19.040423980224926 18.498506297876972 18.016669454749486 17.60517090964348 17.27342922338018 17.027239947848738 16.865975421786395 16.787360377627508 16.78829143997509 16.865008987944798 17.01323501901498 17.228284817658828 17.50515935395294 17.83862427131742 18.223280167724173 18.653627701738888 19.124129915164886 19.62927309697615 20.163626549616065 20.721900783496178 21.29900297806845 21.890088021711655 22.49060308471038 23.096323489129308 23.70337760771048 24.308258634456777 24.907821298584373 25.49926191161477 26.080080511437416 26.648024262861174 27.201011658546392 27.73703740839318 28.254058187166017 28.749859615889893 29.221904979622785 29.667166242230447 30.081937931271305 30.461634472035676 30.800571605666267 31.09173270891095 31.32662896659388 31.497542136787185 31.597982986314204 31.62071594902693 31.55786979579969 31.401157048225958 31.142099541821835 30.77226009018735 30.283479773829114 29.668119840805502 28.919306097431424 28.03466423568438 27.026857925389002 25.91526639172198 24.722794260272416 23.47527190545093 22.20076226967335 20.928791908145744 19.689525442493228 18.512903828447712 17.427767829748365 16.460988802465785 15.63662928334158 14.975155890488308 14.492726632878648 14.200573838483985 14.104502643865018 14.197057970073313 14.440070373424657 14.790821544191076 15.209663963796395 15.660570839815616 16.111535736607767 16.534815158263317 16.907011502248068 17.208998432254653 17.426376287233325 17.554332247662646 17.594127168121574 17.54928371399177 17.424893811442143 17.22708992439226 16.962635716545087 16.638617950471392 16.26222295871214 15.840582489589488 15.380675198715657 14.889271533238851 14.372911238280171 13.837904194646388 13.290346758224256 12.736147194227136 12.18105516054562 11.630691469670055 11.090575524501013 10.566148858544437 10.062794097679163 9.585849385526252 9.140618869195825 8.73238022405813 8.366390407885408 8.047890884191652 7.782113454500382 7.574287606208851 7.42964993630342 7.3534557729272025 7.350992608919299 7.4275944055577074 7.588655240616362 7.839640179204009 8.186090651292652 8.633618919932072 + 27.19776026656135 26.748565240396616 26.33613064680119 25.976999079587028 25.68683751002491 25.479813725649965 25.367005071916914 25.34510221390346 25.400657968994487 25.51826319323059 25.6812228213569 25.872123248398406 26.073408415112333 26.267943891287473 26.439549000707817 26.573478764335324 26.65684003503168 26.678929491818515 26.631484953062763 26.508845533354155 26.30802027814891 26.028668840004656 25.67300130642194 25.245607278589063 24.753226810894297 24.205033887754862 23.613257485463848 22.991037709018148 22.351768314808467 21.708861669774098 21.075539275457967 20.464652601581346 19.888536715162708 19.358896866668363 18.88672590424809 18.482248212665944 18.154861385062492 17.91043102028437 17.748562131990077 17.66721095356423 17.66348401415036 17.73381205436367 17.874091194950548 18.079798585465014 18.34608899813332 18.66787786978319 19.039915231242894 19.456853870785096 19.91331400898393 20.40394575709379 20.923489721353423 21.466835326472044 22.029075782044703 22.60555811876184 23.191926383303194 23.784155900706633 24.378576482114404 24.971882558008865 25.561128429587676 26.14370712573482 26.7173116986709 27.279878155217535 27.82950957139447 28.36438124822382 28.882627014599418 29.382206955358985 29.86075693541858 30.31542031121238 30.74266218823608 31.138066531335962 31.496116410909835 31.809957739481877 32.071246441335056 32.27219802126059 32.4060353546643 32.46518827604878 32.441403129764566 32.32595280264853 32.10985326510162 31.78408676839332 31.339831464348 30.76869673950266 30.062963249316915 29.219805603222714 28.251824198021314 27.178197079824834 26.02169758296707 24.80810274650527 23.565507826418056 22.323564090168134 21.11265838255034 19.96305407793863 18.904013970609338 17.96292637489144 17.16445617252137 16.529742709530318 16.07566625810519 15.814204167724709 15.751880740439894 15.879173373052524 16.15595828720194 16.53939018478209 16.98969858621663 17.470736052085098 17.95037763870587 18.40076451889354 18.798388648799413 19.124019810884526 19.363174519420365 19.51106911474532 19.569041832145558 19.540682470754287 19.43114012914851 19.24659488189535 18.99384864877556 18.68001728755322 18.312307425818414 17.897862991041816 17.443667824112026 16.956492184927203 16.442872384428775 15.909114202363916 15.361312163032364 14.805378125329192 14.247073977449766 13.69204448741118 13.145847524482413 12.613979911500918 12.101898074524254 11.615033408947633 11.158802869576267 10.738615710967574 10.359877553955354 10.027993040312927 9.748368270618514 9.526414015458993 9.367550365415148 9.277213061432178 9.260861245932242 9.323985818022248 9.472116983651205 9.71082898128541 10.04573934968336 10.482497321228529 + 27.51575585986694 27.061167937953737 26.64638256320925 26.288284800127013 26.002900866109517 25.804779592747153 25.703889146146093 25.693967496471796 25.76178128738377 25.892282575406238 26.069129850471892 26.275235227686764 26.493322350999218 26.706475074067615 26.89865759700518 27.055188299331647 27.16315190955518 27.21173773520571 27.192495254778834 27.099502234677583 26.92944446172771 26.681609962283567 26.35780401683421 25.962194206853024 25.501100178697214 24.983467060624864 24.42120831802483 23.827064242284106 23.2140790333022 22.59536982017503 21.983918290010305 21.392389754688637 20.83298236189678 20.31730694909113 19.856295843338952 19.46013680704165 19.13820469835593 18.896440378713233 18.734698275056054 18.651183736035005 18.64323010114847 18.707474498858062 18.84000224066541 19.036466444679032 19.29218887752126 19.60224714615009 19.961552400437387 20.36492069605946 20.80714016978638 21.283035237078614 21.787528167287906 22.315697649853426 22.862833354482653 23.424485021881726 23.996504304901347 24.575077411617396 25.15674657320168 25.738418454779254 26.317357824924372 26.891165072243524 27.457736475743182 28.01520646847394 28.561871451587432 29.096094992182678 29.616194452377684 30.12030923538797 30.60625089215828 31.07133531420806 31.51219716048462 31.92458655556351 32.30314799392057 32.64118134568324 32.93047540225066 33.16315345547773 33.33211215723851 33.4294082909873 33.446368403077116 33.37379019160613 33.20215077795293 32.92182215140745 32.52329373044399 31.997401564445095 31.335565465685495 30.534511536114195 29.606755909114653 28.57128044889171 27.45072959510531 26.270825456879948 25.05968902821728 23.847084252913998 22.66360281902876 21.53980855987125 20.505361183182124 19.588139730879895 18.813386663162824 18.2028937257481 17.77425075106504 17.54017821032132 17.50787797018139 17.665572415153747 17.971683170190268 18.38329762647886 18.860580501252066 19.367318270659975 19.871316715394105 20.34464429194162 20.763717754873632 21.10923069019479 21.366634691690386 21.531173826971987 21.604250327719242 21.58950489054121 21.492126364071545 21.318325089382853 21.074924892054486 20.769055957403392 20.40793232329613 19.998699154625623 19.548336352207542 19.063606419665536 18.55103587796244 18.016920881849725 17.4673490500433 16.90823085843729 16.345335244726392 15.784325311565347 15.230791170550631 14.690278018005785 14.168308455006985 13.670398840956208 13.20207008942505 12.768853769223652 12.376294660449634 12.029951037878178 11.735393920865551 11.498206352955567 11.323983472361329 11.218333725980255 11.186881085735735 11.235267568375804 11.369154759083097 11.594222414025907 11.916161582900866 12.340656830791168 + 27.89150930627623 27.431358165144964 27.014111575126133 26.657055358709673 26.376641851784157 26.187864768068565 26.098434511025413 26.09996228591616 26.179614185334977 26.32275285123296 26.51343186011897 26.7349218905074 26.9702499925684 27.202732776824803 27.41648480108593 27.59688481438635 27.730984712937776 27.807848931776373 27.818815359668083 27.757672525637357 27.62075155637386 27.406935041704152 27.11758828256149 26.75642127009277 26.32930498617247 25.844946285821024 25.31488285840822 24.751425430836363 24.167241484962933 23.575128574358953 22.987807199092885 22.417738156962038 21.876967301314025 21.37699854515709 20.928693851099126 20.542196916642848 20.226854545863276 19.988685451626477 19.827809147793992 19.742697400733988 19.730927501571337 19.789359680012794 19.914284556233017 20.10154665316064 20.346649464831074 20.644846825455648 20.99122444735349 21.38077456772031 21.808465720000694 22.269308767942977 22.75841954217764 23.271077725666295 23.802781064184863 24.349293543136422 24.90668587770177 25.47136650793443 26.040101265222564 26.610019966305906 27.178608374699063 27.74368422138875 28.303356268664654 28.85596570364041 29.400009433313237 29.93404509595262 30.456577784244693 30.965928580507228 31.46008502768552 31.936533604556907 32.3920741516384 32.82261602759541 33.22295559714051 33.586534505455624 33.905259216436086 34.17113262137384 34.37668623015431 34.51356633189603 34.572645218906786 34.54421500573051 34.4181887072086 34.184308934010616 33.83236423877779 33.3524127712325 32.73501830617063 31.97647088391694 31.08919170680528 30.091977858079197 29.007350278783605 27.860973665920177 26.680983077913346 25.497233658685804 24.340490862036564 23.241579383129725 22.230509704450203 21.33560174540438 20.582625558487095 19.993979316539814 19.58792494758712 19.377901647130425 19.371706215861856 19.55528016551723 19.886018101378895 20.321016145365157 20.82044872202009 21.348106458879634 21.871789483276512 22.363548747861582 22.79977146274834 23.16111069250815 23.432977304178216 23.610643051227175 23.695559619591762 23.691399966386413 23.603372039986702 23.437695404948 23.201195569909004 22.900998470714573 22.544309102318753 22.13825972155033 21.68981440049997 21.205718029916216 20.69247917562874 20.156377489713524 19.60348767267609 19.03971326530639 18.470824804052118 17.90249808188765 17.340349395145463 16.789965702397183 16.256928552193394 15.746831433053318 15.265290846301554 14.817951889849187 14.410489463864279 14.048606368106682 13.73802956149558 13.484505708144724 13.293796855688896 13.171676699521623 13.123927400963186 13.156336369711154 13.274691812218872 13.48477520748536 13.792348217230693 14.203128602387093 + 28.33527887595142 27.86954849899274 27.449846212851163 27.093916853227523 26.818706493562868 26.639509797708513 26.56067400671856 26.572785862778847 26.663477970727847 26.818580373610157 27.02259103876634 27.25918002770136 27.511709533808254 27.76375133905888 27.99958353825164 28.20464956651698 28.365964551371874 28.472456661265994 28.51523427256422 28.487773239444078 28.386022130091735 28.208426793999383 27.955878868462374 27.631595659724617 27.24097550432952 26.79246919861005 26.297178186016005 25.766950520863066 25.214045908053286 24.65091366691101 24.089987114235797 23.543499373505007 23.023323764634743 22.540839956484938 22.106825061317043 21.731366895670345 21.423774886224777 21.190145090213154 21.030876209638137 20.944722987584086 20.92952369244088 20.982378775182337 21.099801113507503 21.277843236153963 21.51220651252791 21.798336649210945 22.13150905419201 22.506906786326255 22.91969295825548 23.36507864937476 23.838386644927176 24.335110673424367 24.850969285690233 25.381953116514637 25.924363999015608 26.474844260376525 27.030394507004228 27.58837829248958 28.146512232818996 28.702840365736908 29.25569181810625 29.80362111890474 30.345330749612973 30.87957573460288 31.405050222669825 31.92025608385363 32.423353536715716 32.91199373121676 33.38313304991864 33.83282867208975 34.256014696589084 34.646257874856126 34.995563073434255 35.29578220353224 35.53904268988804 35.71654491738919 35.818676940226396 35.835202227066624 35.75545502739008 35.568543685691814 35.263561910693234 34.82980766570362 34.25701990257188 33.54107938548052 32.694314686034495 31.73535797692924 30.686616395902227 29.573694288441732 28.424723489507 27.26961791925379 26.139269517495215 25.06470314208183 24.076208548069598 23.202467973795283 22.469698197251695 21.900826185087404 21.514717613891758 21.325477559766632 21.341387428745957 21.54621846751859 21.896707270468063 22.350052854066416 22.866532004035 23.41002716652475 23.94841249268438 24.45379075900622 24.902577030046753 25.275428609754314 25.55774596317064 25.744830451949696 25.838167854595312 25.841442497298406 25.75985754006799 25.599616898256865 25.36752344963478 25.070676217413386 24.716250823490885 24.311348949282312 23.86290387667467 23.377630452592275 22.86200905965947 22.322294402599034 21.764541143645168 21.194639638230793 20.618356223762763 20.041373682195175 19.469328609999494 18.907843463751412 18.36255198286101 17.839117501905047 17.343244335993077 16.880682940586407 16.457229904427745 16.078724028570473 15.751039779299724 15.480079286612991 15.271763806016029 15.13202518653431 15.0667974115141 15.082007721973719 15.1835662162333 15.377352164761355 15.669194604277479 16.064841772798683 + 28.858407928249836 28.387296665650567 27.965301641512596 27.610681456913944 27.340940698771547 27.171070103708438 27.10159119661022 27.12298354792432 27.223416324227603 27.389251691316023 27.60548993191966 27.85625050115369 28.125272069434622 28.396413824480867 28.654140424141854 28.883973977123 29.072898197546863 29.20970230897697 29.28525520948897 29.292703675770053 29.22759179498812 29.08790218300211 28.874022702228572 28.58864517830429 28.236677796950246 27.826288702191043 27.36808355357672 26.873411797221856 26.354090672438875 25.822188307141943 25.289820016544198 24.76896289605693 24.271292083449797 23.808040212934422 23.389879680475307 23.02682546343721 22.72813552669458 22.499978723098934 22.343044185707594 22.25638430258734 22.23811426299039 22.285591459230638 22.395568136254177 22.56432203643981 22.787769497443797 23.06156492561997 23.381189884063737 23.742034277495634 24.1394713435806 24.56892741623345 25.025946745055368 25.506251061910934 26.005793099001274 26.520802893879235 27.047825470163673 27.583748356066497 28.125817387678758 28.67163932585872 29.21916997513951 29.76668670718964 30.312744534609365 30.856115127226474 31.395708387675594 31.930476383751202 32.45929955379318 32.98085514538726 33.49346781004257 33.99494215659398 34.482376869503824 34.95195973686217 35.39874262481651 35.816395105275326 36.19699620850606 36.53221425210007 36.81373535344227 37.03228295794327 37.177738363526394 37.23932440836553 37.20579710783838 37.06564540562699 36.807298870971316 36.41934285321605 35.89075748427291 35.217065209059214 34.41052290369504 33.48962936544157 32.476694098809254 31.397258732060394 30.27942876136589 29.153131988534746 28.049320499895334 26.999133345611163 26.033037282887072 25.179963093325178 24.466455108835692 23.91585169874088 23.54751458013228 23.376124890806004 23.410318545132473 23.63190987742002 23.997299579686526 24.4639035347485 24.992213641233352 25.54631142752563 26.094243110453885 26.608249117549807 27.06484389559297 27.444745154402064 27.733381582846604 27.926089839861856 28.024375041067863 28.031910858079282 27.953869377601603 27.796410749978023 27.566287179271438 27.270544196447922 26.916303851928262 26.510615940404268 26.060364694296116 25.57221960853194 25.052620232363196 24.50778591417151 23.94374262980117 23.366360168716106 22.781394089624158 22.194527974320454 21.61141258580854 21.037699551412892 20.47906811977829 19.941244359633004 19.430012858061062 18.951221521008822 18.51078046813757 18.1146562428054 17.768862626497707 17.479449261506723 17.252489057104807 17.09406499806559 17.01025650853921 17.007124969468183 17.090697365352614 17.266946367526035 17.541764466388 17.920926702372924 + 29.471779364952415 28.995772570143043 28.571857298718157 28.21885161914369 27.954874603005205 27.793393252394903 27.731588049536626 27.76042114743484 27.86867373421801 28.04331156249798 28.269903178897724 28.533076648266544 28.816998690584054 29.105859212852998 29.384344151110017 29.638080313992884 29.85403746695766 30.020875102974404 30.129224067623895 30.17189627864011 30.144019025572113 30.043093577091387 29.86898089336247 29.623819988550782 29.312021250771863 28.941435002203345 28.522115043046785 28.064875072466236 27.581052788433873 27.082298739621155 26.580375112328035 26.08696961713914 25.61352806184259 25.171107466600045 24.77024977673015 24.420874434964432 24.132168459530554 23.91036382054756 23.756446595186947 23.669777835385784 23.648762967078685 23.691031291433816 23.79359050633417 23.952960336630262 24.165289189304506 24.426457322858152 24.732169434932374 25.078038903222325 25.459665220243355 25.872705487444666 26.312940213025637 26.77633311635745 27.259084198228145 27.75767500120278 28.268904762423503 28.789916049868413 29.318208464023748 29.851639066192114 30.388408343760993 30.927030719795795 31.466288835421693 32.00517105430818 32.542791835992084 33.07829477817007 33.61073822064683 34.13896332318516 34.661444469032894 35.176121703568676 35.68021469641225 36.170017423085575 36.640672410555254 37.0859229954274 37.49789230272409 37.868031290909244 38.18755199586244 38.44667757817565 38.63477146015096 38.74051958513976 38.75212089799931 38.65748588576286 38.44444264809813 38.10094964950804 37.61533826850713 36.98286210840466 36.21575351742708 35.33242497768487 34.35511388496258 33.30929914082854 32.22303154075566 31.126194696209208 30.049713387127188 29.02472618898444 28.081739042321477 27.249776209929063 26.555544861796182 26.022629386498316 25.670731474462137 25.514972053849025 25.56419266666695 25.79852525937552 26.174319963390282 26.649343677922918 27.184437103625527 27.744009014561716 28.296395839675768 28.814080111874325 29.273763764556296 29.656295170630173 29.94718098261676 30.141805278081716 30.24168073615427 30.250449300473107 30.17322507199057 30.016094527121535 29.785728561491936 29.489089557958383 29.133218495483607 28.72508864790411 28.27151374684057 27.77909967061353 27.254229828023288 26.703075474520155 26.131623255877276 25.54571333401147 24.95108251165783 24.35340782761769 23.758347125155247 23.171574080844586 22.598806095509257 22.045824268640136 21.51848538065681 21.022726375046787 20.56456225103002 20.15007853872001 19.785419630378456 19.47677418664181 19.23035863422173 19.05239943489797 18.9491143517394 18.926692387227117 18.991271440774035 19.1489120520885 19.405564883684917 19.76702648123436 + 30.188414538393175 29.708244663893854 29.28293187400409 28.93188959930251 28.673816038256525 28.51891836449725 28.462542096914945 28.496323547030507 28.60973722186775 28.790430994549236 29.02461588249639 29.2974971340134 29.593731413003326 29.897893768480145 30.194937813485186 30.47063310003571 30.71196500011497 30.907484385417135 31.047596907305643 31.12478455794583 31.13375527637238 31.071519479593647 30.937395386087395 30.732947710158722 30.462092078040836 30.132316027874836 29.753070313459123 29.334595217848843 28.8877101235457 28.423608869660576 27.95366174879233 27.48922936712832 27.04149215182373 26.621297683283203 26.23902633562986 25.90447400256735 25.626732221967732 25.412081282138764 25.261805400686683 25.17558098215958 25.152113679971414 25.18931721645651 25.284469104123584 25.43434668848942 25.635346875652466 25.88359258875077 26.175028510703438 26.505508090488643 26.87087317496273 27.26702702322912 27.690000900599237 28.13601396008916 28.60152571914322 29.083280138646785 29.578340114306368 30.08411109481574 30.598352538715055 31.119175999169293 31.645028765500943 32.17466217162843 32.70708388230624 33.24149366570768 33.77720233409266 34.31353366418902 34.84970918011379 35.38471568298125 35.91715533602066 36.44507795955305 36.96579495773696 37.47567399265924 37.969913147194056 38.442292883515066 38.88494382942402 39.28906475374195 39.64536627090867 39.94355700089021 40.172484634311814 40.32032008133963 40.37475003194736 40.32317724010571 40.152927410461594 39.85146123105516 39.406621470047575 38.81352770885784 38.0844639086053 37.23782134915949 36.29580221040997 35.28382643032347 34.229857236636505 33.16366280121413 32.11603123892492 31.117955670565873 30.199805405182175 29.390498580317274 28.716690928144686 28.201994793367028 27.86624217526128 27.72480543416942 27.786565007912767 28.03028201898107 28.412516263102436 28.89153885606112 29.4286929884227 29.98886303043086 30.540813410068033 31.057391639231895 31.515591858799695 31.896477716090587 32.1856951654373 32.37869517095634 32.47699028295159 32.48417165816741 32.40526886100274 32.24626388081958 32.01371385358225 31.714465940567617 31.355449794261276 30.943534655434465 30.48543946849072 29.987685559167886 29.45658246111587 28.898238461313408 28.318588397480898 27.723432206057907 27.1184786947926 26.509389995117196 25.901823122325453 25.30146601558479 24.714066320703516 24.145451990882677 23.60154349010517 23.088357969061267 22.612006227716627 22.178683570335206 21.79465579240359 21.466241514898535 21.199791905845558 21.001668513434854 20.878219494730214 20.835753978244167 20.880513668734615 21.018640111262332 21.25613530218942 21.59881017801985 + 31.023872540501042 30.540441453943735 30.114306279346025 29.765502015769965 29.51272405244619 29.361899458302283 29.308018701446894 29.34348000567992 29.45853892613564 29.641611455143376 29.879633748096005 30.158466188598794 30.46332745834522 30.779242999217306 31.091491792637356 31.386035725349235 31.649916908134834 31.871610072368547 32.04131946555355 32.151212355388815 32.1955841736323 32.170953323412654 32.076086579268356 31.911958683999096 31.682004476242223 31.39329278310712 31.05462626361706 30.675634133146193 30.26657760614695 29.838152611728955 29.401295850796433 28.96699945841784 28.546138235257033 28.149311931901174 27.786703485630664 27.46795249555674 27.2020259590509 26.995232754256524 26.84915072809108 26.763773479797866 26.738112988312587 26.77037684974681 26.85812439973532 26.998404468168538 27.18787756857641 27.422925111766254 27.699747844842385 28.01445522579945 28.36314690858371 28.74198697931678 29.147271086166732 29.57548616899177 30.023362138247837 30.48791458638115 30.966477442955934 31.456724404864424 31.956677977314047 32.464705037260835 32.97949796207974 33.50004053335637 34.02555800817584 34.555450927553366 35.08921238435194 35.62632858423618 36.16616258928494 36.70782112498755 37.250004251484526 37.7908375465287 38.32768622077892 38.85695028716534 39.37383953675191 39.87212663420274 40.343906005890084 40.7800884194946 41.17086203234302 41.505417013272265 41.77210241729787 41.958616296982775 42.05220430322221 42.039865321860006 41.90856216130579 41.64543492919922 41.238053433882 40.681588965612356 39.988484461794336 39.17719546365253 38.26993907837729 37.29208521190308 36.27147299617564 35.23767097073967 34.22119889617399 33.25272802765655 32.36227540315001 31.578406347487743 30.927458100810682 30.43279637358255 30.11411581537145 29.9867949360748 30.059566277969164 30.31014972848997 30.69555878715545 31.17473937663961 31.70970940593519 32.26599617438413 32.812948621991325 33.323919927459805 33.77631748077479 34.15151916355111 34.43538345910919 34.623455884131225 34.71724637232867 34.72027937589166 34.637474811619576 34.47467945860777 34.23830331410983 33.93504460042351 33.57168929231394 33.15497275863202 32.69149249169006 32.187662034710655 31.649697198823223 31.083626556971282 30.495319064366793 29.890522516984014 29.274907437289635 28.65411187165357 28.03378348671517 27.41961624389281 26.81737978831565 26.232940484334005 25.672273738156093 25.141467845079728 24.646720064240526 24.19432594299227 23.790663077093335 23.442170499133972 23.155324739520875 22.936613310895588 22.79250594209543 22.729423349720292 22.753702705228648 22.871558256659917 23.089034821515327 23.411948679532312 + 31.996224235413653 31.510494811551563 31.08403573512532 30.737520573557337 30.488249395812087 30.338254727795324 30.283115893029724 30.316086759599514 30.42829853924356 30.609029028758105 30.846030657035588 31.125906086432263 31.434517913427122 31.75741755526488 32.08027774266566 32.38931316289589 32.671674668134514 32.91580399864179 33.111738055175564 33.2513542539037 33.328551259067744 33.33936225796626 33.28200076692984 33.15684190225219 32.966863595296644 32.71864919078934 32.420315185877115 32.080842631448235 31.709894262142807 31.317625508118507 30.914495570553083 30.511083843411885 30.117915804448824 29.745301147072198 29.403185454207748 29.101015199199683 28.847599836528232 28.649252431413974 28.507833909864576 28.42365159465534 28.3960254678626 28.42346281791537 28.503813850162228 28.634410335578135 28.812189534749702 29.033805525656376 29.295729772563742 29.594342371422645 29.92601495201891 30.28718575401062 30.674426957758904 31.08450396730051 31.514426029707828 31.961487342991845 32.42329765757925 32.8978013122084 33.38328365651174 33.87836388777423 34.38197345308388 34.89331932267482 35.411831606972946 35.937095150138205 36.46876486961543 37.0064647096437 37.549670125295265 38.09757400439453 38.64893586298017 39.2019140139699 39.75388020819807 40.301215982024495 40.83908961467175 41.36121219635629 41.85959069021636 42.32481129273235 42.74652595821964 43.1134141848149 43.41336018112722 43.63365381975234 43.76120000876917 43.782733981496634 43.68503933832593 43.45516522635238 43.080684608079615 42.557062158244236 41.8970405256612 41.119247434047736 40.24598008458703 39.30257383851474 38.31670449300885 37.31764428274343 36.33549052600227 35.40038413097612 34.54173315884504 33.78745449104748 33.16324455606195 32.69188821462221 32.392613440602034 32.28049849676303 32.36391567343706 32.619874610404146 33.006076538315256 33.48232806158319 34.01151071636704 34.55997949780459 35.0978419088808 35.59911449729502 36.04175485756667 36.40756838080622 36.68271153908109 36.862861247766965 36.94952883781779 36.9461605994538 36.85754440666165 36.68936238233924 36.447844147147386 36.1395045581344 35.770952262209796 35.34875725583948 34.879367080775964 34.3690624149747 33.823943743073116 33.249941598453155 32.652843624959495 32.03833245603815 31.412029178252016 30.779537943639593 30.146488116059174 29.518571164705843 28.901570330399817 28.301381860042618 27.724027303797968 27.17565697151547 26.662545126551215 26.19107783827948 25.76773460693022 25.39906491002815 25.091660699158584 24.852125605684538 24.68704120655982 24.60293017347243 24.606215501082364 24.703174307107577 24.89988394502987 25.202154963846738 + 33.12593119278175 32.638785382074175 32.21226184482837 31.867598894137895 31.61861758475949 31.46533718779776 31.40423401510403 31.42951793787567 31.53329760267832 31.705814025447633 31.935735325873562 32.210502388447686 32.51671287757172 32.84052939185887 33.16809666988849 33.48595266323504 33.78141893697554 34.04295716985041 34.260480401504736 34.42560998503132 34.53187180651765 34.574828079982886 34.55214376814377 34.46359157990865 34.311722543909376 34.102559826253945 33.843502549632134 33.542847555114946 33.20961891660062 32.85338825167592 32.48409186070294 32.11184997246646 31.74679235580275 31.39889333590582 31.077817900813915 30.792779169882873 30.552392742684905 30.362947111381793 30.226569439820754 30.143871596158736 30.11447835771545 30.13719836749434 30.210178218530178 30.33104107257901 30.497011484796133 30.705028098302407 30.951845676855264 31.23412763007697 31.548529810324187 31.891775968086655 32.260724878368265 32.65242881947729 33.06418281572039 33.49356385719034 33.93845918722854 34.39708269953598 34.86797850558475 35.350010808096236 35.84233933392463 36.34437972375003 36.85574842981385 37.37619182024175 37.90549931460575 38.44340046810941 38.98944597211444 39.542872541007455 40.102451607073604 40.66632164584165 41.231803805004844 41.79520031038263 42.351574869346706 42.89451397722193 43.41587806249535 43.905891806172924 44.35366559513011 44.74738913804398 45.07453402700969 45.32207125215328 45.476696868121074 45.52506194529383 45.45400209393751 45.2507612975489 44.903256463875934 44.40754747603387 43.77685262463938 43.03010398409605 42.189760608716085 41.28114667830446 40.3317337446259 39.37038930691052 38.426612117913606 37.529772148113175 36.70837022266979 35.9893292245563 35.397325669535306 34.9541676442953 34.67822278234085 34.58389832780817 34.678960151902125 34.94002494754908 35.32570951518522 35.79687976297599 36.31748418134611 36.85490575753449 37.380200662131124 37.86822250204207 38.29763138843632 38.650787708042415 38.91424396424584 39.08385555775461 39.16114715283419 39.149481348884244 39.05349573641922 38.87868096612018 38.631054413398324 38.31691351602614 37.94265556950944 37.514652808028735 37.03917312022261 36.522337886401345 35.97010930069814 35.38830026233825 34.78260056631479 34.158613753894016 33.5218996341481 32.87801817611746 32.232571197757224 31.59123903014314 30.959810091949922 30.344202042800376 29.750473865222318 29.184828824649333 28.65360874898261 28.163280432110263 27.720415183672372 27.331662610988143 27.003719625894636 26.743295423342946 26.557072790164018 26.451665587159468 26.43357162607191 26.50911945963377 26.6844068460273 26.965225437933075 + 34.43330289550288 33.94682733799819 33.520761147111294 33.17637625818482 32.923322678663915 32.76162918188675 32.68877348551139 32.70002884579899 32.788590408187446 32.945771404334955 33.16126295570461 33.423448312336944 33.71975983780629 34.03706522298871 34.36206833146034 34.68170976278864 34.98355263954634 35.25614021522451 35.48931356788578 35.67447976900972 35.804823363113954 35.87545661802737 35.88350666478881 35.82815248759242 35.71153847175994 35.53906010864378 35.317370502643286 35.05404772617163 34.75743768236672 34.43648476415193 34.10055616887211 33.75926511870231 33.42229735871394 33.0992442159245 32.79944426988008 32.531834378479004 32.30479733260966 32.12456431058014 31.99350542742046 31.91252191054816 31.881534856196033 31.899651317189807 31.965315758057365 32.07644762551015 32.230566144029105 32.42490353539837 32.656507758325006 32.92233563712757 33.21933695191429 33.54452974069495 33.89506675062553 34.26829269648138 34.66179175706681 35.073424575163855 35.50135392808037 35.94405820263552 36.40033183456404 36.86927194808 37.35025054421502 37.84287172241931 38.34691356425248 38.86225444701666 39.388783676958305 39.92629642693147 40.474373026160016 41.0322426772946 41.59863166864288 42.171596109600394 42.74833914777365 43.325012528369456 43.89650222733962 44.45619771982828 44.9957460069077 45.50497350158084 45.972453224024 46.38592051871444 46.73250673484066 46.99897986936883 47.1719928469025 47.2383338393378 47.185171957901055 47.00029095778985 46.67236037001483 46.19840030020002 45.5923170810436 44.87350683841689 44.06472573757364 43.191386653676304 42.28072971862709 41.36106823717759 40.461048703403385 39.60893431166726 38.83192399014576 38.15551551212668 37.602918016528164 37.194516443167 36.94738808544539 36.87486978578153 36.98386732235402 37.25091862501679 37.635794784258756 38.10063971431416 38.61069120968579 39.13457918422161 39.64451555615865 40.116375859048254 40.52967166007963 40.86743820303158 41.11672982346423 41.27363881273067 41.33972451303944 41.318267800483405 41.21374345604373 41.03142795709364 40.777097296577544 40.456799020600165 40.076685718261785 39.64289945475056 39.16149827025071 38.63841703051963 38.079455753721845 37.49028917532139 36.87649184723117 36.24357357218708 35.59702049800446 34.942337765167025 34.28509022218166 33.6309383880844 32.98566753089135 32.355208417752536 31.745648946441275 31.163236457387864 30.61437102161769 30.105590377729527 29.643547431134678 29.234981318456008 28.88668297356499 28.60545591057108 28.398072571288075 28.271226084644297 28.231476673197623 28.28519124251677 28.43847393268892 28.697082210185236 + 35.92815037177371 35.4469731297456 35.0250694123246 34.681308789706335 34.42131564577674 34.24610237329695 34.154765920162035 34.14439906355966 34.20965946535811 34.343050402604476 34.53540060309244 34.776147212035205 35.05366441061839 35.35562646963734 35.6693911300309 35.98238866715125 36.28250219278684 36.5584256224283 36.79998719801374 36.99842839699842 37.146630348726255 37.239282381219844 37.2729898966056 37.24635809741261 37.16113280094283 37.022023423122874 36.83491096144557 36.6066220076953 36.344785932146785 36.05767696787086 35.754046859672684 35.44295327562942 35.13358844095744 34.83511149858352 34.55648699099969 34.30633066187704 34.09275158773315 33.921887343947 33.7963212221315 33.71722242290416 33.68479433209535 33.69843449757299 33.75688227695622 33.85835426014175 34.000668021936896 34.181354941217776 34.39776280998761 34.647148812899374 34.92676323845843 35.23392403014119 35.566082032578706 35.920876559827235 36.2961807270389 36.69013585419297 37.101174175540386 37.528029070389096 37.96973206475126 38.42559593070459 38.89518332022408 39.37826050064358 39.874735897685184 40.38458328814228 40.90774960895656 41.4440474566822 41.99303243871909 42.553865606253495 43.1251612526448 43.7048204061052 44.28985038833004 44.87617085570613 45.45840678653031 46.02966891796813 46.581316381518555 47.102741524687644 47.581995024441824 48.00640927210322 48.36286949540323 48.63808492758276 48.818866784993574 48.89240532413759 48.84654212342284 48.67015272845805 48.35343091641764 47.89499299062196 47.30976537175518 46.61774159331071 45.841857622871885 45.00726843193351 44.14060787839125 43.26925439543139 42.42062122369777 41.6214858631031 40.8973692863311 40.2719714547917 39.76666598893721 39.40005361855011 39.18757139638661 39.14115269592427 39.266641493586135 39.540803592261966 39.9247834946979 40.38219702897816 40.87976357819312 41.38755378563839 41.87913582150595 42.33162159828898 42.72561417338908 43.04505745320385 43.27767707332603 43.41988893919593 43.473286584161194 43.44097904924967 43.32716900387022 43.136887907270065 42.87564543167763 42.54920965778977 42.163456926812906 41.72426767705835 41.23746020253546 40.70875548088025 40.14376703124469 39.5480103225543 38.92692667573071 38.28591697905312 37.630380925387165 36.96575791994133 36.29756631206078 35.63143817104075 34.97314743718513 34.32862990921834 33.70399414625471 33.10552293368001 32.539665455600776 32.01302070373024 31.532312910885448 31.10435991047714 30.73603528256024 30.434224950747257 30.205778548502295 30.057455390969704 29.99586428907035 30.027395751860023 30.158144372951178 30.393816021951643 + 37.61432583550683 37.14269596299813 36.72845899686614 36.385865423906736 36.118744829517745 35.92873794563468 35.81576955055076 35.77799411656194 35.81178537049894 35.91177482849807 36.07085737172724 36.27988428120336 36.528284488229865 36.804646573608885 37.097083121982706 37.39360729147553 37.68250673578952 37.95270114367799 38.194070921860195 38.397746306714026 38.55634832589392 38.664175411437014 38.717331956051986 38.71387964472577 38.6551604497684 38.54514931865307 38.38893174689224 38.192552260967 37.962886891757236 37.70749777154268 37.43447530325734 37.15227302414328 36.86953968672553 36.59495225831533 36.33705255533815 36.10408914659242 35.90385523500091 35.742355437914746 35.622350040546756 35.54524855997132 35.511516915594164 35.52083000306424 35.57221429530019 35.6641799492507 35.794842430443474 35.96203393490264 36.16340496056156 36.39651631887233 36.65892173296519 36.9482409829878 37.26222336487142 37.59880105036437 37.95613179105438 38.332630308034865 38.72698765683243 39.138177854239515 39.5654510957686 40.00831297249437 40.46648920504439 40.939875540594834 41.42847259646597 41.9323055733415 42.45132889684777 42.985315976129044 43.533734393837356 44.09560696912081 44.66935927255708 45.252654330558805 45.84221544804848 46.433638311664566 47.02119381589232 47.597623377148615 48.153916860198315 48.67899867668097 49.16042431669959 49.5851920182014 49.94006066877805 50.21201894774679 50.388774284480434 50.45874641115105 50.41126698216667 50.23677888758476 49.92705612439282 49.48223975450322 48.91801565414457 48.254698942275084 47.51517748667122 46.72417398265951 45.90750895364028 45.091387115736254 44.30172513847006 43.56353417721109 42.900365901149385 42.33382631046075 41.88315760862362 41.56488491250601 41.39252174948359 41.376326181884224 41.52092420226817 41.80358518833178 42.187008653000646 42.636431829843794 43.12019101703407 43.60991991107835 44.080653824108076 44.510842214976414 44.88227152862113 45.17989987846417 45.3922781346199 45.51634681081007 45.55398752620978 45.5084527487591 45.383898435545916 45.18504755842317 44.91693999404549 44.584766336587656 44.19395934897469 43.75010366306651 43.25874909294531 42.725375889780786 42.1553868466472 41.55411688598739 40.92685579774476 40.27888004106907 39.61548977288059 38.94204757003068 38.26401569120411 37.586989182458936 36.9167226528578 36.259149109181465 35.62038980944419 35.006754639066095 34.42473299663583 33.88097556684285 33.38226763011303 32.9354946921075 32.54760119936163 32.225542935694996 31.976233371309682 31.806483774203482 31.722936310678428 31.7319886847202 31.83970812874515 32.051729426634516 + 39.49214694008417 39.03365095968769 38.62890172948529 38.2871776213626 38.012151339778164 37.80606210946351 37.6696268630041 37.60196951943431 37.60058923651348 37.661372953190245 37.778655863194686 37.94533154426835 38.15301138780373 38.39209766498718 38.651715655674394 38.920557933307904 39.187405737977016 39.441484087302136 39.67279493544869 39.87241592078199 40.0327554407961 40.14775705243084 40.213048600329174 40.22618737219644 40.18809241611483 40.10196638710074 39.972078628870065 39.80366334704235 39.602808320038385 39.3763230897737 39.13159184538554 38.87641602379109 38.618851189030565 38.36704206404804 38.12905872970035 37.91273603988767 37.72550860444795 37.573206186176265 37.458723680150854 37.38367705092346 37.34876921445235 37.35393388191523 37.39847182826751 37.48117846172702 37.60046217763315 37.75445332775304 37.94110378947707 38.15827713568535 38.40382933391766 38.675679782776434 38.97187235596907 39.29062599416309 39.63037427903449 39.9897933534552 40.36781752214296 40.76364187913343 41.176711359294856 41.60669569530471 42.05344987202236 42.51695979963708 42.99727306880146 43.49441480060825 44.0082887601733 44.53856406698241 45.084548014541696 45.645045717037405 46.218207546257794 46.80136562524616 47.39086102422396 47.98186377582704 48.56818840239613 49.142108331020495 49.69415675730665 50.21277825611275 50.685408138565855 51.09946313157662 51.44245318183903 51.70228142161455 51.867533833369656 51.92774265801954 51.873614022344505 51.69721092570409 51.39214915928265 50.96025484634103 50.41792579811701 49.785689394760524 49.08623412366006 48.343664808468304 47.58277699821701 46.82837235253649 46.104631804984464 45.434558089738545 44.839494146443236 44.33871919802473 43.949120100557046 43.6849320154113 43.55753962750927 43.57532806630666 43.74159773866749 44.03435868637951 44.4180097614732 44.85951775452964 45.32892518917601 45.79950289060111 46.247816109894956 46.65370727820361 47.00019781216525 47.273310702128256 47.46247414325004 47.565208928384905 47.58374334844193 47.52153268687483 47.38282034949164 47.1723249027207 46.89500943492836 46.55591782116692 46.160065560557456 45.712375213604304 45.21766077266633 44.68089861151822 44.10724719414592 43.50183987712182 42.869796616614465 42.216253793458584 41.54639878278654 40.8655061160976 40.17897232991024 39.49234693514059 38.81135736552706 38.14192624880689 37.490179859275806 36.86244711877259 36.26524897829949 35.70527840009265 35.189371440448156 34.72447008396031 34.317577484658955 33.97570612175518 33.70581907878901 33.5147642149642 33.409200434934014 33.39551460542273 33.479726949963876 33.667379682763936 + 41.558195618731084 41.115570129831156 40.720228089683985 40.378384084249475 40.094067700332914 39.870085745911936 39.707909449103184 39.60758924737607 39.5677038628649 39.585349172141285 39.656170895400635 39.774443403740484 39.93319504167852 40.12437836508367 40.33908169085962 40.5677747149454 40.80043535527272 41.02674606116814 41.23690248951525 41.42199113214486 41.57425805820398 41.68733079520304 41.75638788233499 41.77852819994779 41.75421539311559 41.68585270610006 41.57687540051301 41.43168156465904 41.25553797732904 41.0544629504771 40.83509111098373 40.604525025969146 40.37017824943235 40.13961381218459 39.92038144460427 39.71985597366728 39.54507081086951 39.40163698425595 39.29253575162854 39.21954963511912 39.18358729907682 39.18481731628442 39.22279678711016 39.2965931117279 39.404897887923795 39.54613232784735 39.71854381587162 39.9202933196144 40.14953336288293 40.40447621093407 40.68345183558136 40.98495514383088 41.30768188585288 41.650552617301265 42.01272408328597 42.393587418450835 42.79275261810301 43.21001882543706 43.64533009478018 44.09871642575296 44.5702200149369 45.059806839216655 45.56726387113871 46.092082438492696 46.63332848986495 47.189500832091234 47.758378785818145 48.33686118669519 48.9207992686597 49.504826728113436 50.08221922031116 50.64504370304586 51.183976027038405 51.68775656760458 52.144056555755824 52.54054473614452 52.865242682601675 53.106840358273324 53.25498884978118 53.30055947653392 53.23585882829067 53.05479027196275 52.75301972024902 52.33415335370123 51.81520737454951 51.216775917838625 50.561171493936506 49.87168322315326 49.17187258543448 48.484927231484015 47.833087734144534 47.2371565036803 46.71609273440331 46.28669241834067 45.96334831237326 45.757881369087904 45.6794325680348 45.73440229372052 45.9247093492426 46.22929552888235 46.61436019224813 47.04865899172832 47.50397647608768 47.955239100919044 48.380549754467744 48.761146980946805 49.08129129497247 49.328080185152295 49.491838431003984 49.57070451329575 49.56730522253446 49.485358801681045 49.3292614690365 49.103794898405035 48.813912306079736 48.4645883524972 48.06072102184219 47.607075916148325 47.10826511172869 46.56875397230893 45.99289018182152 45.385006129016006 44.749849668407094 44.0923995591042 43.41771711763773 42.73097755038892 42.03750200927042 41.34278599488817 40.652522037363596 39.972614984168125 39.30918867438746 38.6685832428944 38.0573427373107 37.48219310837851 36.950010917794984 36.467783270420966 36.04255950155697 35.68139502484718 35.391287471609694 35.17910483668217 35.05150480743719 35.01484381956842 35.07507369421228 35.237620720899976 + 43.8052319113311 43.37963351559694 42.99236404997836 42.64877971665171 42.35325885927742 42.10914383304699 41.91862010053703 41.78261852679093 41.70074751985209 41.67126065239792 41.69106410208174 41.75576670635955 41.85977370015162 41.99642336231236 42.15816391969163 42.33676623138234 42.523566087738786 42.709728492759254 42.886522336921715 43.045497064784044 43.178816803618346 43.27983351135879 43.34330543094767 43.365923430885786 43.34765120898887 43.29007585064775 43.19578323516939 43.06831206519114 42.912077753282226 42.73227093646781 42.53473531064834 42.325829550990846 42.112277890030605 41.90101350027539 41.699018221655706 41.51316144456293 41.350033533386515 41.2149814979704 41.11101931277537 41.04005047041845 41.00315261932137 41.00069989990617 41.03248258224928 41.09782175856562 41.195677572361426 41.3247499528104 41.48357112125205 41.67058929541585 41.884243078740155 42.12302602303509 42.38554082204569 42.67054255401781 42.976970359909004 43.30396693174584 43.650885199433816 44.017281646877116 44.402895759507054 44.80761520342159 45.231426458883575 45.674350776127135 46.13636548939925 46.61731091913896 47.11678331960178 47.634014602586184 48.16773990539035 48.71605449671952 49.27626205743928 49.844745356689614 50.41708306031183 50.987871964068695 51.550455759061364 52.09681691547576 52.61746531955978 53.101108377547575 53.53558974647414 53.909011047984535 54.210099816364256 54.428530488297795 54.55521543083294 54.58255425686017 54.50463036654376 54.31734503659464 54.018546546773685 53.61364218326054 53.12012591647529 52.55847881563315 51.95043918384718 51.318275724210054 50.68411612992891 50.06934955497534 49.49411519232658 48.97688318292197 48.53412860209659 48.18009454221234 47.92663646268859 47.783137056286634 47.75647884944028 47.851060518729184 48.067419626682764 48.38557192597329 48.77357064348788 49.20196498068371 49.644258074593424 50.07698932247303 50.47974640751492 50.83510964799107 51.12853045659785 51.348144936513634 51.485156938955306 51.53833857194602 51.510757709122636 51.40645398681944 51.2300459692954 50.98645445964496 50.68070117812783 50.31776886353194 49.90251153566181 49.439605743233685 48.93353522436178 48.38860260591959 47.80896262808865 47.19867196339983 46.56175107066532 45.90225626854073 45.22461783551985 44.53385646454311 43.835208238150614 43.134106171987646 42.4362002159786 41.74737014413755 41.0737300594429 40.421623651581946 39.797609751157104 39.2084380847864 38.66101541593764 38.16236242701134 37.71956173766855 37.339697350219396 37.029785562274284 36.79669699724228 36.647068892689106 36.58720618431521 36.62296927088309 36.759643455217784 + 46.22222660267817 45.812749469149566 45.431560729521664 45.08408602500331 44.77502967174117 44.50823598962675 44.28656208394102 44.11176973119257 43.98444290839012 43.903936664469775 43.86836191365123 43.87460936790324 43.918414268674915 43.99446188855689 44.09653202365499 44.21767896594316 44.35044181314048 44.48707852145353 44.61981590737743 44.741106921665704 44.843886000127206 44.92181128677116 44.96946405121828 44.98318904136004 44.96239785097898 44.90785348011019 44.82127961955384 44.705334867524094 44.56355545121367 44.40027037937294 44.22049343713312 44.029796633965205 43.83416965029467 43.639869531885324 43.45326439941325 43.280674329302876 43.12820614364705 43.000896738921426 42.9017343463584 42.832692596495825 42.79497615886241 42.78913030666862 42.815150242321046 42.87258742185398 42.96065089173481 43.07830219644325 43.22434277681515 43.397493001526044 43.59646209672141 43.82000829553191 44.06698854795664 44.33639713440715 44.62739252961371 44.93931187916902 45.27167248604241 45.624159762866384 45.99660118921185 46.38892592167128 46.801109838531765 47.233105961511754 47.68476038833431 48.155714099470586 48.645291282796784 49.152375169665234 49.675306504808724 50.21197223461863 50.759600721024135 51.314535512102445 51.87212031202485 52.426592484177725 52.97098973951206 53.497074640919266 53.99526247377224 54.454356819283646 54.86255003693009 55.20855808262066 55.4819951946488 55.673695051155626 55.77599397499637 55.78296378314786 55.69058298918419 55.49683692147079 55.201803602429145 54.812631766535105 54.347105664118885 53.82538193401314 53.26840898249953 52.69722886061775 52.1323514353835 51.593216321078145 51.09775131944185 50.662029901311335 50.30002486194713 50.023450907183424 49.8416856730765 49.76175653170965 49.78837937441712 49.92403519709606 50.1679434959146 50.50128954487115 50.893983021370474 51.318312996523 51.74941484486888 52.165333384331085 52.5470240782825 52.87829357188327 53.14568004591852 53.33827329943598 53.44809858299829 53.47455290848555 53.42117572973176 53.2923824108888 53.09308566464178 52.828428550605445 52.503590202909855 52.12365145458784 51.69350977872121 51.21783474748967 50.70105662403923 50.14738180598528 49.56082967059603 48.945285964513616 48.30456827604158 47.642499375642615 46.96298436764552 46.27008772260908 45.56823063081417 44.86263107981091 44.15888764984422 43.46284776087448 42.78060852476963 42.11850958949831 41.483116302732405 40.881192950810565 40.31966610018514 39.80557824190391 39.346031991175224 38.94812500872384 38.61887558382153 38.365138456944436 38.19350998107251 38.110221155460266 38.12101645906414 38.23101364082423 + 48.79411731775818 48.39835636617544 48.020739733410124 47.666829826113876 47.341632845013464 47.04945926459663 46.79379216878871 46.577170878642804 46.401096248143766 46.265963327497 46.1710261476756 46.114398191847556 46.09309072930035 46.103089649339076 46.13946981077698 46.1965442890806 46.268044333884944 46.34732442016755 46.42758555811399 46.5021090822687 46.56449252015017 46.60887887865236 46.63017506174222 46.62497860221086 46.59239268923005 46.53243442362207 46.44595613615925 46.33471814024207 46.201352335916326 46.04929489832667 45.88269347641677 45.706293343278 45.52530699922484 45.34527155781243 45.171897886072635 45.01091497608001 44.86790750588889 44.747555942324205 44.65276019529738 44.58550852697806 44.547085900533126 44.538169459061635 44.55892622683731 44.609109788614106 44.68815351585481 44.79525850411617 44.92947480411705 45.08977480964775 45.275117844508294 45.48450509961016 45.71702413666063 45.971882217710366 46.2484277565797 46.54615923062525 46.864720947535744 47.20388513700808 47.56351993449756 47.94354294623446 48.34386023430348 48.764290742552426 49.204477617402766 49.66384255376908 50.14163979013254 50.636715943841324 51.1473634864999 51.671207348274606 52.20509370977417 52.74498415476277 53.2858588035528 53.821632592783814 54.34508951425856 54.84784036585446 55.320292633131274 55.75148129367175 56.130120066102386 56.44570990362732 56.68891328547696 56.851868916042136 56.92845975663714 56.91452170390867 56.80798185064156 56.60891766475209 56.31959307991903 55.94875347844707 55.514240644689465 55.03564750638738 54.53290398816124 54.025622947547255 53.53253363356515 53.071014164658465 52.656727413501855 52.303358418796144 52.02244634315211 51.82330025170947 51.71298564545605 51.69636765372396 51.776196855243334 51.95322454269429 52.22548543387588 52.575391201458984 52.974658936997315 53.39720403265217 53.81964343259718 54.22135357673844 54.584474910720445 54.893861986423936 55.13697752976972 55.30372862870139 55.38686138430799 55.386361223950814 55.30625443315472 55.15137941804913 54.927014542065514 54.638613212400415 54.29160974451305 53.89128459472499 53.44267920158351 52.95055202114849 52.419368472649076 51.853318460911154 51.25635591515316 50.63225538082311 49.98468113249601 49.317264566998595 48.633685826691405 47.93775574230396 47.2334943241346 46.525202215775735 45.81758429480052 45.11619786810095 44.427113252512186 43.75665839552554 43.11139682478587 42.498098060527326 41.923697890532054 41.395248554116534 40.91985894113828 40.50462484304656 40.15654908930843 39.88245106971006 39.68886469952849 39.5819233630157 39.567229819625716 39.6497064286126 + 51.501870593089755 51.116853145872135 50.739938437289204 50.37681326819908 50.03275929490979 49.71251427237776 49.42013787418323 49.158889257222675 48.93112253041558 48.7382057681272 48.58046843149551 48.45718104269553 48.366569731013094 48.305866881328456 48.27139762237636 48.25870035955296 48.26267805569004 48.27777556491437 48.298177098389246 48.31801690849377 48.331595571353354 48.33359386433013 48.319292106464154 48.28565959068698 48.23177099062398 48.15734032310712 48.062675367000224 47.94874884910313 47.81724367102065 47.670640075543815 47.51218403517364 47.34575712703252 47.17575511578535 47.0069543486899 46.844367721316445 46.69309398781355 46.55815944585658 46.443842172726455 46.352887853613076 46.28723988285515 46.24821256717823 46.236571248442864 46.25261710431131 46.29627293389403 46.367167077351716 46.46471325645043 46.588184591413615 46.73678038269245 46.90968447706015 47.10611419481582 47.32535890371993 47.56680740596356 47.8299633730496 48.11444813207511 48.419990184431796 48.74640093085432 49.093536190125 49.46125848671945 49.84948210636763 50.25807451032609 50.68671449621621 51.13480030385359 51.60135099513328 52.084904083305986 52.58341189073759 53.09413941404756 53.613566839605454 54.137300297666144 54.65999498226903 55.17529540198961 55.67579826063832 56.153044283829026 56.597531633103465 56.99866493424445 57.345843932418425 57.62950961771402 57.8415098698589 57.97539982964945 58.02668633227555 57.99300386736924 57.87421175077083 57.67240521143686 57.391895394154126 57.042792690539294 56.64272153420753 56.210448376478396 55.76464803976438 55.32331027753601 54.90324685541816 54.51970564918265 54.186090870828494 53.91378239846165 53.712042629093425 53.587996459098214 53.54666891197906 53.59106539270942 53.7222812153887 53.9396294707148 54.240170432851514 54.60757441640084 55.01526706110783 55.43861756144755 55.855510479498754 56.24641471996599 56.59440771224731 56.88515059152527 57.10680975659987 57.24992046637818 57.307804336750166 57.28096805548453 57.173921348160604 56.991962551156234 56.7408036595988 56.426298592901 56.05424101194278 55.6302220580546 55.15953925077925 54.64714854636861 54.097652303177455 53.515316626695814 52.90411224335784 52.2677736401453 51.60987168067212 50.9338952632187 50.243337839144004 49.5417847954077 48.832997866244625 48.12099292096819 47.41010771512928 46.70505651558523 46.01100528229258 45.333952067838524 44.68044422652788 44.05724695064677 43.47129437524757 42.92963604947171 42.439372925949485 42.00758277432612 41.641234743511596 41.347092494810646 41.13160492387645 41.00078301840888 40.96006091368301 41.01413674188421 + 54.32366807054067 53.946105587746665 53.566835975187985 53.191655145869916 52.82609031961084 52.47526371073564 52.14375780712695 51.83548908912638 51.55359608078656 51.30034726044433 51.0770737433195 50.884130796517105 50.720891181419546 50.585772078497776 50.47629598531162 50.38918454939302 50.32048286935393 50.26571043793053 50.22003367636859 50.17845398195874 50.13600443217235 50.08794780021814 50.03000722341568 49.959580999607624 49.87575905584074 49.778062927928865 49.666472878057114 49.54150789697072 49.404279973960655 49.25652017929442 49.10057531123095 48.939375066456876 48.77637029121864 48.61548177030617 48.46098137748587 48.31730152871691 48.18887666539924 48.07953742438977 47.99180691174525 47.92752093667662 47.88796861486002 47.873955925072956 47.88587638613122 47.923784746115274 47.98747043807335 48.07652822946454 48.190424004395425 48.32855399799167 48.490296080074025 48.675051887287545 48.88227875221849 49.11151049433899 49.362367772035 49.63458162587512 49.928026008301934 50.24265157573203 50.57844196438258 50.935361257439496 51.313290296254756 51.711953166961315 52.1308354494747 52.56909606399826 53.02547480221586 53.498197901094805 53.98488432363365 54.482455770640804 54.98705387712679 55.49396855916725 55.99758207956984 56.49133409305335 56.96771370398027 57.418285400889644 57.833746159127564 58.20400830966927 58.51931006022916 58.77116734568159 58.95272161465238 59.05901693116681 59.08721151388227 59.03671182025473 58.90922018647278 58.7086907374518 58.44124742945078 58.1180486180553 57.75618907981617 57.37332771317811 56.98664465029372 56.612325817282205 56.26515823113515 55.95823647301988 55.70277325352636 55.50800118231332 55.38114910325629 55.32747478480992 55.3503362789749 55.45128658912199 55.63017994160253 55.885282320106676 56.21297197062563 56.59820548619025 57.01597343289672 57.44287069615533 57.85777578098999 58.241948931825306 58.57909426133876 58.85537740312047 59.059390105446276 59.18205412962671 59.2170755292382 59.16538187015392 59.03194076604129 58.822533145075454 58.543365278766444 58.200780225681015 57.801038306897304 57.350159167440644 56.8538178733816 56.31728752909415 55.745421142422195 55.14266588938153 54.51310346114863 53.86051073251925 53.18843550581475 52.50028251721235 51.7994052328931 51.0891992248298 50.37319313252558 49.655133427536505 48.9390594407855 48.22936541816411 47.530846753294455 46.84872800683055 46.18869365279465 45.55717206281958 44.96107589350687 44.407439083512834 43.90333986984825 43.455821181468636 43.07179949432767 42.75796149532971 42.520647541673206 42.365720488864625 42.29841805330262 42.32318459390909 + 57.235545213444055 56.86202121711738 56.47733813049706 56.08738141018091 55.69788939111751 55.31432115454449 54.94172326660003 54.584601867931134 54.24680569473311 53.93142539466335 53.640714045586755 53.376033094631495 53.13782702734481 52.92562898336253 52.73809829969683 52.573089639191934 52.42775201059813 52.29865467238337 52.181935699111015 52.07346793749815 51.96903624239609 51.8645193037279 51.75614351746816 51.64177032930449 51.52055076757607 51.39189766594435 51.25555609773437 51.11169000787992 50.96094664309039 50.80449594405122 50.64404317162879 50.48181418030859 50.320513868280756 50.16325937463575 50.013490522598154 49.874860802491426 49.75110947731086 49.64551990179328 49.560286302602464 49.49705247164175 49.45701677355476 49.44097145882907 49.44935904115169 49.48232502661949 49.53977991681778 49.62146734274494 49.727018935497476 49.856010165179626 50.0080079997042 50.18260987072716 50.37947256896403 50.5983300089919 50.83899912233474 51.101373458012226 51.385404389946885 51.691070147054816 52.018333190343604 52.36708675847464 52.73709168748264 53.12790488297844 53.53880108889787 53.96868986398992 54.41602995730827 54.87874358102289 55.35413342816196 55.83880568928531 56.32860279804594 56.818550189023746 57.30282198320901 57.77473121915698 58.226751002251866 58.650573719287365 59.0372105470358 59.3772160249058 59.66180298682434 59.88367298822463 60.037336264803606 60.11935576727799 60.12851588885486 60.06590517516639 59.93490597156182 59.74108840886102 59.4920612428984 59.19963322146004 58.88002608791196 58.54949764322918 58.22349597055843 57.91623972935775 57.64041612297443 57.406989877685355 57.225109058881486 57.10208829222815 57.04344728063531 57.05298249657199 57.132852415350754 57.28366122484631 57.504531969630705 57.79316676184636 58.14563789624704 58.54823635140764 58.97733847558642 59.41048698941897 59.8272270428504 60.20925302666444 60.540528415552096 60.80736480481272 60.99844659319845 61.104789512939455 61.12024739674239 61.046033028092985 60.887520717164705 60.650978355203854 60.34315549228714 59.970967152945335 59.54124679061512 59.060563566684884 58.53509787622147 57.970568192645494 57.37220192533329 56.7447430173933 56.09248933881562 55.419353423569646 54.72894064544907 54.024639446187656 53.30971867722412 52.58742748400718 51.861093465286906 51.13421511131224 50.41054480104944 49.69415895201562 48.98951228869881 48.30147363372297 47.635341121346684 46.99683526344119 46.39208112724299 45.82777583630537 45.310948424443374 44.84858944123472 44.447542913760536 44.11439647692202 43.85535758552467 43.67611442832458 43.58167984637175 43.576214483675784 + 60.212007040438415 59.83916953540361 59.446197794304986 59.03904169856203 58.62361073468766 58.20564781653952 57.79059948877324 57.383488578777126 56.98879452584493 56.61034654382699 56.25123447262781 55.913741641403014 55.59930331317102 55.30849333174587 55.04104048504271 54.79587488211901 54.571203370880326 54.364611759969286 54.17319041392586 53.99367872483593 53.82262308013166 53.656542289765824 53.49221607721113 53.327984363658054 53.163105188687204 52.99695831009028 52.829138191252895 52.659545245603724 52.488458315939994 52.31658525086463 52.14508944846221 51.97559130756771 51.810144605185236 51.65118885630129 51.50147967104182 51.36399997888482 51.24185255353699 51.137765454904375 51.05352375244855 50.99048326571536 50.94965821686838 50.93174793031014 50.93717468651541 50.96612885195533 51.018617810111586 51.0945156226229 51.19361073836314 51.31564943650754 51.46037303890218 51.627547262043215 51.816982405101456 52.0285433920702 52.26214900574271 52.51775996920913 52.79535584552736 53.09490103577362 53.41630045736214 53.759345776817206 54.123653354417065 54.50859533517986 54.913225597311815 55.33620255415565 55.7757111099534 56.22938640595173 56.694242374255325 57.166608553490626 57.642079120238776 58.11547865487834 58.58084978321928 59.03146849885235 59.459893645584316 59.858057680483704 60.21740583319013 60.52926235788291 60.78593083688793 60.981381276679954 61.11153174820229 61.17444896296052 61.17046393522669 61.10219377860677 60.9744651804564 60.79414033236756 60.569896192873045 60.31372237361672 60.04060108380995 59.76508944145707 59.50067360162706 59.25946238467898 59.052001817979225 58.88719582524559 58.77231096090076 58.7130385934339 58.71358660836563 58.77677456135018 58.90411100286221 59.09583886932627 59.35094358943305 59.66712788833975 60.040614694551905 60.45912603392765 60.90022394044756 61.34207959239463 61.764532430975954 62.14930610177706 62.480206765112136 62.743283512933246 62.92693136206001 63.02191996429575 63.02197012576035 62.92840755777918 62.74693318699376 62.484283796166466 62.14778492240392 61.744995783050456 61.28342393175533 60.770307947389654 60.21246385391577 59.61618908109766 58.98721665196783 58.33071183100586 57.651303525194926 56.9531431193444 56.2399839856925 55.515275511361146 54.782266055602626 54.04410974424677 53.303972428117234 52.5651324957119 51.83107257016688 51.105558469620235 50.39270219461476 49.69700613979872 49.02338620910256 48.37717202934725 47.76408298203317 47.190179276584075 46.661790528195155 46.185547685330604 45.76818461610605 45.416167025567404 45.135544347579774 44.931802929450974 44.80970185620661 44.77308804865825 + 63.226674592343564 62.85142334831641 62.44764717047543 62.02132864786811 61.57850220769708 61.12513568427385 60.66700597388563 60.209574389921 59.75786656215556 59.31636179240002 58.888896628473645 58.47858704005269 58.08777297802377 57.717988292353766 57.36995800404119 57.04362381750043 56.73819757247329 56.452241126630604 56.183769991099155 55.93037696977282 55.68937113348104 55.45792673833141 55.23341548001157 55.01465702053192 54.80106142893224 54.59204320689126 54.387123250488486 54.18602285791797 53.9887423004085 53.795620587561956 53.607373965770776 53.42511168321856 53.250328586537634 53.08487513570419 52.930906396143754 52.79081246222442 52.66713039769514 52.562074166211644 52.477008905572035 52.41297770175817 52.37077835977967 52.35097771673264 52.35393691544 52.37984405055701 52.42875091877734 52.500610951653925 52.59531576233628 52.71272808564883 52.85270923076287 53.015139497515996 53.19993033305582 53.40702732679538 53.636403459665054 53.8880423381969 54.161911454008326 54.45792581328293 54.775902577714895 55.115507648006904 55.476195405054575 55.85714310629787 56.25718172162511 56.67472529309047 57.10770122548394 57.55348427085692 58.008837368807534 58.469862952117055 58.93196882558867 59.3898532686213 59.837514583189055 60.268290880208646 60.67493642591375 61.0497412965547 61.38470596746839 61.67204144455921 61.90523471028955 62.079576153827944 62.19239215054334 62.24319149028192 62.23371770217897 62.16790068106004 62.05170640101952 61.89288955601694 61.70069805873587 61.48677329263141 61.26447770253368 61.0463690083841 60.84375426948677 60.66651379864494 60.52304521068274 60.42030381218301 60.36390854975664 60.35827922424894 60.40677094909676 60.511775856795516 60.67476947222411 60.89628928094606 61.17584483887983 61.51177108291002 61.90097007803809 62.332767781762705 62.78571229882189 63.23825277435956 63.67011640557183 64.06261422343088 64.39893902298812 64.66442772415793 64.84676165116906 64.93608190464124 64.92565417190971 64.81670772602996 64.61515834460313 64.32816715689306 63.96364729412274 63.52985861391387 63.03507302577397 62.487312352396074 61.89415654660102 61.262617009135006 60.599067758844356 59.90922617064386 59.198174711234664 58.47041533735359 57.72994876357989 56.98037148482947 56.22498413231632 55.466905381338904 54.70918618829353 53.954919618055044 53.20734195551018 52.469921207842624 51.74642952572979 51.04099652108856 50.358140942733264 49.70277868249792 49.08020560549139 48.49605420536994 47.956223554414166 47.46678243028436 47.03384479245997 46.66345832484933 46.36145019586749 46.13307725750908 45.982815777686774 45.9141692186536 + 66.25293742725025 65.8725971164827 65.45601845304375 65.00917767229582 64.5381812531511 64.04915702060036 63.54813719365089 63.04093850619755 62.53304383378639 62.02948996496567 61.534766152445684 61.05272785102881 60.586529594980256 60.13858030026542 59.71052342338237 59.303243406608054 58.916898736962175 58.550980797208915 58.204396549224256 57.87557202050903 57.56257261768201 57.26323551423372 56.97555099780098 56.69881049185334 56.43261921497406 56.176486881542175 55.92993063995176 55.69257016006409 55.46421049178629 55.24490915706823 55.03502474517486 54.83524519738858 54.64659494521627 54.470421060739916 54.30835954968436 54.16228383654836 54.03423500938806 53.92595621840738 53.83838941053707 53.7722480105106 53.72808858544093 53.70631416456726 53.707188150938535 53.730855554517326 53.77736851565436 53.84671337675231 53.93883687326342 54.053669338157825 54.19114313887674 54.35120488910191 54.53382029828082 54.73897083943435 54.96664173002077 55.216801030873015 55.48936997352574 55.784184925747994 56.1009516985472 56.43919318620142 56.79819161650073 57.176926975663285 57.57401346746471 57.98763617648777 58.41549043915816 58.85472679081759 59.301904757661845 59.75295919981687 60.20318338043734 60.64723342069588 61.07915927537547 61.492467787682145 61.88022369735196 62.23519460685041 62.55005536229362 62.818006848166654 63.03378560589647 63.19402101172948 63.297408095963206 63.34478916383507 63.33913283226981 63.28540684902841 63.190347365532766 63.06213422206365 62.91001914911718 62.7447228602505 62.57760466067276 62.418932305884965 62.277634444299025 62.161270594944504 62.0761162495204 62.027329468584654 62.0191588741471 62.055150626301334 62.13831408954704 62.27121235325057 62.45595409295675 62.69407659580455 62.986324945271114 63.33234792999592 63.730313298438354 64.17142332990922 64.63504127836607 65.09952589913068 65.544063395323 65.94908821961842 66.29669550948147 66.5710299876679 66.7586017589803 66.84850540610395 66.83319253937788 66.71355021602959 66.49556351025566 66.18674321243633 65.79557581617588 65.33105712847171 64.80229736968532 64.2182038640383 63.58724164547203 62.91726790577009 62.21543322862894 61.488140832845964 60.74105433920213 59.97914459754561 59.20676659797365 58.42775822238721 57.64555340701036 56.86330307818789 56.083997939933994 55.31058781923813 54.54609282739208 53.793702099271904 53.05685635652417 52.33931102805078 51.645177164547114 50.97893790359306 50.34543876786538 49.74985059465456 49.19760438195439 48.69429778201599 48.24557337648504 47.85696924611162 47.53374274636385 47.280667843503466 47.10182063508206 47.00032120350347 + 69.26458825008336 68.87705942724972 68.44633121416605 67.9783267102526 67.4791648029693 66.9550625577207 66.41222752696292 65.8567445922271 65.29446134255392 64.73087633279714 64.1710347046704 63.61943557119118 63.079955254588306 62.55578993655419 62.049420549460336 61.562601841563506 61.09637653206721 60.6511143842515 60.22657492205194 59.8219914538006 59.436173100461076 59.06762070349381 58.71495767189516 58.37793445235726 58.05639166667669 57.74998787524972 57.4582994458933 57.180915200421765 56.91752191039185 56.667976989385586 56.43236543813433 56.21103893449862 56.004635879114964 55.814082166316744 55.640573409540075 55.4855402784142 55.35059585563404 55.23705713004278 55.145446475426894 55.07613804753994 55.02942942136948 55.00553528702244 55.00459122311418 55.02666461409832 55.071769941099504 55.13988590702172 55.23097212844357 55.34498342107729 55.481880011273276 55.64163231673159 55.82421925156679 56.02961932199185 56.257794087630835 56.50866386862157 56.78207587926465 57.07776526450906 57.395309806331454 57.734079354497176 58.093181323099714 58.47140388489395 58.86715879517659 59.27842609180747 59.70270325349399 60.13696175846006 60.57761437029574 61.02049688161405 61.46086845541925 61.893435094281536 62.31240110034874 62.711553610370636 63.08438532573476 63.42426031320638 63.72464121392887 63.979804666466435 64.18577388575493 64.34050076767592 64.4439686047113 64.49819861761245 64.50714642843242 64.47648839683389 64.41330499032266 64.32567607380712 64.22223367083818 64.11218189380881 64.00450177254686 63.9068961902892 63.82573889855397 63.76620464005418 63.732505065404986 63.72818631382261 63.756438355162885 63.82036562330609 63.92311936519246 64.06802973277424 64.25862859497792 64.49830483227795 64.78983621222427 65.13485942113017 65.53331534319443 65.97851884259245 66.45047021640453 66.92705361350949 67.38654591154364 67.80813418115801 68.17243061439251 68.46195474190299 68.66155720474525 68.75876461180793 68.74473163804943 68.61971232386091 68.3896273423013 68.06223054466525 67.64653730753572 67.15228825779836 66.58948381958935 65.9680016531359 65.29730022866784 64.58620593698649 63.84277705442464 63.07423537677071 62.286955122409175 61.48649844863108 60.67768731004853 59.86470214434045 59.051198790880676 58.240435990491555 57.43540669745945 56.63896722377121 55.85395892985241 55.083317795310755 54.330167774268446 53.597894387946624 52.89019554958633 52.211107160553915 51.56500155880804 50.956557432388244 50.3907003201798 49.872513303559586 49.407117950930555 48.99952603684521 48.65446306878969 48.376165301198796 48.168152820490086 48.03298110459947 + 72.23641758287985 71.84029878931223 71.39482711586489 70.90581805782628 70.37933682268391 69.8216136973861 69.23894738270015 68.63760037520909 68.02368996032753 67.40307885073882 66.78126978298145 66.16330844435822 65.55369893113634 64.95633554002154 64.37445408506629 63.81060514109549 63.26665068259147 62.74378456197322 62.242576206605804 61.76303586489072 61.304698752414005 60.8667248861657 60.44837287195233 60.049839373393546 59.67123667133877 59.31241950309222 58.97307996192601 58.6528403421168 58.35133977445492 58.06831093098167 57.8036436899028 57.55743340574609 57.33001228546729 57.12196328720307 56.93411689588354 56.76753205511619 56.62345938975879 56.50283503729442 56.405771541613646 56.332300867545094 56.28245040725766 56.256228391029886 56.25361874173148 56.27458278855573 56.31906534693327 56.3870028464714 56.478331417973074 56.59299311375303 56.7309387189389 56.89212590632898 57.0765117879305 57.28403921875578 57.514616510230056 57.768090509867044 58.04421329955713 58.342603056475795 58.66269990875078 59.00371790417564 59.36459449708777 59.74393924965648 60.139983743380654 60.550535008450275 60.972935105228586 61.40402983294438 61.84014989030769 62.27710815853288 62.71021709671263 63.13433049755322 63.5439139975102 63.933148700203155 64.2960719651902 64.62675872147832 64.91956334758154 65.16990369284571 65.37509569848429 65.53436123210267 65.64885103602559 65.7215666253479 65.75716595329624 65.76165688613622 65.7419907209713 65.70557649487318 65.65976276160684 65.61164071726839 65.5674579003243 65.53210065931597 65.50923892539844 65.50162853365981 65.51127893987355 65.53986465783778 65.58986202218088 65.6648030041261 65.76924276490139 65.90855410391448 66.08856155292524 66.31504013113738 66.59311394713902 66.92659760243518 67.31732836095414 67.76081440785889 68.23760166605989 68.72480134944789 69.1995463225115 69.63959669757955 70.02393463657994 70.33331857481848 70.5507720708274 70.66198803999369 70.65636635968059 70.5327993418151 70.29637447368076 69.95469083553623 69.51737385801452 68.99517378319977 68.3990245275154 67.73983549444974 67.02814816852758 66.27386745032828 65.48608080741175 64.67295579140986 63.84170466860997 62.99860430666345 62.14905968714856 61.297700153916416 60.448498508591484 59.60490414719377 58.769982482230624 57.946553854820614 57.13732599457866 56.34501484057921 55.57244921727923 54.822655489984754 54.09891892590903 53.40481907159654 52.74423702947588 52.12133307350152 51.54049358266356 51.00624679255675 50.52314738170564 50.09563045241902 49.72783609352635 49.42340651586039 49.185258861677646 49.015400430094516 + 75.14474904902865 74.73942485306026 74.27943565901862 73.77042766893915 73.21834057643534 72.62933750443035 72.00972099349632 71.36583857697362 70.70398106346731 70.03027724614566 69.35058917130121 68.67041229504437 67.99478482039547 67.32821023583502 66.67459658329827 66.0372152944389 65.41868158561371 64.82095743998788 64.24537718075607 63.692694606815614 63.163149675085506 62.656552754677286 62.172789174642574 61.712491011116875 61.276074102847865 60.8636309091913 60.475019677581834 60.109954283345374 59.76809066016547 59.449106070440536 59.15276798267885 58.878989995548714 58.62787303794647 58.3997309422556 58.19510039557016 58.0147361862236 57.85958901794776 57.730259454878855 57.626465245162976 57.54789919910838 57.494313303615115 57.465497147611075 57.46126506188381 57.48144974393453 57.52590016321171 57.59448166286497 57.687076360889854 57.80358218426254 57.943909128829816 58.10797161451285 58.295676092364964 58.50690335206521 58.74148527198319 58.999176046608156 59.27961821643801 59.582304112808174 59.90653361497259 60.251369400307674 60.61559115286039 60.99765048311137 61.39562860511729 61.807199117342016 62.22959853925377 62.65960756176083 63.0935462641351 63.52728681289908 63.95628735746005 64.37565092691548 64.7802130487956 65.164661469361 65.52369064868932 65.85219249818493 66.14550375401569 66.40022560127767 66.61494027551309 66.79005075994277 66.92771530698253 67.03167625634121 67.10696802906489 67.15951297755288 67.19562288018321 67.22143313545786 67.24232359336044 67.26270148850672 67.28575300310254 67.31276023829497 67.34332840556405 67.37729455228461 67.4153895318074 67.45962493233198 67.51352369353631 67.58217053174643 67.67207324312992 67.79084051087543 67.94669510867692 68.14785269821121 68.40180534530855 68.71455526336348 69.08984819283673 69.52543197892366 70.00252761873708 70.49728861962258 70.98558653607643 71.4436888516593 71.8489162683374 72.18025161738197 72.41887755792168 72.54862591817668 72.55709021764874 72.44171695305496 72.20646099563186 71.85798774263372 71.40520827328577 70.85885648077564 70.23108561539746 69.5347059170631 68.78159198022517 67.98281644569596 67.14860221917863 66.28817915128113 65.40971859206458 64.52033281421524 63.626126306482945 62.732286614486206 61.843203453771956 60.96260602134537 60.09370964097316 59.23936401087482 58.4021963443111 57.584743601118134 56.78956881716834 56.019357272085706 55.27698891544564 54.565584114835175 53.88852040552049 53.24941851604942 52.65209652090233 52.10049153907443 51.59854897665065 51.15007994158162 50.75858820622801 50.42706905774982 50.15786728959468 49.95281307322268 + 77.96789922503218 77.55359070001242 77.08015834560287 76.55301104878565 75.97788648404989 75.36079708369412 74.70796014249034 74.02571504579335 73.32043030413318 72.59840380048745 71.8657601996683 71.128349797529 70.39165318042322 69.66069591691705 68.93997712307232 68.23341515200221 67.54431289169332 66.87534425534903 66.2285624652494 65.60542971734762 65.00686682302484 64.43332277760268 63.88529135277616 63.363833913540994 62.86969673949225 62.4032462462336 61.96455154192055 61.5534702121732 61.16973335256784 60.813026100821574 60.48306034737767 60.17963689470668 59.90269505793761 59.65234851517217 59.42890708745515 59.23288502043088 59.064992113340374 58.925537949849755 58.81386491836639 58.729334875313135 58.67142448325924 58.639697902667656 58.63378739468957 58.65337996154594 58.69820811445203 58.768042928461405 58.86268768869791 58.981970630267206 59.125735507756964 59.29382898736464 59.486084126516026 59.70229948607588 59.942213704457224 60.20547564806009 60.49161053658873 60.79998272397536 61.12975609580246 61.47985332291523 61.84891548940065 62.235263892246515 62.63686608986415 63.051308555350545 63.47577856249241 63.90705818736166 64.34153352764336 64.7752223971795 65.20382380322032 65.62279240110884 66.02744076887255 66.4130716532641 66.77514118438857 67.10945228494533 67.4123975487854 67.68177771771884 67.91738163436524 68.1206688237484 68.29460824909775 68.44340705198239 68.57211572056423 68.68612345533163 68.79056747853504 68.88968997926774 68.98589284217277 69.07843537793117 69.16535985145309 69.24455076633186 69.31436202584423 69.37420370983314 69.42502549508384 69.46965110076832 69.5129318016016 69.56170201725273 69.62453506488949 69.71131130037907 69.8326232346013 69.99905222060768 70.22035867732981 70.50463253754567 70.85745291532461 71.27877683077935 71.7508337917556 72.24874989102995 72.7471236774039 73.22076933706062 73.64541739201546 73.99835941616071 74.25901689413001 74.40942004056976 74.43538219076682 74.33288598304802 74.1046883549902 73.75641252172001 73.29609588990529 72.73378003639891 72.08111864627475 71.351006340859 70.5572286475245 69.71353841351622 68.83166686221388 67.922006563195 66.99379764910707 66.05510153152825 65.11283557592228 64.17285497644545 63.24006912175183 62.31858103202972 61.41183979675934 60.522797241761545 59.65406124676838 58.80803920344367 57.98706605517725 57.193512212770685 56.42986741608394 55.69879733019158 55.003170340496204 54.34605265599283 53.73067045487331 53.1603384286822 52.638354729085975 52.16786304321672 51.751683394586294 51.39219028133293 51.09145309889984 50.85096744890383 + 80.6865499293588 80.26432584437339 79.77936267449255 79.23675891822664 78.64197046373187 78.00077388895608 77.31921194919497 76.60352369987818 75.8600615128769 75.09519808830045 74.31522723228781 73.52626262587032 72.73413902627247 71.94432031077407 71.16181849997778 70.39112740116991 69.63617382453408 68.90028848606241 68.18619776891583 67.49603652168703 66.83138108066608 66.19330462856058 65.58288592285855 65.00161228072837 64.45058306914608 63.930469999025064 63.44159233676883 62.98399773553816 62.557544827589126 62.161983858925794 61.797031986187356 61.462440367958 61.1580508370391 60.88384070132418 60.63995505207957 60.42672682386429 60.244679982090396 60.0938764335347 59.97330612833931 59.88201249840773 59.81920155369825 59.784210034179914 59.7764806148714 59.79554264302146 59.840996794018 59.91250205385091 60.009763540849924 60.13251984454718 60.28052876700681 60.45355058842955 60.65132823436186 60.873563989133466 61.11989267394197 61.38985148455502 61.68284696040024 61.998119832326324 62.3347087697669 62.6914143190997 63.066764593342604 63.45898453799646 63.86597085626172 64.28527492359711 64.71409624676083 65.14928920972405 65.58738597303058 66.02463841768288 66.45708189843792 66.88062322589391 67.2911546424757 67.6846944807667 68.05755355262826 68.40652394296256 68.72910683868952 69.02429071397266 69.29297801150229 69.53752594389647 69.7614837633202 69.96921620211064 70.1654026671568 70.35442237521342 70.53858597660683 70.7166552893669 70.88550105809533 71.04122504629697 71.18000080846586 71.29844919706989 71.3942902215067 71.46692010311104 71.51785340781655 71.55099057312242 71.57268577816814 71.59160546188765 71.61838267837196 71.66508587326025 71.74453180466136 71.86948075060609 72.05175769338307 72.30134600376304 72.62550067772982 73.02626950028916 73.48736697768508 73.98294904276233 74.48642166684289 74.97127632635149 75.41181415449772 75.7838067633358 76.06507774766064 76.23599447301936 76.28068929246744 76.19372013372444 75.97662447622206 75.63390967697296 75.17262053173786 74.60195047878314 73.93286874345783 73.17776446382831 72.35010827805863 71.46413177329853 70.53449916239701 69.57458989493458 68.59495362404593 67.60470293776349 66.61167426778553 65.6224966988659 64.64270222360516 63.67686464153907 62.72875576283266 61.801509025167675 60.89778198942545 60.01991041156823 59.17004769021014 58.35028447402966 57.562744099845276 56.80965034124989 56.093364697716524 55.41639116205749 54.7813470883929 54.19089946804119 53.647666644317965 53.15408631628436 52.71229630532937 52.32428829074043 51.99171729250125 51.7156586722787 + 83.28411747859602 82.85578708492052 82.36198162689533 81.80735999606459 81.19700172349155 80.53636245239001 79.83122262421713 79.08763149869128 78.3118351323595 77.51019112907925 76.68907376425274 75.85477365948141 75.0133965178776 74.17076551010273 73.33233172974164 72.50309673022109 71.68755054275523 70.88962779446655 70.11268364413411 69.35949028092882 68.63225374180459 67.9326549365289 67.2623320323441 66.62319669516333 66.01672021586339 65.44390639217065 64.905358801592 64.40135592784438 63.93193041987536 63.496948814533866 63.09618830847026 62.729407599936906 62.39640940797051 62.09709298151765 61.83149569868763 61.59982369058992 61.40246587227595 61.239277941784145 61.10892289905563 61.01014175622868 60.941878393278465 60.90324429677448 60.89348945674502 60.911978246451014 60.95816896686078 61.03159571407664 61.1318512945352 61.25857004595386 61.41140960329754 61.59003086428791 61.79407564736382 62.02314178838874 62.27675568470907 62.554342561929424 62.85519500675266 63.17844057611205 63.52300955686494 63.88760420993196 64.27067108594463 64.67037824296987 65.08459942518074 65.51090746521908 65.94657933781225 66.38861539582723 66.83377533030715 67.27863326841607 67.71965409721871 68.15329249758868 68.57611518983904 68.98494540398458 69.37702643729487 69.75019816277991 70.10309896127627 70.43586355172364 70.75038233991295 71.04971939401902 71.33774439518021 71.61859114386327 71.89441560115861 72.16450157092422 72.42659308312908 72.67670418623919 72.90906474650122 73.11769754006072 73.29737907487461 73.44391855405783 73.55481200140217 73.6297880144226 73.6711917359081 73.68417410877305 73.67666879413989 73.65915457548692 73.64421545697496 73.64592302168734 73.67907526289774 73.75833268802972 73.89729601534397 74.10757055741468 74.39786100504837 74.77208514242847 75.21599652130914 75.7029746339128 76.2053898493859 76.69561688220979 77.14676239344804 77.53332217320933 77.8317566179271 78.02097863108969 78.08360517138364 78.01286371574606 77.80909614635262 77.47565908146203 77.01851764460274 76.44588600440717 75.76788268089572 74.9961991420444 74.14378050793806 73.22451787561027 72.25295251882923 71.24399281216951 70.21226889983694 69.16916093275987 68.1235240081276 67.08286024802891 66.05342415587698 65.04035770551111 64.04784766291591 63.079294080709516 62.13748041186483 61.224737078154114 60.343091583128974 59.49439938301982 58.68045073697221 57.903049670247704 57.164062021167155 56.46543032618658 55.80915405216179 55.1972344427683 54.631584052915656 54.113914216965014 53.645856025148916 53.22894519422117 52.86433413168591 52.55266710425495 + 85.7521973902149 85.31853466527004 84.81770209202088 84.25402776113063 83.63215085367503 82.95702696122507 82.23392451111137 81.46843997569928 80.66658866046487 79.8346272376133 78.97892808312046 78.10587873756121 77.22177894282488 76.33273815511723 75.44457822421391 74.56274560703244 73.69223694191616 72.83754108540604 72.00259985051952 71.19078873468385 70.40491793889215 69.64725846465737 68.91998245820817 68.2254250996561 67.56544496517219 66.94140046038329 66.3542086969118 65.80441430643324 65.29226461964197 64.8177876067163 64.38086915028563 63.981326582517056 63.61897593839921 63.293691026000815 63.005453156713 62.7543911784706 62.540805193779654 62.36438384233936 62.22349032933785 62.11658187746302 62.042351861894474 61.999692186122644 61.98766089990645 62.00545422050047 62.05238192984345 62.1278450555633 62.23131477401842 62.36231157584384 62.52038388987907 62.70508555514311 62.91595175116728 63.15247323558833 63.414068987597396 63.70005761137478 64.00962811094857 64.34181090371096 64.69545019119423 65.06917904955142 65.4613988345462 65.87026471098127 66.29367930566963 66.72929663309337 67.17453853434328 67.62662587488713 68.08262662637839 68.53952265960383 68.99429653062224 69.44403866114193 69.8860739850666 70.31810521736938 70.7383672310007 71.14578340200403 71.54013080301438 71.92261824465814 72.29596731328506 72.6636430419913 73.02756459018208 73.38742726349889 73.7418349880659 74.08800189349235 74.42144133985035 74.7357371273678 75.02269194936443 75.27470530493662 75.48560561959725 75.65080352780896 75.76792659606897 75.83731487189446 75.86233285458316 75.84947230990524 75.80823605845846 75.750808106626 75.69152909907119 75.64620714127237 75.6313019782341 75.66302509068558 75.75639962182184 75.92432265858623 76.1766690275559 76.51890809743917 76.93937701367759 77.41102197950245 77.90539428229691 78.39401576862565 78.84909065635458 79.24414005416008 79.55455327160784 79.7580552004244 79.83597085180278 79.78034280227492 79.59038666307133 79.26831495861468 78.81896278625162 78.2494649790419 77.56894789839214 76.7882313061992 75.91953700750135 74.97620252006506 73.97239950096039 72.92285782365443 71.84259697258585 70.74662025875774 69.64754541858798 68.5540331632727 67.47315365736597 66.41071182147523 65.37140250942971 64.35898118268872 63.376439475397454 62.426176575864034 61.51015875113493 60.63006060473705 59.787382792768575 58.983541947704275 58.21992949401661 57.49793690981496 56.818945824069715 56.18428217865647 55.59513474790627 55.05257164595381 54.55775209920894 54.11164936239443 53.71490060820504 53.36770838607425 + 88.09244907003236 87.65384024473752 87.14689250892623 86.57564779138923 85.94443547848553 85.25788446853616 84.52092691682908 83.73879402434396 82.9170032542593 82.06133654705987 81.1778235363408 80.27279927301555 79.35268575166972 78.42381275857046 77.49231106034989 76.56401492940408 75.64437590805322 74.73839137440656 73.8505506470681 72.9848004355876 72.14453046091897 71.33258389076433 70.55164312396118 69.80446592886958 69.09331029986348 68.419907711693 67.78551327271909 67.19096775807098 66.63676810459533 66.12314284106844 65.65012902570987 65.21764755230944 64.82557414224384 64.47380393249146 64.16230826582395 63.89118305314184 63.660681095943325 63.470360392329404 63.318312315132346 63.20273072595927 63.12207248288342 63.07501841918562 63.06043864189992 63.07736163618117 63.124946432412465 63.20245699024002 63.30923795012273 63.44469097560959 63.60825103960797 63.79936218019594 64.0174524539455 64.26190803765799 64.5320466652475 64.82709082915184 65.14614142008338 65.48815272076054 65.85190990420095 66.23601041041351 66.63885078079126 67.05862070875354 67.4933062061927 67.94070387086424 68.39844824580004 68.86405415468536 69.33497563177099 69.80868258169924 70.28275552660074 70.75499762745083 71.22356148277436 71.68708586238387 72.14483434921404 72.59682362835974 73.0439414222749 73.48829507451298 73.93139418274545 74.37305288628693 74.81243727287729 75.24776088432125 75.675921408276 76.09217760340438 76.48989403673075 76.86037846632996 77.19331919996294 77.47998726319058 77.71368071737004 77.8897801028347 78.00634323290777 78.06453468702829 78.0688551799676 78.02715297599177 77.95041533183864 77.85235271862257 77.74880116724458 77.65697766189516 77.59462957690978 77.57912160412225 77.6265027309434 77.7505922416898 77.96211835569898 78.267710329947 78.65872071355787 79.10816996337105 79.5870486461563 80.06632934156787 80.51764495548684 80.9138830133494 81.22969587347181 81.44193177045439 81.53089480306178 81.4876338625173 81.31035143694338 81.0001653137435 80.56077045293368 79.99815872807719 79.32035438560155 78.53715713203987 77.65988699676758 76.70112760775427 75.67446678563002 74.59423515962062 73.47524475095132 72.33253017026863 71.18109385986884 70.0344504387574 68.90131121547724 67.78823259909313 66.70050859674625 65.64234035492727 64.61701438438895 63.62707946470862 62.67451375899119 61.760875066732936 60.887428405171285 60.055246249904066 59.265277804887376 58.518384636878224 57.815340934078996 57.156797578158304 56.543230526428395 55.975173166181065 55.45321590811216 54.977752232134115 54.54889379836503 54.16639129141245 + 90.30766013112864 89.86465218407054 89.35257529229402 88.77519892780836 88.13655714817736 87.44096677171987 86.69303778152431 85.89767621041307 85.06007878601032 84.18571878397698 83.28032274453246 82.34983794640151 81.40038908906584 80.43826040631224 79.46980727510476 78.50120110224952 77.53830213445174 76.58657508007381 75.65102108711164 74.73612837902374 73.84584287166517 72.9835624676153 72.15245881832779 71.35571049529206 70.59598398312014 69.87539837974558 69.19556662459189 68.557650415692 67.96242555454569 67.41035427664501 66.90166115273152 66.43640936725731 66.0145745743881 65.63611407011011 65.30102966905488 65.0094234014183 64.76153744254735 64.55683248210875 64.39315602398887 64.26846000586607 64.18098040153198 64.12919767729292 64.11180065284545 64.12765356456762 64.17576586372556 64.25526414469479 64.3653655629526 64.50535214697088 64.67454551348177 64.87228164643962 65.09788558374125 65.35064606213349 65.62979039133752 65.93446005627432 66.26368777532109 66.61637696713929 66.9912847929996 67.38701013904846 67.80198807524513 68.23449246356034 68.68264847214104 69.14445676341863 69.61783103382906 70.10065035234837 70.59082732356741 71.08639242273287 71.5855938314474 72.08701063918085 72.58967523927761 73.09319798399767 73.59788348720116 74.10478413721039 74.61434170439837 75.12589067434106 75.63878057479555 76.15185510798968 76.66308755699045 77.1692278522073 77.66547584071247 78.1452078811441 78.59978211455727 79.01844420459764 79.38917650179134 79.70262174695652 79.95192659335699 80.13276083027075 80.24385323605237 80.28734248947852 80.2689166881528 80.19773155057166 80.08611302887836 79.9490641115852 79.80360697667003 79.66799959917228 79.56087002831771 79.50031183648024 79.50298111938335 79.58322967529998 79.75230168838121 80.01756295092709 80.37358934954136 80.79416222626664 81.24999396760444 81.71183286001711 82.15109240806923 82.5403899758613 82.85400083108364 83.06823843340351 83.16269281278383 83.1276486548534 82.9604487944337 82.66120775467742 82.23251241201874 81.67918850731385 81.00808534769294 80.22786671676343 79.34879924667439 78.38253293426777 77.34187157442292 76.24053335854343 75.09290364754536 73.91378299635484 72.71813396651903 71.52083022976491 70.3357480675294 69.17180303001905 68.03497626552021 66.93000345453191 65.86055480983666 64.82941459559481 63.83865340906099 62.889785471455625 61.98390455812279 61.12179345401536 60.30400296727887 59.53089759860545 58.80266598417325 58.11929525521689 57.480609038329625 56.8866122204636 56.33728405205912 55.83243254166054 55.37163581462167 54.95418328941468 + 92.40077727449513 91.9539741591259 91.43772909522285 90.85555186591009 90.21119510418332 89.50867799787316 88.75230272235626 87.9466637678608 87.09664935061407 86.20743424780704 85.28446358725706 84.333427348495 83.36022558619537 82.37092466159909 81.3717050540414 80.36880084035731 79.36839718399119 78.37638777068307 77.39825366891138 76.43899758957586 75.50309989418983 74.59449682726967 73.71683171857387 72.87370059569102 72.0681845471107 71.3028010481454 70.5795361808038 69.89989222637709 69.26494752577544 68.67542525439438 68.13176771848518 67.63421293727012 67.18287060964646 66.77779504980737 66.41905328108027 66.10678716710781 65.8412600451702 65.62186525889832 65.44623366829171 65.31209699468796 65.21748692259759 65.16069581231332 65.14023992086838 65.15482522711169 65.20331565869375 65.28470334962888 65.39808049212554 65.54261236384414 65.71751119305101 65.92201065362336 66.15534094645363 66.41670461260544 66.70525342741249 67.020066935659 67.36013339886644 67.72433412957653 68.11143237697745 68.52006809470747 68.94876005450669 69.39591685465797 69.8598583913313 70.33884928926581 70.83114559282254 71.3350556562119 71.84901558693574 72.37167871832077 72.90201732676985 73.43943305773158 73.98387014880436 74.53591038357928 75.09582039588497 75.66254187973898 76.23488107732989 76.81169532614334 77.3916062642358 77.97246033043021 78.55098470440274 79.12246506646278 79.68046267902291 80.2165960255167 80.72040964231024 81.17934850096297 81.58019177169976 81.91341881095168 82.17236163143147 82.35324619544133 82.45565506393825 82.48279069729925 82.44152124249207 82.34220672320836 82.19831878311341 82.02588026363287 81.84276091463967 81.66787175495207 81.52030272388205 81.41844641729338 81.37914541734085 81.41689291303305 81.54310717531746 81.76549019972221 82.0817157364376 82.46720375648597 82.89267830576348 83.32899203588136 83.7476938189982 84.1214990369673 84.42467482504503 84.6333571497498 84.72675166764746 84.69463756108853 84.53368641290882 84.24314053729482 83.82455300215335 83.28160300882593 82.61993342679813 81.84699439136165 80.97188105980608 80.00515796184479 78.95866628809125 77.84531362608331 76.67884796462188 75.47361926314765 74.24433261927878 73.00579719674262 71.77267473994796 70.55882944383478 69.37327687264235 68.22139937118253 67.10733890610452 66.03420389883436 65.00424364433442 64.01901009027785 63.0795000394647 62.186272203396264 61.3395347871667 60.53920045183721 59.78490661895323 59.076002020654755 58.41172937066138 57.791529561864756 57.214768623092375 56.68066767727682 56.188266035676094 55.73638355105054 + 94.3747593416048 93.92473389069278 93.40517599775544 92.81934814097193 92.17073531069248 91.46307368086262 90.70037247559489 89.88692912556584 89.027336825909 88.12648373956358 87.18954326451174 86.2219549956508 85.22939625639371 84.2177443442866 83.19302992065533 82.16138226730698 81.12896742382244 80.1019153089013 79.08615350254463 78.0871740444134 77.1099716728934 76.15900580585172 75.2383778959887 74.3520958517459 73.50365857534085 72.69598895064031 71.93145708232787 71.21192047412929 70.53877819420558 69.91303576511294 69.33537741348388 68.80624241160557 68.32590252156866 67.89453798778617 67.51231008516118 67.17942888397322 66.8962057831873 66.66199314173126 66.4742309978051 66.33045215617975 66.2285009294217 66.16649478589882 66.14278764028035 66.15593516518122 66.20466217534647 66.28783193751792 66.40441716643127 66.5534724592002 66.73410797822993 66.9454643009446 67.18668849951302 67.45691168389234 67.75522842689898 68.08067868175723 68.4322329923313 68.80878197567205 69.2091312165797 69.63200284409434 70.07604514723704 70.53985161540257 71.02199073605479 71.52104772074841 72.03567902357014 72.5646800169992 73.10706543944335 73.66216115178382 74.22970424516082 74.80994655034397 75.4031014855207 76.00812398669898 76.62376709452792 77.24875369999907 77.88166789636182 78.52086284102383 79.16413505048567 79.80827520968295 80.4487531308736 81.079433550948 81.6923427563749 82.2775089126869 82.82289562390847 83.31445195184077 83.73832690450209 84.08524376241044 84.34900779186363 84.5266136446448 84.61862386538353 84.62933911231536 84.56674962365582 84.4422733968925 84.27030113852102 84.06758008346542 83.85247733494177 83.64416783862521 83.46179228090712 83.32362631605241 83.24629522427757 83.24405839861869 83.32817726443035 83.50636984760531 83.77886597700666 84.1237848809661 84.51214914644042 84.91523181382982 85.30505794826834 85.65479707245366 85.93906991564515 86.13419229383807 86.21932432762968 86.18401717718439 86.02448729866207 85.73927090937941 85.3290017897813 84.79627532757807 84.14554021131822 83.38299750386341 82.51649187480092 81.55538495432342 80.51040545515117 79.39347455046612 78.21750786446633 76.9961973413661 75.74377730851077 74.47477938399565 73.20378065834548 71.9451489610651 70.71250213647293 69.51470537099705 68.35652005156155 67.24146726213026 66.17206463741934 65.1499894904961 64.17622463063019 63.25118084500006 62.374791368775 61.54657493200174 60.76566518768938 60.03081743734898 59.34073709214314 58.69428823309435 58.09023380442155 57.527211598928155 57.00372014869217 56.518102988892444 + 96.23245977635374 95.77968179505316 95.25749682486455 94.66893241166783 94.01721983576161 93.30582722029011 92.53848627782615 91.71921272812166 90.8523194308711 89.94242139102685 88.9944319521073 88.01354969155264 87.00523576641969 85.97518172098505 84.92926805225221 83.87351412596053 82.81402033475193 81.75690368153042 80.7082282446073 79.67392061296397 78.65952478287015 77.6700094223166 76.70992523010824 75.78368354882181 74.8952014265273 74.04781052647398 73.24427151506195 72.48680684530848 71.77714913188188 71.11660194539206 70.50610969339137 69.94633329629508 69.43772859222594 68.98062479232009 68.57530082816818 68.22205805240803 67.921277970872 67.67229453645825 67.47238079886053 67.31889092546054 67.20949850526029 67.14215971100522 67.11507727814039 67.12666594653072 67.17551965702656 67.26038056978282 67.38010985248657 67.53366015386571 67.72004971280558 67.93833814010814 68.18760403447742 68.4669247445472 68.77535875388469 69.1119313359982 69.47562429192477 69.8653707342268 70.28005600753137 70.71852592472042 71.17960353444437 71.66211560086 72.16492984628111 72.68700375094541 73.22744528206742 73.78558528712529 74.36106037187858 74.95390381533146 75.56432316128829 76.1914180061137 76.83393038665365 77.49060205885135 78.16012077476482 78.84102598550774 79.53156720043268 80.22949574983595 80.9317195542378 81.6339517853431 82.33043202048685 83.0136860119737 83.67434593695413 84.3010512551627 84.88044629654989 85.39733090131482 85.83783894590188 86.19326518247344 86.45812435274213 86.63033725699022 86.71151842925534 86.70705131988494 86.62594797159605 86.48050571160631 86.28578713326282 86.05896046551844 85.81854446374211 85.58360468980558 85.37294637649225 85.20434331000105 85.09383304783834 85.0550974192957 85.09893502244293 85.23282090371752 85.4587528414757 85.75854511138186 86.10387235477265 86.46671711138305 86.81989252988153 87.13735096712985 87.39440586490083 87.56789533944993 87.63726799857821 87.59213174191665 87.42848291431399 87.14434634616147 86.73958722864853 86.21582124409433 85.57635932291467 84.82616267312183 83.97178950691722 83.02132080983766 81.9842578821982 80.87138885469422 79.69462478884753 78.46680832118086 77.20149919611131 75.91274160689873 74.61481819808795 73.32199505035575 72.04826113536538 70.80681647654156 69.60608757003173 68.45017816120827 67.34196420738206 66.28333991254677 65.27536393387884 64.31838455514637 63.41213880903276 62.55582188446132 61.7481244634157 60.987265715102616 60.27144210294709 59.598953771860856 58.96797805013908 58.376578677304614 57.8227154084524 57.3042507969664 + 97.97653765642933 97.52131798983417 96.99697424950995 96.4063116204305 95.75232188347125 95.03822047155961 94.26747758882262 93.44384337199364 92.57136607740856 91.65440237198762 90.69761894795008 89.70598486593298 88.68475425526889 87.6394392573897 86.57577338116826 85.49966573875565 84.417146937449 83.33430770707929 82.2572316328605 81.19192363029181 80.14423603180441 79.11975638167618 78.12355411135661 77.16043171911971 76.23472156580836 75.35016386954581 74.50991215871007 73.71655877923189 72.97217748861223 72.27838005268423 71.63638354726201 71.04708505529285 70.51114062677505 70.02904571171729 69.60121475780697 69.22805825152987 68.91004505108667 68.64650935621523 68.43457856534458 68.27144692107622 68.15463312741548 68.08194550531 68.05144718828495 68.06142225524832 68.11034331920634 68.19684084033244 68.31967428837532 68.47770522287516 68.66987237199749 68.89516885583916 69.15262180346879 69.44127474194126 69.7601732784408 70.10835474264779 70.48484259468182 70.88864652342953 71.31876924850756 71.77422108240707 72.25404329051005 72.75734118466904 73.28332767464356 73.8313776479175 74.4010930110097 74.99237745300395 75.60540948803288 76.23957288436486 76.89365792579859 77.56643856122552 78.25666145349054 78.9630005677088 79.6839797117244 80.41785483667044 81.16244553985528 81.91482922495679 82.6709939736138 83.42558762027859 84.17168080460303 84.90057508896912 85.60167917513344 86.26247029905058 86.86855333900682 87.40397378162322 87.85546141088183 88.2151224017773 88.47836283773191 88.6441327718757 88.71512001926398 88.69773169780949 88.60186750620404 88.4405036372245 88.22911897460727 87.98500474520806 87.72650431502382 87.47223090361732 87.24030762476684 87.04766683981556 86.90943513790644 86.83841749626028 86.84468076516943 86.93522417754048 87.11301016043609 87.36418915396449 87.66159204577241 87.97816142386702 88.28776892695176 88.5654377304039 88.78747673181935 88.93155997008891 88.9777401181212 88.91596175226266 88.74224486018436 88.4543179820866 88.05145848903462 87.53444392185051 86.90554627314755 86.16854103188001 85.3287091542143 84.39281664357803 83.36906239988154 82.26699002686128 81.09736319312324 79.87200691448399 78.6036188541045 77.30555557319032 75.99159878647028 74.6757062677923 73.37175129187405 72.09325355901622 70.85284308052752 69.6582310554493 68.51281998185327 67.41881319367016 66.37743931186375 65.38907682475191 64.45335507591177 63.56922776382606 62.735016449018325 61.948468473544125 61.20730030957135 60.509278688130195 59.852020976254224 59.233032657722774 58.64974140686334 58.09952685198746 + 99.6093951322278 99.15184485224412 98.62556028097562 98.03313708411112 97.37734203921471 96.66115359650132 95.88779691433953 95.06077330042909 94.18388298652773 93.2612402411407 92.29727994956754 91.29675496211979 90.26472372540728 89.20652796281054 88.12776045147592 87.03422324587804 85.93187701255441 84.82678245664705 83.7250351275877 82.63269517784707 81.55571390471209 80.49985912089318 79.47068000929345 78.47358396971211 77.51334648525416 76.59411259208893 75.71942686790172 74.89225186909597 74.11500504658795 73.38961114140868 72.71756679795752 72.1000140728743 71.53781964861861 71.03165686263199 70.58208810857022 70.18964572359926 69.85489842534757 69.57719527070114 69.3535364146997 69.18097283920697 69.05688289978399 68.97893985773042 68.94507873187689 68.95346360172539 69.0024560922766 69.09058549683421 69.21652082694773 69.3790449990091 69.57703135686683 69.80942277281312 70.07521365064889 70.373435260798 70.70314495617355 71.06341993679139 71.45335633913129 71.8720745105522 72.31873137603502 72.7925407984717 73.29280275601351 73.81894198799026 74.37055646677943 74.94747560238054 75.5498111449848 76.17729660306672 76.8288648184113 77.50336004095199 78.19959312882123 78.91632403602406 79.652224224689 80.40581302813672 81.17536129351936 81.95875499319902 82.75330656043998 83.5553725144789 84.36002000183497 85.1608742889833 85.9499278224382 86.71739941857967 87.45166701977469 88.13928784879126 88.76511483974511 89.31289530965607 89.77050257353362 90.13100934032344 90.39084001880046 90.55002470291895 90.61229951358605 90.58499899038293 90.4787508874592 90.30699781314524 90.08538177656919 89.83103588452258 89.56183147453108 89.29562853533048 89.04957240776587 88.8394709393659 88.67927433776606 88.58066612895897 88.55275933917046 88.60187890696626 88.73123668399188 88.93146656567953 89.17724553711732 89.4426796767011 89.7029184668281 89.93429258272683 90.11436121190465 90.22190682385538 90.23787059708626 90.15279671940229 89.96297026787222 89.66604931842942 89.26092630172496 88.74771359574514 88.12778147378317 87.40381682086019 86.57987775236495 85.66142621967549 84.65532712279268 83.56980793550967 82.41437718633925 81.19970329767524 79.93745734598818 78.64012441231124 77.32078852322935 75.99289592821756 74.670000808824 73.36549665124434 72.09233561004692 70.86242197980266 69.68251109277861 68.55526342392655 67.48217259928863 66.46374454197884 65.49959701082437 64.58853437897376 63.72859502429349 62.91712542916109 62.151397985763175 61.428690149636004 60.746093985901496 60.10057986291665 59.489055549987015 58.9084192483953 + 101.13313801352055 100.6731413319477 100.14486385576267 99.55070480435913 98.89322064978626 98.17516879039746 97.39954610157139 96.56962224927621 95.68896664192572 94.76146795424101 93.79134526575842 92.78315001489234 91.74175817387194 90.67235229535675 89.58039336130166 88.47158267035651 87.35181432214523 86.22711918465056 85.10360155352822 83.98737001821355 82.88446432810169 81.80078029241555 80.74201007429274 79.71379105516152 78.72156586138587 77.77003837893284 76.86313954775142 76.00419801720753 75.1959726472768 74.44070078611598 73.74016017695995 73.09574116340306 72.50852595134833 71.97937194990595 71.50899662662047 71.09806184347879 70.74724399882327 70.45591747051405 70.22097028033518 70.03932433982112 69.90823044156299 69.82523845995578 69.78816621385054 69.7950683401477 69.84420610422234 69.93401877622405 70.06309701219355 70.23015857650306 70.43402670939679 70.67361146379292 70.94789439376508 71.25591705916786 71.5967739034469 71.96961015194684 72.37362545307664 72.80808403095207 73.27233212071506 73.76582339968603 74.28815298894737 74.83910035709803 75.41868240787497 76.02692422700957 76.66303726330412 77.32597891723653 78.01465434761899 78.72791284936471 79.4645324585323 80.22318843080376 81.00240069156925 81.80045482756329 82.61529071615402 83.44435251495523 84.28438683181504 85.13100656564508 85.97838438108282 86.8191925323198 87.64446038150615 88.44348569732779 89.20382278626056 89.91135794690973 90.55047751223141 91.1051695735933 91.56485960124428 91.92367383385931 92.17912818139337 92.33233457199121 92.38801149148236 92.3542944621324 92.24236239033104 92.06590880793016 91.84049744261927 91.58284838760396 91.31010379489297 91.03912022898412 90.78582870798311 90.56469353651144 90.3882881805021 90.266991854552 90.20879564410527 90.21919347200077 90.30111582257707 90.44922497098271 90.64094655457072 90.85170136320683 91.05807884743918 91.23789514276315 91.37015790849928 91.43497940815445 91.41443150129867 91.29989226617067 91.08813958965935 90.77698695943764 90.36515735434503 89.85229442127805 89.23903617473017 88.52711679736593 87.71946901181285 86.82030669142385 85.83517411496803 84.77095408950966 83.63583184563579 82.43921509837381 81.19161302907122 79.90447831278993 78.59001686597882 77.2609699109382 75.93037244089417 74.61129141256366 73.31654617534971 72.05841294407675 70.84790064129776 69.69062091121081 68.58845554650901 67.54213609591609 66.55136945328088 65.61491058888899 64.73061099100856 63.89549599993563 63.106437588344235 62.36027971398581 61.65363355403487 60.9829656544342 60.34468235534664 59.73520616436503 + 102.54971161828315 102.0869149972557 101.55631861130895 100.96013840255549 100.30073527089795 99.58066152389647 98.80270259910256 97.96991390053886 97.08565157363388 96.1535960832831 95.17776755303156 94.16253196896793 93.1125975471203 92.03300080331128 90.92908214307651 89.80645109820851 88.67094166617562 87.52855854840891 86.385415421849 85.2476667034421 84.121434567794 83.01273324268584 81.92739571974269 80.87114874571607 79.84961759948092 78.86805961824386 77.93107448368586 77.04237421794865 76.2050522776629 75.42165341268735 74.69423292756846 74.02442755113222 73.41353462797376 72.86259657533188 72.37248793290337 71.94400284131277 71.57792858225649 71.27367109374379 71.02801777173872 70.83777280140657 70.70007003541951 70.61234607304411 70.57231141024526 70.57792120975202 70.6273467955489 70.71894865715996 70.85125153638556 71.02292204400028 71.23274919831131 71.47962827455288 71.7625483881385 72.08058429109923 72.4328929255938 72.81871533748183 73.23738459275766 73.68834034559092 74.17115066294132 74.68554159932198 75.23143481558355 75.80894785741992 76.41772123126835 77.05687431681226 77.72544168325777 78.42238796079735 79.14660276164535 79.89688640784598 80.6719228587977 81.47023581173335 82.29012355339047 83.12956779778825 83.98611148908458 84.8567004252373 85.73747533836868 86.62330552753467 87.50752005105073 88.3819302282043 89.23673639754982 90.06049069917769 90.84013777557622 91.56114055043271 92.2076923824822 92.76467557965273 93.22324354171016 93.57862723267594 93.82945615938004 93.97788151900771 94.0295034241714 93.99310900658963 93.88024199552905 93.70463634238804 93.48155561133767 93.22708538183686 92.95742729490406 92.6882404339309 92.43406863558067 92.20788161700757 92.02074437040295 91.88161430539807 91.79725053591476 91.7722060682436 91.80886302916798 91.9047962606836 92.04129747930645 92.19520549155607 92.34465209003068 92.469054264518 92.5490042343377 92.56610709775636 92.50375639515065 92.35435929315028 92.11538934892943 91.78503023359409 91.36205294467179 90.84584267707731 90.23649871369625 89.5349707821428 88.74320217715099 87.86425719682428 86.9024173098219 85.86323648400699 84.75355102191777 83.58144299158626 82.35615895717358 81.08798732253105 79.78809836615419 78.4683511541539 77.14107116283373 75.81880181799792 74.51403245375207 73.23890459308063 72.00489813328271 70.82194275771444 69.69438334511226 68.62328243669688 67.6085375350168 66.64895860579946 65.74231423472845 64.88539937405407 64.07473545216308 63.3067986894678 62.5777741319653 61.883664675487495 61.22040081372106 60.583940168941254 + 103.86418824098487 103.39809436056927 102.86468349178175 102.26600106003991 101.60422655354735 100.88172246549446 100.1010789000975 99.26515363979999 98.37710644694454 97.44042639611455 96.45895111155737 95.43687691752176 94.37875909580849 93.28950168011285 92.1743364946199 91.03879145679406 89.88864850180647 88.72989183776062 87.56864759510071 86.41111627811785 85.26349974900965 84.1319247635107 83.02236505024138 81.9406414727318 80.89250667269397 79.88341044474663 78.91837282397876 78.0018026310639 77.13718355992789 76.3273594557212 75.57465627689405 74.8809516458622 74.24775390880802 73.67628757847719 73.16758239228844 72.7225637069151 72.34212921464037 72.02571903398096 71.77002793260064 71.5717507656971 71.42791268840656 71.33584527303368 71.29316017184792 71.29772205688003 71.34762210248411 71.44115293524771 71.57678574054982 71.75315006697085 71.96901679073952 72.22328467529202 72.5149709696508 72.84320651840179 73.20723589087206 73.60642306323882 74.0402631901145 74.50840096633776 75.0106559887042 75.54705659993019 76.11762710116592 76.72176664381185 77.35866605125806 78.0274346885469 78.72709768718242 79.45658882570322 80.21473640863397 81.0002391523615 81.81162876574136 82.64721562109746 83.50501366864862 84.38264058168882 85.27718906563828 86.18506536360053 87.10178211345314 88.02148487433345 88.9367292434313 89.83857387188591 90.71653568322738 91.5586019942238 92.3513195643893 93.07996451320942 93.72882039108903 94.2843737266418 94.73943211701085 95.0903644430148 95.33689125922636 95.4821246693188 95.53242091022538 95.49705718329766 95.387757023191 95.21809926184258 95.00285352065661 94.75728945045675 94.49650720383093 94.23483274678019 93.98531381080575 93.75934110734872 93.5664057489756 93.41399031835724 93.30755878313836 93.25065306175578 93.24503315096744 93.28984378387588 93.37113170192188 93.4673455876621 93.55818349782675 93.62472246890322 93.64922524639512 93.61489107994853 93.50657060566446 93.31784978260735 93.0470674151729 92.6929708515954 92.25458733434097 91.7312561908992 91.12274441636944 90.42940774709993 89.65236593933443 88.79366807565265 87.8564305504477 86.84493644681217 85.76469004908448 84.62242414341948 83.42606056678643 82.1846262749159 80.90812816243042 79.6073901609644 78.29385595316371 76.97936016530083 75.67587033080845 74.39520143947564 73.14870468503841 71.94693227246559 70.79855071216318 69.70658511618689 68.67122108275356 67.69142703083062 66.76499531727373 65.88859179647895 65.05844228153303 64.27072749972388 63.52127105272907 62.80566123494117 62.1193857388726 61.45795384702339 + 105.08443010534626 104.61450210631955 104.07772646218704 103.47599005170353 102.81130407794586 102.08585526425101 101.30205310443606 100.46257291943667 99.57039344234016 98.62882765964912 97.64154570015748 96.61258868449147 95.5463726264769 94.4476817081929 93.32165052793242 92.17373523645685 91.00967382235267 89.83543617103248 88.65716489198978 87.48110827267132 86.31354706190277 85.16071709846564 84.0287300690391 82.92352013112188 81.85094140697176 80.81661452646044 79.82576554148444 78.88314567526686 77.99289168189885 77.15823377087672 76.38175867723334 75.66557767708231 75.01140399886906 74.42063915988346 73.89446389670259 73.43393131167709 73.04004661404329 72.71228407140833 72.44725084180607 72.24153820966124 72.09206865108551 71.9960751354975 71.95107750562816 71.95485783292705 72.00543615837194 72.1010476652629 72.24012207243166 72.42126586474897 72.64324787461243 72.90498867577259 73.20555423280514 73.54415424995126 73.92014566665327 74.33304173888452 74.78252711011525 75.2684791976764 75.79097957289372 76.34986073364297 76.94449979854748 77.57416959610934 78.23805463723805 78.93524425216607 79.66472280497962 80.42535477107711 81.21586219756266 82.03479182062785 82.88046889947188 83.7509346594471 84.64386413876426 85.5564612293299 86.48532782466987 87.42630427356535 88.37426942908303 89.32268155835479 90.26340706017764 91.1868704053152 92.0820556640871 92.93656452374677 93.73674834744668 94.46791519340239 95.11480809729316 95.66607318027981 96.11598721345466 96.46205192435562 96.70502064596707 96.84886238492142 96.90054986293221 96.86968694413994 96.76800245623352 96.60874692510356 96.4060353714364 96.17418246135641 95.92707561029735 95.6776270458211 95.4373391454265 95.21597292418252 95.0213549293113 94.85944115836442 94.73445242151766 94.64902426591773 94.604354435648 94.60015278688013 94.62734399651441 94.66645608763775 94.69864718757181 94.70649586815502 94.67384757951872 94.58559379904963 94.42824612159522 94.19668792242055 93.89025546587632 93.50842509784628 93.05067022767143 92.51648872295016 91.9055235098021 91.21773794016751 90.45361368930952 89.61434574199211 88.70201565219098 87.71973022729145 86.67171781687327 85.56337836393135 84.40128630524346 83.19314737009462 81.9477114568753 80.67464423016787 79.38436005845774 78.08781859359915 76.79628686859488 75.52106844957119 74.27320110640329 73.0631248423544 71.90032311219606 70.79203776005657 69.7399742430171 68.74335515629743 67.80010046904381 66.90685511053618 66.05961013025872 65.2543240990147 64.4865327937882 63.75146726893623 63.044212761651316 62.35985270011083 + 106.21764115452626 105.74331834170792 105.20259438137919 104.59720879352712 103.92901662361051 103.20004169265916 102.41252629271895 101.5689770336064 100.67220551120852 99.72536245681663 98.7319640762487 97.69590939775419 96.62148761769231 95.5133746592517 94.37661843640146 93.2166126351344 92.03905917736901 90.84991990857708 89.65535843605373 88.46167342770892 87.27522504789448 86.10235654367017 84.94931328908723 83.82216593933921 82.72685482165544 81.6691530984261 80.65447418000991 79.68778236213264 78.77352612172244 77.91552000088832 77.11669898865074 76.37939812773223 75.70552801393008 75.09666048368186 74.5541213162552 74.07908601487438 73.67266247661755 73.33435688732172 73.06069125345707 72.8481567289605 72.6935771300742 72.59409156794604 72.54713374236836 72.55040994264694 72.60187729285343 72.69972339264432 72.84234822326333 73.02834899261079 73.25650846494445 73.52578724212351 73.83532041735211 74.1844189928884 74.5725764244633 74.99948061176214 75.46503158075362 75.96929533772729 76.5119730411465 77.09250034830076 77.71023048831911 78.36442552534638 79.05424496645819 79.77873265403896 80.53680010812599 81.32720426973057 82.14851740533675 82.99908677530094 83.87698155725047 84.77992446561562 85.70520553955276 86.64957570695363 87.60911799899394 88.5790947183039 89.55376050332444 90.52593704851829 91.48689670754035 92.42655488024114 93.33351450433966 94.19516544343062 94.99785335689386 95.72711622526022 96.3686764188788 96.91358197618631 97.35737822496681 97.69865815268221 97.93912161685722 98.08347252725986 98.13915328799729 98.1159349116302 98.02539158471474 97.88029671436652 97.69398292352966 97.4797105803046 97.25008955491126 97.01656426727486 96.78896229749441 96.5753138971908 96.38189217140709 96.21332240704658 96.072736614112 95.9619486796455 95.88162443239861 95.83141913744132 95.80637581325237 95.7899560504617 95.76471147918014 95.71463093199094 95.62497739093682 95.48206462523429 95.27390570088187 94.99698488975598 94.65189833568233 94.2389863668007 93.75833372073951 93.2097851845203 92.59306091166434 91.9079356139827 91.15444909547695 90.33312192828119 89.44515635039654 88.49260820353749 87.47852064003767 86.40701427862852 85.28333146208963 84.11383432749794 82.90595765811048 81.66811809502865 80.409581417347 79.14028943325046 77.87064774837356 76.61127547959794 75.3727180478285 74.16512469116002 72.9978934567551 71.87928704095955 70.81500688457946 69.80545081706951 68.84876321762528 67.94167758085877 67.08002017126155 66.25959507348598 65.47573217599924 64.72337060597793 63.9972406540056 63.29202837906208 + 107.27033395036179 106.79104543179838 106.2457742594988 105.63612300965175 104.96380174119643 104.23068313284921 103.43885445751107 102.59066605306522 101.68877490789292 100.73618195247724 99.73626168375179 98.69278284785918 97.60991906895258 96.49224853352037 95.34474211609322 94.17273965560588 92.98191445268333 91.77822644558819 90.56786492404878 89.35718204227327 88.15261878118532 86.96062537121071 85.78757850702547 84.63969763468982 83.5230185888937 82.44344253151333 81.40655606279154 80.41751935282647 79.48099525008831 78.60109636266856 77.78127591147894 77.02414723130515 76.33180980807687 75.7059979499236 75.14817518426324 74.65963259100805 74.24157434836455 73.89353448060447 73.6119501003005 73.39321363747916 73.23405247890298 73.13151508929556 73.08295341711283 73.08600376333833 73.13856776077537 73.23879470197078 73.38506614817751 73.57598353094397 73.8103593034528 74.08721209264682 74.40576622823578 74.76545596435287 75.16593464797054 75.60709035402824 76.0889280738437 76.61110730473416 77.17313318315131 77.77443834395154 78.41436591657623 79.0921531191991 79.8069141496805 80.55762087342913 81.34307963013491 82.16190232985663 83.01246989183196 83.89288600630353 84.8009191825123 85.73393109910536 86.68878941332164 87.6617634316677 88.64840141872668 89.64338884528748 90.64037958939589 91.63162152962084 92.60789610019057 93.55873821015507 94.47251935154812 95.33658297176734 96.13744335463231 96.86104543033566 97.49481765715429 98.03199687259348 98.46926859502986 98.80624619790592 99.0454691460157 99.19224313682341 99.25433221912489 99.24152344611042 99.16509373022508 99.03721558329305 98.8703427543155 98.67662035919594 98.46730955825764 98.25222598231926 98.03951859669746 97.83566963685006 97.64557199028367 97.47266567494421 97.31911280872758 97.18598882704362 97.07346692134551 96.98097261151685 96.90607246065984 96.83630887342905 96.75558188460052 96.64919707159973 96.5037345780923 96.30682842488604 96.0478043493858 95.72435777525622 95.33850512317744 94.89188990293434 94.38536436931726 93.81928621982966 93.19363970805352 92.50820862973323 91.76278953625966 90.95741874426155 90.0925925210874 89.16946522000036 88.19001482435182 87.15716919098868 86.07488922308185 84.94820729373023 83.78322058126156 82.58703969900685 81.36769326396723 80.13398902222343 78.89533201438259 77.6615002056677 76.44237820571804 75.24765034062062 74.08645557960219 72.96700880429431 71.89619385925833 70.8781022838757 69.91182145068528 68.99427630508805 68.12121305255134 67.28833398110021 66.49085256022246 65.72348874941842 64.98067231146494 64.25672639835372 + 108.24843331334458 107.76361222198207 107.21319697497353 106.59866285775207 105.92158520170184 105.18369626622255 104.38693935073483 103.53351974840135 102.6259511083226 101.66709573013866 100.66019733647303 99.60890495648599 98.51728670765573 97.3898324801114 96.23144480337255 95.04741750193799 93.84340211446889 92.62536245018718 91.39951807293734 90.17227792440072 88.95016570877516 87.7397390471254 86.54750475602633 85.37983289810488 84.24288433993132 83.1426611674474 82.08491004455357 81.0749724825123 80.11770863245867 79.21744133390307 78.37791966512671 77.6021933537043 76.89256737986659 76.25092986011649 75.67887377361339 75.17779778985405 74.7489946705363 74.3920206387887 74.10322628433006 73.8789049419684 73.71568820690469 73.61053572178454 73.56072090220192 73.5638148951106 73.61767051065587 73.72040743455575 73.87039969737184 74.06626613010685 74.30686435390922 74.59128871715383 74.91887248841174 75.28919452217421 75.70209160129619 76.15750327265746 76.65509213607517 77.19442806608274 77.77502134383089 78.39629958315224 79.0575858002974 79.7580766084414 80.49681934097264 81.27268675406955 82.08434783416408 82.930233145712 83.80849310668421 84.71694758220157 85.65302525113478 86.61369133815323 87.5953625278863 88.59380820296523 89.6040375888259 90.6201729604372 91.63530331550535 92.64117534309173 93.62818797809872 94.58562489470884 95.50177108178308 96.36407818029768 97.15938622564391 97.8743036636375 98.49865394183492 99.02735451225595 99.45816670520284 99.79163109767356 100.03100596068677 100.18206065058669 100.25273657027607 100.25269759594673 100.19279972646723 100.08451555139618 99.93936747964592 99.76833790023686 99.58115348160374 99.38601671257122 99.18956156536086 98.99688926421561 98.8116717700005 98.63630637131322 98.47210275304253 98.3194827054987 98.17817211631574 98.04736492002519 97.9256437287929 97.80513721736565 97.67139812082037 97.51095157387945 97.31159115323726 97.06216668451793 96.75321462900614 96.38350738151871 95.9560946825631 95.47394761455071 94.93920217944853 94.35289450472209 93.71543924403306 93.02681388153532 92.28676512324803 91.49503793408503 90.65160632993864 89.75688998628654 88.81194509177368 87.81862150108786 86.77968107342107 85.69887414448831 84.58097244995042 83.43175761299183 82.257964671756 81.06718021377672 79.8676946759941 78.66830843806818 77.47809166252408 76.30609859254626 75.1610383697363 74.05090651969893 72.9825841745049 71.96141383415844 70.98984964591651 70.06562765958795 69.18451994641269 68.34215398443718 67.53372217636871 66.75380483115515 65.9965921119344 65.25608457473113 + 109.15736312402015 108.66646034949615 108.1103222401864 107.49030570488604 106.80786074820622 106.06458897407717 105.26229971137967 104.40306332670927 103.48926024050729 102.52362410436152 101.50927760508048 100.44975943768705 99.34904113493596 98.211532653095 97.04207588788844 95.845925623674 94.6287177939374 93.39642534092681 92.15530239398096 90.91181792582255 89.67258047893873 88.44425596485442 87.23348091234315 86.04677386158141 84.89044808529182 83.77059864159182 82.69311248481719 81.663500067892 80.68680415923521 79.76753950246021 78.90965450723094 78.11650546940476 77.3907201584358 76.73433476573832 76.14906269386039 75.63640130845096 75.19772320129553 74.83259983902175 74.53729204788463 74.30799214972511 74.14123517881978 74.03389253784411 73.98316126577558 73.98655131154239 74.04187262955814 74.14722345494823 74.30098075942087 74.50179361471045 74.74857998070325 75.04052727163464 75.37709691874008 75.75803392128849 76.18321570901016 76.65231979414924 77.16497036428905 77.72075125458265 78.31917646717294 78.95966220252193 79.64149965777541 80.36382768300163 81.12560424755931 81.92557556007301 82.76224161134604 83.63381687564491 84.53818491862245 85.47284572704122 86.4348547045465 87.42075247780393 88.42648493755176 89.44731330873013 90.47771451156396 91.51127264881879 92.54055864172328 93.55689841010505 94.55041967334724 95.51028235899716 96.42482289823984 97.28174309971352 98.06834749011863 98.7724148494531 99.38635655871347 99.90634721577582 100.33114384240969 100.66210525350861 100.90307993598404 101.06016301136869 101.14133672944354 101.15601699002706 101.11453504346927 101.0276259904743 100.90587810262957 100.75885261387343 100.59474651922233 100.42030365027055 100.24080561804257 100.06013441905424 99.8808938984946 99.70457498070918 99.53174805901315 99.36226508660694 99.19545360165523 99.03028502093164 98.86549922603496 98.69710361344498 98.5131611116646 98.30132045335908 98.05048637349995 97.75062044176084 97.3933662812586 96.97845883113459 96.50986127901378 95.99151924084943 95.4268905857014 94.8181919786569 94.16642250875232 93.47191900063144 92.73455987338662 91.95398732857855 91.1298401060333 90.2619805158131 89.35070342666559 88.39691823802372 87.40229751832346 86.3693879638889 85.30168068065028 84.20363861538809 83.08067939195247 81.93911198874014 80.78602578798541 79.62913070494658 78.47654753888644 77.33654854789576 76.21724969462744 75.12625817521057 74.07028182493501 73.05471082690092 72.0831854405774 71.15649835825887 70.27108665857087 69.42251364347004 68.60604179280331 67.81619714906391 67.04699714365921 66.29216564005458 + 110.00211859151935 109.50461536773932 108.94220792524226 108.31614301061062 107.62775391066593 106.87852046526643 106.07012709298445 105.20451834928193 104.28395048478671 103.31103739740563 102.2887893660503 101.22064301872459 100.1104811243002 98.96264100373755 97.78191062852791 96.57351180507608 95.34307022464856 94.09657257836787 92.8403113827566 91.58081861932297 90.32478974640696 89.07900007714629 87.8502159180005 86.64510321211067 85.4701367159365 84.33152958800795 83.23527891831853 82.18705278951758 81.1920638315933 80.25500397687912 79.38000162533426 78.57060373068995 77.829738800503 77.1596421920656 76.56213672432608 76.03880887255508 75.59110145035298 75.21859311104008 74.91745031171854 74.68376111221953 74.51396198950849 74.40483559572155 74.35350380970871 74.35741855839537 74.41435228201073 74.52238943293267 74.6799200139183 74.88563585934067 75.13853012426439 75.43790025280752 75.78335576987016 76.17470329698047 76.61162822800173 77.09379367777818 77.62084885819081 78.19239290908725 78.80794040578135 79.46688807570175 80.16848209771679 80.91178522577555 81.69564287709491 82.51864725791432 83.37909857098171 84.27496236301663 85.20382213238851 86.1628264324375 87.1486298796675 88.15732771380392 89.18438386334458 90.22455284983641 91.27179631938183 92.31919552150067 93.35885951777642 94.38177971274045 95.37792457981035 96.33645392074057 97.24588473701313 98.09429701583983 98.86959034888268 99.56152456215814 100.16461833302193 100.67609525379478 101.09561085266414 101.42522335627345 101.66924040368214 101.83394958502376 101.92724839253418 101.95819603081974 101.93656265987595 101.87239829967196 101.77502094869885 101.6525583175834 101.51181890025113 101.35823994974275 101.1959071719376 101.02763680879355 100.85510834326132 100.679034318906 100.49935266802026 100.31542638259947 100.12623522009189 99.9305442847604 99.72703465950897 99.51380373678339 99.28266615961462 99.02237143722726 98.72283809402794 98.37503934127236 97.97162452636167 97.51317746307716 97.0044617255077 96.45028618341787 95.85506893818005 95.22240071081592 94.55426683758854 93.85150569766076 93.11429166490196 92.34234228362249 91.53514472193773 90.69218518199706 89.81316851060947 88.89821826142894 87.94804988028045 86.96411151097297 85.94868819460154 84.90496604455888 83.83705343512426 82.74995647813503 81.64950623016291 80.54223533258069 79.43520230465353 78.33576264926701 77.25128744514197 76.1888323180914 75.15476269656602 74.15434509079401 73.1913187276208 72.26746703844003 71.38189179578094 70.53073671846066 69.70940643800907 68.91246287718815 68.13382278771887 67.36698443158366 + 110.78732617936876 110.28274518349144 109.71356651729448 109.08093433546321 108.38607310232106 107.63034900686277 106.81532977897474 105.94284238349753 105.01502701391802 104.03438571824628 103.00382396971095 101.92668354784372 100.80676522254494 99.64833993357306 98.45614742679514 97.23538164019376 95.99166251838444 94.73099436341569 93.4597112891491 92.1844108222191 90.91187716892911 89.64899612815383 88.40266405876368 87.17969368977583 85.98671987646159 84.83010925157296 83.71594993120662 82.65005000483701 81.63778075630462 80.6839983282166 79.79299641525596 78.96848395152135 78.21358481845678 77.53077306514753 76.92198119268268 76.38887469078317 75.93295631340112 75.55380294140149 75.2474809221486 75.00996968185977 74.83760409999489 74.72707663476125 74.67543441987144 74.68007387423388 74.73873473841319 74.84949494034083 75.01076728057252 75.22129859622034 75.48017179438627 75.78681092287236 76.14092355495279 76.54218258680555 76.9902691464357 77.48488364193514 78.02570409438447 78.61234471181804 79.24431588438743 79.92098526551025 80.64153947159082 81.40494583134412 82.20991354768832 83.05485360356879 83.93783675102478 84.85654897344816 85.80824390741242 86.78969185558101 87.79712521853997 88.82618042279093 89.8718367254013 90.92835263236557 91.9892010750546 93.04700494227642 94.09347557691419 95.11936013041002 96.1145785620787 97.06840853426176 97.96966651165192 98.8069238386872 99.56900577458057 100.24821199134475 100.84047199051368 101.3439680380559 101.75914554543819 102.08863868559169 102.3370852018835 102.51083993354797 102.61760317127819 102.66601857644199 102.66540831861464 102.62476523484551 102.55207798981748 102.45416459885338 102.33658289067297 102.20360971671566 102.05828263270496 101.90249529050709 101.73713590510461 101.56225687973406 101.37726291603656 101.18110460754438 100.9724644982506 100.74992276661749 100.51208996982395 100.25766980958925 99.98244022054038 99.67678543785708 99.33154762699303 98.93861799717504 98.49155506883632 97.99168150855786 97.44444886496083 96.85542527030232 96.22986835439741 95.57237937167098 94.88633112108906 94.17330921562939 93.43392672264022 92.66813904826448 91.87545649346326 91.0551683080962 90.20656537431913 89.32915127469809 88.4228336381348 87.48808928888202 86.5260978809591 85.5388394508579 84.52915176400684 83.50074358646052 82.45816022151887 81.40669796246632 80.35226468483977 79.30118479138392 78.25994827661897 77.23490591892451 76.23191561873446 75.25594870132345 74.31066952020969 73.39800673654509 72.51774939657811 71.66802684348828 70.84532189659254 70.04433654360969 69.2589631392843 68.48253005343228 + 111.51729319754877 111.00520803785837 110.42881113696818 109.78915105333961 109.08735069746862 108.32467004149314 107.50256761505352 106.622760224604 105.68727927591944 104.69852197490604 103.65929564758673 102.57285346040585 101.44291993857954 100.2737048724079 99.06990446602096 97.83668891412117 96.57967598163582 95.30489059820658 94.01871095149495 92.72780205598845 91.43903827161353 90.1594167322958 88.89596410143268 87.65563948179852 86.44523665482461 85.27128909251334 84.13999832295077 83.05727914341607 82.02865093967468 81.05912249894462 80.1531396798767 79.31455872263008 78.5466460488787 77.85207583024759 77.23290885102271 76.69087918003714 76.22753873232196 75.84245295176474 75.53158142682041 75.29078966879953 75.11630707037557 75.00473369641897 74.95304170794094 74.95857400866434 75.0190420492282 75.13252418446152 75.2974655377364 75.51267996551644 75.77735441722967 76.0910331142477 76.45335563337046 76.86398987584703 77.32266522060317 77.82912526253344 78.38307918804841 78.98415450597035 79.63185111074907 80.32549651683266 81.06420199498223 81.84681926562409 82.67189736310075 83.53763927985354 84.44185803289943 85.3819318678983 86.35475842969704 87.3567078829337 88.38357516175833 89.4305317625794 90.49207776521393 91.56199507144187 92.63330317916656 93.69821915609931 94.74812725025652 95.7736229541818 96.76468553580376 97.71082142002514 98.60125414554255 99.42514562296738 100.17299700204644 100.83934564087667 101.42114805461712 101.9174472270952 102.329363401643 102.65998305803028 102.91415066635211 103.09817380617119 103.21946741819228 103.2863904351319 103.30750871355716 103.29060074038966 103.24243045160226 103.16862781372821 103.07363303763987 102.9607007115187 102.83195770718737 102.68850679579413 102.53056651363093 102.35763691416437 102.16868036112376 101.96230636728436 101.73694955828795 101.49103003445767 101.22308562522353 100.93186572035248 100.61568179263176 100.26782544330298 99.87999733586526 99.44492109263477 98.95697465822109 98.4181153874222 97.83437361202942 97.21197216273642 96.55691117534042 95.87462681245218 95.16965225342791 94.44478780044399 93.70122375104533 92.93929636334008 92.15869999627348 91.35869865222126 90.53834442787822 89.69669242770392 88.83300351467966 87.946927673424 87.03866175920588 86.10907605847324 85.15980447726032 84.19329341205756 83.21280457083206 82.22236734082945 81.22667689321682 80.23093522146245 79.24063386975062 78.26127933568502 77.29806510311656 76.35549798776698 75.43699088075492 74.544438849528 73.67780076168042 72.83536891669469 72.01521671987865 71.2135038847837 70.42428675831216 69.64078340018867 + 112.1960488528964 111.67609197444716 111.09209317828605 110.44501192714762 109.7358763120583 108.96584694340856 108.13628000960115 107.24878890559856 106.30530277378317 105.3081201793459 104.25995609338597 103.16398038372111 102.02384611848392 100.84370617083482 99.62821687191045 98.38252778815695 97.1122570906587 95.8234524277188 94.52253769535378 93.21624660920304 91.91154449974451 90.61554026361651 89.3353908895262 88.078201419671 86.85092358903022 85.66025668820988 84.51255481473144 83.41381510502809 82.36968647469863 81.38531992300554 80.46530164030908 79.6136219233827 78.83367246936184 78.12826297289153 77.4995969235272 76.94946659112097 76.47946195461408 76.08912685727135 75.77430680539587 75.53074743168703 75.35456811818442 75.24227378121493 75.19076092340613 75.19732057208012 75.25964004096278 75.37580488315817 75.54430193173907 75.76402393325017 76.03427412946215 76.3546099565004 76.72465236220631 77.14412735179647 77.61282154921349 78.13052635190152 78.69698302976465 79.31182908952094 79.97454607803274 80.68440887888497 81.4404364675568 82.24134403361495 83.0854963546455 83.97086231690622 84.89497052220987 85.85486599905752 86.84706814755383 87.8675301903406 88.91160057283682 89.9739869513925 91.04872362200713 92.12914346776516 93.2078557308797 94.2767311337747 95.32690256267853 96.34890725898296 97.33288728613644 98.2686804965671 99.14601311946527 99.95490356863898 100.68823850725646 101.34197007300232 101.91396638865618 102.40402527148206 102.8138246533019 103.14678320110988 103.40783724813826 103.60314678311791 103.73989566456845 103.82604942835863 103.86911098131354 103.87572406452585 103.85153250629854 103.80109669272282 103.72786557340328 103.63420023175081 103.52144317239735 103.39002604302432 103.23960750915245 103.0692324005172 102.87750298157516 102.66275318171954 102.42321675792098 102.15718055949247 101.86311424003341 101.53976785913713 101.18620231926968 100.79930217514108 100.37204065523156 99.89789712572377 99.37198720710504 98.79680623787384 98.1788594231251 97.52492166134263 96.84163693872117 96.13518271260544 95.41096484898222 94.67311584150202 93.92370246644263 93.16356115702115 92.39271373785927 91.61055870554387 90.81607863493771 90.0080519632064 89.18526028220894 88.34668341074139 87.49167532613845 86.62011455388864 85.73252291727863 84.83014673373759 83.91499472694495 82.98982723484595 82.05809187306862 81.12380180145144 80.1913542697745 79.26528929566038 78.34999122038936 77.44933950107173 76.56631934342987 75.70260744892184 74.85815287572818 74.03116229065316 73.21991127178882 72.4215964648737 71.63164825514589 70.8437304388224 + 112.82737831917018 112.29924745240712 111.70733330083382 111.05251232183028 110.33572408061572 109.55803620033451 108.72070885711304 107.82525819314783 106.87351695848591 105.86769055615375 104.81040660085932 103.70475611391701 102.55432456939721 101.36321117937187 100.13603505753166 98.87792722573379 97.59450781993476 96.29184830067076 94.9764189666589 93.65502259401792 92.33471556212426 91.02271836295107 89.72631790567198 88.4527645036561 87.20916684806106 86.00238861284707 84.8389505829657 83.72495687224342 82.66614707660706 81.66780406296269 80.7346435898231 79.87077798090053 79.07970940519539 78.3643514684891 77.72702782603199 77.16958600805971 76.69364283554846 76.29871011339804 75.98051152203793 75.7346664203296 75.5571792629242 75.4444567358859 75.39331875370009 75.4010059480835 75.46518556744641 75.58395710626034 75.75585848104014 75.97987314838478 76.25538808588722 76.58194005746664 76.95920864708259 77.38698951060242 77.8651330200247 78.39348164983798 78.97180817027348 79.59975519565823 80.27677650328536 81.00208043232898 81.77457559493553 82.59281908363498 83.4549673408846 84.3587298674837 85.3013259856753 86.27944493811653 87.28920969284022 88.32614493317944 89.38514983563104 90.46047637183989 91.54571400598395 92.63378178706435 93.71692894660447 94.78674519405237 95.83419160414978 96.84984003099788 97.82409329104811 98.74721421323277 99.60951888146987 100.40265354478309 101.12157937431651 101.76321895630868 102.32625598611915 102.81113343942634 103.21997134300665 103.55640688972248 103.82536400946965 104.032806364281 104.18578470780108 104.29146341360119 104.35630488986475 104.38590553007128 104.38489233948125 104.35686963139837 104.30441353245104 104.22911027532817 104.13163285357955 104.0118495801549 103.8689574151622 103.701632569334 103.50819078727424 103.28674979304424 103.03538655678591 102.75228223263913 102.43584775340577 102.08482309465342 101.69834311842573 101.27553613015665 100.81198451601601 100.30188103569357 99.74100583915103 99.13230407923781 98.48265879689667 97.79929833863505 97.08941276346414 96.35982672833325 95.61669608126016 94.86519437499716 94.10863116775786 93.34847397855067 92.58519532775975 91.81847239662817 91.04737727897033 90.2705790818194 89.4865490367914 88.69376064907813 87.8908775056153 87.07692172263009 86.2514161980872 85.41449393303645 84.5669678037213 83.71035442483645 82.84684627408151 81.97922718123682 81.11072774455269 80.24481932369328 79.38494803155561 78.53421360381898 77.695002072242 76.86858559240336 76.05470721201675 75.25136236016627 74.45667943180791 73.66838359908678 72.88247114313842 72.09333503505182 + 113.41485115878635 112.87831449065436 112.27824719318515 111.61544848495895 110.89077534967485 110.10520841055659 109.2599177233129 108.3563278379748 107.39618041487778 106.38159252791914 105.31510870768903 104.19974477407055 103.03902158618347 101.83698699843629 100.59822455370593 99.3278477643379 98.03147922213456 96.71521423052347 95.38556915397565 94.04941521753715 92.71389904718396 91.38635180217464 90.0741892950579 88.7848060041828 87.52546633791478 86.3031968899804 85.12468371292101 83.99617883492371 82.9234872638342 81.91200147439045 80.96655689556889 80.09137689446798 79.29006197183438 78.56560961579655 77.92043600613486 77.35643816728297 76.8752486287926 76.47633669654145 76.15529634262126 75.90761410738082 75.72917448310443 75.61628278008911 75.56568139750982 75.5745621210707 75.64057632725759 75.76184434265124 75.9369646727416 76.16501943294273 76.44541723608035 76.77773718288884 77.16173646866646 77.59728836360146 78.08431224221056 78.62270347106022 79.21226412467632 79.85263535521091 80.5432321180474 81.2831808551675 82.07126066191788 82.90584841106802 83.78486828017714 84.7057461228933 85.66536913968758 86.66005133561681 87.68550529807206 88.73682088124504 89.80845144039507 90.89420831108879 91.98726426853757 93.08016672106604 94.16486137969626 95.232727091987 96.27463528656361 97.28128355152697 98.24342690797181 99.15183696202868 99.99774995226304 100.77506505046324 101.4799717330061 102.11025009266885 102.66529807561557 103.14609387865764 103.55508853556469 103.89603278598956 104.17374810680089 104.39409091993652 104.5637244152792 104.68888047573284 104.77505131817624 104.82687393731628 104.84805872720429 104.84136126909861 104.80859468567418 104.7506786506803 104.6677201345567 104.55912026227884 104.42370124030857 104.25984713610585 104.06565231141981 103.83907145355512 103.5780653454698 103.28073669545502 102.94545044799352 102.57093297254465 102.15634435283503 101.70131579395714 101.20456433434278 100.66158614407342 100.06876147503695 99.42940628693822 98.75069246154875 98.0402088579016 97.30559684804132 96.55423430942773 95.79293691032876 95.02767295009129 94.26302811049926 93.50134978919728 92.74366265726592 91.99004859379231 91.23981453791761 90.4916789725031 89.74396849644 88.99481652700563 88.24235654154349 87.48490244613761 86.72110870174333 85.9501028226431 85.17158288500981 84.38587285701472 83.59392900809878 82.79729149737219 81.9979765945613 81.19830694392724 80.40067989437777 79.60727717783193 78.81972302522239 78.03870195082419 77.26355154818265 76.49191871101665 75.72143770402874 74.95016761126078 74.17454102802057 73.38932463765161 + 113.96184521073695 113.41674548104145 112.80836725062154 112.13743802573248 111.40473788950472 110.6111661518371 109.75780828794858 108.8460025004841 107.87740417206679 106.85404630653605 105.77839395972612 104.65339064109097 103.48249473025795 102.26970409980623 101.01956736678062 99.73718050752214 98.428167957439 97.09864777076989 95.75518092402797 94.40470539707975 93.05445624201887 91.71187343464048 90.38449987751405 89.0798724675236 87.80540963392588 86.56829917510281 85.37539055338074 84.23309602869735 83.1473167872913 82.12350885743065 81.16661667946812 80.28096457620761 79.47024032680328 78.737513246748 78.0852624349665 77.5154296520225 77.02965085079256 76.62734263707021 76.30396157015613 76.05485499660234 75.875782604943 75.76294541941446 75.71300768027315 75.72311420373318 75.79090504025272 75.91452858573092 76.09265373451409 76.3244438957409 76.609329056059 76.94696678169736 77.33720218407842 77.7799929480726 78.27533128818304 78.82316565064448 79.42332345194278 80.07543600798935 80.77886668640498 81.53264320899255 82.33539494335504 83.18529595159565 84.08001450904553 85.01666976502655 85.99179618796471 87.00131641508149 88.04052310798468 89.10407039455869 90.18597544870825 91.27963071614019 92.37782722929136 93.47278936003077 94.55622122684376 95.61936479561803 96.65308551983678 97.64829505332527 98.59618478908781 99.48814328390174 100.31719951125098 101.07893142200639 101.77041592372669 102.39019848375682 102.93828806123501 103.4160907937623 103.82628444095377 104.1726385613268 104.45983649773223 104.69365503470527 104.88005278297584 105.0243722214174 105.13120804946516 105.20432463492841 105.24661166075975 105.260076399325 105.24586987018408 105.20434320303511 105.13512984245568 105.03724878953228 104.90922385537613 104.74921386650618 104.55514886403948 104.32486752129768 104.05625120755468 103.74735028984105 103.39649833670283 103.00240982597616 102.56425673847866 102.08171903896714 101.55491183853914 100.98208597179685 100.36029871592572 99.69316724672802 98.9880721363871 98.2528768082714 97.49558398613979 96.72403311680768 95.94560915661297 95.1669607539757 94.39367178715591 93.62926989534631 92.87542762636657 92.13273772147994 91.40087094307177 90.67874178665176 89.96469071309546 89.25667520487558 88.55246208723001 87.84981354183742 87.14665912337635 86.4412459376198 85.73225904208466 85.01890419057922 84.30094537473497 83.578690334162 82.85291841905395 82.12474697952939 81.39543486979962 80.66612467686977 79.93752881206274 79.20956842563749 78.48097786501603 77.74890366515145 77.01016566108713 76.2628827358245 75.50379902169716 74.72794064050257 + 114.47156685999548 113.91782458694354 113.30106107027656 112.62193746838389 111.88116245999919 111.07955950565936 110.21813476489629 109.29814499655993 108.32116369832617 107.28914355587702 106.2044731572251 105.07002589041967 103.88919898866999 102.66594081870505 101.40476472639922 100.11074805605806 98.78951534124384 97.44720511779244 96.09042032319293 94.7261628076728 93.36175307573612 92.0047369850975 90.66278173383488 89.343564045812 88.05465399785695 86.80339839841051 85.59680800517194 84.4414531382015 83.34337217037377 82.30806184979966 81.34054783867431 80.44524608981013 79.62592160798152 78.8857030869765 78.22711750462322 77.65213526653463 77.16238708208836 76.75722723233885 76.43196769360209 76.18181077174468 76.00238705492428 75.88979094267033 75.84060847177872 75.85193998125592 75.92141935062098 76.04723084805309 76.2281241571372 76.46331321772432 76.75228679446582 77.09479426014343 77.49077650699644 77.94028105983338 78.44337517368444 79.00005872235445 79.61017854723846 80.27334580045027 80.98885768582143 81.75562487762384 82.5721057808129 83.43624868805034 84.34544278667592 85.29647887124118 86.28552052151743 87.30808640866812 88.35904428956098 89.43261713650617 90.52240172215393 91.62139983171686 92.72206210180072 93.81634428169674 94.89577547402058 95.95153763258543 96.97457439350843 97.95609611202129 98.88780644417886 99.76228049820294 100.57453372604377 101.32112108019888 101.99991936319115 102.61014387595887 103.15231227729562 103.6281563539051 104.04048481235306 104.39300419310106 104.69031092962877 104.93789104247318 105.14090763247313 105.30387132993644 105.4305526289932 105.5239275715098 105.5861558788525 105.61858962269461 105.62180970227674 105.59568676960092 105.53946281787624 105.45184941151413 105.33113846577244 105.17532154806631 104.98221382992051 104.74957902157564 104.47525182055614 104.15725455180335 103.79390472528993 103.38391015061546 102.92644800235769 102.42122381642724 101.86850582751475 101.2687865868007 100.62095989295057 99.9288941916868 99.20010792745603 98.44266109840811 97.6648340599982 96.87484038753895 96.0805456920683 95.28919069459236 94.50711573343882 93.73908113917145 92.9875791269451 92.25379885069657 91.53788575004808 90.83908222930403 90.15589046070723 89.48625010479942 88.8277236522727 88.17768188327935 87.53348165296579 86.89262790869985 86.25291160649009 85.61251511773109 84.97007690832626 84.32470783791514 83.67595246633631 83.0236903447005 82.3679744479618 81.70880665425557 81.04585339094494 80.37810803805183 79.7035100623743 79.01853385790939 78.31892897778098 77.60249783321862 76.86616215147055 76.10508501492244 + 114.94706842635529 114.38468445148663 113.75954746285781 113.0722575435463 112.3234573489345 111.51389980064329 110.64451680067701 109.71648829405272 108.73130993303656 107.69085739325611 106.59744525856016 105.45387833545279 104.26349328528678 103.03018857699135 101.75844096631306 100.45330699805623 99.12040840151388 97.76590069921917 96.39642486552945 95.01904244188457 93.64115512483065 92.27041047379825 90.9145960189608 89.5815246645402 88.27891485784674 87.01426950670138 85.79475805515717 84.62710644751682 83.51749990240108 82.47151355149532 81.49420132952558 80.59005966041414 79.76292165145576 79.01596569846824 78.35175244947379 77.77226878307002 77.27913098220283 76.87162230695247 76.54490391252592 76.29402814601472 76.11449313414865 76.0022852581557 75.9539132547414 75.96643641134268 76.0374884807895 76.16529820849637 76.34869616624708 76.58694216935012 76.87960804174614 77.22654478040322 77.62779559769942 78.08350164413878 78.59380551239988 79.15875476202841 79.778207572127 80.45174248562365 81.17857405655313 81.95747605363685 82.78671371070507 83.66398634766303 84.58638151448278 85.55034163409272 86.55164393646868 87.58539428362876 88.64603528120033 89.72736885413367 90.8225932292975 91.92435401353214 93.024808779952 94.11570427607741 95.18846504363644 96.2342918914665 97.2442903486081 98.21004963097279 99.12405445440446 99.98081548248139 100.77651868513446 101.50853904818823 102.17546638617954 102.77708960796436 103.31433600549134 103.78916749331955 104.20443759828932 104.56373533399021 104.87160551503982 105.13298407927311 105.35227056738792 105.53320364559742 105.67880220503264 105.79133485330203 105.87231642675212 105.92252946014821 105.94206801231927 105.9304008668558 105.88645090221979 105.8086873427685 105.69522764014819 105.54394586496485 105.35258467742685 105.11886815445527 104.8406129391428 104.51583530616524 104.14285176627175 103.7203707321344 103.24757251258298 102.72417447936222 102.15047766027637 101.52739027099915 100.85635824697384 100.14213034028676 99.39230155972147 98.6150591269607 97.81888468195251 97.01228426120663 96.20351935280316 95.40033753181733 94.60970294181006 93.8373989266837 93.08697228668007 92.36027477621164 91.65801829031584 90.97988840258047 90.3246834770712 89.6904740241198 89.07477547834628 88.47472717835294 87.88726986772899 87.30931357366455 86.7378873278412 86.17026196383325 85.6040372544925 85.03718504168415 84.46804085076666 83.89523784337167 83.31757887677068 82.73384488219237 82.1425406451967 81.54158216411828 80.92793274775103 80.29719741431545 79.64389954590942 78.96503248668242 78.25755057671802 77.51662457307587 + 115.39126325652613 114.82032077626893 114.18691051024162 113.4915767075365 112.73490132615714 111.91757196584201 111.04045118326263 110.10464652736876 109.11157955320172 108.06305185204921 106.9613059833548 105.80907911789397 104.60964720924231 103.36685760623703 102.08514820535277 100.7695515183866 99.42568239450259 98.05970858051934 96.67830382041677 95.2885837726029 93.89802564701837 92.51437311667235 91.1455287204995 89.79943662548351 88.48395923334887 87.20675167739701 85.97513873440109 84.79599905113956 83.67566183201663 82.61982095069635 81.63353883967544 80.72135955155538 79.88717604117473 79.13420794105897 78.46503891117919 77.88166177670186 77.38567033762651 76.9762694514897 76.64846458550471 76.39715457969477 76.21770310292287 76.10598847794661 76.05844437229244 76.07209372402737 76.14457739210877 76.2741782547115 76.45980194942247 76.70076348615711 76.99673404682048 77.34767344349585 77.75373212599288 78.21514670447647 78.73213319619921 79.30478073492256 79.93294834701378 80.61616723414821 81.35355081313989 82.14371455200228 82.98470741056119 83.87395644581339 84.80822587822405 85.78359163630009 86.7954321037663 87.83843548696322 88.9066239000878 89.99339393304335 91.09157312162033 92.193491383513 93.29106611784755 94.37589929272764 95.43938446795057 96.47282132275146 97.46755968270077 98.41569891492009 99.3113513595544 100.15043984207763 100.92998240766693 101.64809675497611 102.30399665333385 102.89794998369099 103.43119968212388 103.90585032075273 104.32472444388408 104.69129917409464 105.00995087061906 105.28495825685367 105.52000384957263 105.7181151777761 105.88163039192511 106.01218749694935 106.11073557120189 106.17756589990509 106.2123606411779 106.21425645445956 106.18192044783643 106.11363582924614 106.00739475803573 105.86099606426997 105.67214570589019 105.43855803777339 105.15805613973441 104.82866956016562 104.4487278472973 104.0169481330577 103.5325147821176 102.99514870446127 102.40516334568967 101.76350361730508 101.07234130427369 100.33862656617914 99.57032677987796 98.77569610448258 97.96334933882467 97.14201034694044 96.32025721767951 95.50626279939566 94.70753089622526 93.93061123496376 93.18022137150717 92.4589728374579 91.76821649206573 91.10817856181721 90.47807269801187 89.87623671370207 89.30028783431939 88.74728971841051 88.21392387696439 87.69665749491124 87.19189910649564 86.69613318085766 86.20602452712895 85.71848362263869 85.23068458783672 84.74002864070039 84.24404748888394 83.74024323277227 83.22586385581145 82.69761607355824 82.15131988724573 81.58151119465505 80.98137754284453 80.34657504155727 79.67390124880752 78.9584001389993 + 115.80693897228883 115.22760519542167 114.58611205959278 113.8829532404856 113.11865531996186 112.29384575100337 111.40932256486337 110.46612517638994 109.46560455924565 108.40949082451144 107.29995606408512 106.13967022360382 104.9318477560005 103.6802828819487 102.38937145076538 101.06411765564796 99.71012420843854 98.33356501650746 96.94113991987909 95.54001162944039 94.1377256431196 92.74211458970996 91.36118914048218 90.00301831565984 88.67560267325095 87.38674447734311 86.143919476669 84.95415535663541 83.82392223394068 82.75904071810102 81.76462411736972 80.84520606630518 80.00472875285787 79.24644580548348 78.5729558980759 77.98624991038645 77.48789262561017 77.07700484977094 76.74843334476697 76.49692174406606 76.31769909111429 76.20653740344035 76.15979924446455 76.17447754613214 76.24822900877336 76.37940231226987 76.56696374569158 76.81030662917959 77.10920898098009 77.46374506131406 77.87417550849914 78.34083192070354 78.86399927751762 79.44379950553734 80.08007934510407 80.77230547674112 81.51946962095853 82.32000603902833 83.17172353988975 84.07175374415978 85.01651697476017 86.00170673929094 87.0222933463055 88.07254676043893 89.1460783544064 90.23590076393683 91.33450459977286 92.43395032439841 93.5259731661059 94.60209852594792 95.65376494128414 96.67245131105027 97.64984192945177 98.57923588722478 99.45633656635209 100.27792575821353 101.04178318762543 101.74668838952228 102.39239004509811 102.97954380288208 103.50962070784028 103.98478940515606 104.40777864558686 104.78197978651652 105.11141933720953 105.39971486426711 105.64988087384059 105.86429442405083 106.04468127943821 106.192121191665 106.30707056849158 106.38940056474385 106.43844849426593 106.4530804163482 106.43176278549343 106.3726411574271 106.2736241012153 106.13247065826654 105.9468798922043 105.71458126537208 105.4334247329463 105.10146953857841 104.7170707007777 104.27896207275722 103.78633461836048 103.2389081544849 102.6369942520698 101.98154725469024 101.27474998827947 100.52430294950615 99.7399983941223 98.93030204838108 98.10390256039614 97.26967499733105 96.43644161545099 95.61272427203998 94.80648873287208 94.02488136115699 93.2736942059787 92.55644955472627 91.87519094609893 91.23076452788347 90.62290162839506 90.05032946885066 89.51090465489075 89.00176334610205 88.51948121714018 88.06023554262897 87.61996102599265 87.19449042787289 86.77967071857253 86.37144546748219 85.96589456850546 85.55922324154928 85.1476935689395 84.72749359373246 84.29454112644426 83.84422169154305 83.37106220269854 82.86834357282017 82.32781519384993 81.74330250162978 81.11118349283853 80.42623760306988 + 116.19676921837788 115.60929675888234 114.96000293374684 114.24933616515443 113.47777301625133 112.64588597005051 111.75441330761748 110.80433046826668 109.79692118503782 108.73384643265935 107.61720903313295 106.4496116458654 105.23420583340821 103.97472994700493 102.6755337227675 101.34158772137744 99.9784760809338 98.59237148016884 97.18999172086718 95.77853792394973 94.36561498024355 92.95913558839482 91.56720992989189 90.19802375346154 88.8597083447819 87.5602065174162 86.30713935078016 85.10767889378573 83.96843242137035 82.89534404869299 81.89361932365854 80.96776103865841 80.12172677628149 79.35879815921128 78.68158313762757 78.09206579306907 77.59177734838511 77.17975108756083 76.85067441303022 76.59913641398413 76.42023366503925 76.30963589220816 76.26364068273433 76.27921932706228 76.35405492676831 76.48656791645317 76.67578343432217 76.92118623397653 77.22266860479132 77.58042297406668 77.99482076835163 78.4662854097293 78.99516346798268 79.58159790295758 80.22540715995156 80.92597363114311 81.68214467513522 82.49214900233486 83.35353079432046 84.2631034391172 85.21692424032916 86.21029090556067 87.23776004797189 88.29318735385752 89.36978848871992 90.46021924453925 91.55667288207347 92.65099210446137 93.73479262264279 94.79959484972596 95.83695990099255 96.83862558024421 97.7970923564065 98.70725905299126 99.56574078553126 100.37009226889178 101.11878311804266 101.81117233687362 102.44745630329616 103.02859209555497 103.556198752467 104.03243974173543 104.45991194480504 104.84190939447599 105.18196191945638 105.48306348340505 105.74761092051152 105.97739045953777 106.1735807724003 106.33677098139009 106.46699191894749 106.56375886303584 106.62612396640034 106.65273665373311 106.64191036901258 106.59169420572704 106.49994813283001 106.3644207245703 106.18282849643244 105.95293612439146 105.67263696133142 105.34003334270605 104.95351617268318 104.51184318138205 104.01421502300482 103.46034802415471 102.85054187328721 102.18573984983 101.46809861313182 100.70506999252781 99.9072315352021 99.08467811121048 98.24625378414119 97.4009269201455 96.55769940092297 95.72537251337988 94.91230138933216 94.1261397479359 93.3735064690848 92.65899751383975 91.98539312990036 91.35422063061422 90.76581404189416 90.21939626833348 89.71318739954754 89.24453383072385 88.81005194503028 88.4057791785707 88.02732442277056 87.67000898778316 87.32898883391137 86.99934855652236 86.67615775523069 86.35448098233753 86.02933346783942 85.6955762300261 85.34774590872851 84.97981652880912 84.58489214464305 84.15483055460574 83.67984175605915 83.15150198292021 82.56541639477491 81.91596092679063 + 116.56332416466509 115.96805224999945 115.31133305067256 114.59357514450964 113.81521050161196 112.97676184984665 112.07891249296902 111.12257799916185 110.1089780827588 109.03970672819798 107.91679839302219 106.7427879864923 105.520762261378 104.25440028635394 102.94800079073907 101.60649439522471 100.23543906218706 98.84099751462739 97.4298958780538 96.00936338577141 94.58705364290067 93.17094865260603 91.76924755106899 90.3902427544553 89.04218696778521 87.73315521640036 86.47090670815076 85.26275188987877 84.11543049603058 83.03500667105455 82.02678735202747 81.09528724899864 80.24441917569237 79.47748547645699 78.79709967101795 78.20523739290297 77.70339425954589 77.29051520987775 76.96113053962375 76.70967835942471 76.53112777669102 76.42105298868137 76.37569534204471 76.39201526131625 76.46773495704574 76.60134819789111 76.79194022956567 77.03909985753324 77.34283795537155 77.70346652753418 78.12146562010513 78.59734421403661 79.13149981790319 79.7240813851536 80.37485997075694 81.08311122222653 81.84751338023285 82.66606395595207 83.53601766883524 84.4538475836982 85.41523069490778 86.41505848369252 87.44747223845376 88.50592219390037 89.583248829463 90.67178398720311 91.76346884040133 92.8499851817118 93.92289601893091 94.97379108078923 95.99443255725868 96.97712160806866 97.91585222557266 98.80646434783307 99.64635034015515 100.433775913757 101.16782584738881 101.84835650330135 102.47592802528278 103.05171851359933 103.57742291104331 104.05513971220705 104.487329349358 104.87710222308105 105.22743796100659 105.54074687523182 105.81885885429162 106.06302724824651 106.27394548565705 106.45177485107811 106.59618185005176 106.70638363266734 106.78120003251388 106.81911089994666 106.8183175604018 106.77680740210202 106.69242078367752 106.56291964046628 106.38605734674104 106.15964954676917 105.88164578612776 105.55020184055994 105.16375263619275 104.72108556437085 104.22141379787527 103.66444889311082 103.05047149427921 102.380398319133 101.65633374176113 100.88543372643429 100.0778858070012 99.24465402831733 98.39611171971093 97.54137889794315 96.68958118854705 95.84973747828963 95.0305261160168 94.24003828413497 93.4855147276712 92.7726333170205 92.10499667366135 91.48485722692749 90.91321928473958 90.3898910148459 89.91356498261449 89.48192279163345 89.09175832650847 88.73911304076005 88.4194157251235 88.12761830188579 87.8583184942013 87.60585979037054 87.36439902801791 87.12793220939032 86.89026984314297 86.64495416212795 86.38511190414151 86.10323780361261 85.79090528156775 85.43840169938225 85.03428906040156 84.56759323095555 84.03268768492153 83.42340697788754 + 116.90907994591667 116.30643549306295 115.64276057819372 114.91842945332768 114.1338350132316 113.28945551331006 112.3859240881869 111.42410053167708 110.40514369806355 109.33058259362298 108.20238399506412 107.02301426901079 105.79549298389738 104.52343591122523 103.21108511372329 101.86332401794111 100.48567566990648 99.08428277347134 97.6658686074291 96.23767850166736 94.8074022133263 93.38307826659485 91.97298208647352 90.58550054654037 89.22899633955934 87.9116663412478 86.64139884313154 85.42563515000775 84.27124153987107 83.18439793750353 82.17050982568288 81.23415023610288 80.37915908957052 79.60883210058907 78.9257864744721 78.33199092958236 77.8289065517794 77.4153922464586 77.08582693002677 76.83450476802315 76.6562757876482 76.54662867280473 76.50176032664642 76.51863388546886 76.5950269669695 76.72949455623811 76.92119752091618 77.16983470142793 77.47553773787175 77.8387368886792 78.26001544527176 78.73995816562885 79.27899920486674 79.87727491258839 80.53448660186307 81.24977798379687 82.02163141859893 82.8477864755737 83.72518353979702 84.64993437364606 85.61732065972248 86.62182064201305 87.65716306899418 88.71640675053246 89.79204319424426 90.87611900996359 91.96037408530772 93.03639096140824 94.09575039384099 95.1301877851388 96.13185284903224 97.09438998958855 98.01278234512591 98.88360466697817 99.70497547587192 100.47580522241833 101.19571783176511 101.86498661125393 102.48445594903731 103.05545122043291 103.57967950096864 104.05912547208796 104.49612050149786 104.89348132091058 105.2536385266872 105.57846045968095 105.8692604197677 106.12681463436117 106.35138944623407 106.54277625652722 106.70033285670311 106.82302990539613 106.90950144915352 106.95809854591263 106.9669452220896 106.93399617300021 106.85709579589255 106.73403831812222 106.56262894194586 106.34074606292323 106.06640472060603 105.73782149623823 105.3534810691903 104.91220456657906 104.41321967178384 103.85623217788594 103.24149825947471 102.56989616601663 101.84345788898055 101.06902049763274 100.25632477819542 99.41593744889596 98.55914112013258 97.69657149270353 96.83753234435112 95.99120685219891 95.16653791038101 94.37199174207244 93.61530882125791 92.90308580254693 92.23988083838572 91.62869803094544 91.07126257075237 90.56804047556102 90.1182896213296 89.72013727623545 89.37067947313678 89.06609638989217 88.80177677429704 88.57244341617147 88.372270803591 88.19498547295078 88.03393923461743 87.88214547076363 87.73226907434118 87.57656130216563 87.40673177173746 87.21375089667352 86.98757701037835 86.71680297171956 86.38821679920105 85.9881515332552 85.50917363475808 84.9444419057728 + 117.23642716651105 116.62692575308863 115.95686020028562 115.2265760732588 114.43643281726017 113.58686958947264 112.67847423208671 111.7120548975236 110.68871273012103 109.60991370105565 108.47755744135887 107.29404073313661 106.06231321227759 104.78592281651342 103.46904858844418 102.11651861967117 100.7338112025278 99.3270376402091 97.9029056512934 96.46866288424255 95.03202072139983 93.60105928661659 92.18411535867136 90.78965571339458 89.42613924691163 88.10187204376423 86.82486031736836 85.60266683472841 84.44227700933195 83.3499812714936 82.33128056947511 81.3908218831502 80.53240719032664 79.75927060366115 79.07403189399797 78.47865717720907 77.97457808731907 77.56057344157612 77.23088056397599 76.97966075610029 76.80165729003897 76.69228711546293 76.64771800535145 76.66493257098361 76.74177476256048 76.87685362027054 77.06941849436966 77.31928296232216 77.62669907540685 77.99221084747263 78.41649579370113 78.90020074522506 79.443778236566 80.04732962539701 80.71046076631143 81.432155535913 82.21067181458085 83.04346369415694 83.92713272784906 84.85740999920381 85.82916969372988 86.83647374369646 87.87264601842098 88.93037348326366 90.00183078365549 91.07882385681278 92.15294746149937 93.21575096982485 94.25890640483217 95.27441286484243 96.2555461368654 97.1970508587615 98.09459559499206 98.94545682962301 99.74842248419881 100.50297867370168 101.20921255099817 101.86773680428351 102.47960577784151 103.0462254746028 103.56925968161019 104.05054227603503 104.49228315082763 104.89689939235143 105.26630441651801 105.60186717479688 105.90443375982433 106.17435646503081 106.41152886977193 106.6154256769844 106.78514619360378 106.91946051306302 107.01685763220296 107.07559490974607 107.09374844772093 107.06926414804565 107.00000936054592 106.88382519194097 106.71857968285379 106.50222217570018 106.23283928305983 105.90871291495762 105.52838082360316 105.09070006255318 104.59491361835114 104.04072023774803 103.42834712033097 102.7586246483142 102.03349697589277 101.25946714216072 100.44580940966122 99.60262890355139 98.74081074878345 97.87193067876738 97.00685760739547 96.15499788648194 95.32550848864186 94.52717525228636 93.768172563169 93.05578410142577 92.39561566251209 91.79146070056247 91.24579978818582 90.75981259042182 90.33339846682307 89.96522508133901 89.65280124182196 89.39256893837992 89.18000831259702 89.00974812920013 88.87567330385001 88.7710202300933 88.68845010171553 88.62009018383812 88.55753306091147 88.4917842594249 88.41314923752249 88.3110514256008 88.17377359950761 87.98811511102267 87.7389570630659 87.40993020589656 86.99115933010158 86.47497861524577 + 117.54767855466962 116.93192529036698 116.25613053498435 115.52061692842726 114.72571620904003 113.87183391925646 112.95951758265237 111.98952792013831 110.962911560779 109.88107337960002 108.74584632392386 107.55955638323766 106.32508022675108 105.0458929880059 103.72610372598659 102.37047624397923 100.9844332053245 99.57404185073838 98.1459800933751 96.70748234013767 95.26626505207804 93.83043280044517 92.40836638156492 91.00859540303058 89.63965862176755 88.3099561741611 87.0275986592881 85.80025878543029 84.63503193238817 83.53831248098922 82.51569307899034 81.57189411141204 80.71073513323239 79.9353468075834 79.24833872987956 78.65168016455794 78.14678381376656 77.73235849159829 77.4025143706049 77.15129560526175 76.97335553286442 76.86405742158887 76.8195591896419 76.83688462325003 76.91393917828344 77.0493911389198 77.24259004907738 77.49346533600067 77.80238614498111 78.17000212644984 78.59707192251656 79.08428643857367 79.63209406343431 80.2405348201342 80.90908999908399 81.63655316383517 82.4209275527617 83.25935385931449 84.14807119641436 85.0824127784129 86.0568365312208 87.06498951358223 88.09980374619424 89.15361984537202 90.21833378668798 91.28556122006363 92.34681305478568 93.39367555833792 94.41799579520033 95.41263534749278 96.37208297414193 97.29176700162488 98.16802381354283 98.99879257373512 99.78346953443332 100.52204588836909 101.21499734166053 101.86320213415321 102.46785606759529 103.03038641339212 103.55236641550242 104.03546764332728 104.48174092605754 104.89315462691567 105.2711396864676 105.61660845901505 105.92998775355916 106.21125628206369 106.45998528282598 106.67538129542746 106.85633026307379 107.00144232832558 107.1090968694179 107.17748749662582 107.20466689128816 107.18859152363585 107.12716642848582 107.0182903484917 106.85990167047123 106.6500256777597 106.38682371561356 106.06864491079625 105.69408109196172 105.262025513205 104.77173587506951 104.22290194776062 103.61571780839633 102.95095828089721 102.23046779179876 101.46040668502096 100.64957200605305 99.80758719342883 98.94487296994755 98.07261658209569 97.2026812335955 96.34612451866023 95.51238044762657 94.71050670351241 93.94905904118217 93.23584543033014 92.5774485065685 91.97854033500997 91.44237648593925 90.97088990429275 90.56468092118985 90.22303590636041 89.94397168734005 89.72430154675043 89.55971729041431 89.4448806142807 89.37351584870753 89.33849518479141 89.3319067416757 89.34509535343902 89.3686657529264 89.3924378887983 89.4053443707868 89.39526038716156 89.34875671358573 89.25076641360549 89.08415524596259 88.82988170393688 88.47505855152161 88.01099476358287 + 117.84507581873068 117.22376610337645 116.54300071845475 115.80308525678079 115.00432961053055 114.14711131147112 113.23194265886453 112.25954126548773 111.23090253464646 110.14737224365693 109.01071712062887 107.82319107384785 106.58759457861235 105.30732465620773 103.98641290365511 102.62954915898142 101.24208862074876 99.83004058540747 98.40003742149305 96.95928296204822 95.51548015841408 94.07673858821686 92.65146323242783 91.24822681114465 89.87562887160306 88.54214572741331 87.25597622414715 86.02488911901686 84.85607857464211 83.75603483976528 82.73043758270063 81.7840795148388 80.92082753220225 80.14372402460769 79.4553331069527 78.85762734614423 78.35202260319504 77.93717119832314 77.60707584360713 77.35568448634511 77.17758239676823 77.06810198627532 77.02341498119846 77.04060450931902 77.11762555857202 77.25322345175962 77.44685430507357 77.69856197791641 78.00882600231651 78.37838949690494 78.8080746672898 79.29859388389333 79.85036440148502 80.46333454289324 81.13682862542632 81.86941708597888 82.65881719309644 83.50182846346821 84.39430547550307 85.33116924825543 86.30645678791127 87.31340685574727 88.34457853988755 89.39199787477934 90.44732659919003 91.50204622158459 92.54764990903695 93.57583377385673 94.57902349338256 95.55136484256195 96.48806546645591 97.38521203836824 98.23978906466992 99.05035364796599 99.81684617571408 100.53969192845493 101.21968265363384 101.8578926954012 102.45559692719343 103.01419179753539 103.53512056525338 104.01989982961197 104.47035673722876 104.88800245061277 105.273821494815 105.62831205249776 105.95152773342748 106.24312099710251 106.50238725626969 106.72830892330052 106.91959887254092 107.07474298242361 107.1920415937738 107.26964987756247 107.30561724823211 107.2979260890866 107.24453017496441 107.14339328468594 106.99252859083849 106.79003949553027 106.53416264458806 106.22331389441484 105.85613801839672 105.43156291383333 104.94885899326466 104.40770429937064 103.80825564937228 103.15122576655601 102.43835020286751 101.67544322895347 100.8708215741594 100.03361662461633 99.17376435676626 98.30199548479307 97.42980691683478 96.5693615464716 95.73183826439683 94.92662445890683 94.16261156258354 93.44805675085425 92.79029197567259 92.19499574288908 91.66621086128836 91.20664798289066 90.81765160062423 90.49918844395474 90.24986234514044 90.06695224217619 89.94646860933898 89.88322226152839 89.87089822181467 89.90212622883463 89.96853854083646 90.06080500146791 90.16863488304317 90.28073480173674 90.38471195606775 90.46691198375713 90.51218072610428 90.5035389521229 90.42175840652054 90.2451763031636 89.95743238570859 89.54855059533553 + 118.13079573475173 117.50471587340957 116.81983615267494 116.07645109857458 115.27485472974067 114.41540229639554 113.49857610533942 112.52505512914402 111.49578697544418 110.41206044215423 109.27557657942371 108.0885159317847 106.85359945672651 105.5741405207816 104.25408537193672 102.89803958699422 101.51127820142683 100.09973755168922 98.66998729712756 97.22918163832233 95.784989404784 94.34550343717318 92.91913052309997 91.51446404217394 90.14014241206294 88.80469737538488 87.51639709578248 86.28308990531721 85.11205532587321 84.00986963334474 82.98229370156604 82.03419110832462 81.16948446270175 80.39118506973722 79.70176297200926 79.10320041956193 78.59693186795229 78.18157807631991 77.85105982515961 77.59925559413426 77.42071003764538 77.31075278130196 77.26559867311174 77.28238317162291 77.35912244891954 77.49465551029535 77.68854668085542 77.94094990088874 78.25244457546327 78.62385068163846 79.0560316298909 79.54969380746863 80.10519178622278 80.72234785724272 81.40029387558694 82.13734239090289 82.93089274684345 83.77737630795399 84.6722432800098 85.60999179797943 86.58423813810319 87.58782514139803 88.61296428806902 89.65140540434322 90.69462677684895 91.73403754726222 92.76118370262901 93.76808984400168 94.74841832669404 95.69713475610118 96.61009722787236 97.48404335140754 98.31657942670621 99.10683106531344 99.85521650813678 100.56252465232026 101.22979364894985 101.85822931700528 102.44912945373129 103.00381467011515 103.5235685030703 104.00976823721639 104.46394274487693 104.88716405278221 105.2800070273904 105.6425972563456 105.97465909516434 106.2755629317611 106.544370996756 106.7798812840705 106.98066934968026 107.14512793167685 107.27150448663859 107.35793686986791 107.40248750389367 107.40317648373647 107.35801416106123 107.26503383397184 107.12232524537113 106.92806965992247 106.68057734576821 106.37832832867517 106.02001730755023 105.60460361317307 105.13136704528517 104.59997032186963 104.0105286988597 103.36368704327985 102.6610650226866 101.90813176701685 101.11272689227988 100.28348754409242 99.42985486112713 98.56208241987922 97.69122892377864 96.8291315958209 95.9882777336427 95.17986330137032 94.41315283226527 93.69680644578435 93.03871342176735 92.44553853445925 91.9221807286887 91.47213878801028 91.09752897769903 90.79904354756013 90.57593562316109 90.42602799192737 90.34574188416913 90.330140450266 90.3729802975869 90.46676322647664 90.60277923955054 90.77113102622143 90.96072946019598 91.15924918258725 91.35303303827966 91.52693391499898 91.66408229374628 91.74556741192163 91.75001919504678 91.65321722867462 91.4350056124149 91.08380584315516 + 118.40695547847098 117.77698311076796 117.08894340354136 116.34312587560676 115.53981474215058 114.67934882248763 113.76218580971397 112.78897067242215 111.76060683236231 110.67832840113893 109.5437714394515 108.35904193675607 107.12677801046625 105.8502037044885 104.53317173871642 103.18019263437803 101.79644782314959 100.38778464651078 98.96069156865698 97.52225246065973 96.08007946079633 94.64222466715685 93.21707176037404 91.81320956858154 90.43929055074669 89.10387816097476 87.81528803337194 86.58142885850343 85.40964966844089 84.30660096455588 83.27811766444552 82.32913216341078 81.46362585207312 80.68463060067342 79.99450949974134 79.39524678250542 78.88830343055075 78.47230959811391 78.14113535577944 77.88862280790104 77.70930953383659 77.59855719963771 77.55263114295018 77.5687264846184 77.64494377990569 77.78022401865131 77.97423910438772 78.2272453691865 78.5399073857815 78.91310060926182 79.34770226487893 79.84438035969306 80.40339071644743 81.02439151012672 81.7062839518992 82.44708655001659 83.2438488370644 84.09260865554029 84.9883951176004 85.92527728595442 86.89645655138195 87.89439869871873 88.91099984482634 89.93777887975088 90.96608781676888 91.98733061610902 92.99321224889269 93.97675969157795 94.93264233653939 95.85647129233094 96.74475915541059 97.59487988257288 98.40502937706944 99.17484854965443 99.90516602227468 100.59706510746747 101.25176412426588 101.87054080903525 102.45466593307265 103.0053460061586 103.52368979739569 104.01094194044215 104.4682677404392 104.89633245539349 105.29533817608929 105.66507821902759 106.00498925574645 106.31420055862922 106.5915800113747 106.83577675234463 107.0452604994392 107.21835775345653 107.3532851996399 107.44818073000933 107.50113259698898 107.5102072858155 107.47347676245079 107.3890458175322 107.25508028660084 107.06983698267042 106.83169622803766 106.53919791542437 106.19108205948494 105.78633481145313 105.32424089232705 104.80444333993145 104.22701134434628 103.59251674079191 102.90245800614753 102.16196357064206 101.37840432198558 100.5599277771205 99.71547876952538 98.85482376231066 97.98856218483238 97.12812154965101 96.28573301109228 95.47423003005154 94.70466658445213 93.98610946809787 93.3269202216007 92.73452527336295 92.21481460665278 91.7720791123053 91.40921982325192 91.12768366476415 90.92741859604347 90.80685265083275 90.7628937734775 90.79094592017422 90.88493550436641 91.0373409590309 91.23921700991355 91.48020423514421 91.74851364505103 92.0308753479831 92.31243984547235 92.57662006759612 92.80486183337808 92.97632989265641 93.06749594852124 93.05165106801637 92.90467986431213 92.6130348650835 + 118.67561720385999 118.0427214940637 117.35257423039486 116.60546603157866 115.8016774535013 114.94153684395545 114.02548280793997 113.05413112898192 112.02834486264719 110.94930594912836 109.81858635977594 108.63821651048558 107.41074845618363 106.13931123839552 104.82765570454939 103.48018616456541 102.10197640693492 100.69876787004621 99.27694815917417 97.84350861605701 96.40598028315421 94.97234835097895 93.55094602216067 92.15032965305434 90.77913802070702 89.44593958272668 88.15907261803021 86.92648412081164 85.75557422716257 84.65305373842521 83.62482291891442 82.67588013667783 81.81026903095326 81.03107235574113 80.34057936232607 79.74075227442246 79.23310014596869 78.81628534972917 78.48417813526267 78.23062558413142 78.0501959825785 77.93830216435298 77.89127742689789 77.90640121815673 77.9818740906441 78.11674376429634 78.31078640810506 78.56434932831893 78.87816303618628 79.25313207539884 79.69011495293663 80.18970399325619 80.75201590440582 81.37650330904567 82.06179647990035 82.80558307581364 83.6045318684391 84.45426436396157 85.34937595487301 86.28350588786495 87.24945301345855 88.2393320985379 89.24476353675512 90.25708767645854 91.26759378028304 92.2677528149086 93.24988966217369 94.20823883776295 95.13814364416251 96.03587288236196 96.89859023450602 97.72428479256587 98.51170474543135 99.26095013449368 99.97319206325085 100.6497409266501 101.29193274552544 101.90106278910578 102.47833087825583 103.02479748123393 103.5414073681255 104.02923637019657 104.48906266919793 104.92117678670031 105.32544454921393 105.70136573420359 106.04812834140264 106.36465821863146 106.64966401351904 106.90167761134005 107.11909036561988 107.30018554169249 107.44316748208163 107.54618807325815 107.60737115168799 107.62483553781821 107.59671743342138 107.52119296328127 107.39650168828292 107.22097196423742 106.99304906866696 106.71132706429376 106.37458540934988 105.98183135510848 105.53234918155533 105.02575730077851 104.46207418804775 103.8417939609058 103.16629000297691 102.44035733568465 101.67091071729217 100.86561822873195 100.03293408785458 99.18213659635514 98.32335570808539 97.46758728448233 96.62669099538596 95.81336883462349 95.04077994298949 94.31961498554261 93.65867673362797 93.06595455050906 92.54828721640772 92.11084430615323 91.75730966808845 91.48989878858701 91.30928352172452 91.21454149548492 91.20312639591306 91.27085536020354 91.41190829381031 91.6188325689462 91.88254530288863 92.19232428611626 92.53577765140878 92.89878154797033 93.26537439206946 93.61759566903221 93.93525670129641 94.19563019707496 94.37304466804929 94.4383723070427 94.36354254537811 94.13263916238891 + 118.93879186388791 118.30403338974645 117.61292872578021 116.8657757040709 116.06285740590464 115.20449775220176 114.29112192099964 113.32332151522222 112.30192327277545 111.22805973574671 110.10323995348128 108.92941799832363 107.7090568362629 106.44518493118288 105.14144288409423 103.80211742984567 102.43216024402369 101.03718926049092 99.62347057089751 98.19787947375609 96.76783986058474 95.34124186409313 93.92633853752884 92.53162326912677 91.16569063985723 89.83708447968242 88.5541379352929 87.32481139355565 86.15653506743972 85.05606389819445 84.02935310813467 83.08146319817733 82.21650336615586 81.43762216690067 80.74709838894704 80.1468461483843 79.63844342763716 79.22061905450899 78.88728692251466 78.6323460294287 78.45043092659817 78.33703588908824 78.28858977246354 78.30247846259161 78.37701432398653 78.51135461752816 78.70537334901435 78.95949329293789 79.274486892127 79.65125626362494 80.09060356782487 80.59300347100437 81.15838932842969 81.78596404180908 82.47404533425099 83.21995349679678 84.0199475744524 84.86921357663512 85.76190573146289 86.69123917875412 87.6496299399064 88.62887563871824 89.62036839264309 90.6153296526601 91.60505562755375 92.5812883627843 93.53755553352137 94.46890489004461 95.37133982209264 96.2417945188106 97.07807320257443 97.87875281067959 98.64309206787495 99.37159175757363 100.06569778330666 100.72688262198696 101.3565415309078 101.95593807565865 102.52616295088355 103.0681063980432 103.58257869792698 104.0704187959675 104.5320248897256 104.96734529391681 105.37594527615462 105.75706793025998 106.10968889680024 106.43256501275285 106.72427717388001 106.98326784020838 107.20787372004567 107.39635424218518 107.54691647841874 107.65773721665892 107.72698291494227 107.75282829321674 107.73347434690673 107.66716659660804 107.55221442373471 107.38701238336567 107.17006443266128 106.90001206449851 106.57566738829246 106.19605224828639 105.7604445063855 105.26843263125139 104.71997971327323 104.1154979465698 103.45623292181752 102.74665585080338 101.99324133892877 101.20319273139927 100.38448516649089 99.54591512414454 98.69714199740075 97.84871906407128 97.01211112332936 96.19969605424933 95.42474768047796 94.70059750754808 94.03733158459245 93.44342936739334 92.9264198430972 92.49246766824967 92.14605961503187 91.89017925336508 91.72623543639217 91.65398275651506 91.6714623154088 91.77495977557494 91.95897624729452 92.21620618604018 92.53751516998462 92.91190922659578 93.32648630252515 93.76635953008541 94.21454112949066 94.65177507585355 95.05630601638876 95.40357129870856 95.66580231530241 95.81152064230115 95.80887052093182 95.6391564305449 + 119.19844579001287 118.56297253745561 117.87215754473826 117.12630840125614 116.325716894232 115.4707086118914 114.56170107751494 113.5992668926217 112.58420076005744 111.51758887924969 110.40087885663493 109.23594796687124 108.0251673484225 106.77145953434089 105.47834661936268 104.14998636079548 102.79119361478998 101.4074447310783 100.00486287509167 98.59018272018363 97.17069355424006 95.7541605695796 94.34872494317734 92.96278425106757 91.6048557759382 90.28342633437138 89.00679333808898 87.78290287443848 86.61919160220653 85.52244016153156 84.49864653833926 83.55292834737303 82.68946324314095 81.91147657198792 81.22129629231101 80.62078879146544 80.11161531379383 79.69260821326559 79.35777173374403 79.1011026656857 78.91734388114283 78.80210744251 78.7519467427041 78.7643743694667 78.83782507374747 78.97156599465801 79.16555899136311 79.42028240379935 79.73652167323509 80.11513988632035 80.5568403752906 81.06193395577476 81.63012318815994 82.26031521771374 82.95047332378896 83.69751536030049 84.49726489520854 85.34445817424528 86.23280717754987 87.15511615058266 88.1034462186902 89.0693201798154 90.04395744295311 91.01852745461393 91.98441682611035 92.93420935701991 93.86253319652299 94.7651044924729 95.63860565989042 96.48063657547885 97.28962467064744 98.06470189654827 98.80559198932627 99.51313653020932 100.18898930095945 100.83472254264721 101.45173640285904 102.0412185302674 102.60411771267317 103.14114508783412 103.6530032659806 104.14021306775508 104.60282159975104 105.04046747777768 105.4524499302313 105.83779010700695 106.1952847959313 106.52355296988256 106.82107573818696 107.08623037349085 107.31731914474665 107.51259372006933 107.67027591955609 107.78857560532927 107.86570650007555 107.89990073092609 107.88942290621846 107.83258455112994 107.72775975607183 107.57340292991893 107.36806959848823 107.11044124594271 106.79935526041871 106.43384111089514 106.01316394372994 105.53687683519821 105.00488295801806 104.41750889793049 103.77587082400677 103.08412759827435 102.34833230765958 101.57524183097644 100.7723684497291 99.94803917214126 99.11144927762116 98.2727077660138 97.44287228307097 96.63397107289336 95.85900960673742 95.13194932503811 94.46584888389069 93.87006754142644 93.35267798450572 92.92064601755676 92.57940995087631 92.33271578479852 92.18270722541922 92.12982655973347 92.17272653892306 92.30819912141962 92.5311173559004 92.83438531384617 93.20888966254762 93.6434452336821 94.12472581307065 94.63717036738865 95.16285403578838 95.68131243999586 96.16930718774506 96.60051983892625 96.94516105185843 97.16948112351548 97.23812766252978 97.12926534238662 + 119.45651592088021 118.8215458874063 118.13236320538752 117.3892676609839 116.59256586663831 115.74259117213053 114.83975928991578 113.88462914758027 112.87796791903686 111.82081880724098 110.71456979765905 109.56102128583072 108.36245021760033 107.12166818105631 105.84207076913117 104.52767550487829 103.18314570022731 101.81379781421964 100.42559019655808 99.02509155174673 97.61942803932456 96.21620863344525 94.82342919211156 93.44935661914339 92.10239552110522 90.79094084162432 89.5232210653883 88.30713768609833 87.15010768329697 86.05891670310432 85.03959143302176 84.09730024188434 83.23629145949471 82.45987862995644 81.77048243737954 81.16995585796796 80.66004862591909 80.23973601960141 79.90316277016453 79.64447246849062 79.45856079575208 79.34119545464877 79.28908376661155 79.29988450934879 79.3721634273029 79.50529480735004 79.69931439497954 79.95473156235225 80.27231087654106 80.65283492623894 81.09686135139626 81.60448742074142 82.17513519246411 82.80736928697492 83.49875764781991 84.24578345156858 85.04381366326268 85.88712675794572 86.76899899493178 87.68184550323353 88.61740947876876 89.56699016472061 90.52169812927515 91.47272479150674 92.4118140505218 93.33280890136744 94.23111609366568 95.1031436690074 95.94626457299881 96.75873740099462 97.53958903077327 98.2884685816339 99.00551612531599 99.69185314076437 100.34927558049499 100.9793960701789 101.58356944867592 102.16286805705788 102.71807098446025 103.24974061727094 103.75842824214486 104.24430387544085 104.70709266653385 105.1461555541772 105.56055873077695 105.94913382773676 106.31052940369295 106.64325447656104 106.94571493231471 107.21624368787171 107.4531254978376 107.6546172873336 107.81896487517744 107.94441693060462 108.0292369881093 108.0717143330509 108.07017456853785 108.0229906839684 107.92859546888862 107.78549615320247 107.5922922061163 107.3476972905216 107.05056644469387 106.69992964569177 106.2950329932969 105.83538883196685 105.32083619015545 104.75161294650505 104.12870520327114 103.45597242098398 102.73906684288391 101.98431990575902 101.19880092869673 100.39038459207377 99.5678146289723 98.74076170904387 97.91987338525564 97.11681394456306 96.34429207864808 95.61607449674696 94.9468111072826 94.34857674117762 93.83003890553562 93.3987483248276 93.0609911331534 92.82140730067111 92.68286260974108 92.64648168130755 92.71153591917641 92.8753436009008 93.13318288983271 93.47821341561699 93.90140076975337 94.3914370274702 94.93464926239378 95.51488698468548 96.11337851722001 96.70854553182194 97.27576429767018 97.78706164542899 98.21073322890618 98.51087139380262 98.64895544651273 98.59978534941915 + 119.71490744131347 119.08171575825612 118.39560044645825 117.65680667582049 116.86566069147334 116.02250963464127 115.1277732669208 114.18200227394982 113.18594100221581 112.1405932867015 111.04728967236812 109.90775401122856 108.7241671422917 107.49922514813224 106.23618954378779 104.9389267053252 103.61193390006473 102.26034944974585 100.88994485116945 99.50709710229793 98.11874003792134 96.73229416591072 95.35557530590567 93.99668325467579 92.66387271811998 91.36540983448404 90.1094187360635 88.9037237201214 87.75569368032001 86.6720964377832 85.65897145029004 84.72153000805753 83.86409237943099 83.0900713800462 82.40201143221478 81.80181032612488 81.29130801778666 80.86966295364125 80.53121274266559 80.27029869373042 80.08201498540178 79.96232312003944 79.90811302700554 79.91720738366531 79.98830872889016 80.12089206374347 80.31504867209202 80.5712896631231 80.8903200703611 81.27279609774595 81.71907917728882 82.22900082886927 82.80165186720802 83.43520830303972 84.12680439536535 84.87246082747167 85.6670730317384 86.50446143339812 87.37748199540832 88.27819210842807 89.19806376423983 90.12823325083157 91.05977446712271 91.9839907412303 92.89353266598523 93.78335075964553 94.64955894197861 95.48928038884364 96.30058254370537 97.08236863189029 97.83423515000402 98.55630604754599 99.24908649893726 99.91391657052145 100.55267027655397 101.16694436652205 101.75800227757419 102.32676622076083 102.87382973771837 103.39966027686515 103.90455386602903 104.38834054904656 104.85045288065217 105.2900052447043 105.7058619987469 106.0966952051172 106.46103288467154 106.79729881893337 107.1038449562244 107.37897746747048 107.6209774635138 107.82811733981468 107.99867366530447 108.13093748647805 108.22322288042892 108.2738745649171 108.28127536218271 108.24385431773577 108.16009629678275 108.02855391973267 107.84786275419332 107.61676075319664 107.33411301635374 106.99894304939193 106.61047180368215 106.16816588448945 105.67179641565042 105.12151012653035 104.51816332813662 103.86533020392744 103.16828434220804 102.43295481827596 101.6659906769436 100.8748351481162 100.06779786337441 99.254123332224 98.44405383259883 97.64888483510137 96.88101113582816 96.15396204151713 95.4824242571697 94.88129329723569 94.3610191347165 93.92967123597455 93.59413626587215 93.35987704391526 93.23060752178367 93.20812050314495 93.29229628357886 93.48098190785937 93.76987611844952 94.15242296089971 94.61970916901917 95.16035925037848 95.76042106909681 96.40323370053689 97.06926842941151 97.73593299316356 98.37732854929604 98.96394838442875 99.4623071094131 99.83448904268897 100.03915596821592 100.04767091656359 + 119.97548291103799 119.34540709418685 118.66387563239887 117.93102687464197 117.14720178238578 116.31276717352078 115.4281526616912 114.49390616483707 113.51075405184238 112.47966467360722 111.40191367226569 110.27914913898842 109.11345440989668 107.90740606519309 106.66412454334898 105.38731471467608 104.08129379073141 102.75100409018056 101.40200844823936 100.04046645296212 98.67309022115268 97.30707908892741 95.95003338138083 94.60984833131599 93.29459022151646 92.01235790512713 90.77113398430458 89.57863106159203 88.44213957790329 87.36838476540915 86.36340111655981 85.43243343965972 84.57987396933225 83.80924505493002 83.12323658601588 82.52386204755429 82.01305649150297 81.59020056915159 81.2498779334408 80.98667890656172 80.79594151993271 80.67385807003612 80.61752771319031 80.62495178994634 80.6949716946307 80.82715235159876 81.02161751548662 81.27884597600487 81.59944013734021 81.98388020744872 82.4322782612859 82.94414666603093 83.51819475416193 84.15216622773322 84.84272764574175 85.58541559872936 86.37464695859781 87.20379308218266 88.06531523776624 88.95095501580253 89.85197027759368 90.75940447439362 91.66437509721888 92.55853695413126 93.43583237160259 94.2920585141835 95.12406898827075 95.92971773960568 96.70776305654417 97.45773176030623 98.17975445758175 98.87438361938342 99.54243630398358 100.18540994764919 100.80519444635073 101.40331765567137 101.98090953400103 102.53871162049306 103.07716302397155 103.59661859923712 104.09703824951656 104.57794016304511 105.03849340780546 105.47759567067862 105.89393863089593 106.28606212870989 106.65239838371518 106.99130753385924 107.3011057328264 107.5800869805016 107.82653978378113 108.03875966416378 108.21505845229602 108.35377124354942 108.45326183663468 108.51192744179977 108.52820342799541 108.50056888058275 108.42755376325023 108.30774851999226 108.13981701503809 107.92251378981992 107.65470671508825 107.33540623091432 106.96380249410231 106.53931188634297 106.06163446985335 105.53082409984879 104.94760844051629 104.31529143471639 103.63879127284832 102.92365921238446 102.17614875692844 101.40329538512117 100.61299587033514 99.81408570647295 99.01641305764286 98.23090761054115 97.46964274680374 96.74588958831528 96.07416172199386 95.47019805930418 94.94777868515361 94.51580637478544 94.18168925855298 93.95147410126769 93.82961036245982 93.81869251125603 93.91920750795694 94.12951653840905 94.44573694377368 94.86160896645384 95.36836682307113 95.95460887128992 96.60616056693065 97.30592293353209 98.03369841202093 98.76598524600588 99.4757310122643 100.13203555512868 100.69979346741994 101.1392664378939 101.40666694600043 101.4699997782995 + 120.24006551694585 119.61452293609314 118.93914520234617 118.21397545914206 117.43933008379884 116.61560121479657 115.74323397265934 114.82277894280308 113.85494944792536 112.8406824478113 111.78120155723424 110.67808035073469 109.53330383915726 108.34932577083433 107.12911924489256 105.87621804011381 104.59474607437963 103.28943252998383 101.965610420048 100.6291967391924 99.28665284228059 97.94492432902393 96.61136047516378 95.29361413299611 93.99952400928726 92.73698229481248 91.51379173770255 90.33751738642353 89.2153393344106 88.15391382707806 87.15925098639126 86.23661810538495 85.39047789623386 84.62447116704799 83.94145307677529 83.34361265392693 82.83300636554569 82.40926878739339 82.06728178744903 81.8019345419413 81.60885213864697 81.48449177269256 81.42618483338832 81.43212183408878 81.50128034589612 81.63329942715151 81.82830726929117 82.08671169086846 82.40896551310233 82.79532058343798 83.2455851615339 83.75889947600994 84.33354348250185 84.96678923789231 85.65480793506681 86.39263864458911 87.17422234908216 87.99250112599192 88.83957854602376 89.7069337257915 90.5856782169807 91.46684222673053 92.34167509764673 93.20263793316373 94.04492323745475 94.86510180248975 95.66079510842638 96.43059556346877 97.17394097752687 97.8909539961095 98.5822585532898 99.24878588915976 99.89161029596845 100.51232592752852 101.11277860433971 101.69437759979122 102.2580812122954 102.80443501448282 103.33380138537815 103.84628279990336 104.34150104418626 104.81868942595017 105.27678194798321 105.71448787807527 106.13035312946658 106.52280997366039 106.89021661487617 107.23088809835005 107.54311992989545 107.82520567123088 108.07544965859789 108.29217588096049 108.47373395522493 108.6185030538044 108.72489457717819 108.79135432245829 108.8163648792444 108.79844898662502 108.73617461018686 108.62816254524293 108.47309742188828 108.26974307839869 108.01696338091374 107.71374969769758 107.35925638296486 106.95284578439657 106.494144454235 105.98311240795074 105.4203506254854 104.80890853207933 104.1533728709791 103.45894259139577 102.73150180325118 101.97770398105794 101.20505715537462 100.42200883763883 99.63802933326458 98.86369205608507 98.11074948069499 97.39220347496315 96.72236896019952 96.11693016800156 95.59215056102052 95.15920717186356 94.82597025670273 94.59898540822873 94.48324303130615 94.48194469426457 94.5962766054561 94.82516608895871 95.16513225636884 95.61020677956517 96.15178215846504 96.7784583797897 97.47588451420287 98.22658899796374 99.0097915681501 99.80118919279556 100.57270789063527 101.29221210765621 101.92316335870755 102.42422021955721 102.74952855050329 102.8639550200845 + 120.51044071369331 119.89092478648605 119.223317093709 118.50764190178135 117.74412242972151 116.9331774980287 116.07527313205328 115.1709678804041 114.2209669461632 113.22618013406301 112.18778220664342 111.10727392535897 109.98654176925382 108.82791408776806 107.63421126997791 106.40878741491673 105.15556098104682 103.87903199086394 102.58428358062241 101.27696602430068 99.96326183086066 98.64983111618746 97.34373718261449 96.05235309100055 94.7832509682545 93.54407683584496 92.34241484416198 91.18564591847948 90.08080692234842 89.03445747399216 88.05256245414657 87.14039895663379 86.30249688652309 85.54262253037977 84.86381412970852 84.26848347400446 83.75885175180075 83.33483311864745 82.9916567960045 82.72455709717717 82.52948514595931 82.40319230929855 82.34325988653828 82.34807241456102 82.41673520077096 82.54894006484545 82.74478652049426 83.00456853556733 83.32853937257315 83.71666866793265 84.16840673829724 84.68247103879136 85.25666872877574 85.88776746842122 86.57142396912519 87.30217659448361 88.07350463689785 88.87795298756626 89.70731700157684 90.55287866695491 91.40568194069725 92.25683251923334 93.0978676025114 93.92249773793 94.72694170641884 95.50857659050048 96.26581183959934 96.99797776647289 97.70517270241407 98.38808085896159 99.04777387940527 99.6855091158959 100.30256255923457 100.90056544693618 101.48126206384042 102.04589680860325 102.59522365559668 103.12965412099932 103.64942255379997 104.15427622762805 104.643525103183 105.11614453967645 105.5708608316363 106.00622125966933 106.42065048327034 106.8124951100489 107.1800581968775 107.52162530996065 107.83548361840944 108.1199353377553 108.37330668837022 108.59395339716396 108.7802636542898 108.93065934283726 109.04359629011604 109.11756424470084 109.1510872639732 109.14272520225272 109.09107701946708 108.99478668436224 108.85255252418902 108.66314097422617 108.42540580479701 108.1383140495842 107.80098002529705 107.41270901631732 106.97305239453429 106.48187614782651 105.93965729743967 105.34920696556614 104.71480477953861 104.04132344299755 103.3343047091456 102.6000471928637 101.84569638023041 101.07933578214701 100.3100780939367 99.5481551784389 98.80500570000248 98.0933593151407 97.427316486721 96.82242324610434 96.29567434326722 95.86163393842487 95.52898776076326 95.30469832955134 95.19420328650575 95.20117429790741 95.32728242952157 95.57197318032574 95.9322514983459 96.40247349574138 96.97418719220664 97.63600917680301 98.37344804043012 99.16871863611159 100.00054230963035 100.84392671529024 101.66991849728035 102.44532201699441 103.13237749546064 103.68839248913434 104.0658422037096 104.22680104672327 + 120.78835735988811 120.17643235606778 119.51826788565042 118.81395341986565 118.0635857995472 117.26758295600293 116.42643683468042 115.54071898501017 114.61113130666486 113.63856074320424 112.62413662286185 111.56928903744914 110.47580637112095 109.3458898542196 108.18220283777217 106.98791237610018 105.76672068288855 104.52288410353798 103.26121743566044 101.98708173973732 100.70635421964339 99.4253793204059 98.15090088603041 96.88997603594986 95.64987234117946 94.4379508906737 93.26153890789665 92.12779667329472 91.0435845889398 90.01533723849563 89.04895219306617 88.14970202874592 87.32217848575246 86.57027783710323 85.89723626726403 85.30572382571201 84.79817921869412 84.37481775434296 84.03125985491312 83.76312537483777 83.56672396286248 83.43912350330184 83.37816573746399 83.3824269783608 83.45112508337765 83.58397720395115 83.78101604681962 84.04237522766326 84.36805657048495 84.75769373885932 85.21032726023572 85.72420575851721 86.29662703777723 86.92383061374206 87.6009504767203 88.32203344557956 89.0801246323513 89.86741750493421 90.67546205113666 91.49542085352003 92.31835971251917 93.13555701168498 93.93912860188118 94.7242055495522 95.48791551854072 96.22847560022899 96.94509461806238 97.63783172006157 98.30741913256117 98.95506219276261 99.58223027758373 100.19045184783013 100.78114871481141 101.35593103109868 101.91638685433625 102.4635528756274 102.99799290534934 103.52006026927089 104.02965486320457 104.52617855848223 105.0086549501949 105.47582791112194 105.92624199750327 106.35830687475354 106.77034795071853 107.16064530901681 107.52746287277915 107.86906953378433 108.18375377746669 108.469833136673 108.72565962679315 108.94962215824687 109.14014679266782 109.29569560792675 109.41476486464126 109.4958831225955 109.53760993884138 109.53853578942271 109.4972838930251 109.41251467694453 109.28293371329528 109.10730406613948 108.88446412796296 108.61335218617322 108.29303914607557 107.92277104433416 107.50202321328453 107.03056819703895 106.50876248427804 105.93919542890566 105.32586399145839 104.67334090431606 103.98685305504807 103.2723721955142 102.53670887682024 101.78760872554776 101.03385009697654 100.2853420940528 99.55322193814513 98.84995073097298 98.18940676811192 97.58697576407287 97.05963763669551 96.62459654368597 96.29249201050987 96.07062043067009 95.96477186814681 95.97898459819348 96.11530186475127 96.37353463826003 96.75103252435372 97.24246409340314 97.8396068264537 98.53114413819335 99.30248314317186 100.13557760327063 101.00873393561729 101.89638681586467 102.76885605464227 103.59207818157283 104.3273077895626 104.93078437846198 105.35372184701843 105.55585379618945 + 121.07552849256601 120.47282370488465 119.82584015955186 119.13477099433356 118.39965050440101 117.6208174612266 116.79879267546659 115.9341653415572 115.02763863837528 114.08008089646944 113.09257959540176 112.06649670377976 111.00352360295487 109.90573360196223 108.77562986979102 107.61618649579898 106.43088035429021 105.22371150850792 103.99921005465269 102.76242758790792 101.51891187674393 100.27466386212993 99.03607675339472 97.80985776583643 96.60293392451001 95.42234432528358 94.27512227283943 93.1681717732782 92.10814390651468 91.1013195935117 90.15350615107826 89.26995573093602 88.45531420193734 87.71360918064345 87.04828566676017 86.46229665640934 85.95835283701867 85.5369898984977 85.1942556095812 84.92618742960369 84.72947715360813 84.60152243859761 84.5404270271664 84.54494827477126 84.61439378891109 84.74847227191363 84.94710677973146 85.21022133506963 85.53751395965901 85.92823055324148 86.38095453182498 86.89342668795574 87.46240835421403 88.08359870071453 88.75161399692558 89.46003308558686 90.20150935938588 90.96794543455796 91.75072272920187 92.54097452727568 93.32988807671902 94.1090192768309 94.87145447156301 95.61367655471457 96.33371244673873 97.03064397418902 97.70448148907181 98.35599519723432 98.98651708970526 99.59772737610149 100.1914393597941 100.76939584425685 101.3331087873694 101.88411100527033 102.42378269229435 102.9529351066732 103.47207743977724 103.98128635086744 104.48007405551203 104.96752114724238 105.44239055924032 105.90322030379505 106.34839751898751 106.77621640816416 107.1849225578357 107.57274592697365 107.93792456070567 108.27872082582907 108.59343171569395 108.88039454151193 109.1379891241133 109.36463742882677 109.55880144809876 109.71898003168495 109.8437052918054 109.9315391692258 109.98107073443943 109.99091481479196 109.95971258262453 109.88613481078167 109.76888859991018 109.60672850689288 109.39847315562395 109.14302859018564 108.83941983605102 108.48683236635875 108.08466542580206 107.63259944117772 107.13087442477419 106.58187466212152 105.98933878994539 105.35756576969753 104.69149520438087 103.9968003702246 103.27998532602354 102.54848535034598 101.81076988115665 101.07644708256474 100.35636914895161 99.66273748729223 99.0092070033612 98.41098886523599 97.884951335307 97.4494054758589 97.11802408581968 96.89853088618618 96.79697148110964 96.81764517199917 96.96285601998002 97.23266713973253 97.62466025520266 98.1337018755418 98.75171663562085 99.4674674165671 100.26634085697839 101.13013583672416 102.03685152816925 102.96047105717788 103.87075136266856 104.73296904555806 105.50765176315612 106.15028291011348 106.61123857311361 106.84844588882197 + 121.37349300743331 120.78168246451999 120.1476582031531 119.47172079571618 118.75396127856602 117.99456499970317 117.19405913635696 116.35305461836865 115.4722601101942 114.55252941708675 113.59491184814036 112.60070417550713 111.57150256845135 110.50925265411833 109.4162956770692 108.29540861053566 107.14983602784724 105.98331158585798 104.80006711545647 103.6048275673542 102.40279043150852 101.19958873939834 100.00123736932566 98.8140631003901 97.6446196896124 96.49959016155582 95.38567947676839 94.30950175354444 93.27746721874634 92.29567501230846 91.36981881387084 90.5051129390298 89.70624700056977 88.97737737431054 88.32216347212905 87.74385612423096 87.24548461829744 86.8279242606299 86.48767530916484 86.22121371817434 86.0256255326917 85.89864003017149 85.83861369038202 85.84446441604878 85.91555852872648 86.05155621879271 86.25222409320656 86.51722601063126 86.84590532021394 87.2370727690305 87.68881460704378 88.19833474888279 88.76184326164018 89.37450101060391 90.03042714008619 90.72277237281578 91.44385709578444 92.18536910609065 92.93861197222965 93.69479147641466 94.4453247756586 95.18218920102031 95.89978777430409 96.5958127186739 97.26922574997559 97.91998803248444 98.54890366858281 99.157427171558 99.74744874913041 100.32107176305105 100.880396304066 101.42732153497448 101.96339458627831 102.49001708190612 103.00832487674886 103.51905563616882 104.02249569557968 104.51829020846839 105.00558800156361 105.48317373093678 105.94957529790696 106.40314941489153 106.84214833963254 107.26477071080004 107.6691992032255 108.05362743752953 108.41627826897259 108.75541527246662 109.06934895307717 109.35643895485427 109.6150933210738 109.84376567803757 110.04095107235428 110.20518108667248 110.3350187891737 110.42905403563681 110.48589963764276 110.50418893499626 110.4825753636574 110.41973469187789 110.3143707067342 110.16522527111663 109.97109383794638 109.73084770447335 109.44346451529083 109.1080687781146 108.72398444062765 108.29080188799672 107.80864930876 107.27972260543825 106.70752604901432 106.09611061827916 105.45015588470363 104.77506490639112 104.07706387878514 103.36330589244662 102.64197807556806 101.92241134599563 101.21519197223067 100.53227415294688 99.88709287732877 99.2946764305642 98.77175806541638 98.33686814072486 98.00661509873713 97.78968158232577 97.69227049985406 97.71883574578492 97.8718305017483 98.1514568639511 98.55541876790807 99.07867968946998 99.71322600838975 100.44783625108106 101.26785571576066 102.15497526848407 103.0870124353589 104.03769236721898 104.97642589091635 105.86808176805998 106.67275054765632 107.34549812056285 107.8362962451996 108.10185144629892 + 121.6825522612821 121.10322928631463 120.48384719723893 119.82481419194423 119.12633804554638 118.38851236943164 117.61177527716423 116.79676131212331 115.94418826927486 115.05489925746247 114.1299092044586 113.17045316006426 112.17803491938253 111.15447427135616 110.10195100272813 109.02304366783937 107.92076108339894 106.79856453736129 105.66037882401483 104.51059044316952 103.35403163719606 102.1959493895763 101.0419590725099 99.89798310421754 98.77017574878032 97.66483604665869 96.58831178006193 95.54689832497182 94.54673718471055 93.59371989522745 92.6934037893466 91.85094674874159 91.07106849444074 90.35804609920874 89.71575117284651 89.14773549451606 88.65737798089373 88.24590890099897 87.91029061610242 87.64744241639063 87.45484098525392 87.33053435780748 87.27310942530248 87.28161331807027 87.35543195303663 87.49413200211073 87.69727528928676 87.96421693547106 88.29390024884243 88.68466225561892 89.13406378463709 89.63875712121657 90.19440245492075 90.79564174584517 91.43613536432493 92.10866310630904 92.8052871746664 93.5175706925853 94.23684153533343 94.95448798100796 95.66227011792535 96.35278657465157 97.02194674214135 97.66856710628595 98.29257063040696 98.89479963930319 99.47683240247049 100.04077083837532 100.58901378936866 101.12403037317549 101.64814703352992 102.16336022023205 102.6711980798213 103.17288945297989 103.66948779278721 104.16153870829437 104.64884988086659 105.13065423662773 105.60576357190816 106.07269345581389 106.52976262845839 106.97517036492697 107.40705523397263 107.82353845876244 108.22275476527925 108.60287323866953 108.96211033710748 109.29873686125222 109.6110803598913 109.89752417670162 110.15650411230101 110.38650348992472 110.58604727036942 110.7536957596121 110.88803838782688 110.98768800861815 111.05127616986937 111.07744984095504 111.06487014410666 111.01221373001333 110.9181775593813 110.7814880037123 110.60091536082044 110.37529509454336 110.10355735456781 109.78476661185464 109.41817355781396 109.00328176038347 108.54011313310157 108.03069146115746 107.47830939690287 106.88679436270313 106.2605917135332 105.60486110728654 104.92557814270884 104.22964068152893 103.5249792010248 102.8206704674157 102.12705378549745 101.45584907203383 100.82027602530326 100.23517372582369 99.71712010744999 99.28455088606212 98.95609012419445 98.74214239202702 98.64897126055575 98.68108022411027 98.84096255849775 99.12885004268024 99.5424638632694 100.07676931704385 100.72373551648364 101.47210084409434 102.30714442011497 103.21046337913494 104.1597553353615 105.12860510195405 106.08627457181228 106.99749472635457 107.82225908112612 108.51561857233142 109.02762599581891 109.31440261011677 + 122.00239196993383 121.43700846004396 120.83379052138142 120.19325169707638 119.51571901546333 118.80134788839078 118.05039148000628 117.26347538205125 116.44132943683489 115.58478947597655 114.69483982415423 113.77265775253755 112.81965855023437 111.83753967743625 110.82832229672766 109.79438836148972 108.73851138501944 107.66387903306284 106.57410578711557 105.47323412558373 104.36572297187828 103.25642256681033 102.15053543759525 101.05356375326132 99.97124406717296 98.9094712370086 97.87421416010184 96.87142684034774 95.90695917795269 94.98647270436169 94.11536722404038 93.29872491799091 92.54127885006716 91.84741292949401 91.22120014935929 90.66648526466984 90.18700605335616 89.78435922591916 89.45596138825243 89.1991622268324 89.01180840175796 88.89223830381951 88.8392336064229 88.85192891123894 88.92968354747504 89.07192232183624 89.27795450470757 89.54678236794828 89.87691198134205 90.26617959157633 90.71160666552791 91.20929555289194 91.75437574665632 92.34100798734383 92.96245011578992 93.61118482220279 94.27910549314525 94.95775247034261 95.63858845923971 96.31329880477675 96.9741001057718 97.61444093990197 98.23180071800927 98.82608182666512 99.39818008199289 99.94980683120694 100.48328261570333 101.00130973788907 101.50673847864641 102.0023412904219 102.4906079749958 102.97357280050886 103.4527036242375 103.92925087437956 104.40407945192204 104.87719999081834 105.34795301223114 105.81518787397302 106.27740854570779 106.7328896817669 107.17976690830145 107.61610528779023 108.03994971926524 108.44936068354787 108.84243832434753 109.2173374193901 109.5722753741372 109.90553498447785 110.21546337510082 110.5004682318444 110.75901220974012 110.9896062117884 111.19080209343913 111.36118525054 111.4993674904761 111.60398056412978 111.67367074758114 111.70709490535744 111.70291854050501 111.65981644050983 111.57647666246267 111.4516087666807 111.283957406411 111.07232261357373 110.81558838802815 110.51276150161587 110.16302276884738 109.76579341351913 109.3209955966022 108.83049663624493 108.29739875109665 107.72532847875335 107.11852087306538 106.48191700894321 105.82126710152168 105.14323869049093 104.45552927217668 103.76698270372955 103.08770866073283 102.42920440655692 101.80447813330284 101.22817316386438 100.71669236519958 100.28832221571868 99.96265543409022 99.75235187213698 99.66372694072106 99.70123193756532 99.86729607509425 100.16207799365421 100.58321909392168 101.12560043735135 101.78110469859614 102.53838435916208 103.38263702860397 104.29538849470043 105.25428386850766 106.23288703986944 107.20048863404709 108.12192280451242 108.9573935574315 109.66231192862587 110.18726962092055 110.48841057085804 + 122.33270917753094 121.7825785572964 121.19688943929387 120.57625609114041 119.92112040015033 119.23176321204329 118.50835797534529 117.75138689432539 116.96159004323096 116.1397988286178 115.28697054471431 114.40422886515489 113.49290520295416 112.55457956302567 111.59111935437127 110.60471451620985 109.59790725544372 108.5736147033407 107.53514288766583 106.48619059173198 105.4308419408144 104.37354692312184 103.31908951760393 102.27254366075864 101.239217931055 100.22459054914515 99.23423706555081 98.27375390974782 97.3486817739595 96.46443356340771 95.62623231761168 94.83906504347686 94.10765874309743 93.43648500437742 92.82979928257905 92.29172036320676 91.82633514447268 91.43560996941287 91.11739296697272 90.86943432339262 90.68991391486274 90.57741763957866 90.530874259468 90.54945503111416 90.63244093623112 90.77906478497157 90.98833765006633 91.25887080190215 91.5887053903896 91.97516243786015 92.41472519892915 92.90296459595152 93.43451629869837 94.00311518703707 94.60168956947106 95.22251382428533 95.85741431038043 96.49801970552181 97.13604361701883 97.76358460721725 98.37342688909177 98.96009993543764 99.52262757887755 100.06198750116548 100.58004467347963 101.0793535298196 101.56293332631208 102.03403060093576 102.49588345176767 102.95150147083024 103.40347346059899 103.85383414370578 104.30424767060026 104.75583153372403 105.20884970561592 105.66278533065712 106.11654376916086 106.56862330876382 107.01725139712538 107.46049072150737 107.89631965342411 108.32269142375394 108.73757603536016 109.13898845541438 109.52500612634418 109.89377833754935 110.24352953768714 110.57255825518634 110.87923294005314 111.16198574468903 111.41930502358025 111.64972714760407 111.85182809375013 112.02421518060957 112.16551926979544 112.27438773997797 112.34947856078816 112.38945584670194 112.39298735529475 112.35874450986898 112.28540567400174 112.17166358612761 112.01623807731619 111.81789544653452 111.57547615647589 111.28793284086795 110.95438098202003 110.57416502562874 110.14711474957737 109.67495600749955 109.1606202367533 108.60755405042804 108.01980425568675 107.40211617625455 106.76003777516544 106.10002903320495 105.42957597273502 104.75730865711246 104.09312244688103 103.44830175919415 102.83564555991614 102.269593821282 101.76635420376543 101.3440282697135 101.0225208603572 100.81670796656448 100.73310173977335 100.77600397039147 100.94768202871448 101.2481267676603 101.67481251918446 102.22246104660358 102.88281116059343 103.6443955347465 104.49232608367981 105.40808911249746 106.3693513338254 107.34977780350214 108.31886287677392 109.24177546405723 110.07922020102247 110.78731667458014 111.31761117086721 111.6268066548382 + 122.67321963250254 122.13952092113023 121.57257294140037 120.97308389717045 120.34160374878002 119.67853402418405 118.98414066101138 118.25870436575721 117.50289786894228 116.71755031038992 115.9035951519072 115.06210667408571 114.19433754512696 113.30175624551703 112.38608298705955 111.44932265861681 110.49379327459958 109.52214840624478 108.53739214974892 107.54288533774734 106.54234193786277 105.53981490793704 104.53967119278114 103.54655604872286 102.56534746248136 101.60110207768366 100.65899473812607 99.74425447848198 98.86210051145626 98.01768244017657 97.21602952454047 96.46201430288265 95.76033616242236 95.11553050477765 94.53200890275465 94.01413502382637 93.56631826917292 93.19088702021685 92.88608577997074 92.65001993498846 92.48115141073801 92.37825812598456 92.34035806330868 92.36660118704472 92.45613470969855 92.60794936446645 92.82071619227791 93.09262472106738 93.42123415764787 93.80334922546629 94.23493151160895 94.71105563541269 95.22591727642299 95.77289721197137 96.34468217233348 96.93343972059989 97.53104072819549 98.12931958200546 98.72035926081188 99.296786076627 99.8520583292922 100.38199364981637 100.88708005357182 101.36937072165746 101.831680622372 102.27736797137574 102.71009638304683 103.13359249924534 103.55141346798516 103.96673733798664 104.38223945474166 104.80029708350459 105.22247704435657 105.6493119643902 106.08047770760336 106.51496648681058 106.95128541759175 107.3876171642837 107.82194538654574 108.25215005776136 108.6760776733249 109.09159102600555 109.49660272668342 109.88909608166244 110.26713636254452 110.62887495936485 110.97254841456714 111.2964739055717 111.59904238078245 111.87871025674099 112.13399034881942 112.36344252904871 112.56566447674398 112.73928280514956 112.88294480576002 112.99531104757585 113.07504909868572 113.12082870061153 113.13131882114585 113.10518713913277 113.04110267564955 112.93774248169484 112.7938035244666 112.60802118443422 112.37919608543645 112.10623133149231 111.78818261802799 111.42432412235682 111.01440133228319 110.56001295743995 110.06393779607008 109.52946181719322 108.96046379956245 108.36151416357228 107.73797963164374 107.09613315053603 106.4432684467275 105.78781852698101 105.13947738382822 104.50932412302966 103.90994869972285 103.35557843400818 102.86220447648586 102.44770741023697 102.13193919431043 101.93160561193854 101.85360795945654 101.90200706774164 102.07881858354227 102.38378071306863 102.81412484902084 103.364351020374 104.02601002859394 104.78749404792386 105.6338373829781 106.54652900826379 107.50333847754155 108.47815680402198 109.44085399461632 110.3571550932182 111.18853687027516 111.89214770965907 112.42086224586637 112.73239842553187 + 123.02365950953663 122.50744191224203 121.96030068785815 121.38302922776585 120.77627661521126 120.14055598588163 119.47625642534138 118.7836622343061 118.0632114053097 117.31570274160423 116.54204855445822 115.74327776752175 114.92056969099666 114.07528796677535 113.2090134918147 112.32357502909755 111.42107616152043 110.50391724341303 109.57481106595174 108.63679108410336 107.69321125977704 106.74773686212416 105.8043259320639 104.86720156136883 103.94081565030713 103.0298053807941 102.13894425829348 101.27309021419711 100.43713389451108 99.63595085818837 98.87436193147828 98.1571063697117 97.48883271605939 96.87411226395959 96.31747976747529 95.82350543923958 95.39688001693688 95.04027394576663 94.75228301461858 94.53130930359639 94.37603356120897 94.28536003922929 94.25833035993904 94.29401052722815 94.39135717858312 94.54907100293316 94.76544674737949 95.03823024931701 95.36449333499564 95.74053713738542 96.16183336937519 96.62301135865918 97.11789627611849 97.63960108721405 98.18067148593997 98.73327962720228 99.28945907257761 99.84137023219618 100.38158294325876 100.90336087569956 101.40094551547104 101.87157589075103 102.3171270498414 102.74071507385658 103.14607040982901 103.5373030189358 103.91865673329731 104.29426741884501 104.66793867333388 105.04308653457446 105.42287891614642 105.80949571293748 106.20397039411036 106.60627636152098 107.0155437827667 107.43031655914751 107.8487443316593 108.26873171849499 108.68805216200252 109.10443208709042 109.5156107864309 109.91938093384339 110.31361400330002 110.69627421643773 111.06542400758045 111.4192234129123 111.75592527602888 112.07386772215867 112.37146498799527 112.64719739950824 112.89960106044816 113.12725764290228 113.32878455168196 113.50282566068539 113.64804278684134 113.76310807210415 113.8466974837245 113.8974857162737 113.91414288525694 113.89533354207053 113.83971871466365 113.74596188913365 113.61274009648542 113.43876155783921 113.22279167228506 112.96368950586856 112.66045735888885 112.31230645224663 111.91890668052876 111.48174321153093 111.00345885024632 110.487196540627 109.93668542385535 109.3563398660002 108.75136418829216 108.12786248839424 107.49295288374925 106.85488545178359 106.223163089159 105.60866446584028 105.02376821154546 104.4824774437362 104.00054372871887 103.59558956098493 103.28722616658911 103.09345544046096 103.02172485007932 103.07577009513658 103.25727460365499 103.56565036517696 103.99782282328053 104.54802179416225 105.20758035342706 105.96474360150187 106.80448918761714 107.70836145275733 108.654321054205 109.6166119700776 110.56564786412028 111.46791993194029 112.2859285628864 112.97814144962821 113.49909314960647 113.80788570686575 + 123.38378708545072 122.88597505156119 122.35956576791267 121.80542733952966 121.22429711696395 120.61678870007354 119.98340197733464 119.32453728063271 118.64052840861835 117.93196133962194 117.19971970637978 116.44479077487074 115.66828591117451 114.87147106614876 114.05579666884412 113.22292581045714 112.37475955023311 111.51345817100332 110.64145726282523 109.7614776252838 108.8765281576342 107.9899011542662 107.10515974152372 106.22611757819983 105.35681138999033 104.50146740778668 103.66446331650423 102.85028787608054 102.06350092529148 101.3086969929782 100.59047618582991 99.91342635757978 99.28212074691953 98.70113525153815 98.17508923011393 97.70871313587227 97.30692579509906 96.97270669297059 96.70495032202902 96.50228648355949 96.36354236464193 96.2876756293577 96.27368118007121 96.32047646905278 96.42677192706401 96.590934562847 96.8108539256167 97.08382027964096 97.4064249134251 97.77449193227083 98.18304964341065 98.6263477669532 99.09792427079618 99.59072275521473 100.09725816283324 100.60982535102826 101.12074194337784 101.62261408681447 102.10861148585457 102.57273654723089 103.01011639213841 103.41947470357142 103.80400177536015 104.16784694959331 104.5156065906714 104.85207843719776 105.1820137277997 105.50988953614745 105.84002748743957 106.17638470664332 106.52178411966374 106.87787251395382 107.24518640296812 107.6231864883353 108.01050683944439 108.40529045256646 108.8053731192367 109.20842037600393 109.61202933925695 110.01380164031312 110.41139317316205 110.80254569811734 111.18510461271009 111.5570264744893 111.91637918104624 112.261337104081 112.59017294735861 112.90124765512124 113.19299933474774 113.46393186903484 113.7126036719024 113.93761687893631 114.13760715382652 114.31123422732463 114.45717326194489 114.57410714969534 114.66071989937471 114.71569135329986 114.737693590649 114.7253895266696 114.67743440515842 114.59248110765694 114.4691904686611 114.30624809377089 114.10238952880053 113.85643602376078 113.56734357704042 113.2342684320988 112.85681407341598 112.43636497279043 111.97544309884645 111.4770643352454 110.94482474400313 110.38299945848028 109.79664700366588 109.19171836798569 108.57517010073502 107.95508065845705 107.34076917439923 106.7429157795569 106.17368256341521 105.64683422858344 105.17785746691976 104.78407806578002 104.48477474148723 104.29869737647108 104.23391297071805 104.2937567020999 104.47951008008704 104.7901979298807 105.22239079005479 105.77001473469967 106.4241705575978 107.17296425277884 108.00135072186465 108.89099264016288 109.820136427364 110.76350730229308 111.69222546210527 112.57374552236756 113.37182149324333 114.04649975572624 114.55426351054908 114.85587641751384 + 123.7533843658959 123.27478305391121 122.7698972674298 122.2396578839128 121.68487804344205 121.10625890356717 120.50439794760797 119.87980094385307 119.23289762442869 118.56408716996147 117.87406313805616 117.16377029752132 116.43425730183411 115.68669973967212 114.92242702686163 114.14294812951225 113.34997511913014 112.54544355490226 111.73152872985035 110.9106569120932 110.08551086456595 109.259029138928 108.43439891245096 107.61504246809272 106.8045978022431 106.00689427274479 105.225924658829 104.46581547744523 103.73079786558918 103.02518176954476 102.35333654872524 101.71968136868959 101.12868888511359 100.5849056639961 100.09299249533844 99.65778718680127 99.2843738534236 98.9759951889017 98.73178664344708 98.55052947734629 98.43111911082478 98.37248984375215 98.37351801101377 98.43290907633367 98.54907554777891 98.72001374319557 98.9431882164365 99.21543296693187 99.53287831599785 99.89091149980224 100.28417759927747 100.7066254434983 101.1516006702115 101.61198532970296 102.08038043325809 102.54932485639875 103.0115412045141 103.46019683048623 103.88916634526866 104.29328084412725 104.66863921352673 105.01545391716185 105.3381584997106 105.64188805165176 105.93204074203128 106.21402709451075 106.49311949802303 106.77470101367932 107.06344593042229 107.36285395674946 107.67523125346571 108.00173180675212 108.34244181997552 108.69636298700425 109.06168852930966 109.43621150908504 109.81749941996523 110.20301840090991 110.59022300968347 110.97661816784614 111.35979919133989 111.73747501643965 112.10747890887131 112.46777016049747 112.8164295658788 113.15165084654626 113.47172965914812 113.77505138284714 114.06007852532534 114.3253383073049 114.5694107737908 114.79091762780959 114.9885118817333 115.1608683661249 115.30667512163723 115.4246257225104 115.51341263867766 115.5717218366223 115.59822894718519 115.59159749250442 115.55047986577067 115.47352199837798 115.35937293132692 115.20670083321998 115.01421737736202 114.78071280628336 114.50510447365274 114.18650216040096 113.82445249285553 113.42025129705256 112.97631337564384 112.49554186086145 111.98141444571404 111.43808178653282 110.87047091410733 110.28439289887135 109.68665397528824 109.0851692885821 108.48907838512876 107.90886152777968 107.3564558805014 106.84537057403732 106.39079963657657 106.00973175100431 105.72105578321471 105.54380898959393 105.48662409729779 105.55237834332684 105.74189368955362 106.0537605871678 106.48416066274018 107.0266982868948 107.67224287396031 108.40878376648575 109.22129956076492 110.09164373226592 110.99844842716193 111.91704830225683 112.81942632485803 113.67418349087144 114.44653448771349 115.09833142232142 115.58825101748204 115.87890122582132 + 124.1322586601252 123.67355974797842 123.190862637564 122.6851478448989 122.15729050114253 121.60806497777095 121.03815160728794 120.4481466151275 119.83857533438587 119.20990870421062 118.56260899492925 117.89742901098495 117.21535624749762 116.51748317620017 115.80502791485833 115.07935750863896 114.34200967867851 113.59471219178306 112.8393990387114 112.07822268713782 111.31356180299946 110.54802401272302 109.78444350900499 109.02587358219604 108.27557448295214 107.53699738158211 106.81376557395077 106.10965447770154 105.42857234688104 104.77454398468305 104.15170002579741 103.56427456050062 103.0166139469543 102.5131995672538 102.05868698427076 101.6579634049997 101.31620840664317 101.03687034622465 100.81926489331398 100.6622447015583 100.5646930396765 100.52544386399529 100.54318512291053 100.61635124406857 100.74301183110039 100.92076440768534 101.14663948902492 101.41702624944162 101.72762653198627 102.07344388760987 102.44881275149342 102.84747081565048 103.26267523096367 103.68736059333109 104.11433388998437 104.5364988746547 104.9470998842907 105.33997308329606 105.70979168755987 106.05229101820323 106.36460406639294 106.648387586016 106.90923992031827 107.15321662264168 107.38645281326973 107.61533719722667 107.84621186967492 108.08443699297992 108.33422383011344 108.59858539313895 108.87934924159048 109.17722387907449 109.4918985006875 109.82197492816529 110.16526494716142 110.51926506442379 110.88132109838635 111.24873959792664 111.61886582470648 111.98913519531239 112.35710421044685 112.72046598019364 113.07705456052629 113.42484149105508 113.76192719111641 114.08652924006884 114.39696903815513 114.691657910902 114.96908337409734 115.22779600802312 115.46639718897504 115.68352778416774 115.87785782520588 116.04807712924311 116.19288683121101 116.31099182207197 116.4010941553188 116.46188758650918 116.49205354903539 116.4902590448743 116.45515714346831 116.38539103711378 116.27960289916672 116.1364491336428 115.95462399249553 115.73289397039746 115.47014586570931 115.16545191892159 114.81831170010825 114.42994360387755 114.00266745021693 113.5392862647398 113.04317221003922 112.51836411080143 111.96966943341718 111.40276987694257 110.82432970482935 110.2421059172217 109.66505933332687 109.1034656237588 108.56902530496355 108.07497168278353 107.63617571058518 107.26924670958574 106.99262788525334 106.82530880206357 106.77630701322043 106.84800407199397 107.04071792165153 107.35257201806448 107.77934057603406 108.31430409079009 108.94811681207517 109.66868784840673 110.46107757393732 111.30741100185563 112.1868097786852 113.07534444539412 113.9460086062115 114.76871664664664 115.5103266504733 116.13469018317731 116.60287717524811 116.87942624279246 + 124.52024410131826 124.08203187834957 123.62206985848553 123.14137415561223 122.64086708623435 122.12138079287408 121.58366253315144 121.02838276923801 120.45614613088576 119.86750526522417 119.26297752164892 118.64307785453435 118.00856857093517 117.36045993615544 116.69986841206818 116.02803155810324 115.34632795954691 114.65629548075752 113.95964717107469 113.25828421552397 112.55430542758248 111.85001292901896 111.14791385214218 110.4507181305907 109.7613327115995 109.0828528182881 108.4185512047961 107.77186666670218 107.14639337740617 106.54587289783328 105.97419092819695 105.43538100936476 104.93363740690377 104.4733392892012 104.059088005268 103.69575873849762 103.38855214342807 103.14105482953994 102.9527009525386 102.82233435710027 102.74874740328431 102.7306003081666 102.76632844707754 102.8540438185785 102.99143765824601 103.17569168063534 103.40340555586471 103.6705479248107 103.97243748818775 104.30375946385726 104.65862102147663 105.03064723639098 105.4131167504478 105.79913380951284 106.18183081132352 106.55459310233844 106.911295672365 107.24653976911922 107.55587643328546 107.83600365321364 108.08512255558776 108.30624928039893 108.50605916425926 108.6917183535465 108.87088581341175 109.05061213868754 109.23697521763 109.43493700958021 109.64826677195957 109.8795264805601 110.13011169983913 110.40033940070819 110.68955989402936 110.996038025589 111.31726629062643 111.65049934247271 111.9929082357053 112.3416793300292 112.69408102305329 113.04750538637332 113.39949076500237 113.74773038985492 114.09007110511874 114.42450545960982 114.74915966845336 115.06227932158457 115.36221419405693 115.64740309115187 115.91635932798108 116.1676571874648 116.39991951166719 116.61180645019309 116.80200530800664 116.96922139768938 117.11216980360355 117.22956800504527 117.32012938105098 117.38255773102371 117.41554309362577 117.41775933294753 117.38786418764317 117.32450274745888 117.22631563408875 117.09195352087913 116.92010002914905 116.7095054875019 116.45903453301862 116.16773106690083 115.83505753307267 115.46216523211947 115.05128969549344 114.60514481088413 114.12700815019039 113.62081719598652 113.09126934323629 112.54392473966428 111.98531101701167 111.42302895196146 110.86585808102835 110.32386127929448 109.80848729946386 109.33267025609842 108.91092503072274 108.55943756717775 108.296149023491 108.1397550526037 108.09940977653613 108.1769677312432 108.37221237553628 108.68278267926367 109.10404264445683 109.62896231759208 110.24801172436044 110.94906914468157 111.71734512559244 112.53532360409199 113.38272148209332 114.23646796240587 115.07070491923517 115.85680954006708 116.56344043894353 117.1566084048382 117.5999292445703 117.8598631735758 + 124.91720311017073 124.49996078582078 124.06316939291062 123.60786598734506 123.13500457715762 122.64545887791489 122.14002633491575 121.61943456683349 121.0843503043868 120.53539084741404 119.97313800917382 119.39815445920212 118.81100331862352 118.21240950786779 117.60337689397443 116.98502580544687 116.35859097059439 115.725438582146 115.08708175159185 114.44519386007937 113.80161939749793 113.15838200080307 112.51768955643102 111.88193641784218 111.25370300375879 110.63575327918304 110.0310308709281 109.44265482057513 108.87391621603616 108.3282771508175 107.80937361719953 107.32102402241242 106.86724499911374 106.4522760339229 106.08061412878091 105.75705920565744 105.48675668396726 105.27335584421624 105.11634920752977 105.01449492815104 104.96642115762249 104.9705483367175 105.02500426430555 105.12753793723002 105.2754389152032 105.46546916797357 105.69381420738505 105.956059753436 106.24719921365705 106.56167587927025 106.89346199951275 107.23617485659369 107.58322772464952 107.92801127642241 108.26409873771821 108.58546602780302 108.88671641013829 109.16329794984985 109.41170145147768 109.62962662500307 109.81634832515316 109.9763404375043 110.1181713951546 110.25028497475714 110.3804332355376 110.51545189235571 110.66109731534233 110.8219462877225 111.00135638571143 111.20148213694554 111.42334004238516 111.66691413833051 111.93127701223797 112.21442157679601 112.51358456258102 112.82583378721866 113.14821202910147 113.47782398218006 113.81189250179885 114.1477912960323 114.48306008390684 114.81540716117141 115.1427033295582 115.46297027836064 115.7743657643512 116.07516731464287 116.36375566842483 116.63859876601202 116.89823677481758 117.14126839949755 117.36633854663283 117.57212729352948 117.75734003855622 117.92069868127675 118.06093369069177 118.17677696698219 118.26695548545835 118.33018583126928 118.36516989095838 118.37059216382299 118.34511939413318 118.2874035064152 118.19608915167231 118.06982754344978 117.90729867900875 117.70724450138762 117.46851606024099 117.19013826894552 116.87154637806441 116.51383401313906 116.1191616199141 115.69016322725521 115.23003082960182 114.74260885919512 114.23249164184125 113.7051228064583 113.16689562725938 112.62525328399055 112.08878803112376 111.56733827214963 111.07208254087088 110.61562939849853 110.2121022639415 109.87721820537156 109.62835973428399 109.48374067849093 109.45237926351524 109.5355733230461 109.73255593124044 110.04047941118756 110.4543102544952 110.96673647759705 111.56808853541393 112.24627488202405 112.98673323084039 113.77239852389182 114.5836885716167 115.39850827159619 116.1922732573625 116.93795376728782 117.60613945903106 118.16512582748024 118.58117777979851 118.82257654106384 + 125.32302779964135 124.92714396254975 124.51385592487475 124.08420670570094 123.6391661418319 123.1796329121375 122.70643746271143 122.2203470084503 121.72207268395992 121.21227887524311 120.69159471837744 120.16062770353726 119.61997927381145 119.07026226016416 118.51215127079399 117.94658565452482 117.37466991264476 116.79761653892973 116.21675964670857 115.63356844109677 115.04965899100121 114.46680406984018 113.88694095478287 113.31217722021478 112.74479472845115 112.18725220388723 111.64218696811551 111.11241660311121 110.6009414850339 110.11094927768437 109.64582257482947 109.20915091459503 108.80474833461348 108.43667746898574 108.10928088067348 107.82721984715725 107.59550765722643 107.41777815500151 107.29352270330511 107.22134474592337 107.19964409683463 107.22654636378188 107.29982930932246 107.4168521174607 107.57449390427911 107.76910775565317 107.99649617910654 108.25191309843959 108.53009639863656 108.82533356871564 109.13156124100054 109.44249746080547 109.75180343686957 110.05326943398767 110.34101750108421 110.60971201136441 110.85476765414401 111.07254367727819 111.26051543644157 111.4177009748421 111.54538445889591 111.64977039499384 111.73991822911553 111.82433130560689 111.91064834621471 112.00546621481789 112.11422061439292 112.24112450977054 112.38916128100365 112.56012734646079 112.75471730981172 112.97264359584797 113.21276356454284 113.47286386209026 113.74998909343296 114.0410746445335 114.34308043555032 114.65306672151695 114.968240784035 115.28598165936953 115.60384882346301 115.91957962440355 116.23107924745953 116.53640612829601 116.83375499574734 117.12143911846813 117.39787283781129 117.66155507862528 117.91105422650462 118.14499453155611 118.36204403379121 118.56090389458751 118.74029895511755 118.89896932104254 119.03566278978168 119.14912799056523 119.23810819787123 119.30133590637296 119.33752842155492 119.34538492645362 119.32358573340483 119.27079472186941 119.18566630046931 119.06685861359875 118.91305513957857 118.72299729612556 118.4955311761211 118.22967207658935 117.92483786039249 117.58207293688231 117.20347037677304 116.79159192720229 116.3495510677251 115.8811052410383 115.39075017834882 114.88381520184576 114.36655841864062 113.84626075083217 113.33131777566545 112.83132837865725 112.35717925156284 111.92112429659808 111.53685802879534 111.21958210007514 110.98606410183085 110.85388547957871 110.83165893296301 110.92009942421784 111.11788854386783 111.42170496952559 111.82614529739243 112.32365791189619 112.90449065188903 113.55665298442156 114.26589334526555 115.01569224925626 115.78727171337778 116.55962147154278 117.30954239245997 118.01170744109551 118.63874045025318 119.16131289198333 119.54838941438823 119.76988777444623 + 125.73764131889533 125.36341647892519 124.97386987976999 124.57003548956949 124.15288305571822 123.72331953557489 123.28219109590819 122.83028687873175 122.3683446047952 121.89705805226421 121.41708641113054 120.92906547463969 120.43362058880629 119.93138124141427 119.4229971344386 118.90915455368129 118.39065573909599 117.8685454620392 117.34399903805004 116.81830449331777 116.29287487385004 115.76925934632135 115.24915299988596 114.73440536843879 114.22702781832766 113.72920008253465 113.24327636228666 112.77179155249888 112.31746826799386 111.88322544064307 111.47218930894151 111.0877076144983 110.73336773595733 110.4130193095346 110.13080158454696 109.89117531842868 109.69894699966936 109.55765551585853 109.46673585174537 109.42457831606987 109.42930289206917 109.4786996122045 109.57016932745175 109.700670958908 109.86668098339348 110.06417062867958 110.28860566180695 110.53497274077232 110.79783507982091 111.07141868674793 111.34972872325069 111.62669369274026 111.89633326753435 112.15294373543786 112.39129338832659 112.60681880761834 112.79584949868214 112.95627478625097 113.08752496989239 113.19016186627803 113.26610535797789 113.32194813074446 113.36691855224231 113.40950173754315 113.4571782867587 113.51629019252988 113.59196065135973 113.68806645204462 113.80725927737393 113.95103039927048 114.11981191453381 114.31310686283021 114.52961961932901 114.76699544026144 115.0221493838401 115.29193734413496 115.57328014714797 115.8632291648658 116.159004505874 116.45801283935135 116.75785061904988 117.0562973147271 117.35130224727845 117.6409677626368 117.92353076123723 118.19734401203476 118.46085820778369 118.71260534609152 118.95118373395438 119.17524469895324 119.38348093693173 119.57461632487397 119.74739697212325 119.90058326835211 120.03294270998381 120.14324334679155 120.2302477871761 120.29270783505893 120.3293600049801 120.33892237665542 120.32009350768604 120.27155442468126 120.19197505941864 120.08002688747366 119.93440396033371 119.75385499510136 119.53722969330417 119.28354299469476 118.99220491878101 118.66421811584908 118.30161450173486 117.90688940809707 117.4830828946303 117.03386922483757 116.56364746825243 116.07763203404971 115.58194199952965 115.08368815437223 114.59105673808874 114.11338890398791 113.66125499843186 113.24652279936356 112.88241891320509 112.58358258438219 112.36611122704205 112.24682656565071 112.23368583479048 112.32680354665558 112.52432339317217 112.82247802210232 113.215535680663 113.69576010214922 114.25338399588176 114.87659644143129 115.5515444274012 116.26234871317817 116.99113412910089 117.71807436656788 118.42145124484645 119.0777283759027 119.66163908259826 120.14628835925885 120.50333476118757 120.7040761174955 + 126.16099913459381 125.80865227926942 125.44299872214832 125.06504860951115 124.67575592840168 124.27601947899912 123.86668411771078 123.44854349180301 123.02234433433551 122.58879236111531 122.14855978159179 121.70229440389743 121.25063028165422 120.79419981792144 120.33364721108538 119.86964309992416 119.40290024183199 118.93419004041195 118.4643872112426 117.9945876869075 117.52602451076649 117.0600492251771 116.59814195813559 116.14192185177569 115.6931568763132 115.25377321621828 114.82586451117423 114.41170132356885 114.0137412782391 113.63464036870397 113.27726593527059 112.94471178064643 112.6403157829091 112.3676801772623 112.13069438898265 111.93355989122965 111.7808057016988 111.67579868485996 111.61786753936714 111.60514491474618 111.63543520185503 111.70616935480263 111.81436262778381 111.95658174376567 112.12892651024846 112.32703044222323 112.54608421236621 112.78088473255144 113.02591140465051 113.27542960559288 113.52361985223925 113.76472940180726 113.99324137207277 114.20406646808154 114.39305644667661 114.55729382297444 114.69482763691335 114.80471010425376 114.88702096591476 114.9428562708657 114.97453852189194 114.98885583258645 114.99509062646881 115.0016393270868 115.01578678925772 115.04361062427355 115.08993519235028 115.15833303193034 115.25116957536491 115.36968551659359 115.51411017687019 115.68379865538064 115.87736288135528 116.09236951739618 116.32566452004224 116.57407499486555 116.83452425749394 117.10408834582402 117.38002683523467 117.6597948553653 117.94104187688811 118.22160166719397 118.49947681038506 118.77282034347928 119.03991636466394 119.29916090476576 119.54904390273224 119.78813277321919 120.01505778418095 120.22849926153472 120.42717649569329 120.60983813256313 120.77525378329125 120.92220657847706 121.04948642142428 121.15588376045936 121.24018380273905 121.30116123246977 121.33757567672626 121.34816838385613 121.3316608443622 121.286756393176 121.21214618549826 121.10652133480241 120.96859343855559 120.7971261902324 120.59098127863895 120.34918229828446 120.07114057017718 119.75782339983571 119.41120628313278 119.03372228894676 118.62834117892746 118.19865559683508 117.74896735716422 117.28437257527901 116.81084446946876 116.33531275275473 115.8657386187498 115.41118441124031 114.9818771512536 114.5892651780574 114.24606724166624 113.96631346388095 113.76537766253728 113.65920825798153 113.65488790000292 113.75192730565627 113.94796005168669 114.23881405938378 114.61848335105218 115.07911282772552 115.61099601143621 116.2025856312108 116.84051687080245 117.50964303805286 118.19308336072869 118.87228256173974 119.5270818178335 120.13580066019449 120.67532933286044 121.12123108550122 121.44779148933918 121.62737645352496 + 126.593090247762 126.26276534367983 125.92107802819255 125.56900036286933 125.20745543760161 124.83731801532002 124.45941518282893 124.07452825288725 123.6833959830143 123.28671915513608 122.88516653655172 122.4793822174595 122.06999429427023 121.65762484210371 121.24290109522981 120.82646773180726 120.40900014007471 119.99121852801494 119.57390272812631 119.15790754372233 118.74417766463289 118.33380376224552 117.92806541081191 117.5283769799076 117.13628822409983 116.75349546866288 116.3818528245362 116.02338364611049 115.68029248130371 115.35497777593804 115.05004557407047 114.7683243918101 114.51288132221012 114.28703923981713 114.09439470114627 113.93883576660488 113.82454926796264 113.75465819993407 113.72834240461151 113.74344880038485 113.79744877565756 113.88741035154091 114.00997476049594 114.16134472711153 114.33728860863395 114.53316396251594 114.74396326948191 114.9643834735324 115.1889197392082 115.41198241986186 115.62808923421812 115.8323164241329 116.02033528601231 116.18843344556254 116.33363072931877 116.4537724477315 116.54759698130339 116.61477447975055 116.65591480215765 116.67254422157316 116.6672744499796 116.6469074992973 116.62067190244227 116.59681200098439 116.58238551181711 116.5832012526395 116.60380220145764 116.64749096625617 116.71639319793067 116.81155332632157 116.93305625236552 117.08016827836353 117.2514664293733 117.44449833570707 117.65609819431 117.88311209538409 118.1225047755691 118.37140817820492 118.62714604715848 118.88724123451132 119.14941105629593 119.41155486780299 119.67173704614675 119.9281677500297 120.17918315790764 120.42322634724118 120.65882955059432 120.88459819168793 121.09919685084886 121.3013371217323 121.48976718936456 121.66326287555877 121.82061985598693 121.96064675008182 122.0821588186676 122.18397207436846 122.26489771705872 122.32373695225014 122.35927643605628 122.37028481790033 122.35551112275168 122.31368602897122 122.24352745532975 122.14375226954418 122.0130963671141 121.85034583760122 121.654382427617 121.42424701471052 121.15936082544727 120.86066115210083 120.53007033052046 120.16996161212766 119.78323561880148 119.37340270687265 118.94466436676461 118.5019923566477 118.05120438874816 117.59903530660003 117.15320280984433 116.7224668995172 116.31668233054411 115.9468434688156 115.62512105728068 115.3648904984981 115.1807513596417 115.08767261756088 115.09168250048252 115.19170317197995 115.38489921913765 115.66674753691768 116.03103292958465 116.46985607706033 116.97365339118373 117.53122822694574 118.12979286191488 118.75502061320236 119.39110742531687 120.02084223396615 120.62568539007346 121.18585441475761 121.68041634948611 122.087385965754 122.38354280898615 122.54197426462245 + 127.03393834452037 126.72571071345732 126.40799233008632 126.08170366356872 125.74772257062284 125.40688473627269 125.05998388816468 124.70777305504423 124.35096693086136 123.99024538934786 123.6262581754376 123.25963078010804 122.89097148475267 122.52087954076782 122.14995443041951 121.77880613699911 121.40806633649413 121.03840041009785 120.67052016731517 120.30519716345499 119.9432764929386 119.58569094082038 119.23347537860346 118.8877812958772 118.54989064412116 118.22125376956406 117.90350001019574 117.59842070691823 117.30797780884294 117.03431679152887 116.77977994977931 116.54692001435235 116.33851391514392 116.15757632993356 116.00737240660963 115.89142871625371 115.81353294247437 115.7765000955423 115.77932799551864 115.81956825959219 115.89436227075954 116.00043271758445 116.13408010062028 116.29119249835144 116.46727180597506 116.65748240043297 116.85679814169244 117.06017995062024 117.26261922814845 117.4592557761675 117.64550429461669 117.81718007842906 117.97061856418895 118.10278349140764 118.21135883806515 118.29482033859186 118.35248325589716 118.38452410810123 118.39197518858826 118.3766919039717 118.34147162308707 118.29296450458962 118.24024355068187 118.19134441069924 118.15307160894879 118.13096453472197 118.12930443232295 118.15115897291203 118.19845978053408 118.27210741863685 118.37209782786717 118.49766402547716 118.64740155598176 118.81889433340724 119.00901817396384 119.21468237981222 119.43292896751409 119.6609744434521 119.8962293185943 120.13630177392085 120.37899054787637 120.62227097685765 120.8642771660786 121.10328248292056 121.33767992757494 121.56596342566309 121.78671068502109 121.99856794640495 122.20023672042116 122.3904624281117 122.56802474055827 122.73172933636201 122.88040075993268 123.01287606518171 123.12799896712127 123.22461429797077 123.30156267556677 123.35767544162124 123.39177011734031 123.40264685560618 123.38908664331042 123.34985232459626 123.28369387455645 123.189359750597 123.0656165804934 122.91127990512646 122.72525917028784 122.50662064305226 122.25480337579332 121.970718858471 121.65623806867883 121.31367519636947 120.9458609476278 120.55622054971418 120.14884971589858 119.72858724681406 119.3010830991897 118.87286090608694 118.45137408384873 118.045054808692 117.66335528914061 117.31678089830903 117.01691486152714 116.77643431913818 116.60911770080968 116.5288517095258 116.54047716166245 116.64236344809214 116.83125941863598 117.10235541161144 117.44930091087883 117.8642334902151 118.3378181676516 118.85929624667786 119.41654268894183 119.99613104393127 120.58340495466958 121.16255526418527 121.71670176482571 122.22797866071596 122.67762285208494 123.04606419800177 123.31237173711067 123.44999804095474 + 127.48360287898865 127.19748537767559 126.90367572979491 126.60303028513195 126.29636837428008 125.98447265988167 125.66808905895854 125.34792753352932 125.02466380629605 124.69894204541492 124.37137854812443 124.04256643768906 123.71308137221169 123.38348824789558 123.05434886385078 122.72623050106928 122.39971535522804 122.07541075192086 121.75396006405627 121.43605424461686 121.12244388369734 120.81395169645211 120.51148534776266 120.21605051930692 119.92876412421728 119.65086757232856 119.38373998354822 119.12891123630257 118.88807472028843 118.66309963572391 118.45604264269552 118.26915861183227 118.10491015934143 117.96597556364743 117.85525455619843 117.77587135483535 117.73116710299718 117.7235965123369 117.75196094055279 117.81354634648233 117.90522904073813 118.0234986411512 118.16448704679176 118.32401160371414 118.49763321315011 118.6807291861336 118.86857967553891 119.05646558282221 119.23977500229743 119.4141145818177 119.57542168557491 119.72007297009982 119.84498494273598 119.94770226364031 120.02646996550843 120.08028637575542 120.10893429976764 120.11298891915955 120.09380182836688 120.05346162622116 119.99486072301492 119.92435202077047 119.85075709552218 119.78185279741095 119.72416893435302 119.6829774324697 119.66231824130878 119.66505825550281 119.69297860371816 119.74688503295405 119.82673579123231 119.93178136571966 120.06068418779336 120.21111466693357 120.38003890690952 120.56446956704137 120.76155836122939 120.96863219032005 121.1832086733589 121.4029971781568 121.62589013780084 121.84994833534125 122.07338292432705 122.29453620571209 122.51186257897523 122.72391060515635 122.92930674196525 123.12674101879735 123.31495469778768 123.49272980421023 123.65888029653657 123.81224457676527 123.95167901089675 124.07605213521207 124.18423926542569 124.27511730308785 124.34755964789794 124.40043127736304 124.43258424806291 124.44285410693192 124.4300579770023 124.39299539951938 124.33045337134385 124.24121740945537 124.12409089736612 123.97792541303875 123.80166519328742 123.59440934116166 123.35562182861969 123.08619139944524 122.78793804186412 122.46311598421191 122.11448335965552 121.74537533845613 121.35977415739819 120.96237472626677 120.55864468017234 120.15487793382502 119.75824097759352 119.37681133352017 119.01960776079513 118.69661196302852 118.41878170271542 118.19805537040362 118.04734818628434 117.9793625922124 117.99767315767338 118.1001519363763 118.28319587157083 118.54178206170411 118.86950522448403 119.25862498208292 119.70012172005924 120.1837597510294 120.69815651130877 121.23085653386343 121.76840897303195 122.2964475045202 122.79977148698539 123.26242734783179 123.66778924431964 123.99863815033864 124.23605163174409 124.3535095313576 + 127.9421800866783 127.67812901852021 127.40811228001029 127.13291075598042 126.85327321530208 126.56991667579129 126.28352616528883 125.99475520383913 125.70422705842384 125.41253681199953 125.12025427772781 124.82792777755554 124.5360887920635 124.24525747610484 123.95594902259424 123.66868084521862 123.38398054015616 123.10239457733941 122.82449766354802 122.55090271269663 122.28227135300068 122.01932489599355 121.7628556882063 121.51373876209026 121.27294369765642 121.04154659933488 120.82074208255368 120.61185515017401 120.4163528187487 120.23585532706291 120.07214672301716 119.92718457811873 119.8031085202962 119.70224720433505 119.62712325421465 119.58045561281423 119.56515255786726 119.58333795430333 119.63369244133756 119.71336476807322 119.81911416079194 119.94734938759225 120.09417085885187 120.25542475345645 120.42676913932013 120.60375132117707 120.78189491247966 120.9567944412346 121.12421470646171 121.28019164014587 121.42113112756458 121.54390211514854 121.6459203973691 121.72521971977424 121.7805072514095 121.81120104470475 121.81744778518458 121.80011990202328 121.76079192468083 121.70169679011582 121.62574565472995 121.53887368143705 121.44956043030872 121.36528011860489 121.29227016077448 121.2355385889493 121.19890410532719 121.18506489416222 121.19569164399563 121.23153980830668 121.29257595923278 121.37811314376437 121.48692324289533 121.61680756653584 121.76486583320823 121.92824966700408 122.10424913756503 122.29032432944608 122.48411790899831 122.6834544445946 122.88633096607417 123.09090219257484 123.2954629899358 123.49842991422243 123.69832313225714 123.8937495608936 124.08338771436392 124.26597447650141 124.44029380813312 124.60516724851391 124.75944596509314 124.90200404237977 125.03173267451402 125.1475349354561 125.2483208449661 125.33300252830371 125.4004893840288 125.44968332891887 125.47947438324886 125.48873709445226 125.47632857262565 125.44108922638699 125.38184763961146 125.2974314139909 125.18668621231683 125.04850566332651 124.881875218259 124.6859334658818 124.46017542545253 124.20546896740757 123.92358206281082 123.61670647405793 123.28752330475204 122.93927078082538 122.5758079054082 122.20167269691997 121.82213394352917 121.44323562786158 121.07183339094856 120.71562261142208 120.38315787270868 120.08386377547703 119.82803722317637 119.62684146369757 119.49229230880876 119.435805848471 119.45967252679203 119.56133856791513 119.73692157431904 119.98126540338812 120.28799480570198 120.64957807941248 121.05739617004338 121.50181665701935 121.9722711035976 122.45733430416648 122.94480404043749 123.42178005409752 123.87474105609225 124.2896187198924 124.65186774580162 124.94653123352914 125.15633356729218 125.2544922794074 + 128.4098039266697 128.16772461307895 127.92133613023493 127.67133390660223 127.41838555419531 127.16313133716929 126.90618388630656 126.64812851314062 126.38952416924133 126.13090508883691 125.8727831447072 125.61565093835021 125.35998563604298 125.1062535528257 124.85491547687869 124.60643271745025 124.36127385061886 124.1199221288585 123.88288351269316 123.65069527564577 123.42393512709612 123.20323079133179 122.98926997466135 122.78281064549314 122.58469154417362 122.39584282941314 122.21729675548522 122.05019825815071 121.89581530644367 121.75554885104874 121.63094216698029 121.52368934769414 121.43564265879928 121.36881840156695 121.3254008691396 121.30774390180237 121.3183642915653 121.35908469162774 121.42850235646422 121.52369498305828 121.64137316140938 121.77793172888195 121.92950157283573 122.09201144879104 122.26125918366827 122.43299108153295 122.60298781536277 122.76715460895517 122.92161312018337 123.0627921563907 123.18751420364906 123.29307474488078 123.37731148024362 123.43866084147739 123.47619959736897 123.4896698607637 123.47948640388708 123.44672583936526 123.39309789804385 123.32089969947295 123.23299897906467 123.1348218903511 123.03442050658482 122.93892868918101 122.8542770918122 122.78521423592206 122.73535629599803 122.70726172436713 122.70252636845441 122.72189447063987 122.76538088254459 122.83239995050148 122.92186920739877 123.03175891892572 123.15933989453082 123.30193342095461 123.45699255870423 123.6221301369448 123.79512927487254 123.97394181465195 124.15667884012531 124.3415964563332 124.52707918948944 124.71162270835863 124.8938170409903 125.07233104318452 125.24589854770556 125.41330637009325 125.57338415502555 125.72499590653786 125.86703294864726 125.99840800501461 126.11805006416078 126.2248997090133 126.31790463604628 126.3960151707154 126.458179703552 126.50334012655854 126.53042754363487 126.53835876225112 126.52603434609611 126.49233931827456 126.43614794840666 126.35633442922641 126.25179164108411 126.12146060540252 125.96437362670439 125.7797144998237 125.56701431995295 125.32712075361874 125.06174738026753 124.77301946243642 124.46353493227643 124.13642639496106 123.79541804735396 123.4448762780859 123.08985297254759 122.73612079876642 122.39019999422112 122.059376406253 121.75171075709841 121.47603930629344 121.24196626624997 121.05984848948475 120.94077308697939 120.8947682668023 120.92288882621702 121.02223704612724 121.18873040200404 121.41716384570519 121.70127868644082 122.03383740765952 122.40670258496873 122.81091812366925 123.23679111498274 123.67397271520834 124.11153657934123 124.5380535274179 124.94166128527318 125.31012831868308 125.63091096823692 125.89120319251495 126.07493118139426 126.154838920575 + 128.88664695084114 128.66639888930112 128.4434314361934 128.21834606869496 127.9917202365471 127.76410800957096 127.53603984218748 127.30802283857085 127.08054155745623 126.85405939003104 126.62902053807008 126.4058526126579 126.18496986663884 125.96677706647763 125.7516740016592 125.54006062220688 125.33234278746495 125.12893860200764 124.93028530742168 124.73684669170302 124.54912097099283 124.36764909116944 124.1930233891416 124.02589654522227 123.86699074827753 123.71710698396717 123.57713434276206 123.44805922795955 123.33097432397997 123.22708716119949 123.13772808484103 123.06435740147109 123.0085714369956 122.97210719444699 122.95684524825653 122.96481045436428 122.99816562265308 123.05845908529366 123.14423734374601 123.25256815453544 123.38017687448682 123.52350627490769 123.67877482066916 123.84204312493277 124.00928752196764 124.17647930397887 124.33966780204405 124.49506518139931 124.63913058902769 124.76865115359041 124.88081730547474 124.97328996337849 125.04425732258271 125.09247927213784 125.11731785147595 125.1187526146497 125.09738028197576 125.0543986012045 124.99157488890467 124.91120025283371 124.81604952876512 124.71098133015775 124.60354011744566 124.5004876980856 124.40743652926002 124.3288802477442 124.26824921298065 124.2279873193314 124.20964601617474 124.21399133387854 124.24111973788332 124.29057880125583 124.36146118671039 124.45193743962524 124.55948069980347 124.6816074190168 124.8159540523462 124.96030235276112 125.11258864760255 125.27090209212777 125.43347575617997 125.59867346635423 125.76497456789254 125.93095816024162 126.0952878729443 126.25669786271854 126.41398040999199 126.56597525885199 126.7115606665083 126.84964599793715 126.9791656119139 127.09907373185615 127.20833997634881 127.30594523892682 127.39087765478715 127.46212847446526 127.51868778239135 127.55954015290159 127.58366052863083 127.5900108364381 127.57753812322325 127.5451752958438 127.49184588167635 127.41647458285492 127.3180057689937 127.19543242846684 127.04783846202076 126.87445753593445 126.67486062868907 126.44987466072759 126.20115516597367 125.93075544475406 125.64118258161656 125.33545331251074 125.0171439383162 124.69043313420364 124.36013679323071 124.03173432394486 123.71138609133975 123.40594194453337 123.12294100973585 122.87060314065855 122.65781260819749 122.49409477518226 122.3895864857931 122.3528300419955 122.38376171114035 122.47922534164634 122.63502187334049 122.8459835691611 123.10605400125124 123.40837169209317 123.74535538000752 124.10878897942833 124.48990443670023 124.87946083832222 125.26781830700945 125.64500541800587 126.00077908006473 126.32467604881087 126.6060554712916 126.83412500224472 126.99350365481823 127.05633772725703 + 129.3729210983682 129.17432263387383 128.97453203097766 128.7740499269442 128.57335630681646 128.3729113889412 128.17315551654178 127.97450946991341 127.77737523122906 127.58213722961912 127.38916408935744 127.19881089873006 127.01142201157039 126.827334387593 126.64688147161847 126.47039760560406 126.29822296112005 126.1307089735325 125.96822425265479 125.81116093794036 125.65994145931037 125.515025657293 125.37691820811028 125.24617629044727 125.12341742061082 125.00932737131768 124.9046680761102 124.8102854060293 124.72711668731557 124.65619780821338 124.59866973910748 124.55578426296354 124.52890868220847 124.51952923372271 124.52925290564497 124.55980730852889 124.61303455859839 124.6902328098966 124.78992639610472 124.90922828378238 125.04493582284964 125.1935953618427 125.35156405369972 125.51507817890854 125.68032665724598 125.84352815126906 126.00100993431799 126.14928651952178 126.28513593762025 126.40567152005384 126.50840709528242 126.59131364181917 126.65286565776616 126.69207579630937 126.7085166685579 126.70232911503777 126.67421667847306 126.62542645502188 126.55771694008483 126.47331389958889 126.37486025616826 126.26662347934572 126.15556642696666 126.04805316861378 125.94936924126796 125.86375791278779 125.79447801058815 125.743879799183 125.71349519538747 125.70413855801584 125.71601436698572 125.74882829508209 125.80187071245483 125.8735368154589 125.96152681854069 126.06357244941995 126.17750958173592 126.30130157324352 126.43304796771363 126.57098315299112 126.71346851048231 126.85898072922583 127.00609826018804 127.15348732613057 127.29988845538034 127.44410415368102 127.58498805007213 127.72143563676936 127.85237655865463 127.97676828728564 128.09359093173316 128.20184289049868 128.3005370333666 128.38869711871973 128.46535420097058 128.52954286527117 128.5802972437671 128.61664692040912 128.6376130203293 128.64220500476642 128.62941895207192 128.59823839644199 128.54763911383824 128.47659958193367 128.38411918810596 128.26924660379834 128.13112106895758 127.96902961711095 127.78258558969297 127.57259341495804 127.34064573604883 127.08871713190824 126.81921482012935 126.53502811294244 126.23957116291356 125.93681795635322 125.63132882972327 125.32826809074608 125.03341261647607 124.75315157093385 124.49447763130732 124.26497033112284 124.07277231874282 123.92655948826074 123.83550382649547 123.80657661140684 123.83877518563018 123.92876866444128 124.0723270360045 124.26440548087454 124.49923221647478 124.77039759643462 125.07094231308646 125.39344270400925 125.73009134587569 126.07277132644671 126.41312281368396 126.74260078494073 127.0525230344787 127.33410783977087 127.57850093211168 127.77675221408022 127.9136374921865 127.96065888120064 + 129.86887841365632 129.69171084978998 129.5148208565702 129.33860302470043 129.1634343508135 128.98967540286336 128.8176703949921 128.64774761845754 128.48022025310482 128.31538758043044 128.1535366154791 127.99494417068779 127.8398793603818 127.68860654997039 127.5413887490084 127.39849144220409 127.26018684715028 127.12675858203178 126.99850672076303 126.87575320689467 126.75884759110014 126.6481730500235 126.54415263660434 126.44725570355618 126.35800443229697 126.27698038913653 126.20483101873849 126.14227597160338 126.09011314739021 126.0492243191528 126.02058018488295 126.00524467205537 126.0043782981418 126.01924036538688 126.05118974170131 126.1016839516543 126.17227327251152 126.26402707243722 126.37547265346832 126.50381670962344 126.64597876899339 126.79865729337627 126.95839239733866 127.12163361553014 127.28481125458754 127.44440970063621 127.5970409280474 127.73951637947611 127.86891536862566 127.98264820020171 128.07851230764422 128.1547398768721 128.21003564882338 128.24360386764639 128.25516365518598 128.2449524341701 128.21371737911952 128.16269523157743 128.09358116077996 128.00848766883962 127.90989473223672 127.80149029626145 127.68958922294257 127.58013822790468 127.47808984432984 127.38744123104108 127.31129135944363 127.25191336929491 127.21083877808876 127.18895023658173 127.18657963073277 127.20360852006976 127.2395406640499 127.29301326575424 127.36197173471774 127.44437769127552 127.53827798756552 127.64182669401592 127.75329376032428 127.87106453379168 127.99363335019922 128.11959362616972 128.2476262472292 128.37648753631711 128.504997680777 128.63203017302197 128.7565025656874 128.87736864391522 128.99361196606813 129.10424061279497 129.2082829082759 129.30478383382078 129.39280184139088 129.47140579283493 129.5396718001984 129.59667982437003 129.64151000463818 129.6732388412782 129.69093553730343 129.69365902330617 129.68045643889815 129.65036412205112 129.6024124580693 129.53563625513675 129.44909263289202 129.34188872081378 129.21322174764362 129.0624343413222 128.8891832731852 128.69424755735295 128.47915102235706 128.245781635293 127.99643661782008 127.73386531350558 127.46130472041789 127.18250677815551 126.90175683996203 126.62388308722554 126.35425694981424 126.098784876492 125.86389205103612 125.65649886839509 125.48399116886708 125.35418537521448 125.27527288636912 125.2526149860322 125.28447914345988 125.36744434652704 125.49733478265182 125.66931109692003 125.87796283643962 126.117399714755 126.38133950148493 126.66319054783874 126.95612719262385 127.25315654999292 127.54717545369995 127.83101661739977 128.09748336118258 128.33937254611737 128.54948564664053 128.7205028349084 128.83682775512207 128.86934092916243 + 130.37481168580723 130.21882276141736 130.06452915465238 129.91221592547734 129.76215337432984 129.6145985112619 129.4697953488348 129.32797549845614 129.18935908674624 129.0541560057028 128.92256750736126 128.79478815034744 128.6710081021866 128.55141579749906 128.43620094825204 128.32555789806528 128.21968930815643 128.11881015784166 128.02315203754114 127.93296770693568 127.8485358852238 127.77016623427681 127.6982044888095 127.63303768040213 127.57509939423912 127.52487498869283 127.48290669829396 127.44979853012384 127.42622085217205 127.41291455969336 127.41069469204582 127.42045335793179 127.44316181144633 127.47987150500607 127.53171392826322 127.59989902479577 127.68570955606152 127.79000476586864 127.91133710881977 128.0470484428183 128.1942230234667 128.34975225252538 128.51039607586452 128.6728481533882 128.83380331675033 128.99002574436443 129.13841623549752 129.2760769609569 129.4003721100451 129.5089829430637 129.59995589460587 129.67174255200814 129.72323055051572 129.75376467509932 129.76315773014457 129.75169102304787 129.72010459604397 129.66957762207372 129.60169964508003 129.5184335833254 129.4220716177065 129.31576566060005 129.20512727651956 129.09567192810638 128.99201575705277 128.89791385830316 128.8163144635906 128.74942573690618 128.69879229083315 128.6653785759422 128.64965641325244 128.65169411627926 128.67121779462678 128.70711708923307 128.75759410354618 128.8208494663159 128.89514808793757 128.97884025813514 129.07037066213005 129.16827908715356 129.27119571808976 129.3778332132418 129.48697718029433 129.59747621401226 129.7082322904408 129.81819202029178 129.92633903309667 130.03168758282607 130.1332773269303 130.23016912836772 130.32144166032853 130.40618855384062 130.48351581834163 130.55253928465498 130.61238186928094 130.66217053944956 130.7010329709106 130.72809403549888 130.74247243298635 130.7432779904604 130.72961038994887 130.70056034707704 130.65521454403063 130.59266591052162 130.51203113572757 130.41247756827968 130.29326190311437 130.1537832427542 129.99374138504405 129.81388588541532 129.6156648964642 129.40087095385962 129.17168032190244 128.93068920399622 128.68094214238258 128.42595184674352 128.16971005181276 127.91668934537859 127.67183622373466 127.44055591646226 127.22868977216766 127.04248620817812 126.88856639798921 126.77388599917647 126.7056364324684 126.68759418690712 126.71751360626597 126.79196790272917 126.90691779086484 127.05780653606564 127.23965382312879 127.44714605979044 127.67472095503592 127.91664446927166 128.16707851593688 128.42013809484095 128.66993684960585 128.910620358592 129.13638678461103 129.34149481826785 129.5202591483731 129.66673274384584 129.76445936335105 129.7837778398813 + 130.8910550076529 130.75596166492227 130.62393541590689 130.4951500329351 130.36976722677198 130.24793842504798 130.12980529614984 130.015500532528 129.90514890181478 129.79886857179181 129.69677271273628 129.59897137801332 129.50557366095984 129.41669012312582 129.3324354857882 129.25293157331902 129.1783104934587 129.108718035797 129.04431726577263 128.98529228724473 128.9318521421358 128.88423481076427 128.84271127124586 128.80758957071689 128.77921885508908 128.75799329756347 128.74435585918667 128.73880180732633 128.74188191006627 128.7542052161998 128.77644132176542 128.80932201498132 128.8536421820815 128.91025984705334 128.98009520878708 129.06412852986682 129.16339486997106 129.27855933777343 129.4082191454535 129.54988542572016 129.70084174423974 129.85820523466285 130.01898484539524 130.18014227452355 130.33865417937866 130.4915742186279 130.63609349070626 130.76959797432272 130.88972165489974 130.99439413395535 131.0818816640737 131.15082072641323 131.20024346568422 131.229594513229 131.23873895555295 131.22796143617637 131.19795660560573 131.14981135021839 131.08497942895553 131.00524932058812 130.9127062284914 130.81003365929632 130.70210166519902 130.59398530566838 130.48996379518 130.39355419454904 130.30756079587667 130.23413486370737 130.1748422770412 130.13073667633805 130.10243583249186 130.0901991074951 130.09397753236763 130.11291693054898 130.1454811094815 130.1901134129427 130.24529946501463 130.3095877035741 130.3815990143202 130.46002882988546 130.5436442827964 130.63127837266234 130.7218226008117 130.81421911744619 130.90745309881675 131.00054580986648 131.09254859932537 131.18253791014598 131.26961126166057 131.35288406617045 131.43148707884419 131.50456424420497 131.57127069461964 131.63077067632122 131.68223522733783 131.72483951014294 131.75775981061315 131.78017035424227 131.79124026000488 131.79013115018975 131.77599615794728 131.7479813185268 131.7052305885351 131.64689600105908 131.5721547216213 131.48023500633633 131.3704532618973 131.24226454652967 131.0954097868239 130.93060399536608 130.74921202242658 130.5529214639586 130.3437761532112 130.12420576406245 129.89704728813143 129.66555779065024 129.4334182238401 129.20472842609544 128.98399375389425 128.7761040754977 128.586306096869 128.42017018773868 128.2835530274723 128.18255749563917 128.12335305068567 128.10822916805185 128.13463488365676 128.19921940528815 128.2981572013899 128.42724378176575 128.58198798616934 128.7576984529163 128.94956221666385 129.1527136899457 129.3622926085751 129.5734898585048 129.78158044342678 129.98194319116323 130.17006712640884 130.34154475224315 130.49205277869896 130.61671084505505 130.69778902635056 130.7052070310714 + 131.41798425232247 131.3034746219619 131.19336408737107 131.08771507283154 130.98658058016662 130.8900062636681 130.7980311764334 130.7106887375894 130.62800792043285 130.55001465957264 130.47673347314924 130.40818929411196 130.34440950236194 130.2854261473 130.23127834795423 130.1820148553843 130.13769675946827 130.09840031945274 130.06421989478676 130.03527094975067 130.01169310222656 129.9936531836252 129.98134827349207 129.97500866864496 129.97490074286353 129.98132964915308 129.99464181245935 130.01522715642864 130.04352100342408 130.08000558254426 130.12521107590322 130.17971612896724 130.24414774637324 130.31918049046652 130.40553489588282 130.50397500998355 130.61530363601705 130.74000517133842 130.87673885016872 131.0232118049637 131.1769334456684 131.33527133043387 131.49550484404773 131.6548806688202 131.81066877289155 131.96021765152372 132.10100759618578 132.23070083359377 132.34718747091884 132.4486263018695 132.53347966821525 132.6005417287665 132.64895965846688 132.67824747924345 132.68829240645525 132.67935377490815 132.65205478126745 132.60736744032792 132.54659129644085 132.47132655446427 132.38344239360646 132.28522334719005 132.18079543895988 132.07478386185812 131.97113344285012 131.8731275457504 131.78343141131825 131.7041438745312 131.63685543576383 131.58271072378076 131.5424734856804 131.51659236119056 131.50523995658364 131.50781571237178 131.52304392272777 131.54960913475136 131.5862160481311 131.63160967958925 131.68458575259294 131.74399427805466 131.80873861366516 131.87777173994098 131.95009104662572 132.02473256417548 132.10076528560415 132.17728599104123 132.2534148008305 132.3282915352015 132.4010728439389 132.4709299843047 132.53704706749681 132.59861956208525 132.65485283699994 132.70496054718134 132.74816271271197 132.783683417887 132.8107481607862 132.82858101642555 132.8364019366207 132.8334246952695 132.8188561954294 132.79189807919383 132.75175181586823 132.69762867898052 132.62876624644457 132.54445325625372 132.44406480510315 132.32710996901793 132.19336742677345 132.04351164128715 131.87881597491594 131.7008531655826 131.51152299000435 131.3130754327941 131.10812558153026 130.89965982821462 130.69103333809116 130.48595909797072 130.28848917093592 130.10298905696638 129.9341062854462 129.78673454294034 129.66597476669472 129.577094711025 129.5252210647074 129.51132740687706 129.53274273289333 129.5862692163568 129.66836511161563 129.77523838256056 129.90293465798442 130.04741731575876 130.20463782309596 130.37059480790236 130.5413806971544 130.7132151232203 130.88246465967785 131.04564879690517 131.19943239814089 131.34060518367252 131.4660490705915 131.57159497732806 131.637928301413 131.63469867672393 + 131.95601746524267 131.8617519946455 131.77318403779506 131.69026624133969 131.6129444755683 131.5411601751793 131.47485127876766 131.4139533534192 131.35840089605654 131.30812880169293 131.26307398726607 131.22317715823755 131.18838470364895 131.15865070382142 131.1339390333695 131.11422554066297 131.09950028332383 131.0897697977751 131.085059379276 131.08541534728056 131.09090726935122 131.10163011525097 131.11770631123053 131.13928766294197 131.16655711384226 131.19973030443097 131.23905689619912 131.28482162277768 131.33734502948312 131.39698386128794 131.46413105822714 131.53921531641072 131.62270017219024 131.71508256665217 131.8168908475278 131.92868216586226 132.05103839972082 132.18427425367736 132.32712601493324 132.47751626108078 132.63319887963863 132.79180861984386 132.95090919175357 133.10804244207824 133.26077751546237 133.40675894410813 133.54375266471538 133.66968903811772 133.78270204166796 133.88116391481725 133.96371466149682 134.02928594556718 134.07711905423284 134.10677674527503 134.11814893354673 134.11145230679577 134.08722408711074 134.04631026899165 133.98984876545796 133.9192479774492 133.83616136723546 133.74254018402172 133.64179956519786 133.53810618085677 133.43507634021088 133.33576476195785 133.24270113829883 133.15793334881033 133.08307571575136 133.01936074520552 132.96769287347541 132.9287028267389 132.90277611721018 132.88955743038795 132.88802448816787 132.8970966002452 132.9156918178757 132.9427468083623 132.97722802589303 133.01813675864608 133.0645100499747 133.1154190187416 133.16996572019875 133.22727937740578 133.28651256044878 133.34683768584932 133.40744404321143 133.4675354241502 133.5263283255221 133.58305062212344 133.63694055177123 133.6872458274515 133.73322268714057 133.7741347125359 133.8092512940242 133.83784569140508 133.8591927384751 133.87256636421955 133.8772372528246 133.87247113662124 133.85752840659734 133.8316659287762 133.79414216417047 133.74422689564847 133.68121705503364 133.60446030373876 133.51338813325006 133.40756029818994 133.28678843477186 133.15169968084052 133.003467406065 132.84353947707868 132.67366023252816 132.4958875151981 132.31260145194005 132.12650474196423 131.94061459460468 131.75824680354606 131.58299274850185 131.4186903719198 131.2693903835908 131.13931909781834 131.03283940543093 130.95441142726577 130.9081058760833 130.89381717982357 130.9089074905533 130.95040207444708 131.01510396701795 131.09968281466303 131.20075606246718 131.31496048734334 131.43901244246754 131.5697555611768 131.70419505542077 131.839518125629 131.97310036660292 132.1024984001251 132.22542928325566 132.33973752722218 132.44335081263972 132.5324092066951 132.58582819674214 132.57314654013936 + 132.50561516941204 132.43122681987018 132.36380678141543 132.30320102513767 132.24925145069534 132.2017984453169 132.1606819677075 132.12574278172198 132.09682382321856 132.07377168259384 132.05643818466558 132.0446820468001 132.03837059548863 132.03738152095772 132.04160464885732 132.05094370761296 132.06531806965594 132.08466444446958 132.10893850121002 132.13811639859338 132.17219619978 132.21119915015683 132.25517079621076 132.3041819241187 132.35832929725262 132.41773617252304 132.4825525763607 132.55295532217485 132.62914775232585 132.71135918901442 132.799844080021 132.89488082692372 132.9967702852829 133.10583392829625 133.2224116676018 133.34685932721965 133.4795454401867 133.6206238449182 133.76892066698286 133.9225863534332 134.07963035222653 134.2379638264354 134.39544154889387 134.54990432621608 134.69922106901114 134.84132967026702 134.9742759140413 135.09624970995665 135.20561803347667 135.30095404525846 135.38106196263374 135.4449973599438 135.49208267953043 135.5219178391597 135.534385922133 135.52965403108226 135.50816947341147 135.4706515237682 135.4180790753185 135.35167454581327 135.27288444567802 135.18338492812674 135.08594565800757 134.98426895428042 134.88165205636466 134.78092725532332 134.68449141779024 134.59434066027606 134.5121089512735 134.43910945701745 134.3763774965884 134.32471402685132 134.28470416927524 134.2562242923854 134.23849314811267 134.23065382402078 134.23182819740938 134.24113649997375 134.25770919847662 134.2806934028118 134.30925552304478 134.34258149779666 134.37987559062321 134.42035848490892 134.46326519006394 134.507843093757 134.55335034990833 134.59905467541432 134.64423253682003 134.68816863942817 134.73015558467236 134.76949353683673 134.80548973770675 134.83745772816195 134.86471617975553 134.88658730746917 134.90239492715963 134.9114623370876 134.91311034080343 134.90665588583525 134.89141196496945 134.86668960869346 134.83180298102252 134.78607876687806 134.7288711956858 134.65958416890146 134.57770203239528 134.4828305393855 134.374808180637 134.25420741802276 134.1220930776084 133.9797783938769 133.82884155313025 133.67113700710058 133.50879872243672 133.3442353058908 133.18011731864652 133.01935742694863 132.8650843228586 132.72061158329944 132.58940281418538 132.47503454782816 132.38115842621326 132.31146421205312 132.2689696802321 132.25277642137883 132.2603960892285 132.28913852848632 132.33620198201123 132.39875482236909 132.47400791095424 132.55927583900518 132.65202570567607 132.74991249557903 132.8508005204393 132.95277077635092 133.05411443056215 133.15331298235793 133.2490059359045 133.3399470753356 133.42495064243406 133.50002303050846 133.54226565363913 133.52126050933205 + 133.0672805817355 133.01237402127853 132.9656844610692 132.92695569978326 132.89593026455282 132.87235212502983 132.85596785540685 132.8465279094917 132.84378798436785 132.84751044802059 132.85746580630672 132.87343418477406 132.89520680112784 132.9225874045762 132.95539365889917 132.99345844685712 133.03663107451348 133.0847783551813 133.13778555402715 133.19555717587815 133.25801758047743 133.32511141132133 133.3968038262788 133.47308052043877 133.55394753404124 133.6394308409097 133.729575715507 133.8244458795614 133.92412243213627 134.02870257002962 134.13829810845584 134.25303381506754 134.37304557348787 134.49847839562025 134.62948430505736 134.76622011689943 134.90884531203102 135.0573597596463 135.2106898537685 135.36721971131288 135.52521839668825 135.6828757234687 135.83833767356202 135.98974195212799 136.13525300897027 136.27309590353804 136.40158844576246 136.51917110712202 136.62443426391445 136.71614240602852 136.79325501788023 136.85494391196545 136.90060686812393 136.9298775016441 136.94263134943446 136.93898822445553 136.9193109434585 136.88420058096588 136.8344884427599 136.77122498448682 136.69566592513615 136.60926133316937 136.51422656155688 136.41379923437657 136.31097075211508 136.20835881417273 136.10823004676794 136.01252648809245 135.92289505512235 135.84071913802111 135.76715149283842 135.70314762669165 135.64947512108208 135.6062239899809 135.57283689018405 135.5486656342523 135.5330229582608 135.52520167770368 135.52448712804576 135.530164754023 135.54152430891182 135.55786179481726 135.57848000372576 135.602688295468 135.62980206399678 135.6591421907245 135.69003465804474 135.72181039406416 135.75380533873258 135.78536066074787 135.815823013419 135.8445446962516 135.87088358793122 135.89420273630756 135.9138695325671 135.92925446036554 135.93972949612345 135.94466634308307 135.94343480726045 135.935401765125 135.91993132635605 135.8963869544858 135.86413646602827 135.82256097535208 135.77106897665266 135.70911684244928 135.6362370546047 135.5520754515152 135.45649012984026 135.34999118119205 135.2335265937909 135.1082658344741 134.97561133078696 134.83720459816232 134.69492464855847 134.55087879321175 134.40738631200077 134.26695577690003 134.13225708018354 134.0060894246117 133.8913466800912 133.79098159855744 133.70797040736537 133.64527901568422 133.60490237797222 133.58546099289507 133.58469586088836 133.60025275621985 133.62976381123082 133.67092017833556 133.7215339116375 133.77958762619903 133.84327091845867 133.9110029530255 133.98144102712254 134.05347530371452 134.12621024901142 134.19893361277175 134.2710740460547 134.34214865858425 134.41170197691568 134.47513291573793 134.50783215315218 134.4795609412144 + 133.64155973816273 133.60570945725578 133.57930759215202 133.5620015140836 133.55344023685433 133.55327720911157 133.56117147299997 133.57678889652706 133.5998034478382 133.62989848045234 133.66676799956048 133.71011788074776 133.75966701397954 133.81514834739903 133.87630980742523 133.9429150738181 134.01474419079602 134.09159399793703 134.17327836747143 134.2596282376579 134.3504914352163 134.44573228324649 134.54523099466255 134.64888285489772 134.7565972014429 134.86829621164253 134.98391351405084 135.10339264250504 135.22668535586612 135.3537498500793 135.48454889277076 135.61904791400647 135.75721309005743 135.8990094600291 136.04439911800702 136.19333952594596 136.34578267313503 136.5015797295496 136.65976525393847 136.8189567320049 136.97768053763434 137.13440108260568 137.28754980248988 137.4355540213531 137.5768652299403 137.70998635275748 137.83349762357324 137.94608073523113 138.04654097726845 138.133827122683 138.20704887238264 138.26549171156924 138.3086290758173 138.33613176529113 138.3478745828751 138.3439402055502 138.32462032784562 138.29041414141122 138.24202423561778 138.18035002059713 138.10647878639634 138.02167452717353 137.92770639635148 137.8273552737281 137.72332386137248 137.61802513651853 137.51359856797598 137.41192908465865 137.31466822099776 137.22325686899615 137.1389490690036 137.06283626797236 136.99584833584373 136.93826721257378 136.88973831454985 136.84980361776383 136.81795073936993 136.79363152853253 136.77627485797456 136.76529515797355 136.76009791169935 136.760083064187 136.7646470761143 136.7731841693084 136.78508715686112 136.79974812186254 136.81655910146293 136.834912844855 136.8542036434366 136.8738281782814 136.89318629414467 136.91168159099828 136.92872172420968 136.94371832365653 136.95608648086218 136.96524381183255 136.97060918132223 136.97160127064853 136.96763728385454 136.95813221283137 136.9424992164679 136.9201518060835 136.890508661803 136.85300202295386 136.80709068905767 136.7522787238526 136.68814095862683 136.6143563270524 136.5307943528686 136.43789498867426 136.33648167415924 136.2275719877236 136.1123845445417 135.99234057106486 135.8690582503411 135.74434011188572 135.62015407940314 135.49860907982173 135.38192635133828 135.27240776230562 135.17240256494605 135.08427405836878 135.0103676266089 134.95297511002676 134.91315241689844 134.88933116618907 134.879535065131 134.8817858902736 134.89417581901873 134.91492946160915 134.94245405179635 134.9753766952547 135.01256951009185 135.0531508783871 135.09648667040085 135.14217391196246 135.19001509774512 135.23997845245472 135.29214807080842 135.34666527073364 135.40366233473463 135.45745184526197 135.481973819345 135.4472903423999 + 134.2290415253421 134.2117888035901 134.2052025695639 134.20884056946414 134.22226522222502 134.24504640182298 134.27676249883228 134.31700151303204 134.36536213869772 134.42145480632018 134.48490264686004 134.55534234727384 134.63242486894939 134.71581600387586 134.80519674682998 134.900263465596 135.00072785522042 135.1063166665207 135.21677120348738 135.33184658880435 135.4513108014195 135.57494349488022 135.70253460995102 135.8338827997993 135.96879369071192 136.10707800583043 136.2485495837148 136.39302332760948 136.54031312504563 136.69022978083845 136.8425790095922 136.99715953650667 137.15376135757933 137.3121642122467 137.47213632313463 137.63343345896746 137.79579958004845 137.95894113162353 138.12200598784474 138.2838392334239 138.44321665155593 138.59886770987137 138.74949842099073 138.8938139427697 139.03054063436565 139.15844731490012 139.27636550154818 139.38320843288562 139.47798871085848 139.5598344205047 139.6280036103116 139.68189703767405 139.72106910323362 139.74523691489003 139.7542874370069 139.74828269285157 139.72746299873745 139.69224821681735 139.64323702021474 139.58120416938226 139.50709580249858 139.42202274562464 139.32742217198955 139.22563780852363 139.11910441550017 139.0100424914837 138.90046851799528 138.79220733635896 138.6869060175966 138.5860488892953 138.4909733677397 138.40288621949875 138.32285726991034 138.25133583698295 138.1881457203521 138.13299762262852 138.08553555096734 138.04535465171026 138.0120141057021 137.9850463319049 137.9639634959848 137.94826211119647 137.9374263431379 137.93093048149683 137.9282409159887 137.9288178468194 137.93211686982292 137.93759050151044 137.94468964895856 137.95286498370783 137.96156814802848 137.97025270668854 137.9783747585006 137.98539314012064 137.99076919029392 137.99396609602942 137.99444791251395 137.99167843464477 137.98512019766696 137.97423399424463 137.95847941087644 137.9373170020184 137.91021282832622 137.8766461772716 137.8361213497413 137.788184423318 137.73244587867285 137.668609885638 137.59654855343717 137.51662415346357 137.429528792418 137.33612144804826 137.23743085629556 137.13465325255964 137.02914349868269 136.92240001387825 136.81604424116588 136.7117956408447 136.6114434032133 136.5168162107556 136.42975145443333 136.35206532099303 136.28552512194767 136.23179473593368 136.1911562643264 136.16207652816536 136.14289237213472 136.1320164501343 136.12799783160105 136.12957440040546 136.13571122876243 136.1456261578277 136.1588022229723 136.1749869215503 136.19417865153395 136.21660094553482 136.24266538299807 136.27292428190347 136.30801444980764 136.34859341357438 136.39525457424244 136.44080248985424 136.4580819485912 136.41755787820625 + 134.83035761648532 134.83120626966326 134.8439289404898 134.86800140471362 134.90290724142633 134.94814050875786 135.00320660575898 135.06762311925897 135.1409206117363 135.22264330987494 135.3123496574112 135.40961270011516 135.51402027529923 135.62517498309776 135.74269392190791 135.86620817577608 135.99536204714167 136.1298120341368 136.26922555754595 136.4132794484723 136.56165821366895 136.7140521012898 136.87015499541374 137.02966217300983 137.192267961965 137.3576633433065 137.52553354475683 137.6955556762034 137.86739646051265 138.04071011534563 138.21513644325327 138.3902991883659 138.56580471851746 138.74124109174008 138.9161775658731 139.09016460970625 139.26273621916638 139.43345713914525 139.6015907600028 139.7661992519169 139.9262951550428 140.08085882360507 140.228855683065 140.36925318579512 140.5010373311353 140.6232286340069 140.73489744161407 140.83517851023976 140.92328476389693 140.9985201638188 141.06029162269593 141.10811990046025 141.14164941955138 141.16065693727336 141.16505901136284 141.15491819253134 141.1304478748312 141.09201573150887 141.04014566086167 140.97551816378405 140.8989690724873 140.8114865485855 140.71427950270646 140.60929408763175 140.49871908403713 140.38459736320658 140.26882818303392 140.15317407815235 140.03926866549259 139.92862521182371 139.82264578199002 139.7226307486105 139.62976626471718 139.54464254175787 139.46723500898295 139.39739947909106 139.33491589957615 139.27950522754318 139.23084216387818 139.18856473134693 139.1522814930936 139.1215770489334 139.09601631117184 139.075147945135 139.05850725897986 139.04561874051603 139.03599836435842 139.02915573012854 139.02459604155797 139.02182189759543 139.0203348406276 139.01963659451403 139.0192299271036 139.01861908892076 139.01730981215067 139.01480890182611 139.0106235135561 139.00426028779813 138.99522459725253 138.9830202581174 138.96715015322397 138.94711830980316 138.92243405986602 138.89261897866746 138.85721733696604 138.81581080511418 138.7680380997521 138.71362015465687 138.65242247510133 138.58472266131895 138.51107597639594 138.43217787797678 138.34886354835623 138.26210258810565 138.17298781388521 138.08271870241546 137.99258030447942 137.90391867809672 137.81811574482444 137.73655117364825 137.66057987093683 137.59150655572316 137.53056542972067 137.47882676739445 137.43600128617058 137.40071774158326 137.3716508978406 137.34761670060539 137.32762334249324 137.31091097097465 137.29697916105806 137.28560166147938 137.2768282904644 137.27097419760273 137.26859701582507 137.27046269753544 137.27750105893742 137.29075224546114 137.3113054794169 137.3402315603876 137.37843294461229 137.41689682168763 137.42772982605217 137.38189103790447 + 135.446182309134 135.46459314731908 135.4960764466258 135.5400342979366 135.59587979418686 135.66303949760035 135.7409539943273 135.8290783850297 135.92688266301477 136.033851936932 136.1494864607827 136.27330144005458 136.40482658917873 136.54360542218456 136.68919426536664 136.84116098791344 136.9990834537143 137.16254770487436 137.33114589472524 137.504473995223 137.68212931045676 137.86370783443516 138.04880149726182 138.23699534914203 138.42786473627822 138.62097252653038 138.8158664456671 139.0120765870742 139.20911315890714 139.4064645328919 139.60359565836183 139.79994690376444 139.99493338593857 140.1879448451496 140.3783461214275 140.56547828549222 140.74866278511135 140.92732508180288 141.10084318050548 141.26848187412705 141.42947393352625 141.58303269454805 141.7283643943393 141.86468024270948 141.9912082065559 142.10720449093012 142.21196470217896 142.30483467725097 142.38522095919993 142.45260089262405 142.50653230468723 142.54666272790254 142.5727381103928 142.58461094823377 142.58224776306386 142.56573583670297 142.53528910337133 142.4912530895057 142.43410878143663 142.36447529259965 142.283111194823 142.19091437288725 142.08894531658828 141.97881732468852 141.86249439202416 141.7418593230738 141.61870190154437 141.4947215061294 141.37153016093808 141.25065599788277 141.13354707463867 141.02157544734533 140.91601952241925 140.8175828912841 140.72636438140628 140.64233986289764 140.56540341784498 140.49538306054293 140.43205304787244 140.3751435347501 140.32434819459877 140.27933030854518 140.23972772586575 140.205157009383 140.17521700119403 140.149491975145 140.1275544823391 140.10896794465535 140.09328900915912 140.08006964407417 140.06885893550748 140.0592045342755 140.05065370478943 140.0427539436329 140.03505316449716 140.02709948831424 140.01844073197535 140.00862375441295 139.99719389270226 139.98369479992164 139.96766907645838 139.94866016188712 139.9262160189627 139.89989518708347 139.86927580121184 139.83396815420943 139.79363131576432 139.7479941991314 139.69690652369732 139.64055512097565 139.57935451294435 139.51383528277177 139.444630979849 139.37247891985402 139.29820463394785 139.2227069001532 139.1469374087667 139.07187772599522 138.99851464769176 138.9278151054437 138.8607018058517 138.7980307546382 138.74057174567477 138.68886716460014 138.64230067627594 138.59975643290477 138.5602565859398 138.52301711966834 138.48748864471565 138.4533856154894 138.4207033453972 138.3897225650426 138.3610016165384 138.33535669441622 138.31383082496822 138.2976525176446 138.28818522245666 138.28686888595087 138.29515501642766 138.3144367492018 138.3457555258226 138.37810050091704 138.38317894675407 138.33252755240974 + 136.07723226253648 136.11261619187596 136.16226184028267 136.22550629906183 136.3017008806122 136.39021327383406 136.49042768317256 136.60174485260686 136.72358192308104 136.8553720792714 136.99656394931603 137.14662072918986 137.3050190117669 137.47124730921638 137.6448042661705 137.8251965699781 138.01193657321852 138.20453965236882 138.40252133494636 138.60539423546297 138.81266484794457 139.0238302494711 139.2383747750069 139.45576672860344 139.67545519974948 139.8968670561209 140.11940418520774 140.342441057236 140.56532268049565 140.7873630177234 141.00784392869338 141.2260146998637 141.44109221706304 141.65226183213107 141.85867896954238 142.05947151482764 142.2537459215295 142.4407904857057 142.62009378147923 142.7911056445017 142.95325955952967 143.10598172683595 143.2486834597733 143.38078129572398 143.5017150828225 143.6109557830466 143.70801157687836 143.7924341835075 143.8638253809433 143.92184370173482 143.96621126953175 143.99672072970682 144.013242213941 144.01573026431478 144.0042306273342 143.97888681274674 143.93994629631595 143.8877662302747 143.82281851038897 143.7456940348463 143.65710597804093 143.5578918922486 143.44902005187205 143.3318443277611 143.2081219872305 143.07959071332522 142.9479357230633 142.81478951279416 142.6817316058607 142.55028836349467 142.42193288835054 142.2980850071485 142.18008961553826 142.0687345497463 141.9642122419774 141.86659228754718 141.77586010455437 141.69193129041636 141.61466322510327 141.54386448112592 141.47930250856874 141.42070998250597 141.36779012780602 141.3202212711036 141.27766081068063 141.23974874176156 141.20611082733848 141.17636146351407 141.15010625416505 141.12694428335004 141.10647005626734 141.08827507163164 141.0719489908917 141.0570803833144 141.0432570508199 141.03006597232192 141.01709295336468 141.00392212156348 140.9901354694633 140.9753127108338 140.95903178010067 140.94087036266106 140.92040889039478 140.89723546505485 140.87095317490653 140.84119023882903 140.80761333850316 140.76994437447206 140.7280004549947 140.68186349097655 140.63179503095137 140.5781464606151 140.52135428096025 140.46193144025594 140.40045427654215 140.33754568164542 140.27385529914434 140.2100377193034 140.14672973216892 140.08452774655117 140.02396648027855 139.96549998032472 139.90948594589102 139.85601124672155 139.80435362493193 139.75368671791546 139.70337844658357 139.65303244353638 139.60251881599686 139.5519933211828 139.50190456314837 139.4529891723398 139.40625525414586 139.36295468419252 139.3245450814327 139.2926425024095 139.26896607032893 139.25527588123398 139.25330561853738 139.26469135957666 139.2904310067704 139.31746156105388 139.31739710694518 139.26242635484053 + 136.72426613237545 136.7759758351073 136.84312547967292 136.92499600783097 137.02088576057372 137.13011222083958 137.25201163232097 137.3859384516818 137.53126458103142 137.6873783370383 137.8536831229301 138.02959577978095 138.21454460388995 138.4079670276198 138.6093069716917 138.81801188748568 139.03352951823314 139.25530441792944 139.4827742761689 139.71536610572025 139.95249235732206 140.19354703271586 140.43790187216732 140.68490269651213 140.93386598599045 141.18407577871776 141.43478097055763 141.68519309543845 141.93448466088364 142.18178810786523 142.4261954572867 142.6667586977713 142.90249096138737 143.13235193930157 143.3551853752192 143.56981232711863 143.77506632169445 143.97007722722373 144.15443673280646 144.32777822577754 144.48974643147199 144.63999852946336 144.77820571709879 144.90405523115507 145.01725284056863 145.11752582250645 145.20462643077596 145.27833585993392 145.33846870062393 145.38487787181262 145.4174600038653 145.4361612329596 145.4409833523606 145.43199024977042 145.40931454255326 145.37316430440134 145.32382975826954 145.26168979154806 145.18721813090275 145.10098899648955 145.00368203890625 144.89608634790488 144.77910364978106 144.6538909173514 144.52200799457893 144.3850546541706 144.24461103203586 144.10223558851507 143.95946267112305 143.81779979590465 143.6787247382307 143.54368248600477 143.41406049113695 143.2907048604551 143.1738757478619 143.06371344803134 142.96027457579552 142.8635448858318 142.77344993921912 142.689864011523 142.61261757962043 142.5415036719773 142.47628331838578 142.41669028959063 142.36243527454303 142.31320960336987 142.2686885879849 142.22853452031242 142.192399341227 142.15992697252648 142.130755290545 142.10451771432528 142.08084438434696 142.05936292017148 142.03969876714217 142.0214751731569 142.0043128756516 141.987829624799 141.971639719348 141.9553537835588 141.93857906358795 141.92092056491003 141.90198338362225 141.88137659772173 141.85871907302894 141.8336474952039 141.80582685684277 141.77496349947492 141.7408356215752 141.7034227428183 141.66284265737423 141.61928215550404 141.57299093941657 141.52427195718303 141.47346797103228 141.42094500705062 141.36707350587335 141.31220811741863 141.25666715613792 141.2007127579358 141.1445327590477 141.08822525547632 141.03178616802472 140.97495328872088 140.91707817403434 140.85763034469693 140.7963148910937 140.73310454447284 140.66826085809384 140.60234397003038 140.53621077191684 140.47100163775244 140.40811616651854 140.34917865620136 140.2959942510465 140.25049688646635 140.21469029661193 140.19058344935692 140.18012183486127 140.18511606062907 140.20633353712688 140.22872174692128 140.22406585644165 140.16527108120968 + 137.38808410063905 137.45540423040643 137.53932770961234 137.63908811380435 137.7539394829046 137.8831575571174 138.02603877924082 138.1818990801117 138.3500723939199 138.52990886188408 138.72077269482708 138.92203967747045 139.1330943097052 139.35332659257062 139.58212847904693 139.81889002186153 140.06299526213346 140.3138179136193 140.57071690735924 140.83303187041736 141.10007861995257 141.37114475983236 141.64548547122192 141.92231959090049 142.20082607135978 142.48014091497444 142.75935467070997 143.0375085748902 143.31348247383403 143.5859936528955 143.8537407244557 144.11542108478744 144.36973745245717 144.61540376612191 144.85115036176467 145.07572837768885 145.28791708893795 145.48687445903423 145.6724194588137 145.8444507713693 146.0028791195923 146.14762556551108 146.2786204849934 146.39580322194803 146.49912242858082 146.58853709832408 146.66401829592186 146.725551584921 146.77314014655585 146.8068085757601 146.82660732984377 146.83261779326764 146.8249579080205 146.80378830344185 146.7693188421081 146.72181547981404 146.66160731803058 146.5890937068568 146.5047512358655 146.40914042989743 146.302911947412 146.1868120611706 146.06168718558902 145.9285515864358 145.78877809838937 145.64383477074907 145.49519650999366 145.34434198106567 145.1927498586798 145.04189447688478 144.89324100688714 144.7482402629249 144.6083017013675 144.47430878373615 144.34656978274836 144.22527825236884 144.11054675331212 144.00241803810016 143.90087461732787 143.8058469646242 143.71722058704503 143.63484215767193 143.5585248775633 143.48805320480577 143.4231870594527 143.3636655851038 143.30921052148977 143.2595292185595 143.21431730223335 143.173260986205 143.13603901397977 143.10232421160973 143.0717846350505 143.04408430715392 143.01888355810698 142.99583900927644 142.97460327304555 142.95482447889472 142.93614577658903 142.91820500814515 142.90063477780967 142.88306317945444 142.86511545880865 142.84641688841884 142.82659711032034 142.80529614890628 142.7821722080704 142.75691123609064 142.72924896990423 142.6990658801643 142.66634363973287 142.63111373915802 142.59345044812147 142.55346058705996 142.5112701414439 142.46700838592332 142.4207903302633 142.37269839681449 142.32276428984147 142.27095202212695 142.21714302741293 142.1611242133728 142.10257816619355 142.04104188380535 141.97605229261094 141.90736947138012 141.83502103620972 141.7593251383679 141.68090268001225 141.60067843382828 141.51987108363113 141.43997250812998 141.3627169027205 141.29004056952425 141.2240334008995 141.16688323500273 141.1208143739992 141.08802162797096 141.0706012834984 141.07048039942254 141.08801428358993 141.10632421668953 141.0975841464981 141.0354697587519 + 138.0695282794768 138.1516641321991 138.25154605828885 138.36836876362938 138.50135029081247 138.64973266530717 138.8127801981042 138.9897775245228 139.18002732736926 139.38284770660348 139.5975691718703 139.8235312485926 140.06007870270028 140.3065574033223 140.56230985671706 140.82667045814438 141.0989605210497 141.37848315459095 141.66451807091633 141.95631641245302 142.25309569652634 142.55403497967725 142.85827034688867 143.16487247763442 143.47264423489048 143.78022105429437 144.08621145970227 144.3892098169892 144.68780554164044 144.9805918094135 145.266173582797 145.54317478295096 145.8102444584891 146.06606182912122 146.30934011411316 146.5388290930253 146.75332020275133 146.9520516948014 147.13507794289256 147.30255434111282 147.45464283716865 147.59150838476515 147.71331630767546 147.82023055395607 147.91241282314766 147.99002255188725 148.05321774418806 148.10215663170044 148.137000146485 148.1579151841256 148.16507862829582 148.15868209908749 148.13893737646976 148.10608243716695 148.06038802809186 148.002164682368 147.93177006516615 147.84961651636684 147.75617863588894 147.65200073592632 147.5377039629692 147.41399287212357 147.28166121775251 147.14162149154927 146.99507344912556 146.8433581086337 146.6878451294449 146.52992863156518 146.37102279939907 146.21255659827335 146.055967754829 145.90269613108697 145.75415523599455 145.6112489633504 145.47431911636136 145.3435994598178 145.21924702035034 145.10135161525002 144.98994422833727 144.88500437926473 144.78646662195973 144.6942262952664 144.60814463421042 144.5280533339013 144.45375864039292 144.38504502451187 144.32167847659198 144.26340944317286 144.20997541207512 144.16110314087675 144.11651051667053 144.07590803292535 144.03899987295108 144.0054845992649 143.9750554640932 143.947400377954 143.9222015998865 143.8991352430523 143.8778707211716 143.85807029204759 143.8393888811123 143.82147438679505 143.80396867628357 143.78650947019995 143.76873328274394 143.7502795246521 143.7307957845244 143.70994417451277 143.68741588311008 143.6629967041035 143.63654066029983 143.60793414982643 143.5770883292082 143.54392871193267 143.50838219109474 143.4703621592208 143.42975251670092 143.38639143428858 143.3400557650366 143.2904469889605 143.23717952345882 143.17977214913992 143.11765037865942 143.0503178143756 142.97754537109293 142.89937262579227 142.81613000199647 142.72845329270115 142.6372876560867 142.5438809624603 142.44976667820166 142.3567367515634 142.26680521014987 142.18216338670376 142.10512785617652 142.03808229231367 141.98341453707653 141.9434502234459 141.92038430500128 141.91621182861383 141.93071043466693 141.94541847097608 141.93306914505155 141.86815174947628
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/shortest_branch_all_yes.tabular Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,205 @@ +# Branches Junctions End-point Voxels Junction Voxels Slab Voxels Average branch length Triple Points Quadruple Points Maximum Branch Length Longest Shortest Path spx spy spz +1 0 2 0 1 2.414 0 0 2.414 2.414 0 60 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 3 91 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 3 91 0 +143 75 40 144 918 9.176 61 9 96.113 277.930 160 0 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 160 0 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 160 0 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 160 0 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 7 64 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 7 64 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 7 64 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 7 64 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 11 80 0 +1 0 2 0 0 1.414 0 0 1.414 1.414 14 66 0 +1 0 2 0 3 4.000 0 0 4.000 4.000 24 84 0 +1 0 2 0 1 2.000 0 0 2.000 2.000 26 93 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 26 93 0 +1 0 2 0 3 4.414 0 0 4.414 4.414 35 92 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 35 92 0 +1 0 2 0 3 5.657 0 0 5.657 5.657 46 114 0 +5 2 4 2 97 23.182 2 0 58.385 100.770 91 174 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 91 174 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 91 174 0 +1 0 2 0 4 5.828 0 0 5.828 5.828 84 44 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 84 44 0 +1 0 2 0 4 5.828 0 0 5.828 5.828 93 52 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 93 52 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 104 14 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 104 14 0 +262 117 105 266 957 5.803 65 37 34.142 352.779 280 50 0 +96 43 31 104 373 6.437 25 11 34.142 212.675 191 111 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 191 111 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 191 111 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 134 53 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 134 53 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 134 53 0 +22 11 10 24 151 9.834 10 1 20.728 116.633 206 124 0 +5 2 4 2 44 12.285 2 0 26.799 52.184 175 175 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 175 175 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 175 175 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 175 175 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 175 175 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 175 175 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 168 58 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 168 58 0 +1 0 2 0 0 1.414 0 0 1.414 1.414 172 182 0 +1 0 2 0 1 2.000 0 0 2.000 2.000 174 0 0 +1 0 2 0 0 1.414 0 0 1.414 1.414 175 169 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 176 181 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 176 181 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 178 0 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 178 175 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 178 175 0 +4 1 4 4 6 4.282 0 1 5.650 10.479 182 194 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 182 194 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 182 194 0 +1 0 2 0 2 3.000 0 0 3.000 3.000 182 0 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 182 0 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 189 53 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 189 53 0 +1 0 2 0 1 2.414 0 0 2.414 2.414 191 3 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 190 49 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 192 64 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 192 64 0 +1 0 2 0 1 2.000 0 0 2.000 2.000 194 102 0 +1 0 2 0 1 2.414 0 0 2.414 2.414 195 68 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 195 68 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 195 68 0 +1 0 2 0 0 1.414 0 0 1.414 1.414 204 70 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 204 70 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 204 70 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 204 70 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 204 70 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 210 83 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 210 83 0 +1 0 2 0 6 8.657 0 0 8.657 8.657 211 69 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 211 69 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 211 69 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 214 65 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 214 65 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 214 65 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 214 65 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 214 65 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 214 65 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 217 91 0 +1 0 2 0 2 3.414 0 0 3.414 3.414 220 7 0 +1 0 2 0 1 2.000 0 0 2.000 2.000 223 94 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 224 55 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 224 55 0 +3 1 3 1 8 4.219 1 0 6.414 9.828 233 11 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 233 11 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 233 11 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 233 11 0 +3 1 3 1 3 3.162 1 0 4.243 7.071 233 57 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 233 57 0 +1 0 2 0 1 2.000 0 0 2.000 2.000 234 5 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 234 5 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 234 5 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 236 111 0 +1 0 2 0 1 2.000 0 0 2.000 2.000 239 55 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 239 111 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 239 111 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 239 111 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 239 111 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 244 8 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 245 108 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 246 27 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 248 107 0 +1 0 2 0 1 2.414 0 0 2.414 2.414 250 110 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 250 110 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 252 31 0 +1 0 2 0 2 3.000 0 0 3.000 3.000 253 34 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 253 34 0 +1 0 2 0 0 1.414 0 0 1.414 1.414 253 68 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 253 71 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 253 71 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 253 71 0 +1 0 2 0 6 7.414 0 0 7.414 7.414 259 71 0 +1 0 2 0 1 2.000 0 0 2.000 2.000 260 60 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 261 67 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 261 67 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 261 67 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 261 67 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 261 67 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 272 64 0 +1 0 2 0 11 13.243 0 0 13.243 13.243 274 18 0 +1 0 2 0 1 2.000 0 0 2.000 2.000 276 47 0 +1 0 2 0 3 4.828 0 0 4.828 4.828 276 61 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 278 52 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 279 14 0 +1 0 2 0 1 2.000 0 0 2.000 2.000 280 63 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 280 63 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 280 63 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 280 63 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 281 52 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 281 52 0 +1 0 2 0 2 3.000 0 0 3.000 3.000 283 47 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 282 54 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 282 77 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 283 10 0 +1 0 2 0 1 2.000 0 0 2.000 2.000 284 66 0 +3 1 3 3 12 6.495 1 0 7.828 14.657 296 56 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 296 56 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 285 17 0 +1 0 2 0 1 2.414 0 0 2.414 2.414 286 29 0 +1 0 2 0 2 3.414 0 0 3.414 3.414 285 112 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 285 112 0 +1 0 2 0 3 4.414 0 0 4.414 4.414 287 84 0 +1 0 2 0 1 2.414 0 0 2.414 2.414 288 37 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 288 37 0 +1 0 2 0 1 2.414 0 0 2.414 2.414 288 122 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 288 122 0 +13 6 8 10 55 5.956 6 0 20.899 68.184 310 78 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 310 78 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 310 78 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 288 91 0 +1 0 2 0 1 2.000 0 0 2.000 2.000 292 46 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 292 46 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 292 70 0 +1 0 2 0 7 8.828 0 0 8.828 8.828 293 121 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 293 121 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 293 121 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 293 121 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 296 144 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 297 27 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 297 27 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 297 157 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 297 157 0 +1 0 2 0 1 2.000 0 0 2.000 2.000 300 88 0 +1 0 2 0 1 2.000 0 0 2.000 2.000 300 98 0 +5 1 5 3 15 5.994 0 0 12.243 18.899 312 82 0 +1 0 2 0 1 2.414 0 0 2.414 2.414 303 36 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 302 104 0 +1 0 2 0 2 3.000 0 0 3.000 3.000 304 75 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 304 75 0 +1 0 2 0 1 2.414 0 0 2.414 2.414 304 124 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 304 124 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 304 73 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 304 73 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 304 73 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 304 73 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 304 73 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 304 73 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 307 89 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 307 89 0 +1 0 2 0 5 6.000 0 0 6.000 6.000 310 94 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 310 94 0 +1 0 2 0 4 6.243 0 0 6.243 6.243 311 47 0 +1 0 2 0 8 10.657 0 0 10.657 10.657 309 55 0 +1 0 2 0 4 5.000 0 0 5.000 5.000 311 57 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 311 57 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 311 57 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 312 27 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 312 55 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 312 84 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 312 84 0 +1 0 2 0 0 1.414 0 0 1.414 1.414 315 10 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 315 30 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 315 79 0 +1 0 2 0 2 3.000 0 0 3.000 3.000 317 27 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 316 55 0 +1 0 2 0 1 2.000 0 0 2.000 2.000 317 63 0 +0 0 1 0 0 0.000 0 0 0.000 0.000 317 63 0 +1 0 2 0 1 2.000 0 0 2.000 2.000 318 83 0 +1 0 2 0 0 1.000 0 0 1.000 1.000 318 58 0
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/shortest_branch_basic.tabular Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,205 @@ +# Branches Junctions End-point Voxels Junction Voxels Slab Voxels Average branch length Triple Points Quadruple Points Maximum Branch Length +1 0 2 0 1 2.414 0 0 2.414 +1 0 2 0 0 1.000 0 0 1.000 +0 0 1 0 0 0.000 0 0 0.000 +143 75 40 144 918 9.176 61 9 96.113 +0 0 1 0 0 0.000 0 0 0.000 +0 0 1 0 0 0.000 0 0 0.000 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 0 1.000 0 0 1.000 +0 0 1 0 0 0.000 0 0 0.000 +0 0 1 0 0 0.000 0 0 0.000 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 0 1.000 0 0 1.000 +1 0 2 0 0 1.414 0 0 1.414 +1 0 2 0 3 4.000 0 0 4.000 +1 0 2 0 1 2.000 0 0 2.000 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 3 4.414 0 0 4.414 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 3 5.657 0 0 5.657 +5 2 4 2 97 23.182 2 0 58.385 +0 0 1 0 0 0.000 0 0 0.000 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 4 5.828 0 0 5.828 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 4 5.828 0 0 5.828 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 0 1.000 0 0 1.000 +0 0 1 0 0 0.000 0 0 0.000 +262 117 105 266 957 5.803 65 37 34.142 +96 43 31 104 373 6.437 25 11 34.142 +0 0 1 0 0 0.000 0 0 0.000 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 0 1.000 0 0 1.000 +0 0 1 0 0 0.000 0 0 0.000 +0 0 1 0 0 0.000 0 0 0.000 +22 11 10 24 151 9.834 10 1 20.728 +5 2 4 2 44 12.285 2 0 26.799 +0 0 1 0 0 0.000 0 0 0.000 +0 0 1 0 0 0.000 0 0 0.000 +0 0 1 0 0 0.000 0 0 0.000 +0 0 1 0 0 0.000 0 0 0.000 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 0 1.000 0 0 1.000 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 0 1.414 0 0 1.414 +1 0 2 0 1 2.000 0 0 2.000 +1 0 2 0 0 1.414 0 0 1.414 +1 0 2 0 0 1.000 0 0 1.000 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 0 1.000 0 0 1.000 +1 0 2 0 0 1.000 0 0 1.000 +0 0 1 0 0 0.000 0 0 0.000 +4 1 4 4 6 4.282 0 1 5.650 +0 0 1 0 0 0.000 0 0 0.000 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 2 3.000 0 0 3.000 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 0 1.000 0 0 1.000 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 1 2.414 0 0 2.414 +1 0 2 0 0 1.000 0 0 1.000 +1 0 2 0 0 1.000 0 0 1.000 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 1 2.000 0 0 2.000 +1 0 2 0 1 2.414 0 0 2.414 +0 0 1 0 0 0.000 0 0 0.000 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 0 1.414 0 0 1.414 +0 0 1 0 0 0.000 0 0 0.000 +0 0 1 0 0 0.000 0 0 0.000 +0 0 1 0 0 0.000 0 0 0.000 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 0 1.000 0 0 1.000 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 6 8.657 0 0 8.657 +0 0 1 0 0 0.000 0 0 0.000 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 0 1.000 0 0 1.000 +0 0 1 0 0 0.000 0 0 0.000 +0 0 1 0 0 0.000 0 0 0.000 +0 0 1 0 0 0.000 0 0 0.000 +0 0 1 0 0 0.000 0 0 0.000 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 0 1.000 0 0 1.000 +1 0 2 0 2 3.414 0 0 3.414 +1 0 2 0 1 2.000 0 0 2.000 +1 0 2 0 0 1.000 0 0 1.000 +0 0 1 0 0 0.000 0 0 0.000 +3 1 3 1 8 4.219 1 0 6.414 +0 0 1 0 0 0.000 0 0 0.000 +0 0 1 0 0 0.000 0 0 0.000 +0 0 1 0 0 0.000 0 0 0.000 +3 1 3 1 3 3.162 1 0 4.243 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 1 2.000 0 0 2.000 +0 0 1 0 0 0.000 0 0 0.000 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 0 1.000 0 0 1.000 +1 0 2 0 1 2.000 0 0 2.000 +1 0 2 0 0 1.000 0 0 1.000 +0 0 1 0 0 0.000 0 0 0.000 +0 0 1 0 0 0.000 0 0 0.000 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 0 1.000 0 0 1.000 +1 0 2 0 0 1.000 0 0 1.000 +1 0 2 0 0 1.000 0 0 1.000 +1 0 2 0 0 1.000 0 0 1.000 +1 0 2 0 1 2.414 0 0 2.414 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 0 1.000 0 0 1.000 +1 0 2 0 2 3.000 0 0 3.000 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 0 1.414 0 0 1.414 +1 0 2 0 0 1.000 0 0 1.000 +0 0 1 0 0 0.000 0 0 0.000 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 6 7.414 0 0 7.414 +1 0 2 0 1 2.000 0 0 2.000 +1 0 2 0 0 1.000 0 0 1.000 +0 0 1 0 0 0.000 0 0 0.000 +0 0 1 0 0 0.000 0 0 0.000 +0 0 1 0 0 0.000 0 0 0.000 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 0 1.000 0 0 1.000 +1 0 2 0 11 13.243 0 0 13.243 +1 0 2 0 1 2.000 0 0 2.000 +1 0 2 0 3 4.828 0 0 4.828 +1 0 2 0 0 1.000 0 0 1.000 +1 0 2 0 0 1.000 0 0 1.000 +1 0 2 0 1 2.000 0 0 2.000 +0 0 1 0 0 0.000 0 0 0.000 +0 0 1 0 0 0.000 0 0 0.000 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 0 1.000 0 0 1.000 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 2 3.000 0 0 3.000 +1 0 2 0 0 1.000 0 0 1.000 +1 0 2 0 0 1.000 0 0 1.000 +1 0 2 0 0 1.000 0 0 1.000 +1 0 2 0 1 2.000 0 0 2.000 +3 1 3 3 12 6.495 1 0 7.828 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 0 1.000 0 0 1.000 +1 0 2 0 1 2.414 0 0 2.414 +1 0 2 0 2 3.414 0 0 3.414 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 3 4.414 0 0 4.414 +1 0 2 0 1 2.414 0 0 2.414 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 1 2.414 0 0 2.414 +0 0 1 0 0 0.000 0 0 0.000 +13 6 8 10 55 5.956 6 0 20.899 +0 0 1 0 0 0.000 0 0 0.000 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 0 1.000 0 0 1.000 +1 0 2 0 1 2.000 0 0 2.000 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 0 1.000 0 0 1.000 +1 0 2 0 7 8.828 0 0 8.828 +0 0 1 0 0 0.000 0 0 0.000 +0 0 1 0 0 0.000 0 0 0.000 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 0 1.000 0 0 1.000 +1 0 2 0 0 1.000 0 0 1.000 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 0 1.000 0 0 1.000 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 1 2.000 0 0 2.000 +1 0 2 0 1 2.000 0 0 2.000 +5 1 5 3 15 5.994 0 0 12.243 +1 0 2 0 1 2.414 0 0 2.414 +1 0 2 0 0 1.000 0 0 1.000 +1 0 2 0 2 3.000 0 0 3.000 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 1 2.414 0 0 2.414 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 0 1.000 0 0 1.000 +0 0 1 0 0 0.000 0 0 0.000 +0 0 1 0 0 0.000 0 0 0.000 +0 0 1 0 0 0.000 0 0 0.000 +0 0 1 0 0 0.000 0 0 0.000 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 0 1.000 0 0 1.000 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 5 6.000 0 0 6.000 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 4 6.243 0 0 6.243 +1 0 2 0 8 10.657 0 0 10.657 +1 0 2 0 4 5.000 0 0 5.000 +0 0 1 0 0 0.000 0 0 0.000 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 0 1.000 0 0 1.000 +1 0 2 0 0 1.000 0 0 1.000 +1 0 2 0 0 1.000 0 0 1.000 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 0 1.414 0 0 1.414 +1 0 2 0 0 1.000 0 0 1.000 +1 0 2 0 0 1.000 0 0 1.000 +1 0 2 0 2 3.000 0 0 3.000 +1 0 2 0 0 1.000 0 0 1.000 +1 0 2 0 1 2.000 0 0 2.000 +0 0 1 0 0 0.000 0 0 0.000 +1 0 2 0 1 2.000 0 0 2.000 +1 0 2 0 0 1.000 0 0 1.000
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/source_elastic_transformation.txt Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,19 @@ +Intervals=4 + +X Coeffs ----------------------------------- + -34.14981674286569 3.049455782290965 43.023180732803596 72.07941659398814 111.3348086331012 134.27021754923854 171.74048996962574 + -46.475609806523806 -33.72857907996849 71.75287558890916 31.499382971529013 126.30503419582384 101.42502013141412 171.94005579124322 + -57.04494430952696 -25.14467669434491 77.36857399207076 23.118023172464497 158.86021996547106 116.27368163696275 118.09217659126361 + -24.97576046789021 23.395972065974025 57.59590962697088 30.48190513543881 140.65767609445436 145.85892948097344 226.2452307274063 + 36.77572061078712 -3.270771396988243 24.98886984473318 110.75151477594144 73.94293650029401 122.4263685887356 285.6034208004295 + 1.8233712258721915 -0.5246596968328043 28.28798059511916 95.46548293707804 56.340294771781146 167.58371349536722 193.2211224159296 + -33.88117649278133 7.9003473752729985 41.603347919804314 72.11109321021485 111.05849721622616 148.16049042863358 181.51669289966162 + +Y Coeffs ----------------------------------- + -32.99874935645494 -4.795744838109129 -20.96112840858183 101.1130859709139 -11.717505555260894 -42.65980408275417 -41.34878020779432 + 12.552220238706795 53.56467140236963 -9.942764513935002 55.080886637997025 -12.14971898412614 -63.13046361022412 -7.646807909694754 + 20.078371173805753 10.891616850045649 -20.5626651628077 1.9750988886790963 -2.5817878953735 -1.9463566715840874 65.2647755628787 + 79.5141476921741 115.6158335826916 79.10501978070808 90.32910034745716 167.22634704384834 18.458542178584356 89.32772899111102 + 121.84553807079365 122.88479131087958 22.618224132046013 109.13669428681638 103.30817312291987 105.94920660911977 113.27029204982638 + 140.58687592247674 121.24985770572616 178.57382934298192 148.79789195003707 148.52007228698614 160.50680129718327 146.10556806845264 + 175.51191703543347 174.9228152249439 173.31675176966468 181.19518434970988 169.08522684466712 177.38498793907618 185.85560874061068
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/target_elastic_transformation.txt Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,19 @@ +Intervals=4 + +X Coeffs ----------------------------------- + -36.6039922921953 -2.3150470382811994 31.759773307851727 65.8654189304783 100.2468400138733 135.91555302075116 173.88307441382625 + -36.88617228112508 -4.053040796860665 29.235243117124078 57.028416352591705 95.67394347208038 123.5714725856364 171.47374974994148 + -35.541850627999196 21.85861267663585 23.567389761464636 83.20455550914913 96.11320612295248 139.63605390197134 176.23944466909964 + -27.128090865664007 25.705665219443933 9.217514977611797 88.50102132245553 83.36837357888565 130.08210922141058 171.12675032519397 + -33.20247236990699 -1.117030292760358 42.7722429647506 64.29174733346207 91.29102495122052 153.66435797745763 143.1658539316362 + -34.61339444980685 -11.215608837988656 35.003080067018715 49.84529979162729 141.677553902203 127.75306589134988 169.56628378772874 + -35.08880707131647 0.09430058713395753 33.821237705118236 68.09827040586029 104.93166481258416 142.74360578972934 179.95627820173547 + +Y Coeffs ----------------------------------- + -28.183282814408102 -23.82021789578421 -25.34864936957265 -29.467937357542485 -32.782593132320734 -34.947421327620816 -35.6014184356325 + 11.94026768836392 29.90842008197568 20.309134110910126 -4.712439152574712 -16.001645375145248 27.493517556939697 -1.7548557791861543 + 46.67748482549621 8.261836641487333 47.754486989201745 67.43283539953723 25.220666771001444 62.02497646597877 28.987669061417932 + 79.20760025752018 91.78325959128138 80.65847818197588 53.58164834299943 64.84495828981709 70.4502558603752 60.560206844247226 + 112.70984564496732 123.32011523200514 121.21556135582402 125.28362648973022 69.56549272230349 125.66212413899041 96.89680832736921 + 146.3969593309945 138.65854876117416 138.61431624315713 139.77333829156305 141.87428785348465 126.7164381107849 135.60885311974076 + 179.48167965875862 180.72271242877142 180.4824514212927 178.69850776607046 175.30849259285284 172.96177418611163 174.30772083031874
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/warping_index.txt Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,1 @@ +14.87777347388348
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/warping_index_raw.txt Fri Jul 22 23:17:07 2016 -0400 @@ -0,0 +1,1 @@ +25.007467512204983
--- a/tool_dependencies.xml Sun Oct 11 13:32:01 2015 -0400 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,6 +0,0 @@ -<?xml version="1.0"?> -<tool_dependency> - <package name="fiji" version="20141125"> - <repository changeset_revision="9dbe89105a25" name="package_fiji_20141125" owner="iuc" toolshed="https://testtoolshed.g2.bx.psu.edu" /> - </package> -</tool_dependency>
