diff --git a/.github/workflows/integrationtests.yml b/.github/workflows/integrationtests.yml index ae144e1f2..087a3e4b6 100644 --- a/.github/workflows/integrationtests.yml +++ b/.github/workflows/integrationtests.yml @@ -60,6 +60,10 @@ jobs: shell: bash -l {0} run: installation/Ubuntu/install_sumo.sh + - name: Install AVL + shell: bash -l {0} + run: installation/Ubuntu/install_pyavl.sh + - name: Install SU2 shell: bash -l {0} run: installation/Ubuntu/install_su2.sh diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index cec871a56..829e163dd 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -178,7 +178,11 @@ Other resources that could the useful. #### SUMO -- [SUMO website](https://www.larosterna.com/products/open-source) +- [SUMO website](https://www.larosterna.com/oss/) + +#### AVL + +- [AVL website](https://web.mit.edu/drela/Public/web/avl/) #### SU2 diff --git a/README.md b/README.md index b117f0fb2..08c1eaedf 100644 --- a/README.md +++ b/README.md @@ -79,7 +79,7 @@ Follow the [test cases](#test-cases) to discover the different way of using CEAS ```mermaid graph LR; - PyTornado-->SaveAeroCoefficients; + PyAVL-->SaveAeroCoefficients; ``` @@ -134,6 +134,7 @@ warning: : The module does not work completely as expected. It is not a bug, but - [CLCalculator](ceasiompy/CLCalculator/README.md) :heavy_check_mark: - [PyTornado](ceasiompy/PyTornado/README.md) :heavy_check_mark: +- [PyAVL](ceasiompy/PyAVL/README.md) :heavy_check_mark: - [SU2Run](ceasiompy/SU2Run/README.md) :heavy_check_mark: - [SkinFriction](ceasiompy/SkinFriction/README.md) :heavy_check_mark: - [SaveAeroCoefficients](ceasiompy/SaveAeroCoefficients/README.md) :heavy_check_mark: diff --git a/ceasiompy/PyAVL/README.md b/ceasiompy/PyAVL/README.md new file mode 100644 index 000000000..99493d12d --- /dev/null +++ b/ceasiompy/PyAVL/README.md @@ -0,0 +1,68 @@ + + + +# PyAVL + +**Categories:** Aerodynamics, vortex lattice method, low-fidelity. + +**State**: :heavy_check_mark: + + + +`PyAVL` module is a launcher for the [Athena Vortex Lattice (AVL)](https://web.mit.edu/drela/Public/web/avl/) solver, developed by M. Drela and H. Youngren at MIT. It is a vortex lattice method (VLM) solver for low-fidelity aerodynamic computations. + +## Inputs + +`PyAVL` takes as input a CPACS file, the aircraft geometry is read to create the VLM model for the wings and fuselage. The flight conditions have to be defined within an aeromap, as well as the number of vortex panels to use. + +

+ +

+

+Example of AVL geometry model. +

+ +## Analyses + +`PyAVL` computes the aerodynamic coefficients of an aircraft for a given aeromap and writes the results in a CPACS file. It calculates the total forces on the aircraft, the forces on individual surfaces, the forces on wing strips, and the forces on each panel. The stability derivatives can also be computed. + +## Outputs + +`PyAVL` outputs a CPACS file with the aerodynamic coefficients added in the aeromap. The settings of the simulation (number of chordwise/spanwise vortices, vortex distribution) are saved. The following force files are saved: +- `ft.txt`: Total Forces. +- `fn.txt`: Surface Forces. +- `fs.txt`: Strip Forces. +- `fe.txt`: Element Forces (vortex strength). + +The following plots are generated: +- `plot.pdf`: it contains a plot of the initial AVL geometry model, and a plot with the aerodynamic loads on the aircraft. +- `lift_distribution.png`: plot of the lift distribution along the span. + +

+ +

+

+Example of aerodynamic loads computed by AVL. +

+ + +## Installation or requirements + +Following the automatic installation procedure on the [CEASIOMpy installation page](../../installation/INSTALLATION.md) should install `PyAVL` automatically with the other tools. + +## Limitations + +`PyAVL` uses a Vortex Lattice Method solver: +- The flow is quasi-steady and ideal: incompressible, irrotational, and inviscid. +- The flow is low-subsonic: [Prandlt-Glauert transformation](https://en.wikipedia.org/wiki/Prandtl%E2%80%93Glauert_transformation) is used to adapt the equations up to Mach 0.6. +- Lifting surfaces are assumed to be thin, the thickness is not taken into account. +- The angle of attack and sideslip must be small. +- Viscous effects, turbulence or boundary layer phenomena are not solved at all. + +## More information + +- [AVL documentation.](https://web.mit.edu/drela/Public/web/avl/AVL_User_Primer.pdf) +- [AVL website.](https://web.mit.edu/drela/Public/web/avl/) +- [Flight Vehicule Aerodynamics](https://mitpress.mit.edu/9780262526449/flight-vehicle-aerodynamics/) by M. Drela. +- [Low-Speed Aerodynamics](https://www.cambridge.org/core/books/lowspeed-aerodynamics/077FAF851C4582F1B7593809752C44AE) by J. Katz and A. Plotkin. +- [Aerodynamics for Engineers](https://www.cambridge.org/highereducation/books/aerodynamics-for-engineers/C8AAC9F38F0781CA38AB65FA85E61CCF#overview) by J. Bertin. diff --git a/ceasiompy/PyAVL/__init__.py b/ceasiompy/PyAVL/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/ceasiompy/PyAVL/__specs__.py b/ceasiompy/PyAVL/__specs__.py new file mode 100644 index 000000000..3dc0f8093 --- /dev/null +++ b/ceasiompy/PyAVL/__specs__.py @@ -0,0 +1,118 @@ +from ceasiompy.utils.moduleinterfaces import CPACSInOut +from ceasiompy.utils.commonxpath import ( + CEASIOMPY_XPATH, + AVL_PLOT_XPATH, + AVL_VORTEX_DISTR_XPATH, + AVL_FUSELAGE_XPATH, + AVL_AEROMAP_UID_XPATH, + AEROPERFORMANCE_XPATH, +) +from pathlib import Path + +# ===== Module Status ===== +# True if the module is active +# False if the module is disabled (not working or not ready) +module_status = True # Because it is just an example not a real module + +# ===== Results directory path ===== + +RESULTS_DIR = Path("Results", "PyAVL") + +# ===== CPACS inputs and outputs ===== + +cpacs_inout = CPACSInOut() + +# ----- Input ----- + +# * In the following example we add three (!) new entries to 'cpacs_inout' +# * Try to use (readable) loops instead of copy-pasting three almost same entries :) +cpacs_inout.add_input( + var_name="aeromap_uid", + var_type=list, + default_value=None, + unit=None, + descr="Name of the aero map to calculate", + xpath=AVL_AEROMAP_UID_XPATH, + gui=True, + gui_name="__AEROMAP_SELECTION", + gui_group="Aeromap settings", +) + +cpacs_inout.add_input( + var_name="integrate_fuselage", + var_type=bool, + default_value=False, + unit=None, + descr="Select to integrate the fuselage in the AVL model", + xpath=AVL_FUSELAGE_XPATH, + gui=True, + gui_name="Integrate fuselage", + gui_group="Fuselage", +) + +cpacs_inout.add_input( + var_name="panel_distribution", + var_type=list, + default_value=["cosine", "sine", "equal"], + unit=None, + descr=("Select the type of distribution"), + xpath=AVL_VORTEX_DISTR_XPATH + "/Distribution", + gui=True, + gui_name="Choice of distribution", + gui_group="Vortex Lattice Spacing Distributions", +) + +cpacs_inout.add_input( + var_name="chordwise_vort", + var_type=int, + default_value=20, + unit=None, + descr="Select the number of chordwise vortices", + xpath=AVL_VORTEX_DISTR_XPATH + "/Nchordwise", + gui=True, + gui_name="Number of chordwise vortices", + gui_group="Vortex Lattice Spacing Distributions", +) + +cpacs_inout.add_input( + var_name="spanwise_vort", + var_type=int, + default_value=50, + unit=None, + descr="Select the number of spanwise vortices", + xpath=AVL_VORTEX_DISTR_XPATH + "/Nspanwise", + gui=True, + gui_name="Number of spanwise vortices", + gui_group="Vortex Lattice Spacing Distributions", +) + +cpacs_inout.add_input( + var_name="save_plots", + var_type=bool, + default_value=False, + unit=None, + descr="Select to save geometry and results plots", + xpath=AVL_PLOT_XPATH, + gui=True, + gui_name="Save plots", + gui_group="Plots", +) + +# ----- Output ----- + +cpacs_inout.add_output( + var_name="output", + default_value=None, + unit="1", + descr="Description of the output", + xpath=CEASIOMPY_XPATH + "/test/myOutput", +) + +cpacs_inout.add_output( + var_name="aeromap_avl", # name to change... + # var_type=CPACS_aeroMap, # no type pour output, would it be useful? + default_value=None, + unit="-", + descr="aeroMap with aero coefficients calculated by AVL", + xpath=AEROPERFORMANCE_XPATH + "/aeroMap/aeroPerformanceMap", +) diff --git a/ceasiompy/PyAVL/avlrun.py b/ceasiompy/PyAVL/avlrun.py new file mode 100644 index 000000000..f866f5f98 --- /dev/null +++ b/ceasiompy/PyAVL/avlrun.py @@ -0,0 +1,129 @@ +""" +CEASIOMpy: Conceptual Aircraft Design Software + +Developed by CFS ENGINEERING, 1015 Lausanne, Switzerland + +Script to run AVL calculations in CEASIOMpy. +AVL allows to perform aerodynamic analyses using +the vortex-lattice method (VLM) + +Python version: >=3.8 + +| Author: Romain Gauthier +| Creation: 2024-03-14 + +TODO: + + * Things to improve ... + +""" + +# ============================================================================== +# IMPORTS +# ============================================================================== +from ceasiompy.utils.ceasiomlogger import get_logger +from ceasiompy.utils.moduleinterfaces import get_toolinput_file_path, get_tooloutput_file_path +from ceasiompy.PyAVL.func.cpacs2avl import convert_cpacs_to_avl +from ceasiompy.PyAVL.func.avlconfig import ( + write_command_file, + get_aeromap_conditions, + get_option_settings, +) +from ceasiompy.PyAVL.func.avlresults import get_avl_results +from ceasiompy.utils.ceasiompyutils import get_results_directory + +import subprocess +from pathlib import Path +from ambiance import Atmosphere + + +log = get_logger() + +MODULE_DIR = Path(__file__).parent +MODULE_NAME = MODULE_DIR.name + +# ================================================================================================= +# CLASSES +# ================================================================================================= + + +# ================================================================================================= +# FUNCTIONS +# ================================================================================================= +def run_avl(cpacs_path, wkdir): + """Function to run AVL. + + Function 'run_avl' runs AVL calculations using a CPACS file + as input. + + Args: + cpacs_path (Path) : path to the CPACS input file + wkdir (Path) : path to the working directory + """ + + alt_list, mach_list, aoa_list, aos_list = get_aeromap_conditions(cpacs_path) + save_fig, _, _, _, _ = get_option_settings(cpacs_path) + + for i_case in range(len(alt_list)): + alt = alt_list[i_case] + mach = mach_list[i_case] + aoa = aoa_list[i_case] + aos = aos_list[i_case] + Atm = Atmosphere(alt) + + density = Atm.density[0] + velocity = Atm.speed_of_sound[0] * mach + g = Atm.grav_accel[0] + + case_dir_name = ( + f"Case{str(i_case).zfill(2)}_alt{alt}_mach{round(mach, 2)}" + f"_aoa{round(aoa, 1)}_aos{round(aos, 1)}" + ) + + Path(wkdir, case_dir_name).mkdir(exist_ok=True) + case_dir_path = Path(wkdir, case_dir_name) + + avl_path = convert_cpacs_to_avl(cpacs_path, wkdir=case_dir_path) + + command_path = write_command_file( + avl_path, + case_dir_path, + save_plots=save_fig, + alpha=aoa, + beta=aos, + mach_number=mach, + ref_velocity=velocity, + ref_density=density, + g_acceleration=g, + ) + + subprocess.run(["xvfb-run", "avl"], stdin=open(str(command_path), "r"), cwd=case_dir_path) + + if save_fig: + if not Path(case_dir_path, "plot.ps").exists(): + raise FileNotFoundError("File 'plot.ps' does not exist.") + + subprocess.run(["ps2pdf", "plot.ps", "plot.pdf"], cwd=case_dir_path) + subprocess.run(["rm", "plot.ps"], cwd=case_dir_path) + + +# ================================================================================================= +# MAIN +# ================================================================================================= + + +def main(cpacs_path, cpacs_out_path): + log.info("----- Start of " + MODULE_NAME + " -----") + + results_dir = get_results_directory("PyAVL") + run_avl(cpacs_path, results_dir) + get_avl_results(cpacs_path, cpacs_out_path, results_dir) + + log.info("----- End of " + MODULE_NAME + " -----") + + +if __name__ == "__main__": + cpacs_path = get_toolinput_file_path(MODULE_NAME) + cpacs_out_path = get_tooloutput_file_path(MODULE_NAME) + + main(cpacs_path, cpacs_out_path) diff --git a/ceasiompy/PyAVL/files/avl_example.png b/ceasiompy/PyAVL/files/avl_example.png new file mode 100644 index 000000000..ee2134d02 Binary files /dev/null and b/ceasiompy/PyAVL/files/avl_example.png differ diff --git a/ceasiompy/PyAVL/files/avl_example_loads.png b/ceasiompy/PyAVL/files/avl_example_loads.png new file mode 100644 index 000000000..6fdc182b9 Binary files /dev/null and b/ceasiompy/PyAVL/files/avl_example_loads.png differ diff --git a/ceasiompy/PyAVL/files/avl_logo.png b/ceasiompy/PyAVL/files/avl_logo.png new file mode 100644 index 000000000..0c1551049 Binary files /dev/null and b/ceasiompy/PyAVL/files/avl_logo.png differ diff --git a/ceasiompy/PyAVL/files/template.mass b/ceasiompy/PyAVL/files/template.mass new file mode 100644 index 000000000..9faeeb38e --- /dev/null +++ b/ceasiompy/PyAVL/files/template.mass @@ -0,0 +1,19 @@ +#------------------------------------------------- +# N+3 Config D8-1 +# +# Dimensional unit and parameter data. +# Mass & Inertia breakdown. +#------------------------------------------------- + +# Names and scalings for units to be used for trim and eigenmode calculations. +# The Lunit and Munit values scale the mass, xyz, and inertia table data below. +# Lunit value will also scale all lengths and areas in the AVL input file. +Lunit = 1.0 m +Munit = 1.0 kg +Tunit = 1.0 s + +#------------------------- +# Gravity and density to be used as default values in trim setup. +# Must be in the units given above. +g = 9.81 +rho = 1.2 diff --git a/ceasiompy/PyAVL/func/avlconfig.py b/ceasiompy/PyAVL/func/avlconfig.py new file mode 100644 index 000000000..555b27a56 --- /dev/null +++ b/ceasiompy/PyAVL/func/avlconfig.py @@ -0,0 +1,231 @@ +""" +CEASIOMpy: Conceptual Aircraft Design Software + +Developed by CFS ENGINEERING, 1015 Lausanne, Switzerland + +Script to get the flight conditions (alt, aoa, mach...) from +the input CPACS file, and write the command file for AVL. + +Python version: >=3.8 + +| Author: Romain Gauthier +| Creation: 2024-03-14 + +TODO: + + * Things to improve... + +""" + +# ============================================================================== +# IMPORTS +# ============================================================================== + +from pathlib import Path + +from ceasiompy.utils.ceasiomlogger import get_logger +from ceasiompy.utils.commonxpath import ( + RANGE_XPATH, + AVL_AEROMAP_UID_XPATH, + AVL_PLOT_XPATH, + AVL_VORTEX_DISTR_XPATH, + AVL_FUSELAGE_XPATH, +) +from cpacspy.cpacsfunctions import get_value_or_default +from ceasiompy.utils.moduleinterfaces import get_module_path +from cpacspy.cpacspy import CPACS + +log = get_logger() + + +# ================================================================================================= +# FUNCTIONS +# ================================================================================================= +def write_command_file( + avl_path, + case_dir_path, + alpha, + beta, + mach_number, + ref_velocity, + ref_density, + g_acceleration, + save_plots, +): + """Function to write the command file for AVL. + + Function 'write_command_file' writes the command file to + execute for AVL calculations. + + Args: + avl_path (Path) : path to the AVL input file + case_dir_path (Path) : path to the run case directory + alpha (float) : angle of attack [deg] + beta (float) : angle of attack [deg] + mach_number (float) : Mach number + ref_velocity (float) : reference upstream velocity [m/s] + ref_density (float) : reference upstream density [kg/m^3] + g_acceleration (float) : gravitational acceleration [m/s^2] + + Returns: + avl_commands.txt : write the command AVL file. + command_path (Path) : path to the command file. + """ + + command_path = str(case_dir_path) + "/avl_commands.txt" + pyavl_dir = get_module_path("PyAVL") + mass_path = Path(pyavl_dir, "files", "template.mass") + + if save_plots: + with open(command_path, "w") as command_file: + command_file.writelines( + [ + "load " + str(avl_path) + "\n", + "mass " + str(mass_path) + "\n", + "oper\n", + "g\n", + "h\n\n", + "a a " + str(alpha) + "\n", + "b b " + str(beta) + "\n", + "m\n", + "mn " + str(mach_number) + "\n", + "g " + str(g_acceleration) + "\n", + "d " + str(ref_density) + "\n", + "v " + str(ref_velocity) + "\n\n", + ] + ) + command_file.write("x\n") + command_file.writelines(["t\n", "h\n\n"]) + command_file.writelines(["g\n", "lo\n", "h\n\n"]) + command_file.write("x\n") + for force_file in ["ft", "fn", "fs", "fe", "st"]: + command_file.write(force_file + "\n") + command_file.write(force_file + ".txt\n") + command_file.write("\n\n\n") + command_file.write("quit") + + else: # same without lines saving figures + with open(command_path, "w") as command_file: + command_file.writelines( + [ + "load " + str(avl_path) + "\n", + "mass " + str(mass_path) + "\n", + "oper\n", + "a a " + str(alpha) + "\n", + "b b " + str(beta) + "\n", + "m\n", + "mn " + str(mach_number) + "\n", + "g " + str(g_acceleration) + "\n", + "d " + str(ref_density) + "\n", + "v " + str(ref_velocity) + "\n\n", + ] + ) + command_file.write("x\n") + for force_file in ["ft", "fn", "fs", "fe", "st"]: + command_file.write(force_file + "\n") + command_file.write(force_file + ".txt\n") + command_file.write("\n\n\n") + command_file.write("quit") + + # Print the command file for debugging + # with open(command_path, "r") as command_file: + # for line in command_file: + # print(line) + + return Path(command_path) + + +def get_aeromap_conditions(cpacs_path): + """Function read the flight conditions from the aeromap. + + Function 'get_aeromap_conditions' reads the flight conditions + (angle of attack, mach number...) from the aeromap of CEASIOMpy. + + Args: + cpacs_path (Path) : path to the cpacs input file + + Returns: + alt_list (list) : altitude of the cases. + mach_list (list) : mach number of the cases. + aoa_list (list) : angle of attack of the cases. + aos_list (list) : angle of sweep of the cases. + """ + cpacs = CPACS(cpacs_path) + + # Get the first aeroMap as default one or create automatically one + aeromap_list = cpacs.get_aeromap_uid_list() + + if aeromap_list: + aeromap_default = aeromap_list[0] + log.info(f"The aeromap is {aeromap_default}") + + aeromap_uid = get_value_or_default(cpacs.tixi, AVL_AEROMAP_UID_XPATH, aeromap_default) + + activate_aeromap = cpacs.get_aeromap_by_uid(aeromap_uid) + alt_list = activate_aeromap.get("altitude").tolist() + mach_list = activate_aeromap.get("machNumber").tolist() + aoa_list = activate_aeromap.get("angleOfAttack").tolist() + aos_list = activate_aeromap.get("angleOfSideslip").tolist() + + else: + default_aeromap = cpacs.create_aeromap("DefaultAeromap") + default_aeromap.description = "AeroMap created automatically" + + mach = get_value_or_default(cpacs.tixi, RANGE_XPATH + "/cruiseMach", 0.3) + alt = get_value_or_default(cpacs.tixi, RANGE_XPATH + "/cruiseAltitude", 10000) + + default_aeromap.add_row(alt=alt, mach=mach, aos=0.0, aoa=0.0) + default_aeromap.save() + + alt_list = [alt] + mach_list = [mach] + aoa_list = [0.0] + aos_list = [0.0] + + aeromap_uid = get_value_or_default(cpacs.tixi, AVL_AEROMAP_UID_XPATH, "DefaultAeromap") + log.info(f"{aeromap_uid} has been created") + + cpacs.save_cpacs(cpacs_path, overwrite=True) + return alt_list, mach_list, aoa_list, aos_list + + +def get_option_settings(cpacs_path): + """Function read the setting of the graphical user interface. + + Function 'get_option_settings' reads the setting to use in AVL + from the graphical user interface of CEASIOMpy. + + Args: + cpacs_path (Path) : path to the cpacs input file + + Returns: + save_plots (bool) : to save the geometry and results figures. + vortex_distribution (float) : distribution of the vortices. + Nchordwise (int) : number of chordwise vortices. + Nspanwise (int) : number of spanwise vortices. + """ + cpacs = CPACS(cpacs_path) + + save_plots = get_value_or_default(cpacs.tixi, AVL_PLOT_XPATH, False) + vortex_distribution_gui = get_value_or_default( + cpacs.tixi, AVL_VORTEX_DISTR_XPATH + "/Distribution", "equal" + ) + if vortex_distribution_gui == "cosine": + vortex_distribution = 1.0 + elif vortex_distribution_gui == "sine": + vortex_distribution = 2.0 + else: + vortex_distribution = 3.0 + Nchordwise = get_value_or_default(cpacs.tixi, AVL_VORTEX_DISTR_XPATH + "/Nchordwise", 5) + Nspanwise = get_value_or_default(cpacs.tixi, AVL_VORTEX_DISTR_XPATH + "/Nspanwise", 20) + integrate_fuselage = get_value_or_default(cpacs.tixi, AVL_FUSELAGE_XPATH, False) + + return save_plots, vortex_distribution, Nchordwise, Nspanwise, integrate_fuselage + + +# ================================================================================================= +# MAIN +# ================================================================================================= + +if __name__ == "__main__": + log.info("Nothing to execute!") diff --git a/ceasiompy/PyAVL/func/avlresults.py b/ceasiompy/PyAVL/func/avlresults.py new file mode 100644 index 000000000..031245153 --- /dev/null +++ b/ceasiompy/PyAVL/func/avlresults.py @@ -0,0 +1,207 @@ +""" +CEASIOMpy: Conceptual Aircraft Design Software + +Developed by CFS ENGINEERING, 1015 Lausanne, Switzerland + +Extract results from AVL calculations and save them in a CPACS file. + +Python version: >=3.8 + +| Author: Romain Gauthier +| Creation: 2024-03-18 + +TODO: + + * + +""" + +# ================================================================================================= +# IMPORTS +# ================================================================================================= + +from pathlib import Path +import pandas as pd +import matplotlib.pyplot as plt + +from ceasiompy.utils.ceasiomlogger import get_logger +from ceasiompy.utils.commonxpath import AVL_AEROMAP_UID_XPATH + +from cpacspy.cpacsfunctions import get_value +from cpacspy.cpacspy import CPACS + +log = get_logger() + + +# ================================================================================================= +# CLASSES +# ================================================================================================= + + +# ================================================================================================= +# FUNCTIONS +# ================================================================================================= + + +def plot_lift_distribution(force_file_fs, aoa, aos, mach, alt, wkdir): + """Plot the lift distribution from AVL strip forces file (fs.txt) + + Args: + force_file_fs (Path): Path to the AVL strip forces file + aoa (float): angle of attack [deg] + aos (float): angle of sideslip [deg] + mach (float): mach number + alt (float): flight altitude [m] + wkir (path): path to save the plot + + Returns: + """ + y_list = [] + chord_list = [] + cl_list = [] + clnorm_list = [] + + with open(force_file_fs, "r") as fs: + for line in fs: + if "Cref =" in line: + cref = float(line.split()[5]) + + elif "# Spanwise =" in line: + number_strips = int(line.split()[7]) + + elif "Xle" in line: + number_data = 0 + for line in fs: + data = line.split() + y_list.append(float(data[2])) + chord_list.append(float(data[4])) + cl_list.append(float(data[9])) + clnorm_list.append(float(data[8])) + number_data += 1 + + # break when every line has been extracted + if number_data == number_strips: + break + + data_df = pd.DataFrame( + {"y": y_list, "chord": chord_list, "cl": cl_list, "cl_norm": clnorm_list} + ) + + data_df.sort_values(by="y", inplace=True) + data_df.reset_index(drop=True, inplace=True) + data_df["cl_cref"] = data_df["cl"] * data_df["chord"] / cref + + _, ax = plt.subplots(figsize=(10, 5)) + data_df.plot("y", "cl_norm", ax=ax, label="$c_{l\perp}$", linestyle="dashed", color="r") + data_df.plot("y", "cl", label="$c_l$", ax=ax, linestyle="dashed", color="#FFA500") + data_df.plot( + "y", "cl_cref", ax=ax, label="$c_l \cdot C/C_{ref}$", linestyle="solid", color="#41EE33" + ) + + plt.title( + ( + "Lift distribution along the wing span " + "($\\alpha=%.1f^{\circ}$, $\\beta=%.1f^{\circ}$, " + "$M=%.1f$, alt = %d m)" + ) + % (aoa, aos, mach, alt), + fontsize=14, + ) + + plt.ylabel("$C_l$", rotation=0, fontsize=12) + plt.legend(fontsize=12) + plt.grid() + plt.savefig(Path(wkdir, "lift_distribution.png")) + + +def get_avl_aerocoefs(force_file_ft): + """Get aerodynamic coefficients and velocity from AVL total forces file (ft.txt) + + Args: + force_file_ft (Path): Path to the AVL total forces file + + Returns: + cl, cd, cs, cmd, cms, cml: Aerodynamic coefficients + """ + + if not force_file_ft.is_file(): + raise FileNotFoundError(f"The AVL forces file '{force_file_ft}' has not been found!") + + cl, cd = None, None + + with open(force_file_ft) as f: + for line in f.readlines(): + if "CLtot" in line: + cl = float(line.split("=")[1].strip()) + if "CDtot" in line: + cd = float(line.split("=")[1].strip()) + if "Cmtot" in line: + cm = float(line.split("=")[2].strip()) + + return cl, cd, cm + + +def get_avl_results(cpacs_path, cpacs_out_path, wkdir): + """Function to write AVL results in a CPACS file. + + Function 'get_avl_results' gets available results from the latest AVL calculation and put them + at the correct place in the CPACS file. + + '/cpacs/vehicles/aircraft/model/analyses/aeroPerformance/aeroMap[n]/aeroPerformanceMap' + + Args: + cpacs_path (Path): Path to input CPACS file + cpacs_out_path (Path): Path to output CPACS file + wkdir (Path): Path to the working directory + + """ + + cpacs = CPACS(cpacs_path) + if not wkdir.exists(): + raise OSError(f"The working directory : {wkdir} does not exit!") + aeromap_uid = get_value(cpacs.tixi, AVL_AEROMAP_UID_XPATH) + + log.info(f"The aeromap uid is: {aeromap_uid}") + aeromap = cpacs.get_aeromap_by_uid(aeromap_uid) + + alt_list = aeromap.get("altitude").tolist() + mach_list = aeromap.get("machNumber").tolist() + aoa_list = aeromap.get("angleOfAttack").tolist() + aos_list = aeromap.get("angleOfSideslip").tolist() + + case_dir_list = [case_dir for case_dir in wkdir.iterdir() if "Case" in case_dir.name] + + for config_dir in sorted(case_dir_list): + if not config_dir.is_dir(): + continue + + ft_file_path = Path(config_dir, "ft.txt") + + if not ft_file_path.exists(): + raise FileNotFoundError("No result total forces 'ft.txt' file have been found!") + + fs_file_path = Path(config_dir, "fs.txt") + if not fs_file_path.exists(): + raise FileNotFoundError("No result strip forces 'fs.txt' file have been found!") + + case_nb = int(config_dir.name.split("_")[0].split("Case")[1]) + + aoa = aoa_list[case_nb] + aos = aos_list[case_nb] + mach = mach_list[case_nb] + alt = alt_list[case_nb] + + cl, cd, cm = get_avl_aerocoefs(ft_file_path) + plot_lift_distribution(fs_file_path, aoa, aos, mach, alt, wkdir=config_dir) + + aeromap.add_coefficients(alt=alt, mach=mach, aos=aos, aoa=aoa, cd=cd, cl=cl, cms=cm) + aeromap.save() + cpacs.save_cpacs(cpacs_out_path, overwrite=True) + + +# ================================================================================================= +# MAIN +# ================================================================================================= + +if __name__ == "__main__": + log.info("Nothing to execute!") diff --git a/ceasiompy/PyAVL/func/cpacs2avl.py b/ceasiompy/PyAVL/func/cpacs2avl.py new file mode 100644 index 000000000..04135baeb --- /dev/null +++ b/ceasiompy/PyAVL/func/cpacs2avl.py @@ -0,0 +1,659 @@ +""" +CEASIOMpy: Conceptual Aircraft Design Software + +Developed by CFS ENGINEERING, 1015 Lausanne, Switzerland + +Script to convert CPACS file geometry into AVL geometry + +Python version: >=3.8 + +| Author: Romain Gauthier +| Adapted from : Aidan Jungo script cpacs2sumo.py +| Creation: 2024-03-14 + +TODO: + + * Improve link between wings and fuselages parts + +""" + +# ============================================================================== +# IMPORTS +# ============================================================================== + +from ceasiompy.utils.ceasiompyutils import get_results_directory +import math +import numpy as np +from pathlib import Path +from scipy import interpolate + +from ceasiompy.CPACS2SUMO.func.getprofile import get_profile_coord + +from ceasiompy.utils.ceasiomlogger import get_logger +from ceasiompy.utils.commonxpath import WINGS_XPATH, FUSELAGES_XPATH, REF_XPATH + +from ceasiompy.utils.generalclasses import SimpleNamespace, Transformation +from ceasiompy.utils.mathfunctions import euler2fix +from cpacspy.cpacsfunctions import open_tixi + +from ceasiompy.PyAVL.func.rotation3D import rotate_3D_points +from ceasiompy.PyAVL.func.avlconfig import get_option_settings + +log = get_logger() + +# ================================================================================================= +# FUNCTIONS +# ================================================================================================= + + +def convert_cpacs_to_avl(cpacs_path, wkdir): + """Function to convert a CPACS file geometry into an AVL file geometry. + + Function 'convert_cpacs_to_avl' opens an input CPACS file with TIXI handle + and converts every element (as much as possible) in the AVL (.avl) format. + The output sumo file is saved in ... + + Source: + * https://github.com/cfsengineering/CEASIOMpy/blob/main/ceasiompy/CPACS2SUMO/cpacs2sumo.py + + Args: + cpacs_path (Path) : path to the CPACS input file + + Returns: + aircraft.avl : write the input AVL file + avl_path (Path) : path to the AVL input file + """ + tixi = open_tixi(cpacs_path) + + # Get the aircraft name + name_aircraft = tixi.getTextElement("/cpacs/header/name") + + results_dir = get_results_directory("PyAVL") + results_path = str(results_dir) + avl_path = str(results_dir) + "/" + name_aircraft + ".avl" + + with open(avl_path, 'w') as avl_file: + avl_file.write(name_aircraft + "\n\n") + + # Get the flight conditions + FLIGHT_XPATH = "/cpacs/vehicles/aircraft/model/analyses/" + \ + "aeroPerformance/aeroMap[1]/aeroPerformanceMap" + mach = tixi.getDoubleElement(FLIGHT_XPATH + '/machNumber') + AoA = 0 # tixi.getDoubleElement(FLIGHT_XPATH + '/angleOfAttack') + with open(avl_path, 'a') as avl_file: + # Mach number + avl_file.write('#Mach\n') + avl_file.write(str(mach) + "\n\n") + # Symmetry + avl_file.write("#IYsym IZsym Zsym\n") + avl_file.write("0\t0\t0\n\n") + + _, vortex_distribution, Nchordwise, Nspanwise, integrate_fuselage = get_option_settings( + cpacs_path) + + # Get the reference dimensions + area_ref = tixi.getDoubleElement(REF_XPATH + '/area') + chord_ref = tixi.getDoubleElement(REF_XPATH + '/length') + span_ref = area_ref / chord_ref + points_ref = np.array([tixi.getDoubleElement(REF_XPATH + '/point/x'), + tixi.getDoubleElement(REF_XPATH + '/point/y'), + tixi.getDoubleElement(REF_XPATH + '/point/z')]) + with open(avl_path, 'a') as avl_file: + # Reference dimensions + avl_file.write("#Sref Cref Bref\n") + avl_file.write(f"{area_ref:.3f}\t{chord_ref:.3f}\t{span_ref:.3f}\n\n") + # Reference location for moments/rotations + avl_file.write("#Xref Yref Zref\n") + for i_points in range(3): + avl_file.write(f"{points_ref[i_points]:.3f}\t") + avl_file.write("\n\n") + + # Fuselage(s) --------------------------------------------------------------- + + if tixi.checkElement(FUSELAGES_XPATH): + fus_cnt = tixi.getNamedChildrenCount(FUSELAGES_XPATH, "fuselage") + log.info(str(fus_cnt) + " fuselage has been found.") + else: + fus_cnt = 0 + log.warning("No fuselage has been found in this CPACS file!") + + if integrate_fuselage: + for i_fus in reversed(range(fus_cnt)): + fus_xpath = FUSELAGES_XPATH + "/fuselage[" + str(i_fus + 1) + "]" + fus_uid = tixi.getTextAttribute(fus_xpath, "uID") + fus_transf = Transformation() + fus_transf.get_cpacs_transf(tixi, fus_xpath) + + body_transf = Transformation() + body_transf.translation = fus_transf.translation + + # Convert angles + body_transf.rotation = euler2fix(fus_transf.rotation) + + # Add body origin + body_ori_str = ( + str(body_transf.translation.x) + + "\t" + + str(body_transf.translation.y) + + "\t" + + str(body_transf.translation.z) + ) + + # Write fuselage settings + with open(avl_path, 'a') as avl_file: + avl_file.write("#--------------------------------------------------\n") + avl_file.write("BODY\n") + avl_file.write("Fuselage\n\n") + avl_file.write("!Nbody Bspace\n") + avl_file.write("100\t1.0\n\n") + + # Scaling + avl_file.write("SCALE\n") + avl_file.write(str(fus_transf.scaling.x) + + "\t" + + str(fus_transf.scaling.y) + + "\t" + + str(fus_transf.scaling.z) + + "\n\n") + + # Translation + avl_file.write("TRANSLATE\n") + avl_file.write(body_ori_str + "\n\n") + + # avl_file.write("NOWAKE\n\n") + + # Positionings + if tixi.checkElement(fus_xpath + "/positionings"): + pos_cnt = tixi.getNamedChildrenCount(fus_xpath + "/positionings", "positioning") + log.info(str(fus_cnt) + ' "Positioning" has been found : ') + + pos_x_list = [] + pos_y_list = [] + pos_z_list = [] + from_sec_list = [] + to_sec_list = [] + + for i_pos in range(pos_cnt): + pos_xpath = fus_xpath + "/positionings/positioning[" + str(i_pos + 1) + "]" + + length = tixi.getDoubleElement(pos_xpath + "/length") + sweep_deg = tixi.getDoubleElement(pos_xpath + "/sweepAngle") + sweep = math.radians(sweep_deg) + dihedral_deg = tixi.getDoubleElement(pos_xpath + "/dihedralAngle") + dihedral = math.radians(dihedral_deg) + + # Get the corresponding translation of each positioning + pos_x_list.append(length * math.sin(sweep)) + pos_y_list.append(length * math.cos(dihedral) * math.cos(sweep)) + pos_z_list.append(length * math.sin(dihedral) * math.cos(sweep)) + + # Get which section are connected by the positioning + if tixi.checkElement(pos_xpath + "/fromSectionUID"): + from_sec = tixi.getTextElement(pos_xpath + "/fromSectionUID") + else: + from_sec = "" + from_sec_list.append(from_sec) + + if tixi.checkElement(pos_xpath + "/toSectionUID"): + to_sec = tixi.getTextElement(pos_xpath + "/toSectionUID") + else: + to_sec = "" + to_sec_list.append(to_sec) + + # Re-loop though the positioning to re-order them + for j_pos in range(pos_cnt): + if from_sec_list[j_pos] == "": + prev_pos_x = 0 + prev_pos_y = 0 + prev_pos_z = 0 + + elif from_sec_list[j_pos] == to_sec_list[j_pos - 1]: + prev_pos_x = pos_x_list[j_pos - 1] + prev_pos_y = pos_y_list[j_pos - 1] + prev_pos_z = pos_z_list[j_pos - 1] + + else: + index_prev = to_sec_list.index(from_sec_list[j_pos]) + prev_pos_x = pos_x_list[index_prev] + prev_pos_y = pos_y_list[index_prev] + prev_pos_z = pos_z_list[index_prev] + + pos_x_list[j_pos] += prev_pos_x + pos_y_list[j_pos] += prev_pos_y + pos_z_list[j_pos] += prev_pos_z + + else: + log.warning('No "positionings" have been found!') + pos_cnt = 0 + + # Sections + sec_cnt = tixi.getNamedChildrenCount(fus_xpath + "/sections", "section") + log.info(" -" + str(sec_cnt) + " fuselage sections have been found") + x_fuselage = np.zeros(sec_cnt) + y_fuselage_top = np.zeros(sec_cnt) + y_fuselage_bottom = np.zeros(sec_cnt) + fus_radius_vec = np.zeros(sec_cnt) + body_width_vec = np.zeros(sec_cnt) + body_height_vec = np.zeros(sec_cnt) + + if pos_cnt == 0: + pos_x_list = [0.0] * sec_cnt + pos_y_list = [0.0] * sec_cnt + pos_z_list = [0.0] * sec_cnt + + for i_sec in range(sec_cnt): + sec_xpath = fus_xpath + "/sections/section[" + str(i_sec + 1) + "]" + sec_uid = tixi.getTextAttribute(sec_xpath, "uID") + + sec_transf = Transformation() + sec_transf.get_cpacs_transf(tixi, sec_xpath) + + if sec_transf.rotation.x or sec_transf.rotation.y or sec_transf.rotation.z: + log.warning( + f"Sections '{sec_uid}' is rotated, it is" + "not possible to take that into account in SUMO !" + ) + + # Elements + elem_cnt = tixi.getNamedChildrenCount(sec_xpath + "/elements", "element") + + if elem_cnt > 1: + log.warning( + "Sections " + + sec_uid + + " contains multiple \ + element, it could be an issue for the conversion \ + to SUMO!" + ) + + for i_elem in range(elem_cnt): + elem_xpath = sec_xpath + "/elements/element[" + str(i_elem + 1) + "]" + elem_uid = tixi.getTextAttribute(elem_xpath, "uID") + + elem_transf = Transformation() + elem_transf.get_cpacs_transf(tixi, elem_xpath) + + if elem_transf.rotation.x or elem_transf.rotation.y or elem_transf.rotation.z: + log.warning( + f"Element '{elem_uid}' is rotated, it is" + "not possible to take that into account in SUMO !" + ) + + # Fuselage profiles + prof_uid = tixi.getTextElement(elem_xpath + "/profileUID") + prof_vect_x, prof_vect_y, prof_vect_z = get_profile_coord(tixi, prof_uid) + + prof_size_y = (max(prof_vect_y) - min(prof_vect_y)) / 2 + prof_size_z = (max(prof_vect_z) - min(prof_vect_z)) / 2 + + prof_vect_y[:] = [y / prof_size_y for y in prof_vect_y] + prof_vect_z[:] = [z / prof_size_z for z in prof_vect_z] + + prof_min_y = min(prof_vect_y) + prof_min_z = min(prof_vect_z) + + prof_vect_y[:] = [y - 1 - prof_min_y for y in prof_vect_y] + prof_vect_z[:] = [z - 1 - prof_min_z for z in prof_vect_z] + + # Could be a problem if they are less positionings than sections + # TODO: solve that! + pos_y_list[i_sec] += ((1 + prof_min_y) * prof_size_y) * elem_transf.scaling.y + pos_z_list[i_sec] += ((1 + prof_min_z) * prof_size_z) * elem_transf.scaling.z + + # Compute coordinates of the center of section + body_frm_center_x = ( + elem_transf.translation.x + sec_transf.translation.x + pos_x_list[i_sec] + ) * fus_transf.scaling.x + + body_frm_center_z = ( + elem_transf.translation.z * sec_transf.scaling.z + + sec_transf.translation.z + + pos_z_list[i_sec] + ) * fus_transf.scaling.z + + # Compute height and width of the section + body_frm_height = ( + prof_size_z + * 2 + * elem_transf.scaling.z + * sec_transf.scaling.z + * fus_transf.scaling.z + ) + body_frm_width = ( + prof_size_y + * 2 + * elem_transf.scaling.y + * sec_transf.scaling.y + * fus_transf.scaling.y + ) + + # Compute diameter of the section as the mean between height and width + # AVL assumes only circular cross section for fuselage + fus_radius = np.mean([body_frm_height, body_frm_width]) / 2 + fus_radius_vec[i_sec] = (fus_radius) + + # Save the coordinates of the fuselage + x_fuselage[i_sec] = body_frm_center_x + y_fuselage_top[i_sec] = body_frm_center_z + fus_radius + y_fuselage_bottom[i_sec] = body_frm_center_z - fus_radius + + body_width_vec[i_sec] = body_frm_width + body_height_vec[i_sec] = body_frm_height + + fus_z_profile = interpolate.interp1d( + x_fuselage + body_transf.translation.x, y_fuselage_top - fus_radius_vec) + fus_radius_profile = interpolate.interp1d( + x_fuselage + body_transf.translation.x, fus_radius_vec) + + fus_dat_path = results_path + "/" + fus_uid + ".dat" + + with open(fus_dat_path, 'w') as fus_file: + fus_file.write("fuselage" + str(i_fus + 1) + "\n") + + # Write coordinates of the top surface + for x_fus, y_fus in reversed(list(zip(x_fuselage[1:], y_fuselage_top[1:]))): + # fus_file.write(str(x_fus) + "\t" + str(y_fus) + "\n") + fus_file.write(f"{x_fus:.3f}\t{y_fus:.3f}\n") + + # Write coordinates of the nose of the fuselage + y_nose = np.mean([y_fuselage_top[0], y_fuselage_bottom[0]]) + # fus_file.write(str(x_fuselage[0]) + "\t" + str(y_nose) + "\n") + fus_file.write(f"{x_fuselage[0]:.3f}\t{y_nose:.3f}\n") + + # Write coordinates of the bottom surface + for x_fus, y_fus in zip(x_fuselage[1:], y_fuselage_bottom[1:]): + # fus_file.write(str(x_fus) + "\t" + str(y_fus) + "\n") + fus_file.write(f"{x_fus:.3f}\t{y_fus:.3f}\n") + + with open(avl_path, 'a') as avl_file: + avl_file.write("BFILE\n") + avl_file.write(fus_dat_path + "\n\n") + + # Wing(s) ------------------------------------------------------------------ + if tixi.checkElement(WINGS_XPATH): + wing_cnt = tixi.getNamedChildrenCount(WINGS_XPATH, "wing") + log.info(str(wing_cnt) + " wings has been found.") + else: + wing_cnt = 0 + log.warning("No wings has been found in this CPACS file!") + + if vortex_distribution > 3 or vortex_distribution < -3: + log.warning( + "The vortex distribution is not in the range [-3 ; 3]. " + + "Default value of 1 will be used.") + vortex_distribution = 1 + + for i_wing in range(wing_cnt): + root_defined = False + wing_xpath = WINGS_XPATH + "/wing[" + str(i_wing + 1) + "]" + wing_transf = Transformation() + wing_transf.get_cpacs_transf(tixi, wing_xpath) + + # Create a class for the transformation of the WingSkeleton + wg_sk_transf = Transformation() + + # Convert WingSkeleton rotation + wg_sk_transf.rotation = euler2fix(wing_transf.rotation) + + # Add WingSkeleton origin + wg_sk_transf.translation = wing_transf.translation + wg_sk_ori_str = ( + str(round(wg_sk_transf.translation.x, 3)) + + "\t" + + str(round(wg_sk_transf.translation.y, 3)) + + "\t" + + str(round(wg_sk_transf.translation.z, 3)) + ) + + # Write wing settings + with open(avl_path, 'a') as avl_file: + avl_file.write("#--------------------------------------------------\n") + avl_file.write("SURFACE\n") + avl_file.write("Wing\n\n") + avl_file.write("!Nchordwise Cspace Nspanwise Sspace\n") + avl_file.write( + f"{Nchordwise} {vortex_distribution} {Nspanwise} {vortex_distribution}\n\n") + avl_file.write('COMPONENT\n') + avl_file.write("1\n\n") + + # Symmetry + if tixi.checkAttribute(wing_xpath, "symmetry"): + if tixi.getTextAttribute(wing_xpath, "symmetry") == "x-z-plane": + avl_file.write('YDUPLICATE\n') + avl_file.write("0\n\n") + + # Angle + avl_file.write('ANGLE\n') + avl_file.write(str(AoA) + "\n\n") + + # Scaling + avl_file.write("SCALE\n") + avl_file.write(str(wing_transf.scaling.x) + + "\t" + + str(wing_transf.scaling.y) + + "\t" + + str(wing_transf.scaling.z) + + "\n\n") + + # Translation + avl_file.write("TRANSLATE\n") + avl_file.write(wg_sk_ori_str + "\n\n") + + # Positionings + if tixi.checkElement(wing_xpath + "/positionings"): + pos_cnt = tixi.getNamedChildrenCount(wing_xpath + "/positionings", "positioning") + log.info(str(pos_cnt) + ' "positioning" has been found : ') + + pos_x_list = [] + pos_y_list = [] + pos_z_list = [] + from_sec_list = [] + to_sec_list = [] + + for i_pos in range(pos_cnt): + pos_xpath = wing_xpath + "/positionings/positioning[" + str(i_pos + 1) + "]" + + length = tixi.getDoubleElement(pos_xpath + "/length") + sweep_deg = tixi.getDoubleElement(pos_xpath + "/sweepAngle") + sweep = math.radians(sweep_deg) + dihedral_deg = tixi.getDoubleElement(pos_xpath + "/dihedralAngle") + dihedral = math.radians(dihedral_deg) + + # Get the corresponding translation of each positioning + pos_x_list.append(length * math.sin(sweep)) + pos_y_list.append(length * math.cos(dihedral) * math.cos(sweep)) + pos_z_list.append(length * math.sin(dihedral) * math.cos(sweep)) + + # Get which section are connected by the positioning + if tixi.checkElement(pos_xpath + "/fromSectionUID"): + from_sec = tixi.getTextElement(pos_xpath + "/fromSectionUID") + else: + from_sec = "" + from_sec_list.append(from_sec) + + if tixi.checkElement(pos_xpath + "/toSectionUID"): + to_sec = tixi.getTextElement(pos_xpath + "/toSectionUID") + else: + to_sec = "" + to_sec_list.append(to_sec) + + # Re-loop though the positioning to re-order them + for j_pos in range(pos_cnt): + if from_sec_list[j_pos] == "": + prev_pos_x = 0 + prev_pos_y = 0 + prev_pos_z = 0 + elif from_sec_list[j_pos] == to_sec_list[j_pos - 1]: + prev_pos_x = pos_x_list[j_pos - 1] + prev_pos_y = pos_y_list[j_pos - 1] + prev_pos_z = pos_z_list[j_pos - 1] + else: + index_prev = to_sec_list.index(from_sec_list[j_pos]) + prev_pos_x = pos_x_list[index_prev] + prev_pos_y = pos_y_list[index_prev] + prev_pos_z = pos_z_list[index_prev] + + pos_x_list[j_pos] += prev_pos_x + pos_y_list[j_pos] += prev_pos_y + pos_z_list[j_pos] += prev_pos_z + + else: + log.warning('No "positionings" have been found!') + pos_cnt = 0 + + # Sections + sec_cnt = tixi.getNamedChildrenCount(wing_xpath + "/sections", "section") + log.info(" -" + str(sec_cnt) + " wing sections have been found") + + if pos_cnt == 0: + pos_x_list = [0.0] * sec_cnt + pos_y_list = [0.0] * sec_cnt + pos_z_list = [0.0] * sec_cnt + + for i_sec in range(sec_cnt): + sec_xpath = wing_xpath + "/sections/section[" + str(i_sec + 1) + "]" + sec_uid = tixi.getTextAttribute(sec_xpath, "uID") + sec_transf = Transformation() + sec_transf.get_cpacs_transf(tixi, sec_xpath) + + # Elements + elem_cnt = tixi.getNamedChildrenCount(sec_xpath + "/elements", "element") + + if elem_cnt > 1: + log.warning( + f"Sections {sec_uid} contains multiple element," + " it could be an issue for the conversion to SUMO!" + ) + + for i_elem in range(elem_cnt): + elem_xpath = sec_xpath + "/elements/element[" + str(i_elem + 1) + "]" + elem_transf = Transformation() + elem_transf.get_cpacs_transf(tixi, elem_xpath) + + # Get wing profile (airfoil) + prof_uid = tixi.getTextElement(elem_xpath + "/airfoilUID") + prof_vect_x, prof_vect_y, prof_vect_z = get_profile_coord(tixi, prof_uid) + foil_dat_path = results_path + "/" + prof_uid + ".dat" + + with open(foil_dat_path, 'w') as dat_file: + dat_file.write(prof_uid + "\n") + # Limit the number of points to 100 (otherwise AVL error) + if len(prof_vect_x) < 100: + for coord_x, coord_z in zip(prof_vect_x, prof_vect_z): + dat_file.write(str(coord_x) + '\t' + str(coord_z) + "\n") + else: + step = round(len(prof_vect_x) / 100) + for coord_x, coord_z in zip(prof_vect_x[0:len(prof_vect_x):step], + prof_vect_z[0:len(prof_vect_x):step]): + dat_file.write(str(coord_x) + '\t' + str(coord_z) + "\n") + + # Apply scaling + for i, item in enumerate(prof_vect_x): + prof_vect_x[i] = ( + item * elem_transf.scaling.x * sec_transf.scaling.x * wing_transf.scaling.x + ) + for i, item in enumerate(prof_vect_y): + prof_vect_y[i] = ( + item * elem_transf.scaling.y * sec_transf.scaling.y * wing_transf.scaling.y + ) + for i, item in enumerate(prof_vect_z): + prof_vect_z[i] = ( + item * elem_transf.scaling.z * sec_transf.scaling.z * wing_transf.scaling.z + ) + + prof_size_x = max(prof_vect_x) - min(prof_vect_x) + prof_size_y = max(prof_vect_y) - min(prof_vect_y) + + if prof_size_y == 0: + prof_vect_x[:] = [x / prof_size_x for x in prof_vect_x] + prof_vect_z[:] = [z / prof_size_x for z in prof_vect_z] + # Is it correct to divide by prof_size_x ???? + + wg_sec_chord = prof_size_x + else: + log.error("An airfoil profile is not define correctly") + + # Add rotation from element and sections + # Adding the two angles: Maybe not work in every case!!! + add_rotation = SimpleNamespace() + add_rotation.x = elem_transf.rotation.x + \ + sec_transf.rotation.x + wg_sk_transf.rotation.x + add_rotation.y = elem_transf.rotation.y + \ + sec_transf.rotation.y + wg_sk_transf.rotation.y + add_rotation.z = elem_transf.rotation.z + \ + sec_transf.rotation.z + wg_sk_transf.rotation.z + + # Get Section rotation + wg_sec_rot = euler2fix(add_rotation) + wg_sec_dihed = math.radians(wg_sec_rot.x) + wg_sec_twist = math.radians(wg_sec_rot.y) + wg_sec_yaw = math.radians(wg_sec_rot.z) + + # Define the leading edge position from translations + x_LE = sec_transf.translation.x + elem_transf.translation.x + y_LE = sec_transf.translation.y + elem_transf.translation.y + z_LE = sec_transf.translation.z + elem_transf.translation.z + + if all(abs(value) < 1e-6 for value in pos_y_list): + x_LE_rot, y_LE_rot, z_LE_rot = rotate_3D_points( + x_LE, y_LE, z_LE, wg_sec_dihed, wg_sec_twist, wg_sec_yaw) + else: + x_LE_rot, y_LE_rot, z_LE_rot = rotate_3D_points( + pos_x_list[i_sec], pos_y_list[i_sec], pos_z_list[i_sec], + wg_sec_dihed, wg_sec_twist, wg_sec_yaw) + + # Compute the absolute location of the leading edge + x_LE_abs = x_LE_rot + wg_sk_transf.translation.x + y_LE_abs = y_LE_rot + wg_sk_transf.translation.y + z_LE_abs = z_LE_rot + wg_sk_transf.translation.z + + if integrate_fuselage: + # Compute the radius of the fuselage and the height difference ... + # between fuselage center and leading edge + radius_fus = fus_radius_profile(x_LE_abs + wg_sec_chord / 2) + fus_z_center = fus_z_profile(x_LE_abs + wg_sec_chord / 2) + delta_z = np.abs(fus_z_center + body_transf.translation.z - z_LE_abs) + + # If the root wing section is inside the fuselage, translate it to... + # the fuselage border + # To make sure there is no wing part inside the fuselage + if integrate_fuselage and np.sqrt((y_LE_abs)**2 + (delta_z)**2) < radius_fus and \ + wg_sec_dihed < math.pi / 2 and root_defined is False: + + y_LE_abs += np.sqrt(radius_fus**2 - delta_z**2) - y_LE_abs + y_LE_rot = y_LE_abs - wg_sk_transf.translation.y + root_defined = True + with open(avl_path, 'a') as avl_file: + avl_file.write("#---------------\n") + avl_file.write("SECTION\n") + avl_file.write("#Xle Yle Zle Chord Ainc\n") + avl_file.write(f"{x_LE_rot:.3f} {y_LE_rot:.3f} {z_LE_rot:.3f} " + f"{(wg_sec_chord):.3f} {wg_sec_rot.y}\n\n") + + avl_file.write("AFILE\n") + avl_file.write(foil_dat_path + "\n\n") + + elif integrate_fuselage is False or \ + np.sqrt((y_LE_abs)**2 + (delta_z)**2) > radius_fus \ + or wg_sec_dihed > 0.95 * math.pi / 2: + + # Write the leading edge coordinates and the airfoil file + with open(avl_path, 'a') as avl_file: + avl_file.write("#---------------\n") + avl_file.write("SECTION\n") + avl_file.write("#Xle Yle Zle Chord Ainc\n") + avl_file.write(f"{x_LE_rot:.3f} {y_LE_rot:.3f} {z_LE_rot:.3f} " + f"{(wg_sec_chord):.3f} {wg_sec_rot.y}\n\n") + avl_file.write("AFILE\n") + avl_file.write(foil_dat_path + "\n\n") + + return Path(avl_path) + + +# ================================================================================================= +# MAIN +# ================================================================================================= + +if __name__ == "__main__": + + log.info("Nothing to execute!") diff --git a/ceasiompy/PyAVL/func/rotation3D.py b/ceasiompy/PyAVL/func/rotation3D.py new file mode 100644 index 000000000..9b4c3deb0 --- /dev/null +++ b/ceasiompy/PyAVL/func/rotation3D.py @@ -0,0 +1,88 @@ +""" +CEASIOMpy: Conceptual Aircraft Design Software + +Developed by CFS ENGINEERING, 1015 Lausanne, Switzerland + +Function to apply a 3D rotation to the coordinates of a point. + +Python version: >=3.8 + +| Author: Romain Gauthier +| Creation: 2024-03-13 + +""" + + +# ============================================================================== +# IMPORTS +# ============================================================================== + +from ceasiompy.utils.ceasiomlogger import get_logger +import numpy as np +import math + +log = get_logger() + + +# ============================================================================== +# FUNCTIONS +# ============================================================================== + + +def rotate_3D_points(x, y, z, angle_x, angle_y, angle_z): + """Function to apply a 3D rotation to the coordinates of a point + + Function 'rotate_3D_points' returns the rotated points after applying + a 3D rotation matrix. + + Source: + * https://en.wikipedia.org/wiki/Rotation_matrix + + Args: + x (float): x coordinate of the initial point + y (float): y coordinate of the initial point + z (float): z coordinate of the initial point + angle_x (float): rotation angle around x-axis [rad] + angle_y (float): rotation angle around y-axis [rad] + angle_z (float): rotation angle around z-axis [rad] + + Returns: + x_rot (float): x coordinate of the rotated point + y_rot (float): y coordinate of the rotated point + z_rot (float): z coordinate of the rotated point + """ + R11 = math.cos(angle_z) * math.cos(angle_y) + R12 = math.cos(angle_z) * math.sin(angle_y) * math.sin(angle_x) - \ + math.sin(angle_z) * math.cos(angle_x) + R13 = math.cos(angle_z) * math.sin(angle_y) * math.cos(angle_x) + \ + math.sin(angle_z) * math.sin(angle_x) + R21 = math.sin(angle_z) * math.cos(angle_y) + R22 = math.sin(angle_z) * math.sin(angle_y) * math.sin(angle_x) + \ + math.cos(angle_z) * math.cos(angle_x) + R23 = math.sin(angle_z) * math.sin(angle_y) * math.cos(angle_x) - \ + math.cos(angle_z) * math.sin(angle_x) + R31 = -math.sin(angle_y) + R32 = math.cos(angle_y) * math.sin(angle_x) + R33 = math.cos(angle_y) * math.cos(angle_x) + + rotation_matrix = np.array([[R11, R12, R13], + [R21, R22, R23], + [R31, R32, R33]]) + + x_rot = x * rotation_matrix[0, 0] + y * \ + rotation_matrix[0, 1] + z * rotation_matrix[0, 2] + y_rot = x * rotation_matrix[1, 0] + y * \ + rotation_matrix[1, 1] + z * rotation_matrix[1, 2] + z_rot = x * rotation_matrix[2, 0] + y * \ + rotation_matrix[2, 1] + z * rotation_matrix[2, 2] + + return x_rot, y_rot, z_rot + + +# ============================================================================== +# MAIN +# ============================================================================== + +if __name__ == "__main__": + + print("Nothing to execute!") diff --git a/ceasiompy/PyAVL/tests/avl_command_template.txt b/ceasiompy/PyAVL/tests/avl_command_template.txt new file mode 100644 index 000000000..92a49a2d9 --- /dev/null +++ b/ceasiompy/PyAVL/tests/avl_command_template.txt @@ -0,0 +1,37 @@ +load /path/to/avl/input/file/aircraft.avl +mass /users/disk8/cfse3/Stage_Romain/CEASIOMpy/ceasiompy/PyAVL/files/template.mass +oper +g +h + +a a 5.0 +b b 0.0 +m +mn 0.3 +g 9.803565306802405 +d 1.1116596736996904 +v 100.93037463067732 + +x +t +h + +g +lo +h + +x +ft +ft.txt +fn +fn.txt +fs +fs.txt +fe +fe.txt +st +st.txt + + + +quit \ No newline at end of file diff --git a/ceasiompy/PyAVL/tests/fs_template.txt b/ceasiompy/PyAVL/tests/fs_template.txt new file mode 100644 index 000000000..25bc3c4ec --- /dev/null +++ b/ceasiompy/PyAVL/tests/fs_template.txt @@ -0,0 +1,80 @@ + --------------------------------------------------------------- + Surface and Strip Forces by surface + + Sref = 0.27000E-01 Cref = 0.70000E-01 Bref = 0.39200 + Xref = 0.19200 Yref = 0.0000 Zref = 0.0000 + + Surface # 1 Wing + # Chordwise = 5 # Spanwise = 20 First strip = 1 + Surface area Ssurf = 0.013703 Ave. chord Cave = 0.067500 + + Forces referred to Sref, Cref, Bref about Xref, Yref, Zref + Standard axis orientation, X fwd, Z down + CLsurf = 0.17532 Clsurf = -0.04113 + CYsurf = 0.00714 Cmsurf = -0.00681 + CDsurf = 0.00312 Cnsurf = -0.00444 + CDisurf = 0.00312 CDvsurf = 0.00000 + + Forces referred to Ssurf, Cave + CLsurf = 0.34545 CDsurf = 0.00614 + + Strip Forces referred to Strip Area, Chord + j Xle Yle Zle Chord Area c_cl ai cl_norm cl cd cdv cm_c/4 cm_LE C.P.x/c + 1 0.1061 0.0051 0.0000 0.0889 0.0009 0.0260 0.0168 0.4585 0.2926 0.0173 0.0000 -0.0171 -0.0701 0.308 + 2 0.1144 0.0152 0.0000 0.0866 0.0009 0.0263 0.0246 0.4763 0.3040 0.0134 0.0000 -0.0112 -0.0677 0.287 + 3 0.1226 0.0254 0.0000 0.0844 0.0009 0.0266 0.0282 0.4935 0.3150 0.0113 0.0000 -0.0074 -0.0668 0.274 + 4 0.1309 0.0355 0.0000 0.0821 0.0008 0.0267 0.0303 0.5097 0.3253 0.0098 0.0000 -0.0050 -0.0669 0.265 + 5 0.1391 0.0457 0.0000 0.0799 0.0008 0.0267 0.0315 0.5247 0.3349 0.0085 0.0000 -0.0035 -0.0676 0.260 + 6 0.1474 0.0558 0.0000 0.0776 0.0008 0.0266 0.0323 0.5386 0.3438 0.0076 0.0000 -0.0024 -0.0684 0.257 + 7 0.1556 0.0660 0.0000 0.0754 0.0008 0.0265 0.0328 0.5514 0.3520 0.0067 0.0000 -0.0017 -0.0694 0.255 + 8 0.1639 0.0761 0.0000 0.0731 0.0007 0.0262 0.0332 0.5632 0.3595 0.0060 0.0000 -0.0011 -0.0704 0.253 + 9 0.1721 0.0863 0.0000 0.0709 0.0007 0.0259 0.0336 0.5740 0.3663 0.0054 0.0000 -0.0007 -0.0714 0.252 + 10 0.1804 0.0964 0.0000 0.0686 0.0007 0.0255 0.0341 0.5836 0.3725 0.0048 0.0000 -0.0003 -0.0723 0.251 + 11 0.1886 0.1066 0.0000 0.0664 0.0007 0.0250 0.0349 0.5920 0.3778 0.0042 0.0000 0.0001 -0.0730 0.250 + 12 0.1969 0.1167 0.0000 0.0641 0.0007 0.0244 0.0359 0.5990 0.3823 0.0037 0.0000 0.0006 -0.0735 0.248 + 13 0.2051 0.1269 0.0000 0.0619 0.0006 0.0238 0.0374 0.6041 0.3856 0.0032 0.0000 0.0011 -0.0737 0.247 + 14 0.2134 0.1370 0.0000 0.0596 0.0006 0.0230 0.0395 0.6068 0.3873 0.0026 0.0000 0.0019 -0.0734 0.245 + 15 0.2216 0.1472 0.0000 0.0574 0.0006 0.0221 0.0425 0.6058 0.3866 0.0021 0.0000 0.0030 -0.0724 0.242 + 16 0.2299 0.1573 0.0000 0.0551 0.0006 0.0210 0.0465 0.5991 0.3824 0.0015 0.0000 0.0046 -0.0703 0.238 + 17 0.2381 0.1675 0.0000 0.0529 0.0005 0.0196 0.0519 0.5831 0.3721 0.0008 0.0000 0.0071 -0.0664 0.231 + 18 0.2464 0.1776 0.0000 0.0506 0.0005 0.0177 0.0586 0.5506 0.3514 -0.0001 0.0000 0.0110 -0.0594 0.219 + 19 0.2546 0.1878 0.0000 0.0484 0.0005 0.0150 0.0659 0.4877 0.3113 -0.0013 0.0000 0.0162 -0.0475 0.198 + 20 0.2629 0.1979 0.0000 0.0461 0.0005 0.0106 0.0727 0.3610 0.2304 -0.0027 0.0000 0.0203 -0.0288 0.162 + + Surface # 2 Wing (YDUP) + # Chordwise = 5 # Spanwise = 20 First strip = 21 + Surface area Ssurf = 0.013703 Ave. chord Cave = 0.067500 + + Forces referred to Sref, Cref, Bref about Xref, Yref, Zref + Standard axis orientation, X fwd, Z down + CLsurf = 0.17532 Clsurf = 0.04113 + CYsurf = -0.00714 Cmsurf = -0.00681 + CDsurf = 0.00312 Cnsurf = 0.00444 + CDisurf = 0.00312 CDvsurf = 0.00000 + + Forces referred to Ssurf, Cave + CLsurf = 0.34545 CDsurf = 0.00614 + + Strip Forces referred to Strip Area, Chord + j Xle Yle Zle Chord Area c_cl ai cl_norm cl cd cdv cm_c/4 cm_LE C.P.x/c + 21 0.1061 -0.0051 0.0000 0.0889 0.0009 0.0260 0.0168 0.4585 0.2926 0.0173 0.0000 -0.0171 0.0701 0.308 + 22 0.1144 -0.0152 0.0000 0.0866 0.0009 0.0263 0.0246 0.4763 0.3040 0.0134 0.0000 -0.0112 0.0677 0.287 + 23 0.1226 -0.0254 0.0000 0.0844 0.0009 0.0266 0.0282 0.4935 0.3150 0.0113 0.0000 -0.0074 0.0668 0.274 + 24 0.1309 -0.0355 0.0000 0.0821 0.0008 0.0267 0.0303 0.5097 0.3253 0.0098 0.0000 -0.0050 0.0669 0.265 + 25 0.1391 -0.0457 0.0000 0.0799 0.0008 0.0267 0.0315 0.5247 0.3349 0.0085 0.0000 -0.0035 0.0676 0.260 + 26 0.1474 -0.0558 0.0000 0.0776 0.0008 0.0266 0.0323 0.5386 0.3438 0.0076 0.0000 -0.0024 0.0684 0.257 + 27 0.1556 -0.0660 0.0000 0.0754 0.0008 0.0265 0.0328 0.5514 0.3520 0.0067 0.0000 -0.0017 0.0694 0.255 + 28 0.1639 -0.0761 0.0000 0.0731 0.0007 0.0262 0.0332 0.5632 0.3595 0.0060 0.0000 -0.0011 0.0704 0.253 + 29 0.1721 -0.0863 0.0000 0.0709 0.0007 0.0259 0.0336 0.5740 0.3663 0.0054 0.0000 -0.0007 0.0714 0.252 + 30 0.1804 -0.0964 0.0000 0.0686 0.0007 0.0255 0.0341 0.5836 0.3725 0.0048 0.0000 -0.0003 0.0723 0.251 + 31 0.1886 -0.1066 0.0000 0.0664 0.0007 0.0250 0.0349 0.5920 0.3778 0.0042 0.0000 0.0001 0.0730 0.250 + 32 0.1969 -0.1167 0.0000 0.0641 0.0007 0.0244 0.0359 0.5990 0.3823 0.0037 0.0000 0.0006 0.0735 0.248 + 33 0.2051 -0.1269 0.0000 0.0619 0.0006 0.0238 0.0374 0.6041 0.3856 0.0032 0.0000 0.0011 0.0737 0.247 + 34 0.2134 -0.1370 0.0000 0.0596 0.0006 0.0230 0.0395 0.6068 0.3873 0.0026 0.0000 0.0019 0.0734 0.245 + 35 0.2216 -0.1472 0.0000 0.0574 0.0006 0.0221 0.0425 0.6058 0.3866 0.0021 0.0000 0.0030 0.0724 0.242 + 36 0.2299 -0.1573 0.0000 0.0551 0.0006 0.0210 0.0465 0.5991 0.3824 0.0015 0.0000 0.0046 0.0703 0.238 + 37 0.2381 -0.1675 0.0000 0.0529 0.0005 0.0196 0.0519 0.5831 0.3721 0.0008 0.0000 0.0071 0.0664 0.231 + 38 0.2464 -0.1776 0.0000 0.0506 0.0005 0.0177 0.0586 0.5506 0.3514 -0.0001 0.0000 0.0110 0.0594 0.219 + 39 0.2546 -0.1878 0.0000 0.0484 0.0005 0.0150 0.0659 0.4877 0.3113 -0.0013 0.0000 0.0162 0.0475 0.198 + 40 0.2629 -0.1979 0.0000 0.0461 0.0005 0.0106 0.0727 0.3610 0.2304 -0.0027 0.0000 0.0203 0.0288 0.162 + --------------------------------------------------------------- \ No newline at end of file diff --git a/ceasiompy/PyAVL/tests/ft_template.txt b/ceasiompy/PyAVL/tests/ft_template.txt new file mode 100644 index 000000000..1b2939b90 --- /dev/null +++ b/ceasiompy/PyAVL/tests/ft_template.txt @@ -0,0 +1,31 @@ + --------------------------------------------------------------- + Vortex Lattice Output -- Total Forces + + Configuration: labARscaled + # Surfaces = 2 + # Strips = 40 + # Vortices = 200 + + Sref = 0.27000E-01 Cref = 0.70000E-01 Bref = 0.39200 + Xref = 0.19200 Yref = 0.0000 Zref = 0.0000 + + Standard axis orientation, X fwd, Z down + + Run case: -unnamed- + + Alpha = 5.00000 pb/2V = -0.00000 p'b/2V = -0.00000 + Beta = 0.00000 qc/2V = 0.00000 + Mach = 0.300 rb/2V = -0.00000 r'b/2V = -0.00000 + + CXtot = 0.02435 Cltot = -0.00000 Cl'tot = -0.00000 + CYtot = -0.00000 Cmtot = -0.01362 + CZtot = -0.34984 Cntot = -0.00000 Cn'tot = 0.00000 + + CLtot = 0.35063 + CDtot = 0.00624 + CDvis = 0.00000 CDind = 0.0062360 + CLff = 0.35118 CDff = 0.0064539 | Trefftz + CYff = 0.00000 e = 1.0688 | Plane + + + --------------------------------------------------------------- \ No newline at end of file diff --git a/ceasiompy/PyAVL/tests/test_avlconfig.py b/ceasiompy/PyAVL/tests/test_avlconfig.py new file mode 100644 index 000000000..acf31e749 --- /dev/null +++ b/ceasiompy/PyAVL/tests/test_avlconfig.py @@ -0,0 +1,105 @@ +""" +CEASIOMpy: Conceptual Aircraft Design Software + +Developed by CFS ENGINEERING, 1015 Lausanne, Switzerland + +Test functions of 'ceasiompy/PyAVL/func/avlconfig.py' + +Python version: >=3.8 + +| Author : Romain Gauthier +| Creation: 2024-06-06 + +""" + +# ================================================================================================= +# IMPORTS +# ================================================================================================= + +from pathlib import Path + +from ceasiompy.PyAVL.func.avlconfig import ( + get_aeromap_conditions, + get_option_settings, + write_command_file, +) +from ceasiompy.utils.commonpaths import CPACS_FILES_PATH + +CPACS_IN_PATH = Path(CPACS_FILES_PATH, "labARscaled.xml") + +MODULE_DIR = Path(__file__).parent +CASE_DIR = Path(MODULE_DIR, "AVLpytest") +COMMAND_TEM_DIR = Path(MODULE_DIR, "avl_command_template.txt") + +# ================================================================================================= +# CLASSES +# ================================================================================================= + + +# ================================================================================================= +# FUNCTIONS +# ================================================================================================= + + +def test_write_command_file(tmp_path): + test_path = Path("/path", "to", "avl", "input", "file", "aircraft.avl") + + write_command_file( + avl_path=test_path, + case_dir_path=tmp_path, + alpha=5.0, + beta=0.0, + mach_number=0.3, + ref_velocity=100.93037463067732, + ref_density=1.1116596736996904, + g_acceleration=9.803565306802405, + save_plots=True, + ) + + file_exists = Path(tmp_path, "avl_commands.txt").exists() + assert file_exists, "File 'avl_commands.txt' not found." + + if file_exists: + COMMAND_DIR = Path(tmp_path, "avl_commands.txt") + with open(COMMAND_TEM_DIR, "r") as file1, open(COMMAND_DIR, "r") as file2: + for line1, line2 in zip(file1, file2): + if "mass" not in line1: + assert line1 == line2, "File 'avl_commands.txt' not correct." + + # Check for any remaining lines in either file + assert not file1.read() or not file2.read(), "File 'avl_commands.txt' not correct." + + +def test_get_aeromap_conditions(): + alt_list, mach_list, aoa_list, aos_list = get_aeromap_conditions(CPACS_IN_PATH) + assert alt_list[0] == 1000.0, "Altitude from aeromap not correct, should be 1000.0 meters." + assert mach_list[0] == 0.3, "Mach number from aeromap not correct, should be 0.3." + assert aoa_list[0] == 5.0, "Aoa from aeromap not correct, should be 5.0 degrees." + assert aos_list[0] == 0.0, "Altitude from aeromap not correct, should be 0.0 degrees" + + +def test_get_option_settings(): + ( + save_plots, + vortex_distribution, + Nchordwise, + Nspanwise, + integrate_fuselage, + ) = get_option_settings(CPACS_IN_PATH) + + assert not save_plots, "Option 'save_plots' should be 'False'." + assert vortex_distribution == 3.0, "Option 'vortex_distribution' should be '3.0'." + assert Nchordwise == 5, "Option 'Nchordwise' should be '5'." + assert Nspanwise == 20, "Option 'Nspanwise' should be '20'." + assert not integrate_fuselage, "Option 'integrate_fuselage' should be 'False'." + + +# ================================================================================================= +# MAIN +# ================================================================================================= + + +if __name__ == "__main__": + print("Test avlconfig.py") + print("To run test use the following command:") + print(">> pytest -v") diff --git a/ceasiompy/PyAVL/tests/test_avlresults.py b/ceasiompy/PyAVL/tests/test_avlresults.py new file mode 100644 index 000000000..4b1909b80 --- /dev/null +++ b/ceasiompy/PyAVL/tests/test_avlresults.py @@ -0,0 +1,69 @@ +""" +CEASIOMpy: Conceptual Aircraft Design Software + +Developed by CFS ENGINEERING, 1015 Lausanne, Switzerland + +Test functions of 'ceasiompy/PyAVL/func/avlresults.py' + +Python version: >=3.8 + +| Author : Romain Gauthier +| Creation: 2024-06-07 + +""" + +# ================================================================================================= +# IMPORTS +# ================================================================================================= +from pathlib import Path +import pytest +from ceasiompy.PyAVL.func.avlresults import get_avl_aerocoefs, plot_lift_distribution + +from ceasiompy.utils.commonpaths import CPACS_FILES_PATH + +MODULE_DIR = Path(__file__).parent + +CPACS_IN_PATH = Path(CPACS_FILES_PATH, "labARscaled.xml") +FT_TEMPLATE = Path(MODULE_DIR, "ft_template.txt") + +# ================================================================================================= +# CLASSES +# ================================================================================================= + + +# ================================================================================================= +# FUNCTIONS +# ================================================================================================= + + +def test_plot_lift_distribution(tmp_path): + plot_lift_distribution( + force_file_fs=Path(MODULE_DIR, "fs_template.txt"), + aoa=5, + aos=0, + mach=0.3, + alt=1000, + wkdir=tmp_path, + ) + + assert Path( + tmp_path, "lift_distribution.png" + ).exists(), "Plot 'lift_distribution.png' does not exist." + + +def test_get_avl_aerocoefs(): + assert FT_TEMPLATE.exists(), "Result file 'ft.txt' not found!" + cl, cd, cm = get_avl_aerocoefs(FT_TEMPLATE) + assert cl == pytest.approx(0.35063, rel=1e-4), "CLtot is not correct!" + assert cd == pytest.approx(0.00624, rel=1e-4), "CDtot is not correct!" + assert cm == pytest.approx(-0.01362, rel=1e-4), "Cmtot is not correct!" + + +# ================================================================================================= +# MAIN +# ================================================================================================= + +if __name__ == "__main__": + print("Test avlconfig.py") + print("To run test use the following command:") + print(">> pytest -v") diff --git a/ceasiompy/SU2Run/__specs__.py b/ceasiompy/SU2Run/__specs__.py index 243ad926b..8a009fae7 100644 --- a/ceasiompy/SU2Run/__specs__.py +++ b/ceasiompy/SU2Run/__specs__.py @@ -327,7 +327,7 @@ cpacs_inout.add_input( var_name="update_wetted_area", var_type=bool, - default_value=False, + default_value=True, unit="1", descr="Option to update the wetted area from the latest SU2 result.", xpath=SU2_UPDATE_WETTED_AREA_XPATH, diff --git a/ceasiompy/SU2Run/files/config_template_euler.cfg b/ceasiompy/SU2Run/files/config_template_euler.cfg new file mode 100644 index 000000000..d4b35df00 --- /dev/null +++ b/ceasiompy/SU2Run/files/config_template_euler.cfg @@ -0,0 +1,411 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% SU2 configuration file % +% Case description: Template for euler simulations based on ONERA M6 case % +% Author: G.Benedetti % +% Institution: CFS Engineering % +% Date: 2024.06.03 % +% File Version 7.3.0 "Blackbird" % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +% ------------- DIRECT, ADJOINT, AND LINEARIZED PROBLEM DEFINITION ------------% +% +% Physical governing equations (EULER, NAVIER_STOKES) +SOLVER= EULER +% +% Mathematical problem (DIRECT, CONTINUOUS_ADJOINT) +MATH_PROBLEM= DIRECT +% +% Restart solution (NO, YES) +RESTART_SOL= YES +% +% Read binary restart files (YES, NO) +READ_BINARY_RESTART= NO +% + +% -------------------- COMPRESSIBLE FREE-STREAM DEFINITION --------------------% +% +% Mach number (non-dimensional, based on the free-stream values) +MACH_NUMBER= 0.8395 +% +% Angle of attack (degrees) +AOA= 3.06 +% +% Side-slip angle (degrees) +SIDESLIP_ANGLE= 0.0 +% +% Free-stream pressure (101325.0 N/m^2 by default, only for Euler equations) +FREESTREAM_PRESSURE= 101325.0 +% +% Free-stream temperature (288.15 K by default) +FREESTREAM_TEMPERATURE= 288.15 + +% ---------------------- REFERENCE VALUE DEFINITION ---------------------------% +% +% Reference origin for moment computation +REF_ORIGIN_MOMENT_X = 0.25 +REF_ORIGIN_MOMENT_Y = 0.00 +REF_ORIGIN_MOMENT_Z = 0.00 +% +% Reference length for pitching, rolling, and yaMAIN_BOX non-dimensional moment +REF_LENGTH= 1.0 +% +% Reference area for force coefficients (0 implies automatic calculation) +REF_AREA= 0 +% +% Flow non-dimensionalization (DIMENSIONAL, FREESTREAM_PRESS_EQ_ONE, +% FREESTREAM_VEL_EQ_MACH, FREESTREAM_VEL_EQ_ONE) +REF_DIMENSIONALIZATION= FREESTREAM_VEL_EQ_ONE + +% ----------------------- BOUNDARY CONDITION DEFINITION -----------------------% +% +% Marker of the Euler boundary (0 implies no marker) +MARKER_EULER= ( WING ) +% +% Marker of the far field (0 implies no marker) +MARKER_FAR= ( FARFIELD ) +% +% Marker of symmetry boundary (0 implies no marker) +MARKER_SYM= ( SYMMETRY ) + +% ------------------------ SURFACES IDENTIFICATION ----------------------------% +% +% Marker(s) of the surface in the surface flow solution file +MARKER_PLOTTING = ( WING ) +% +% Marker(s) of the surface where the non-dimensional coefficients are evaluated. +MARKER_MONITORING = ( WING ) +% +% Marker(s) of the surface where obj. func. (design problem) will be evaluated +MARKER_DESIGNING = ( WING ) + +% ------------- COMMON PARAMETERS TO DEFINE THE NUMERICAL METHOD --------------% +% +% Numerical method for spatial gradients (GREEN_GAUSS, WEIGHTED_LEAST_SQUARES) +NUM_METHOD_GRAD= WEIGHTED_LEAST_SQUARES +% +% Objective function in gradient evaluation (DRAG, LIFT, SIDEFORCE, MOMENT_X, +% MOMENT_Y, MOMENT_Z, EFFICIENCY, +% EQUIVALENT_AREA, NEARFIELD_PRESSURE, +% FORCE_X, FORCE_Y, FORCE_Z, THRUST, +% TORQUE, FREE_SURFACE, TOTAL_HEATFLUX, +% MAXIMUM_HEATFLUX, INVERSE_DESIGN_PRESSURE, +% INVERSE_DESIGN_HEATFLUX) +OBJECTIVE_FUNCTION= DRAG +% +% Courant-Friedrichs-Lewy condition of the finest grid +CFL_NUMBER= 5.0 +% +% Adaptive CFL number (NO, YES) +CFL_ADAPT= NO +% +% Parameters of the adaptive CFL number (factor down, factor up, CFL min value, +% CFL max value ) +CFL_ADAPT_PARAM= ( 1.5, 0.5, 1.0, 100.0 ) +% +% Runge-Kutta alpha coefficients +RK_ALPHA_COEFF= ( 0.66667, 0.66667, 1.000000 ) +% +% Number of total iterations +ITER= 99999 +% +% Linear solver for the implicit formulation (BCGSTAB, FGMRES) +LINEAR_SOLVER= FGMRES +% +% Preconditioner of the Krylov linear solver (ILU, LU_SGS, LINELET, JACOBI) +LINEAR_SOLVER_PREC= LU_SGS +% +% Min error of the linear solver for the implicit formulation +LINEAR_SOLVER_ERROR= 1E-6 +% +% Max number of iterations of the linear solver for the implicit formulation +LINEAR_SOLVER_ITER= 2 + +% ----------------------- SLOPE LIMITER DEFINITION ----------------------------% +% +% Coefficient for the limiter +VENKAT_LIMITER_COEFF= 0.03 +% +% Coefficient for the sharp edges limiter +ADJ_SHARP_LIMITER_COEFF= 3.0 +% +% Reference coefficient (sensitivity) for detecting sharp edges. +REF_SHARP_EDGES= 3.0 +% +% Remove sharp edges from the sensitivity evaluation (NO, YES) +SENS_REMOVE_SHARP= YES + +% -------------------------- MULTIGRID PARAMETERS -----------------------------% +% +% Multi-Grid Levels (0 = no multi-grid) +MGLEVEL= 3 +% +% Multi-grid cycle (V_CYCLE, W_CYCLE, FULLMG_CYCLE) +MGCYCLE= W_CYCLE +% +% Multi-Grid PreSmoothing Level +MG_PRE_SMOOTH= ( 1, 2, 3, 3 ) +% +% Multi-Grid PostSmoothing Level +MG_POST_SMOOTH= ( 0, 0, 0, 0 ) +% +% Jacobi implicit smoothing of the correction +MG_CORRECTION_SMOOTH= ( 0, 0, 0, 0 ) +% +% Damping factor for the residual restriction +MG_DAMP_RESTRICTION= 0.9 +% +% Damping factor for the correction prolongation +MG_DAMP_PROLONGATION= 0.9 + +% -------------------- FLOW NUMERICAL METHOD DEFINITION -----------------------% +% +% Convective numerical method (JST, LAX-FRIEDRICH, CUSP, ROE, AUSM, HLLC, +% TURKEL_PREC, MSW) +CONV_NUM_METHOD_FLOW= JST +% +% Monotonic Upwind Scheme for Conservation Laws (TVD) in the flow equations. +% Required for 2nd order upwind schemes (NO, YES) +MUSCL_FLOW= YES +% +% Slope limiter (NONE, VENKATAKRISHNAN, VENKATAKRISHNAN_WANG, +% BARTH_JESPERSEN, VAN_ALBADA_EDGE) +SLOPE_LIMITER_FLOW= NONE +% +% 2nd and 4th order artificial dissipation coefficients +JST_SENSOR_COEFF= ( 0.5, 0.02 ) +% +% Time discretization (RUNGE-KUTTA_EXPLICIT, EULER_IMPLICIT, EULER_EXPLICIT) +TIME_DISCRE_FLOW= EULER_IMPLICIT + +% ---------------- ADJOINT-FLOW NUMERICAL METHOD DEFINITION -------------------% +% +% Convective numerical method (JST, LAX-FRIEDRICH, ROE) +CONV_NUM_METHOD_ADJFLOW= JST +% +% Monotonic Upwind Scheme for Conservation Laws (TVD) in the adjoint flow equations. +% Required for 2nd order upwind schemes (NO, YES) +MUSCL_ADJFLOW= YES +% +% Slope limiter (NONE, VENKATAKRISHNAN, BARTH_JESPERSEN, VAN_ALBADA_EDGE, +% SHARP_EDGES, WALL_DISTANCE) +SLOPE_LIMITER_ADJFLOW= NONE +% +% 2nd, and 4th order artificial dissipation coefficients +ADJ_JST_SENSOR_COEFF= ( 0.0, 0.02 ) +% +% Reduction factor of the CFL coefficient in the adjoint problem +CFL_REDUCTION_ADJFLOW= 0.5 +% +% Time discretization (RUNGE-KUTTA_EXPLICIT, EULER_IMPLICIT) +TIME_DISCRE_ADJFLOW= EULER_IMPLICIT + +% --------------------------- CONVERGENCE PARAMETERS --------------------------& +% +% Min value of the residual (log10 of the residual) +CONV_RESIDUAL_MINVAL= -12 +% +% Start convergence criteria at iteration number +CONV_STARTITER= 25 +% +% Number of elements to apply the criteria +CONV_CAUCHY_ELEMS= 100 +% +% Epsilon to control the series convergence +CONV_CAUCHY_EPS= 1E-10 +% + +% ------------------------- INPUT/OUTPUT INFORMATION --------------------------% +% +% Mesh input file +MESH_FILENAME= mesh_ONERAM6_inv_ffd.su2 +% +% Mesh output file +MESH_OUT_FILENAME= mesh_out.su2 +% +% Restart flow input file +SOLUTION_FILENAME= solution_flow.dat +% +% Restart adjoint input file +SOLUTION_ADJ_FILENAME= solution_adj.dat +% +% Mesh input file format (SU2) +MESH_FORMAT= SU2 +% +TABULAR_FORMAT= CSV +% +% Output file convergence history +CONV_FILENAME= history +% +% Output file restart flow +RESTART_FILENAME= restart_flow.dat +% +% Output file restart adjoint +RESTART_ADJ_FILENAME= restart_adj.dat +% +% Output file flow (w/o extension) variables +VOLUME_FILENAME= flow +% +% Output file adjoint (w/o extension) variables +VOLUME_ADJ_FILENAME= adjoint +% +% Output Objective function gradient (using continuous adjoint) +GRAD_OBJFUNC_FILENAME= of_grad.dat +% +% Output file surface flow coefficient (w/o extension) +SURFACE_FILENAME= surface_flow +% +% Output file surface adjoint coefficient (w/o extension) +SURFACE_ADJ_FILENAME= surface_adjoint +% +% Writing solution frequency +OUTPUT_WRT_FREQ= 100 +% +% +% Screen output fields +SCREEN_OUTPUT = (INNER_ITER, RMS_DENSITY, RMS_ENERGY, LIFT, DRAG) +% +OUTPUT_FILES= (RESTART_ASCII, CGNS, SURFACE_CGNS) +% ----------------------- DESIGN VARIABLE PARAMETERS --------------------------% +% +% Kind of deformation (TRANSLATION, ROTATION, SCALE, +% FFD_SETTING, +% FFD_CONTROL_POINT, FFD_CAMBER, FFD_THICKNESS +% FFD_NACELLE, FFD_TWIST, FFD_ROTATION, +% FFD_CONTROL_POINT_2D, FFD_CAMBER_2D, FFD_THICKNESS_2D, +% HICKS_HENNE, PARABOLIC, NACA_4DIGITS, AIRFOIL) +DV_KIND= FFD_CONTROL_POINT +% +% Marker of the surface in which we are going apply the shape deformation +DV_MARKER= ( WING ) +% +% Parameters of the shape deformation +% - TRANSLATION ( x_Disp, y_Disp, z_Disp ), as a unit vector +% - ROTATION ( x_Orig, y_Orig, z_Orig, x_End, y_End, z_End ) +% - SCALE ( 1.0 ) +% - FFD_SETTING ( 1.0 ) +% - FFD_CONTROL_POINT ( FFD_BoxTag, i_Ind, j_Ind, k_Ind, x_Disp, y_Disp, z_Disp ) +% - FFD_CAMBER ( FFD_BoxTag, i_Ind, j_Ind ) +% - FFD_THICKNESS ( FFD_BoxTag, i_Ind, j_Ind ) +% - FFD_TWIST_ANGLE ( FFD_BoxTag, x_Orig, y_Orig, z_Orig, x_End, y_End, z_End ) +% - FFD_ROTATION ( FFD_BoxTag, x_Orig, y_Orig, z_Orig, x_End, y_End, z_End ) +% - FFD_CONTROL_POINT_2D ( FFD_BoxTag, i_Ind, j_Ind, x_Disp, y_Disp ) +% - FFD_CAMBER_2D ( FFD_BoxTag, i_Ind ) +% - FFD_THICKNESS_2D ( FFD_BoxTag, i_Ind ) +% - HICKS_HENNE ( Lower Surface (0)/Upper Surface (1)/Only one Surface (2), x_Loc ) +% - PARABOLIC ( Center, Thickness ) +% - NACA_4DIGITS ( 1st digit, 2nd digit, 3rd and 4th digit ) +% - AIRFOIL ( 1.0 ) +DV_PARAM= ( MAIN_BOX, 2, 3, 1, 0.0, 0.0, 1.0 ) +% +% Value of the shape deformation +DV_VALUE= 0.05 + +% ------------------------ GRID DEFORMATION PARAMETERS ------------------------% +% +% Linear solver or smoother for implicit formulations (FGMRES, RESTARTED_FGMRES, +% BCGSTAB) +DEFORM_LINEAR_SOLVER= FGMRES +% +% Number of smoothing iterations for mesh deformation +DEFORM_LINEAR_SOLVER_ITER= 500 +% +% Number of nonlinear deformation iterations (surface deformation increments) +DEFORM_NONLINEAR_ITER= 2 +% +% Print the residuals during mesh deformation to the console (YES, NO) +DEFORM_CONSOLE_OUTPUT= NO +% +% Minimum residual criteria for the linear solver convergence of grid deformation +DEFORM_LINEAR_SOLVER_ERROR= 1E-14 +% +% Type of element stiffness imposed for FEA mesh deformation (INVERSE_VOLUME, +% WALL_DISTANCE, CONSTANT_STIFFNESS) +DEFORM_STIFFNESS_TYPE= INVERSE_VOLUME + +% -------------------- FREE-FORM DEFORMATION PARAMETERS -----------------------% +% +% Tolerance of the Free-Form Deformation point inversion +FFD_TOLERANCE= 1E-10 +% +% Maximum number of iterations in the Free-Form Deformation point inversion +FFD_ITERATIONS= 500 +% +% FFD box definition: 3D case (FFD_BoxTag, X1, Y1, Z1, X2, Y2, Z2, X3, Y3, Z3, X4, Y4, Z4, +% X5, Y5, Z5, X6, Y6, Z6, X7, Y7, Z7, X8, Y8, Z8) +% 2D case (FFD_BoxTag, X1, Y1, 0.0, X2, Y2, 0.0, X3, Y3, 0.0, X4, Y4, 0.0, +% 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0) +FFD_DEFINITION= (MAIN_BOX, -0.0403, 0.0, -0.04836, 0.8463, 0.0, -0.04836, 1.209, 1.2896, -0.04836, 0.6851, 1.2896, -0.04836, -0.0403, 0.0, 0.04836, 0.8463, 0.0, 0.04836, 1.209, 1.2896, 0.04836, 0.6851, 1.2896, 0.04836) +% +% FFD box degree: 3D case (x_degree, y_degree, z_degree) +% 2D case (x_degree, y_degree, 0) +FFD_DEGREE= (10, 8, 1) +% +% Surface continuity at the intersection with the FFD (1ST_DERIVATIVE, 2ND_DERIVATIVE) +FFD_CONTINUITY= 2ND_DERIVATIVE + +% --------------------- OPTIMAL SHAPE DESIGN DEFINITION -----------------------% +% +% Available flow based objective functions or constraint functions +% DRAG, LIFT, SIDEFORCE, EFFICIENCY, BUFFET, +% FORCE_X, FORCE_Y, FORCE_Z, +% MOMENT_X, MOMENT_Y, MOMENT_Z, +% THRUST, TORQUE, FIGURE_OF_MERIT, +% EQUIVALENT_AREA, NEARFIELD_PRESSURE, +% TOTAL_HEATFLUX, MAXIMUM_HEATFLUX, +% INVERSE_DESIGN_PRESSURE, INVERSE_DESIGN_HEATFLUX, +% SURFACE_TOTAL_PRESSURE, SURFACE_MASSFLOW +% SURFACE_STATIC_PRESSURE, SURFACE_MACH +% +% Available geometrical based objective functions or constraint functions +% AIRFOIL_AREA, AIRFOIL_THICKNESS, AIRFOIL_CHORD, AIRFOIL_TOC, AIRFOIL_AOA, +% WING_VOLUME, WING_MIN_THICKNESS, WING_MAX_THICKNESS, WING_MAX_CHORD, WING_MIN_TOC, WING_MAX_TWIST, WING_MAX_CURVATURE, WING_MAX_DIHEDRAL +% STATION#_WIDTH, STATION#_AREA, STATION#_THICKNESS, STATION#_CHORD, STATION#_TOC, +% STATION#_TWIST (where # is the index of the station defined in GEO_LOCATION_STATIONS) +% +% Available design variables +% 2D Design variables +% FFD_CONTROL_POINT_2D ( 19, Scale | Mark. List | FFD_BoxTag, i_Ind, j_Ind, x_Mov, y_Mov ) +% FFD_CAMBER_2D ( 20, Scale | Mark. List | FFD_BoxTag, i_Ind ) +% FFD_THICKNESS_2D ( 21, Scale | Mark. List | FFD_BoxTag, i_Ind ) +% FFD_TWIST_2D ( 22, Scale | Mark. List | FFD_BoxTag, x_Orig, y_Orig ) +% HICKS_HENNE ( 30, Scale | Mark. List | Lower(0)/Upper(1) side, x_Loc ) +% ANGLE_OF_ATTACK ( 101, Scale | Mark. List | 1.0 ) +% +% 3D Design variables +% FFD_CONTROL_POINT ( 11, Scale | Mark. List | FFD_BoxTag, i_Ind, j_Ind, k_Ind, x_Mov, y_Mov, z_Mov ) +% FFD_NACELLE ( 12, Scale | Mark. List | FFD_BoxTag, rho_Ind, theta_Ind, phi_Ind, rho_Mov, phi_Mov ) +% FFD_GULL ( 13, Scale | Mark. List | FFD_BoxTag, j_Ind ) +% FFD_CAMBER ( 14, Scale | Mark. List | FFD_BoxTag, i_Ind, j_Ind ) +% FFD_TWIST ( 15, Scale | Mark. List | FFD_BoxTag, j_Ind, x_Orig, y_Orig, z_Orig, x_End, y_End, z_End ) +% FFD_THICKNESS ( 16, Scale | Mark. List | FFD_BoxTag, i_Ind, j_Ind ) +% FFD_ROTATION ( 18, Scale | Mark. List | FFD_BoxTag, x_Axis, y_Axis, z_Axis, x_Turn, y_Turn, z_Turn ) +% FFD_ANGLE_OF_ATTACK ( 24, Scale | Mark. List | FFD_BoxTag, 1.0 ) +% +% Global design variables +% TRANSLATION ( 1, Scale | Mark. List | x_Disp, y_Disp, z_Disp ) +% ROTATION ( 2, Scale | Mark. List | x_Axis, y_Axis, z_Axis, x_Turn, y_Turn, z_Turn ) +% +% Optimization objective function with scaling factor +% ex= Objective * Scale +OPT_OBJECTIVE= DRAG * 1.0 +% +% Optimization constraint functions with scaling factors, separated by semicolons +% ex= (Objective = Value ) * Scale, use '>','<','=' +OPT_CONSTRAINT= ( LIFT > 0.282557 ) * 1.0 +% +% Maximum number of iterations +OPT_ITERATIONS= 100 +% +% Requested accuracy +OPT_ACCURACY= 1E-6 +% +% Upper bound for each design variable +OPT_BOUND_UPPER= 0.1 +% +% Lower bound for each design variable +OPT_BOUND_LOWER= -0.1 +% +% Optimization design variables, separated by semicolons +DEFINITION_DV= ( 11, 1.0 | WING | MAIN_BOX, 0, 3, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 1, 3, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 2, 3, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 3, 3, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 4, 3, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 5, 3, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 6, 3, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 7, 3, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 8, 3, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 9, 3, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 10, 3, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 0, 4, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 1, 4, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 2, 4, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 3, 4, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 4, 4, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 5, 4, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 6, 4, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 7, 4, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 8, 4, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 9, 4, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 10, 4, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 0, 5, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 1, 5, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 2, 5, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 3, 5, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 4, 5, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 5, 5, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 6, 5, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 7, 5, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 8, 5, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 9, 5, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 10, 5, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 0, 6, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 1, 6, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 2, 6, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 3, 6, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 4, 6, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 5, 6, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 6, 6, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 7, 6, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 8, 6, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 9, 6, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 10, 6, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 0, 7, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 1, 7, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 2, 7, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 3, 7, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 4, 7, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 5, 7, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 6, 7, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 7, 7, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 8, 7, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 9, 7, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 10, 7, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 0, 8, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 1, 8, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 2, 8, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 3, 8, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 4, 8, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 5, 8, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 6, 8, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 7, 8, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 8, 8, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 9, 8, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 10, 8, 0, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 0, 3, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 1, 3, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 2, 3, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 3, 3, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 4, 3, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 5, 3, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 6, 3, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 7, 3, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 8, 3, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 9, 3, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 10, 3, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 0, 4, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 1, 4, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 2, 4, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 3, 4, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 4, 4, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 5, 4, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 6, 4, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 7, 4, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 8, 4, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 9, 4, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 10, 4, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 0, 5, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 1, 5, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 2, 5, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 3, 5, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 4, 5, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 5, 5, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 6, 5, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 7, 5, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 8, 5, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 9, 5, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 10, 5, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 0, 6, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 1, 6, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 2, 6, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 3, 6, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 4, 6, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 5, 6, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 6, 6, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 7, 6, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 8, 6, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 9, 6, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 10, 6, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 0, 7, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 1, 7, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 2, 7, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 3, 7, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 4, 7, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 5, 7, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 6, 7, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 7, 7, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 8, 7, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 9, 7, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 10, 7, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 0, 8, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 1, 8, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 2, 8, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 3, 8, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 4, 8, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 5, 8, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 6, 8, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 7, 8, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 8, 8, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 9, 8, 1, 0.0, 0.0, 1.0 ); ( 11, 1.0 | WING | MAIN_BOX, 10, 8, 1, 0.0, 0.0, 1.0 ) diff --git a/ceasiompy/SU2Run/func/su2utils.py b/ceasiompy/SU2Run/func/su2utils.py index 24db788bf..b815cb012 100644 --- a/ceasiompy/SU2Run/func/su2utils.py +++ b/ceasiompy/SU2Run/func/su2utils.py @@ -79,7 +79,6 @@ def get_mesh_markers(su2_mesh_path): lines = f.readlines() for line in lines: - if "MARKER_TAG" not in line: continue @@ -129,7 +128,6 @@ def get_su2_version(): with open(su2py_path, "r") as f: for line in f.readlines(): - if "version" not in line: continue @@ -141,37 +139,38 @@ def get_su2_version(): def get_su2_config_template(): """Return path of the SU2 config template corresponding to the SU2 version.""" - su2_version = get_su2_version() + # su2_version = get_su2_version() su2_dir = get_module_path("SU2Run") - su2_config_template_path = Path(su2_dir, "files", f"config_template_v{su2_version}.cfg") + su2_config_template_path_euler = Path(su2_dir, "files", "config_template_euler.cfg") - if not su2_config_template_path.exists(): + # su2_config_template_path = Path(su2_dir, "files", f"config_template_v{su2_version}.cfg") - # Use the Euler Onera M6 config as template - url = ( - f"https://raw.githubusercontent.com/su2code/SU2/v{su2_version}" - "/TestCases/euler/oneram6/inv_ONERAM6.cfg" - ) - r = requests.get(url) + # if not su2_config_template_path.exists(): - if r.status_code == 404: - raise FileNotFoundError( - f"The SU2 config template for SU2 version {su2_version} does not exist." - ) + # # Use the Euler Onera M6 config as template + # url = ( + # f"https://raw.githubusercontent.com/su2code/SU2/v{su2_version}" + # "/TestCases/euler/oneram6/inv_ONERAM6.cfg" + # ) + # r = requests.get(url) - if not r.status_code == 200: - raise ConnectionError( - f"Cannot download the template file for SU2 version {su2_version} at {url}" - ) + # if r.status_code == 404: + # raise FileNotFoundError( + # f"The SU2 config template for SU2 version {su2_version} does not exist." + # ) - with open(su2_config_template_path, "wb") as f: - f.write(r.content) + # if not r.status_code == 200: + # raise ConnectionError( + # f"Cannot download the template file for SU2 version {su2_version} at {url}" + # ) - return su2_config_template_path + # with open(su2_config_template_path, "wb") as f: + # f.write(r.content) + return su2_config_template_path_euler -def get_su2_config_template_rans(): +def get_su2_config_template_rans(): su2_dir = get_module_path("SU2Run") su2_config_template_path_rans = Path(su2_dir, "files", "config_template_rans.cfg") @@ -296,5 +295,4 @@ def get_wetted_area(su2_logfile): # ================================================================================================= if __name__ == "__main__": - print("Nothing to execute!") diff --git a/ceasiompy/SU2Run/tests/tests_su2utils/test_su2utils.py b/ceasiompy/SU2Run/tests/tests_su2utils/test_su2utils.py index f41a80a95..648fe8eac 100644 --- a/ceasiompy/SU2Run/tests/tests_su2utils/test_su2utils.py +++ b/ceasiompy/SU2Run/tests/tests_su2utils/test_su2utils.py @@ -125,20 +125,16 @@ def test_get_su2_config_template(): su2_dir = get_module_path("SU2Run") # Test with an old version of the config template - su2_version = "3.0.0" - config_template_path = Path(su2_dir, "files", f"config_template_v{su2_version}.cfg") + config_template_path = Path(su2_dir, "files", "config_template_euler.cfg") # Remove the config template file if it exists (from a previous test) if config_template_path.exists(): - config_template_path.unlink() - - with patch("ceasiompy.SU2Run.func.su2utils.get_su2_version", return_value=su2_version): assert get_su2_config_template() == config_template_path - # Test with an inexistent config template version - with patch("ceasiompy.SU2Run.func.su2utils.get_su2_version", return_value="9.9.99"): - with pytest.raises(FileNotFoundError): - assert get_su2_config_template() == config_template_path + # # Test with an inexistent config template version + # with patch("ceasiompy.SU2Run.func.su2utils.get_su2_version", return_value="9.9.99"): + # with pytest.raises(FileNotFoundError): + # assert get_su2_config_template() == config_template_path def test_get_su2_aerocoefs(): diff --git a/ceasiompy/utils/commonxpath.py b/ceasiompy/utils/commonxpath.py index 82e0f8393..ca30c6492 100644 --- a/ceasiompy/utils/commonxpath.py +++ b/ceasiompy/utils/commonxpath.py @@ -209,3 +209,10 @@ # PYCYCLE ENGINE_TYPE_XPATH = CEASIOMPY_XPATH + "/ThermoData" ENGINE_BC = CEASIOMPY_XPATH + "/BC" + +# AVL +AVL_XPATH = CEASIOMPY_XPATH + "/aerodynamics/avl" +AVL_AEROMAP_UID_XPATH = AVL_XPATH + "/aeroMapUID" +AVL_PLOT_XPATH = AVL_XPATH + "/SavePlots" +AVL_FUSELAGE_XPATH = AVL_XPATH + "/IntegrateFuselage" +AVL_VORTEX_DISTR_XPATH = AVL_XPATH + "/VortexDistribution" diff --git a/environment.yml b/environment.yml index d798c246f..29ffcb143 100644 --- a/environment.yml +++ b/environment.yml @@ -37,14 +37,16 @@ dependencies: - vtk=9.0.1 - pip: + - altair == 4.0.0 - ambiance==1.3.0 - black==22.3 - cpacspy==0.1.8 - cython==0.29.30 - gmsh==4.10.3 - markdownpy==0.1.4 + - om-pycycle - pytest==7.2.0 - smt==1.2.0 - streamlit==1.14.0 - streamlit-autorefresh - - om-pycycle + diff --git a/installation/CentOS/install_pyavl.sh b/installation/CentOS/install_pyavl.sh new file mode 100755 index 000000000..346618421 --- /dev/null +++ b/installation/CentOS/install_pyavl.sh @@ -0,0 +1,30 @@ +#!/bin/bash + +# Script to install avl on CentOS + +current_dir="$(pwd)" + +if [ $# -gt 0 ]; then + install_dir="$1/INSTALLDIR" +else + install_dir="$(pwd)/../../INSTALLDIR" +fi + +echo "Creating install directory..." +mkdir -p "$install_dir" +cd "$install_dir" + +echo "Downloading AVL..." +wget -q https://web.mit.edu/drela/Public/web/avl/avl3.40_execs/LINUX64/avl \ +|| { echo "Error: Failed to download AVL." >&2; exit 1; } + + +chmod +x avl || { echo "Error: Failed to set execute permission on AVL binary." >&2; exit 1; } + +sudo dnf install -y ghostscript + +echo "export PATH=\"\$PATH:$install_dir\"" >> ~/.bashrc + +cd "$current_dir" + +echo "AVL installed successfully in $install_dir and added to PATH." diff --git a/installation/CentOS/install_sumo.sh b/installation/CentOS/install_sumo.sh old mode 100644 new mode 100755 diff --git a/installation/INSTALLATION.md b/installation/INSTALLATION.md index 096a1dd3e..2552e9084 100644 --- a/installation/INSTALLATION.md +++ b/installation/INSTALLATION.md @@ -38,6 +38,7 @@ cd CEASIOMpy/installation/Ubuntu ./install_miniconda.sh source ~/.bashrc ./install_ceasiompy.sh +./install_pyavl.sh ./install_pytornado.sh ./install_sumo.sh ./install_su2.sh @@ -54,6 +55,7 @@ cd CEASIOMpy/installation/CentOS ./install_miniconda.sh source ~/.bashrc ./install_ceasiompy.sh +./install_pyavl.sh ./install_pytornado.sh ./install_sumo.sh ./install_su2.sh @@ -67,6 +69,7 @@ When it is done, you can test the installation, by opening a new terminal and tr conda activate ceasiompy python -c "import ceasiompy" cpacscreator # A "CPACSCreator" window will open, you can close it. +avl # The avl interface should appear in the terminal pytornado # You should see the help of PyTornado in the terminal. sumo # A "SUMO" window will open, you can close it. SU2_CFD # You should see something like "Error in "void CConfig::SetConfig_Parsing(char*)" in the terminal @@ -95,6 +98,7 @@ You can try to install it manually, the basic steps are the following: - Run the command `pip install -e .` - Install [PyTornado](https://github.com/airinnova/pytornado) - Install [SUMO](https://www.larosterna.com/products/open-source) +- Install [AVL](https://web.mit.edu/drela/Public/web/avl) - Install [SU2](https://su2code.github.io/download.html) - Install [Paraview](https://www.paraview.org/download/) @@ -111,6 +115,7 @@ You can install it manually, the basic steps are the following: - Run the command `pip install -e .` - Install [PyTornado](https://github.com/airinnova/pytornado) - Install [SUMO](https://www.larosterna.com/products/open-source) +- Install [AVL](https://web.mit.edu/drela/Public/web/avl) - Install [SU2](https://su2code.github.io/download.html) - Install [Paraview](https://www.paraview.org/download/) diff --git a/installation/Ubuntu/install_pyavl.sh b/installation/Ubuntu/install_pyavl.sh new file mode 100755 index 000000000..d86eb066a --- /dev/null +++ b/installation/Ubuntu/install_pyavl.sh @@ -0,0 +1,32 @@ +#!/bin/bash + +# Script to install avl on Ubuntu 20.04 and Mint 20.3 + +current_dir="$(pwd)" + +if [ $# -gt 0 ]; then + install_dir="$1/INSTALLDIR" +else + install_dir="$(pwd)/../../INSTALLDIR" +fi + +echo "Creating install directory..." +mkdir -p "$install_dir" +cd "$install_dir" + +echo "Downloading AVL..." +wget -q https://web.mit.edu/drela/Public/web/avl/avl3.40_execs/LINUX64/avl \ +|| { echo "Error: Failed to download AVL." >&2; exit 1; } + + +chmod +x avl || { echo "Error: Failed to set execute permission on AVL binary." >&2; exit 1; } + +echo "export PATH=\"\$PATH:$install_dir\"" >> ~/.bashrc + +sudo apt-get install -y ghostscript + +ps2pdf + +cd "$current_dir" + +echo "AVL installed successfully in $install_dir and added to PATH." diff --git "a/src/streamlit/pages/01_ \342\236\241_Workflow.py" "b/src/streamlit/pages/01_ \342\236\241_Workflow.py" index ac987512f..1a3ad7510 100644 --- "a/src/streamlit/pages/01_ \342\236\241_Workflow.py" +++ "b/src/streamlit/pages/01_ \342\236\241_Workflow.py" @@ -64,7 +64,7 @@ def section_predefined_workflow(): st.markdown("#### Predefined Workflows") predefine_workflows = [ - ["PyTornado", "WeightConventional"], + ["PyAVL", "SaveAeroCoefficients"], ["CPACS2GMSH", "SU2Run", "SkinFriction"], ["CPACS2GMSH", "ThermoData", "SU2Run"], ["CPACS2SUMO", "SUMOAutoMesh", "SU2Run", "ExportCSV"], diff --git a/test_files/CPACSfiles/DC2_Reference_T34_230517_v3.1.xml b/test_files/CPACSfiles/DC2_Reference_T34_230517_v3.1.xml new file mode 100644 index 000000000..668466415 --- /dev/null +++ b/test_files/CPACSfiles/DC2_Reference_T34_230517_v3.1.xml @@ -0,0 +1,6369 @@ + + +
+ AGILE_DC-2_Reference_T33 + 1.1 + 3.0 + AGILE WP3 T33 + AGILE D3.1 Reference aircraft for hi fi + 2017-03-07T20:51:00 + + + Initial Synthesis + TUD + + + CIAM Reference Engine included + DLR + + + POLITO Systems Mass analysis included + DLR + + + UNINA High Lift design included + DLR + + + Structural components included + DLR + + + DLR updated synthesis L0 + DLR + + + DLR major update for AGILE T3.3 hi-fi needs + DLR + + + Changed rudder values for 3.4, added 3.4 tool specific, added rudder actuator data + Fokker + + + Changed the rudder start to 0% of the vertical + Fokker + + + Converted to cpacs 3.0 using cpacs2to3 + cpacs2to3 + 2018-10-26T16:16:55 + ver1 + 3.0 + + + Replaced aeroPerformanceMap by aeroMap. Removed toolspecifics. + CFSE + 2020-03-06 15:35:29.645940 + 3.0 + + +
+ + + + AGILE-DC2-T33 + Agile DC2: 2:2 abreast 9180kg, right fuselage dims, medium BPR engine (6), max payload+range mission, LFL 1400 and TOFL 1500m, increased CLmax values + + + 0.0 + 0.0 + 15.6949 + + 3.7317 + 82.7 + + + + NASA_CRM_fuselage1 + NASA_CRM_fuselage1 model + + + 0.55 + 0.48 + 0.48 + + + 0.0 + 0.0 + 0.0 + + + -1.3 + 0.0 + -2.7 + + + +
+ NASA_CRM_Fus1_sec1 + NASA_CRM_Fus1_sec1 + + + 1.0 + 1.0 + 1.0 + + + 0.0 + 0.0 + 0.0 + + + 2.3595 + 0.0 + 4.932391 + + + + + NASA_CRM_fus1_sec1_Elem1 + NASA_CRM_fus1_sec1_Elem1 + NASA_CRM_fus1_profile1 + + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + 0.0 + + + + +
+
+ NASA_CRM_Fus1_sec2 + NASA_CRM_Fus1_sec2 + + + 1.0 + 1.0 + 1.0 + + + 0.0 + 0.0 + 0.0 + + + 2.3795 + 0.0 + 4.860254 + + + + + NASA_CRM_fus1_sec2_Elem1 + NASA_CRM_fus1_sec2_Elem1 + NASA_CRM_fus1_profile2 + + + 0.338466 + 0.338466 + 0.338466 + + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + 0.0 + + + + +
+
+ NASA_CRM_Fus1_sec3 + NASA_CRM_Fus1_sec3 + + + 1.0 + 1.0 + 1.0 + + + 0.0 + 0.0 + 0.0 + + + 2.4295 + 0.0 + 4.752808 + + + + + NASA_CRM_fus1_sec3_Elem1 + NASA_CRM_fus1_sec3_Elem1 + NASA_CRM_fus1_profile3 + + + 0.55414 + 0.55414 + 0.55414 + + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + 0.0 + + + + +
+
+ NASA_CRM_Fus1_sec4 + NASA_CRM_Fus1_sec4 + + + 1.0 + 1.0 + 1.0 + + + 0.0 + 0.0 + 0.0 + + + 2.6695 + 0.0 + 4.479785 + + + + + NASA_CRM_fus1_sec4_Elem1 + NASA_CRM_fus1_sec4_Elem1 + NASA_CRM_fus1_profile4 + + + 1.113595 + 1.113595 + 1.113595 + + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + 0.0 + + + + +
+
+ NASA_CRM_Fus1_sec5 + NASA_CRM_Fus1_sec5 + + + 1.0 + 1.0 + 1.0 + + + 0.0 + 0.0 + 0.0 + + + 3.2815 + 0.0 + 4.112995 + + + + + NASA_CRM_fus1_sec5_Elem1 + NASA_CRM_fus1_sec5_Elem1 + NASA_CRM_fus1_profile5 + + + 1.920177 + 1.920177 + 1.920177 + + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + 0.0 + + + + +
+
+ NASA_CRM_Fus1_sec6 + NASA_CRM_Fus1_sec6 + + + 1.0 + 1.0 + 1.0 + + + 0.0 + 0.0 + 0.0 + + + 3.7555 + 0.0 + 3.892743 + + + + + NASA_CRM_fus1_sec6_Elem1 + NASA_CRM_fus1_sec6_Elem1 + NASA_CRM_fus1_profile6 + + + 2.518746 + 2.518746 + 2.518746 + + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + 0.0 + + + + +
+
+ NASA_CRM_Fus1_sec7 + NASA_CRM_Fus1_sec7 + + + 1.0 + 1.0 + 1.0 + + + 0.0 + 0.0 + 0.0 + + + 4.0905 + 0.0 + 3.752841 + + + + + NASA_CRM_fus1_sec7_Elem1 + NASA_CRM_fus1_sec7_Elem1 + NASA_CRM_fus1_profile7 + + + 2.984681 + 2.984681 + 2.984681 + + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + 0.0 + + + + +
+
+ NASA_CRM_Fus1_sec8 + NASA_CRM_Fus1_sec8 + + + 1.0 + 1.0 + 1.0 + + + 0.0 + 0.0 + 0.0 + + + 4.8975 + 0.0 + 3.46156 + + + + + NASA_CRM_fus1_sec8_Elem1 + NASA_CRM_fus1_sec8_Elem1 + NASA_CRM_fus1_profile8 + + + 3.76646 + 3.76646 + 3.76646 + + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + 0.0 + + + + +
+
+ NASA_CRM_Fus1_sec9 + NASA_CRM_Fus1_sec9 + + + 1.0 + 1.0 + 1.0 + + + 0.0 + 0.0 + 0.0 + + + 6.6005 + 0.0 + 3.010557 + + + + + NASA_CRM_fus1_sec9_Elem1 + NASA_CRM_fus1_sec9_Elem1 + NASA_CRM_fus1_profile9 + + + 4.812545 + 4.812545 + 4.812545 + + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + 0.0 + + + + +
+
+ NASA_CRM_Fus1_sec10 + NASA_CRM_Fus1_sec10 + + + 1.0 + 1.0 + 1.0 + + + 0.0 + 0.0 + 0.0 + + + 8.7865 + 0.0 + 2.656317 + + + + + NASA_CRM_fus1_sec10_Elem1 + NASA_CRM_fus1_sec10_Elem1 + NASA_CRM_fus1_profile10 + + + 5.671808 + 5.671808 + 5.671808 + + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + 0.0 + + + + +
+
+ NASA_CRM_Fus1_sec11 + NASA_CRM_Fus1_sec11 + + + 1.0 + 1.0 + 1.0 + + + 0.0 + 0.0 + 0.0 + + + 14.113501 + 0.0 + 2.518156 + + + + + NASA_CRM_fus1_sec11_Elem1 + NASA_CRM_fus1_sec11_Elem1 + NASA_CRM_fus1_profile11 + + + 6.197738 + 6.197738 + 6.197738 + + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + 0.0 + + + + +
+
+ NASA_CRM_Fus1_sec12 + NASA_CRM_Fus1_sec12 + + + 1.0 + 1.0 + 1.0 + + + 0.0 + 0.0 + 0.0 + + + 21.649502 + 0.0 + 2.518156 + + + + + NASA_CRM_fus1_sec12_Elem1 + NASA_CRM_fus1_sec12_Elem1 + NASA_CRM_fus1_profile12 + + + 6.1976 + 6.1976 + 6.1976 + + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + 0.0 + + + + +
+
+ NASA_CRM_Fus1_sec13 + NASA_CRM_Fus1_sec13 + + + 1.0 + 1.0 + 1.0 + + + 0.0 + 0.0 + 0.0 + + + 22.149502 + 0.0 + 2.518156 + + + + + NASA_CRM_fus1_sec13_Elem1 + NASA_CRM_fus1_sec13_Elem1 + NASA_CRM_fus1_profile13 + + + 6.1976 + 6.1976 + 6.1976 + + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + 0.0 + + + + +
+
+ NASA_CRM_Fus1_sec14 + NASA_CRM_Fus1_sec14 + + + 1.0 + 1.0 + 1.0 + + + 0.0 + 0.0 + 0.0 + + + 23.347502 + 0.0 + 2.517391 + + + + + NASA_CRM_fus1_sec14_Elem1 + NASA_CRM_fus1_sec14_Elem1 + NASA_CRM_fus1_profile14 + + + 6.198365 + 6.198365 + 6.198365 + + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + 0.0 + + + + +
+
+ NASA_CRM_Fus1_sec15 + NASA_CRM_Fus1_sec15 + + + 1.0 + 1.0 + 1.0 + + + 0.0 + 0.0 + 0.0 + + + 24.952501 + 0.0 + 2.321622 + + + + + NASA_CRM_fus1_sec15_Elem1 + NASA_CRM_fus1_sec15_Elem1 + NASA_CRM_fus1_profile15 + + + 6.394134 + 6.394134 + 6.394134 + + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + 0.0 + + + + +
+
+ NASA_CRM_Fus1_sec16 + NASA_CRM_Fus1_sec16 + + + 1.0 + 1.0 + 1.0 + + + 0.0 + 0.0 + 0.0 + + + 37.936501 + 0.0 + 2.312972 + + + + + NASA_CRM_fus1_sec16_Elem1 + NASA_CRM_fus1_sec16_Elem1 + NASA_CRM_fus1_profile16 + + + 6.402784 + 6.402784 + 6.402784 + + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + 0.0 + + + + +
+
+ NASA_CRM_Fus1_sec17 + NASA_CRM_Fus1_sec17 + + + 1.0 + 1.0 + 1.0 + + + 0.0 + 0.0 + 0.0 + + + 39.685501 + 0.0 + 2.396054 + + + + + NASA_CRM_fus1_sec17_Elem1 + NASA_CRM_fus1_sec17_Elem1 + NASA_CRM_fus1_profile17 + + + 6.319702 + 6.319702 + 6.319702 + + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + 0.0 + + + + +
+
+ NASA_CRM_Fus1_sec18 + NASA_CRM_Fus1_sec18 + + + 1.0 + 1.0 + 1.0 + + + 0.0 + 0.0 + 0.0 + + + 40.850502 + 0.0 + 2.517005 + + + + + NASA_CRM_fus1_sec18_Elem1 + NASA_CRM_fus1_sec18_Elem1 + NASA_CRM_fus1_profile18 + + + 6.198751 + 6.198751 + 6.198751 + + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + 0.0 + + + + +
+
+ NASA_CRM_Fus1_sec19 + NASA_CRM_Fus1_sec19 + + + 1.0 + 1.0 + 1.0 + + + 0.0 + 0.0 + 0.0 + + + 41.345501 + 0.0 + 2.518156 + + + + + NASA_CRM_fus1_sec19_Elem1 + NASA_CRM_fus1_sec19_Elem1 + NASA_CRM_fus1_profile19 + + + 6.1976 + 6.1976 + 6.1976 + + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + 0.0 + + + + +
+
+ NASA_CRM_Fus1_sec20 + NASA_CRM_Fus1_sec20 + + + 1.0 + 1.0 + 1.0 + + + 0.0 + 0.0 + 0.0 + + + 41.997501 + 0.0 + 2.518156 + + + + + NASA_CRM_fus1_sec20_Elem1 + NASA_CRM_fus1_sec20_Elem1 + NASA_CRM_fus1_profile20 + + + 6.1976 + 6.1976 + 6.1976 + + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + 0.0 + + + + +
+
+ NASA_CRM_Fus1_sec21 + NASA_CRM_Fus1_sec21 + + + 1.0 + 1.0 + 1.0 + + + 0.0 + 0.0 + 0.0 + + + 45.597504 + 0.0 + 2.518156 + + + + + NASA_CRM_fus1_sec21_Elem1 + NASA_CRM_fus1_sec21_Elem1 + NASA_CRM_fus1_profile21 + + + 6.1976 + 6.1976 + 6.1976 + + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + 0.0 + + + + +
+
+ NASA_CRM_Fus1_sec22 + NASA_CRM_Fus1_sec22 + + + 1.0 + 1.0 + 1.0 + + + 0.0 + 0.0 + 0.0 + + + 46.912502 + 0.0 + 2.520459 + + + + + NASA_CRM_fus1_sec22_Elem1 + NASA_CRM_fus1_sec22_Elem1 + NASA_CRM_fus1_profile22 + + + 6.195261 + 6.195261 + 6.195261 + + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + 0.0 + + + + +
+
+ NASA_CRM_Fus1_sec23 + NASA_CRM_Fus1_sec23 + + + 1.0 + 1.0 + 1.0 + + + 0.0 + 0.0 + 0.0 + + + 48.522503 + 0.0 + 2.631599 + + + + + NASA_CRM_fus1_sec23_Elem1 + NASA_CRM_fus1_sec23_Elem1 + NASA_CRM_fus1_profile23 + + + 6.081972 + 6.081972 + 6.081972 + + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + 0.0 + + + + +
+
+ NASA_CRM_Fus1_sec24 + NASA_CRM_Fus1_sec24 + + + 1.0 + 1.0 + 1.0 + + + 0.0 + 0.0 + 0.0 + + + 50.0755 + 0.0 + 2.885072 + + + + + NASA_CRM_fus1_sec24_Elem1 + NASA_CRM_fus1_sec24_Elem1 + NASA_CRM_fus1_profile24 + + + 5.81776 + 5.81776 + 5.81776 + + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + 0.0 + + + + +
+
+ NASA_CRM_Fus1_sec25 + NASA_CRM_Fus1_sec25 + + + 1.0 + 1.0 + 1.0 + + + 0.0 + 0.0 + 0.0 + + + 52.444504 + 0.0 + 3.330238 + + + + + NASA_CRM_fus1_sec25_Elem1 + NASA_CRM_fus1_sec25_Elem1 + NASA_CRM_fus1_profile25 + + + 5.314783 + 5.314783 + 5.314783 + + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + 0.0 + + + + +
+
+ NASA_CRM_Fus1_sec26 + NASA_CRM_Fus1_sec26 + + + 1.0 + 1.0 + 1.0 + + + 0.0 + 0.0 + 0.0 + + + 55.195503 + 0.0 + 3.885442 + + + + + NASA_CRM_fus1_sec26_Elem1 + NASA_CRM_fus1_sec26_Elem1 + NASA_CRM_fus1_profile26 + + + 4.549658 + 4.549658 + 4.549658 + + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + 0.0 + + + + +
+
+ NASA_CRM_Fus1_sec27 + NASA_CRM_Fus1_sec27 + + + 1.0 + 1.0 + 1.0 + + + 0.0 + 0.0 + 0.0 + + + 57.668503 + 0.0 + 4.433229 + + + + + NASA_CRM_fus1_sec27_Elem1 + NASA_CRM_fus1_sec27_Elem1 + NASA_CRM_fus1_profile27 + + + 3.770725 + 3.770725 + 3.770725 + + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + 0.0 + + + + +
+
+ NASA_CRM_Fus1_sec28 + NASA_CRM_Fus1_sec28 + + + 1.0 + 1.0 + 1.0 + + + 0.0 + 0.0 + 0.0 + + + 60.403503 + 0.0 + 5.073436 + + + + + NASA_CRM_fus1_sec28_Elem1 + NASA_CRM_fus1_sec28_Elem1 + NASA_CRM_fus1_profile28 + + + 2.879656 + 2.879656 + 2.879656 + + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + 0.0 + + + + +
+
+ NASA_CRM_Fus1_sec29 + NASA_CRM_Fus1_sec29 + + + 1.0 + 1.0 + 1.0 + + + 0.0 + 0.0 + 0.0 + + + 61.250004 + 0.0 + 5.272072 + + + + + NASA_CRM_fus1_sec29_Elem1 + NASA_CRM_fus1_sec29_Elem1 + NASA_CRM_fus1_profile29 + + + 2.592517 + 2.592517 + 2.592517 + + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + 0.0 + + + + +
+
+ NASA_CRM_Fus1_sec30 + NASA_CRM_Fus1_sec30 + + + 1.0 + 1.0 + 1.0 + + + 0.0 + 0.0 + 0.0 + + + 62.500004 + 0.0 + 5.5654 + + + + + NASA_CRM_fus1_sec30_Elem1 + NASA_CRM_fus1_sec30_Elem1 + NASA_CRM_fus1_profile30 + + + 2.168501 + 2.168501 + 2.168501 + + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + 0.0 + + + + +
+
+ NASA_CRM_Fus1_sec31 + NASA_CRM_Fus1_sec31 + + + 1.0 + 1.0 + 1.0 + + + 0.0 + 0.0 + 0.0 + + + 63.074505 + 0.0 + 5.700207 + + + + + NASA_CRM_fus1_sec31_Elem1 + NASA_CRM_fus1_sec31_Elem1 + NASA_CRM_fus1_profile31 + + + 1.97363 + 1.97363 + 1.97363 + + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + 0.0 + + + + +
+
+ NASA_CRM_Fus1_sec32 + NASA_CRM_Fus1_sec32 + + + 1.0 + 1.0 + 1.0 + + + 0.0 + 0.0 + 0.0 + + + 64.0 + 0.0 + 5.917676 + + + + + NASA_CRM_fus1_sec32_Elem1 + NASA_CRM_fus1_sec32_Elem1 + NASA_CRM_fus1_profile32 + + + 1.659239 + 1.659239 + 1.659239 + + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + 0.0 + + + + +
+
+ NASA_CRM_Fus1_sec33 + NASA_CRM_Fus1_sec33 + + + 1.0 + 0.0 + 1.0 + + + 0.0 + 0.0 + 0.0 + + + 65.096504 + 0.0 + 6.208683 + + + + + NASA_CRM_fus1_sec33_Elem1 + NASA_CRM_fus1_sec33_Elem1 + NASA_CRM_fus1_profile33 + + + 1.230979 + 1.230979 + 1.230979 + + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + 0.0 + + + + +
+
+ + + NASA_CRM_fuselage1_position1 + 0 + 90 + 0 + NASA_CRM_fus1_Sec1 + + + NASA_CRM_fuselage1_position2 + 0 + 90 + 0 + NASA_CRM_fus1_Sec1 + NASA_CRM_fus1_Sec2 + + + NASA_CRM_fuselage1_position3 + 0 + 90 + 0 + NASA_CRM_fus1_Sec2 + NASA_CRM_fus1_Sec3 + + + NASA_CRM_fuselage1_position4 + 0 + 90 + 0 + NASA_CRM_fus1_Sec3 + NASA_CRM_fus1_Sec4 + + + NASA_CRM_fuselage1_position5 + 0 + 90 + 0 + NASA_CRM_fus1_Sec4 + NASA_CRM_fus1_Sec5 + + + NASA_CRM_fuselage1_position6 + 0 + 90 + 0 + NASA_CRM_fus1_Sec5 + NASA_CRM_fus1_Sec6 + + + NASA_CRM_fuselage1_position7 + 0 + 90 + 0 + NASA_CRM_fus1_Sec6 + NASA_CRM_fus1_Sec7 + + + NASA_CRM_fuselage1_position8 + 0 + 90 + 0 + NASA_CRM_fus1_Sec7 + NASA_CRM_fus1_Sec8 + + + NASA_CRM_fuselage1_position9 + 0 + 90 + 0 + NASA_CRM_fus1_Sec8 + NASA_CRM_fus1_Sec9 + + + NASA_CRM_fuselage1_position10 + 0 + 90 + 0 + NASA_CRM_fus1_Sec9 + NASA_CRM_fus1_Sec10 + + + NASA_CRM_fuselage1_position11 + 0 + 90 + 0 + NASA_CRM_fus1_Sec10 + NASA_CRM_fus1_Sec11 + + + NASA_CRM_fuselage1_position12 + 0 + 90 + 0 + NASA_CRM_fus1_Sec11 + NASA_CRM_fus1_Sec12 + + + NASA_CRM_fuselage1_position13 + 0 + 90 + 0 + NASA_CRM_fus1_Sec12 + NASA_CRM_fus1_Sec13 + + + NASA_CRM_fuselage1_position14 + 0 + 90 + 0 + NASA_CRM_fus1_Sec13 + NASA_CRM_fus1_Sec14 + + + NASA_CRM_fuselage1_position15 + 0 + 90 + 0 + NASA_CRM_fus1_Sec14 + NASA_CRM_fus1_Sec15 + + + NASA_CRM_fuselage1_position16 + 0 + 90 + 0 + NASA_CRM_fus1_Sec15 + NASA_CRM_fus1_Sec16 + + + NASA_CRM_fuselage1_position17 + 0 + 90 + 0 + NASA_CRM_fus1_Sec16 + NASA_CRM_fus1_Sec17 + + + NASA_CRM_fuselage1_position18 + 0 + 90 + 0 + NASA_CRM_fus1_Sec17 + NASA_CRM_fus1_Sec18 + + + NASA_CRM_fuselage1_position19 + 0 + 90 + 0 + NASA_CRM_fus1_Sec18 + NASA_CRM_fus1_Sec19 + + + NASA_CRM_fuselage1_position20 + 0 + 90 + 0 + NASA_CRM_fus1_Sec19 + NASA_CRM_fus1_Sec20 + + + NASA_CRM_fuselage1_position21 + 0 + 90 + 0 + NASA_CRM_fus1_Sec20 + NASA_CRM_fus1_Sec21 + + + NASA_CRM_fuselage1_position22 + 0 + 90 + 0 + NASA_CRM_fus1_Sec21 + NASA_CRM_fus1_Sec22 + + + NASA_CRM_fuselage1_position23 + 0 + 90 + 0 + NASA_CRM_fus1_Sec22 + NASA_CRM_fus1_Sec23 + + + NASA_CRM_fuselage1_position24 + 0 + 90 + 0 + NASA_CRM_fus1_Sec23 + NASA_CRM_fus1_Sec24 + + + NASA_CRM_fuselage1_position25 + 0 + 90 + 0 + NASA_CRM_fus1_Sec24 + NASA_CRM_fus1_Sec25 + + + NASA_CRM_fuselage1_position26 + 0 + 90 + 0 + NASA_CRM_fus1_Sec25 + NASA_CRM_fus1_Sec26 + + + NASA_CRM_fuselage1_position27 + 0 + 90 + 0 + NASA_CRM_fus1_Sec26 + NASA_CRM_fus1_Sec27 + + + NASA_CRM_fuselage1_position28 + 0 + 90 + 0 + NASA_CRM_fus1_Sec27 + NASA_CRM_fus1_Sec28 + + + NASA_CRM_fuselage1_position29 + 0 + 90 + 0 + NASA_CRM_fus1_Sec28 + NASA_CRM_fus1_Sec29 + + + NASA_CRM_fuselage1_position30 + 0 + 90 + 0 + NASA_CRM_fus1_Sec29 + NASA_CRM_fus1_Sec30 + + + NASA_CRM_fuselage1_position31 + 0 + 90 + 0 + NASA_CRM_fus1_Sec30 + NASA_CRM_fus1_Sec31 + + + NASA_CRM_fuselage1_position32 + 0 + 90 + 0 + NASA_CRM_fus1_Sec31 + NASA_CRM_fus1_Sec32 + + + NASA_CRM_fuselage1_position33 + 0 + 90 + 0 + NASA_CRM_fus1_Sec32 + NASA_CRM_fus1_Sec33 + + + + + NASA_CRM_fuselage1_Seg1 + NASA_CRM_fuselage1_Seg1 + NASA_CRM_fus1_sec1_Elem1 + NASA_CRM_fus1_sec2_Elem1 + + + NASA_CRM_fuselage1_Seg2 + NASA_CRM_fuselage1_Seg2 + NASA_CRM_fus1_sec2_Elem1 + NASA_CRM_fus1_sec3_Elem1 + + + NASA_CRM_fuselage1_Seg3 + NASA_CRM_fuselage1_Seg3 + NASA_CRM_fus1_sec3_Elem1 + NASA_CRM_fus1_sec4_Elem1 + + + NASA_CRM_fuselage1_Seg4 + NASA_CRM_fuselage1_Seg4 + NASA_CRM_fus1_sec4_Elem1 + NASA_CRM_fus1_sec5_Elem1 + + + NASA_CRM_fuselage1_Seg5 + NASA_CRM_fuselage1_Seg5 + NASA_CRM_fus1_sec5_Elem1 + NASA_CRM_fus1_sec6_Elem1 + + + NASA_CRM_fuselage1_Seg6 + NASA_CRM_fuselage1_Seg6 + NASA_CRM_fus1_sec6_Elem1 + NASA_CRM_fus1_sec7_Elem1 + + + NASA_CRM_fuselage1_Seg7 + NASA_CRM_fuselage1_Seg7 + NASA_CRM_fus1_sec7_Elem1 + NASA_CRM_fus1_sec8_Elem1 + + + NASA_CRM_fuselage1_Seg8 + NASA_CRM_fuselage1_Seg8 + NASA_CRM_fus1_sec8_Elem1 + NASA_CRM_fus1_sec9_Elem1 + + + NASA_CRM_fuselage1_Seg9 + NASA_CRM_fuselage1_Seg9 + NASA_CRM_fus1_sec9_Elem1 + NASA_CRM_fus1_sec10_Elem1 + + + NASA_CRM_fuselage1_Seg10 + NASA_CRM_fuselage1_Seg10 + NASA_CRM_fus1_sec10_Elem1 + NASA_CRM_fus1_sec11_Elem1 + + + NASA_CRM_fuselage1_Seg11 + NASA_CRM_fuselage1_Seg11 + NASA_CRM_fus1_sec11_Elem1 + NASA_CRM_fus1_sec12_Elem1 + + + NASA_CRM_fuselage1_Seg12 + NASA_CRM_fuselage1_Seg12 + NASA_CRM_fus1_sec12_Elem1 + NASA_CRM_fus1_sec13_Elem1 + + + NASA_CRM_fuselage1_Seg13 + NASA_CRM_fuselage1_Seg13 + NASA_CRM_fus1_sec13_Elem1 + NASA_CRM_fus1_sec14_Elem1 + + + NASA_CRM_fuselage1_Seg14 + NASA_CRM_fuselage1_Seg14 + NASA_CRM_fus1_sec14_Elem1 + NASA_CRM_fus1_sec15_Elem1 + + + NASA_CRM_fuselage1_Seg15 + NASA_CRM_fuselage1_Seg15 + NASA_CRM_fus1_sec15_Elem1 + NASA_CRM_fus1_sec16_Elem1 + + + NASA_CRM_fuselage1_Seg16 + NASA_CRM_fuselage1_Seg16 + NASA_CRM_fus1_sec16_Elem1 + NASA_CRM_fus1_sec17_Elem1 + + + NASA_CRM_fuselage1_Seg17 + NASA_CRM_fuselage1_Seg17 + NASA_CRM_fus1_sec17_Elem1 + NASA_CRM_fus1_sec18_Elem1 + + + NASA_CRM_fuselage1_Seg18 + NASA_CRM_fuselage1_Seg18 + NASA_CRM_fus1_sec18_Elem1 + NASA_CRM_fus1_sec19_Elem1 + + + NASA_CRM_fuselage1_Seg19 + NASA_CRM_fuselage1_Seg19 + NASA_CRM_fus1_sec19_Elem1 + NASA_CRM_fus1_sec20_Elem1 + + + NASA_CRM_fuselage1_Seg20 + NASA_CRM_fuselage1_Seg20 + NASA_CRM_fus1_sec20_Elem1 + NASA_CRM_fus1_sec21_Elem1 + + + NASA_CRM_fuselage1_Seg21 + NASA_CRM_fuselage1_Seg21 + NASA_CRM_fus1_sec21_Elem1 + NASA_CRM_fus1_sec22_Elem1 + + + NASA_CRM_fuselage1_Seg22 + NASA_CRM_fuselage1_Seg22 + NASA_CRM_fus1_sec22_Elem1 + NASA_CRM_fus1_sec23_Elem1 + + + NASA_CRM_fuselage1_Seg23 + NASA_CRM_fuselage1_Seg23 + NASA_CRM_fus1_sec23_Elem1 + NASA_CRM_fus1_sec24_Elem1 + + + NASA_CRM_fuselage1_Seg24 + NASA_CRM_fuselage1_Seg24 + NASA_CRM_fus1_sec24_Elem1 + NASA_CRM_fus1_sec25_Elem1 + + + NASA_CRM_fuselage1_Seg25 + NASA_CRM_fuselage1_Seg25 + NASA_CRM_fus1_sec25_Elem1 + NASA_CRM_fus1_sec26_Elem1 + + + NASA_CRM_fuselage1_Seg26 + NASA_CRM_fuselage1_Seg26 + NASA_CRM_fus1_sec26_Elem1 + NASA_CRM_fus1_sec27_Elem1 + + + NASA_CRM_fuselage1_Seg27 + NASA_CRM_fuselage1_Seg27 + NASA_CRM_fus1_sec27_Elem1 + NASA_CRM_fus1_sec28_Elem1 + + + NASA_CRM_fuselage1_Seg28 + NASA_CRM_fuselage1_Seg28 + NASA_CRM_fus1_sec28_Elem1 + NASA_CRM_fus1_sec29_Elem1 + + + NASA_CRM_fuselage1_Seg29 + NASA_CRM_fuselage1_Seg29 + NASA_CRM_fus1_sec29_Elem1 + NASA_CRM_fus1_sec30_Elem1 + + + NASA_CRM_fuselage1_Seg30 + NASA_CRM_fuselage1_Seg30 + NASA_CRM_fus1_sec30_Elem1 + NASA_CRM_fus1_sec31_Elem1 + + + NASA_CRM_fuselage1_Seg31 + NASA_CRM_fuselage1_Seg31 + NASA_CRM_fus1_sec31_Elem1 + NASA_CRM_fus1_sec32_Elem1 + + + NASA_CRM_fuselage1_Seg32 + NASA_CRM_fuselage1_Seg32 + NASA_CRM_fus1_sec32_Elem1 + NASA_CRM_fus1_sec33_Elem1 + + + + + fuselageSkinSheet + + +
+
+ + + MainWing + NASA_fuselageID + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 12.2479 + 0 + -0.85 + + + +
+ MainWingSection1 + + + 1 + 1 + 1 + + + 0 + -6.231611084 + 0 + + + 0 + 0 + 0 + + + + + MainWingSection1 + DLR_F6_wing1_airfoil1 + + + 6.3923 + 6.3923 + 6.3923 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ MainWingSection2 + + + 1 + 1 + 1 + + + 0 + -1.829815104 + 0 + + + 0 + 0 + 0 + + + + + MainWingSection2 + DLR_F6_wing1_airfoil10 + + + 2.71737 + 2.71737 + 2.71737 + + + 0 + 1.839769 + 0 + + + 0 + 0 + 0 + + + + +
+
+ MainWingSection3 + + + 1 + 1 + 1 + + + 0 + 0.23464363 + 0 + + + 0 + 0 + 0 + + + + + MainWingSection3 + DLR_F6_wing1_airfoil25 + + + 1.05165 + 1.05165 + 1.05165 + + + 0 + -1.503675 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + MainWingPositioning1 + 0 + 0 + 0 + MainWing_wingSection1ID + + + MainWingPositioning2 + 6.73236 + 33.2273 + 6 + MainWing_wingSection1ID + MainWing_wingSection2ID + + + MainWingPositioning3 + 9.60746 + 33.2273 + 6 + MainWing_wingSection2ID + MainWing_wingSection3ID + + + + + MainWingSegment1 + MainWing_wingSection1Element1ID + MainWing_wingSection2Element1ID + + + MainWingSegment2 + MainWing_wingSection2Element1ID + MainWing_wingSection3Element1ID + + + + + wing_CSeg + wing_CSeg + + + + + aluminium7075 + 0.003 + + + + + + + + aluminium7075 + 0.003 + + + + Stringer_WING_up + 0.20 + 0.0 + wing_Spar_FS + + 0 + 0.05 + wing_Cseg + + + + wing_Spar_FS + + + wing_Spar_RS + + + + 0 + wing_Cseg + + + 0 + wing_Cseg + + + + + 1 + wing_Cseg + + + 1 + wing_Cseg + + + + + + + + + aluminium2024 + 0.003 + + + + + + + + aluminium2024 + 0.003 + + + + Stringer_WING_low + 0.20 + 0.0 + wing_Spar_FS + + 0 + 0.05 + wing_Cseg + + + + wing_Spar_FS + + + wing_Spar_RS + + + + 0 + wing_Cseg + + + 0 + wing_Cseg + + + + + 1 + wing_Cseg + + + 1 + wing_Cseg + + + + + + + + wing_ribs + + wing_Spar_FS + + 0 + wing_Cseg + + + 0.106762 + wing_Cseg + + wing_Spar_FS + wing_Spar_RS + 4 + cross + + globalY + 90. + + + + + aluminium7075 + 0.003 + + + + + wing_ribs + + wing_Spar_FS + + 0.163701 + wing_Cseg + + + 0.286477 + wing_Cseg + + wing_Spar_FS + wing_Spar_RS + 3 + cross + + globalY + 90. + + + + + aluminium7075 + 0.003 + + + + + + wing_ribs + + wing_Spar_FS + + 0.370463 + wing_Cseg + + + 0.95 + wing_Cseg + + wing_Spar_FS + wing_Spar_RS + 11 + end + + wing_Spar_FS + 90. + + + + + aluminium7075 + 0.003 + + + + + wing_ribs + + wing_Spar_FS + + 0.99 + wing_Cseg + + + 0.99 + wing_Cseg + + wing_Spar_FS + wing_Spar_RS + 1 + cross + + globalY + 90. + + + + + aluminium7075 + 0.003 + + + + + + + + + 0 + 0.25 + wing_Cseg + + + + + 0.106762 + 0.15 + wing_Cseg + + + + + 1 + 0.2 + wing_Cseg + + + + + 0 + 0.65 + wing_Cseg + + + + + 0.106762 + 0.6 + wing_Cseg + + + + + 0.350213 + 0.5 + wing_Cseg + + + + + 1 + 0.6 + wing_Cseg + + + + + + wing_Spar_FS + wing_Spar_FS + + wing_Spar_FS_P0 + wing_Spar_FS_P1 + wing_Spar_FS_P2 + + + + 0.0003 + + aluminium7075 + 0.003 + + + + 0.0003 + + aluminium7075 + 0.003 + + + + + aluminium7075 + 0.003 + + 0.5 + + 90.0 + + + + wing_Spar_RS + wing_Spar_RS + + wing_Spar_RS_P0 + wing_Spar_RS_P1 + wing_Spar_RS_P2 + wing_Spar_RS_P3 + + + + 0.0003 + + aluminium7075 + 0.003 + + + + 0.0003 + + aluminium7075 + 0.003 + + + + + aluminium7075 + 0.003 + + 0.5 + + 90.0 + + + + + + + + + InnerSlat1 + slat from VAMPzero + wing + + + + 0.12 + wing_Cseg + + 0.5 + 0.6 + + 0.2 + wing_Cseg + + + 0.5 + 0.7 + + + + + 0.33 + wing_Cseg + + 0.5 + 0.6 + + 0.2 + wing_Cseg + + + 0.5 + 0.7 + + + + + + 0.5 + 0.5 + + + 0.5 + 0.5 + + + + 0 + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + + 0.0 + + + 30 + + -0.127354072363 + 0.0 + 0.0 + + + -0.127354072363 + 0.0 + + -30.0 + + + + + + OuterSlat1 + slat from VAMPzero + wing + + + + 0.415 + wing_Cseg + + 0.341 + 0.821 + + 0.2 + wing_Cseg + + + 0.5 + 0.85 + + + + + 0.56 + wing_Cseg + + 0.341 + 0.821 + + 0.2 + wing_Cseg + + + 0.5 + 0.85 + + + + + + 0.5 + 0.5 + + + 0.5 + 0.5 + + + + 0 + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + + 0.0 + + + 30 + + -0.127354072363 + 0.0 + 0.0 + + + -0.127354072363 + 0.0 + + -30.0 + + + + + + OuterSlat2 + slat from VAMPzero + wing + + + + 0.57 + wing_Cseg + + 0.341 + 0.821 + + 0.2 + wing_Cseg + + + 0.5 + 0.85 + + + + + 0.73 + wing_Cseg + + 0.341 + 0.821 + + 0.2 + wing_Cseg + + + 0.5 + 0.85 + + + + + + 0.5 + 0.5 + + + 0.5 + 0.5 + + + + 0 + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + + 0.0 + + + 30 + + -0.127354072363 + 0.0 + 0.0 + + + -0.127354072363 + 0.0 + + -30.0 + + + + + + OuterSlat3 + slat from VAMPzero + wing + + + + 0.74 + wing_Cseg + + 0.341 + 0.821 + + 0.2 + wing_Cseg + + + 0.5 + 0.85 + + + + + 0.95 + wing_Cseg + + 0.341 + 0.821 + + 0.2 + wing_Cseg + + + 0.5 + 0.85 + + + + + + 0.5 + 0.5 + + + 0.5 + 0.5 + + + + 0 + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + + 0.0 + + + 30 + + -0.127354072363 + 0.0 + 0.0 + + + -0.127354072363 + 0.0 + + -30.0 + + + + + + + + aileron + aileron from VAMPzero + wing_Cseg + + + + 0.79 + aileronUID + + + 0.79 + aileronUID + + + 0.693232 + aileronUID + + + 0.5 + 0.85 + 0.85 + + + + + 0.96 + aileronUID + + + 0.96 + aileronUID + + + 0.690616 + aileronUID + + + 0.5 + 0.85 + 0.85 + + + + + + + + aluminium7075 + 0.001 + + + + Stringer_WING_up + 0.14 + 0.0 + + 0 + 0 + aileronUID + + + + + + + aluminium2024 + 0.001 + + + + Stringer_WING_low + 0.14 + 0.0 + + 0 + 0 + aileronUID + + + + + + aileron_ribs + + aileronUID_Spar_FS + + 0 + aileronUID + + + 1 + aileronUID + + leadingEdge + trailingEdge + 0.25 + cross + + globalY + 90. + + + + + aluminium7075 + 0.001 + + + + + + + + + 0 + 0.2 + aileronUID + + + + + 1 + 0.2 + aileronUID + + + + + 0 + 0.7 + aileronUID + + + + + 1 + 0.7 + aileronUID + + + + + + aileronUID_Spar_FS + aileronUID_Spar_FS + + aileronUID_Spar_FS_P0 + aileronUID_Spar_FS_P1 + + + + 0.0003 + + aluminium7075 + 0.003 + + + + 0.0003 + + aluminium7075 + 0.003 + + + + + aluminium7075 + 0.003 + + 0.5 + + 90.0 + + + + aileronUID_Spar_RS + aileronUID_Spar_RS + + aileronUID_Spar_RS_P0 + aileronUID_Spar_RS_P1 + + + + 0.0003 + + aluminium7075 + 0.003 + + + + 0.0003 + + aluminium7075 + 0.003 + + + + + aluminium7075 + 0.003 + + 0.5 + + 90.0 + + + + + + + + 0.75 + 0.2 + + + 0.75 + 0.2 + + + + 25 + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + + 25.0 + + + 0 + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + + 0.0 + + + -25 + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + + -25.0 + + + + + + + 0.25 + aileronUID + + trackType1 + + + aluminium2024 + 0.001 + + + + + + 0.75 + aileronUID + + trackType1 + + + aluminium2024 + 0.001 + + + + + + + Aileron_Act1 + + 0.3 + + 0.612446956977 + 0.8 + + aluminium2024 + 0.001 + + + + 0.712446956977 + 0.8 + + aluminium2024 + 0.001 + + + + + + Aileron_Act2 + + 0.7 + + 0.611400459653 + 0.8 + + aluminium2024 + 0.001 + + + + 0.711400459653 + 0.8 + + aluminium2024 + 0.001 + + + + + + + + innerFlap + innerFlap from VAMPzero + wing + + + + 0.12 + innerFlapUID + + + 0.12 + innerFlapUID + + + 0.8 + innerFlapUID + + + 0.2 + 0.5 + 0.95 + + + + + 0.4 + innerFlapUID + + + 0.4 + innerFlapUID + + + 0.63 + innerFlapUID + + + 0.2 + 0.5 + 0.95 + + + + + + + + aluminium7075 + 0.001 + + + + Stringer_WING_up + 0.14 + 0.0 + + 0 + 0 + innerFlapUID + + + + + + + aluminium2024 + 0.001 + + + + Stringer_WING_low + 0.14 + 0.0 + + 0 + 0 + innerFlapUID + + + + + + flap_ribs + + innerFlapUID_Spar_FS + + 0 + innerFlapUID + + + 1 + innerFlapUID + + leadingEdge + trailingEdge + 20 + cross + + globalY + 90. + + + + + aluminium7075 + 0.001 + + + + + + + + + 0 + 0.2 + innerFlapUID + + + + + 1 + 0.2 + innerFlapUID + + + + + 0 + 0.7 + innerFlapUID + + + + + 1 + 0.7 + innerFlapUID + + + + + + innerFlapUID_Spar_FS + innerFlapUID_Spar_FS + + innerFlapUID_Spar_FS_P0 + innerFlapUID_Spar_FS_P1 + + + + 0.0003 + + aluminium7075 + 0.003 + + + + 0.0003 + + aluminium7075 + 0.003 + + + + + aluminium7075 + 0.003 + + 0.5 + + 90.0 + + + + innerFlapUID_Spar_RS + innerFlapUID_Spar_RS + + innerFlapUID_Spar_RS_P0 + innerFlapUID_Spar_RS_P1 + + + + 0.0003 + + aluminium7075 + 0.003 + + + + 0.0003 + + aluminium7075 + 0.003 + + + + + aluminium7075 + 0.003 + + 0.5 + + 90.0 + + + + + + + + 0.789562336672 + 0.5 + + + 0.68 + 0.5 + + + + 0 + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + + 0.0 + + + 10 + + 0.254449784009 + 0.0 + 0.0 + + + 0.254449784009 + 0.0 + + 10.0 + + + 40 + + 0.508899568018 + 0.0 + 0.0 + + + 0.508899568018 + 0.0 + + 40.0 + + + + + + + 0 + innerFlapUID + + trackType3 + trackSubType2 + + Act_FT1 + + aluminium2024 + 0.001 + + + + + aluminium2024 + 0.001 + + + + aluminium2024 + 0.001 + + + aluminium2024 + 0.001 + + + titan + 0.001 + + + titan + 0.001 + + + aluminium2024 + 0.001 + + + + + + 0.66 + innerFlapUID + + trackType3 + + Act_FT2 + + aluminium2024 + 0.001 + + + + + aluminium2024 + 0.001 + + + + aluminium2024 + 0.001 + + + aluminium2024 + 0.001 + + + titan + 0.001 + + + titan + 0.001 + + + aluminium2024 + 0.001 + + + + + + + outerFlap1 + outerFlap from VAMPzero + wing + + + + 0.415 + outerFlap1UID + + + 0.415 + outerFlap1UID + + + 0.63 + outerFlap1UID + + + 0.2 + 0.5 + 0.95 + + + + + 0.75 + outerFlap1UID + + + 0.75 + outerFlap1UID + + + 0.68 + outerFlap1UID + + + 0.2 + 0.5 + 0.95 + + + + + + + + aluminium7075 + 0.001 + + + + Stringer_WING_up + 0.14 + 0.0 + + 0 + 0 + outerFlap1UID + + + + + + + aluminium2024 + 0.001 + + + + Stringer_WING_low + 0.14 + 0.0 + + 0 + 0 + outerFlap1UID + + + + + + flap_ribs + + outerFlap1UID_Spar_FS + + 0 + outerFlap1UID + + + 1 + outerFlap1UID + + leadingEdge + trailingEdge + 20 + cross + + globalY + 90. + + + + + aluminium7075 + 0.001 + + + + + + + + + 0 + 0.2 + outerFlap1UID + + + + + 1 + 0.2 + outerFlap1UID + + + + + 0 + 0.7 + outerFlap1UID + + + + + 1 + 0.7 + outerFlap1UID + + + + + + outerFlap1UID_Spar_FS + outerFlap1UID_Spar_FS + + outerFlap1UID_Spar_FS_P0 + outerFlap1UID_Spar_FS_P1 + + + + 0.0003 + + aluminium7075 + 0.003 + + + + 0.0003 + + aluminium7075 + 0.003 + + + + + aluminium7075 + 0.003 + + 0.5 + + 90.0 + + + + outerFlap1UID_Spar_RS + outerFlap1UID_Spar_RS + + outerFlap1UID_Spar_RS_P0 + outerFlap1UID_Spar_RS_P1 + + + + 0.0003 + + aluminium7075 + 0.003 + + + + 0.0003 + + aluminium7075 + 0.003 + + + + + aluminium7075 + 0.003 + + 0.5 + + 90.0 + + + + + + + + 0.68 + 0.5 + + + 0.718480649649 + 0.5 + + + + 0 + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + + 0.0 + + + 10 + + 0.254449784009 + 0.0 + 0.0 + + + 0.1445249844 + 0.0 + + 10.0 + + + 40 + + 0.508899568018 + 0.0 + 0.0 + + + 0.2890499688 + 0.0 + + 40.0 + + + + + + + 0.275 + outerFlap1UID + + trackType3 + + Act_FT3 + + aluminium2024 + 0.001 + + + + + aluminium2024 + 0.001 + + + + aluminium2024 + 0.001 + + + aluminium2024 + 0.001 + + + titan + 0.001 + + + titan + 0.001 + + + aluminium2024 + 0.001 + + + + + + 0.725 + outerFlap1UID + + trackType3 + + Act_FT4 + + aluminium2024 + 0.001 + + + + + aluminium2024 + 0.001 + + + + aluminium2024 + 0.001 + + + aluminium2024 + 0.001 + + + titan + 0.001 + + + titan + 0.001 + + + aluminium2024 + 0.001 + + + + + + + + 0.02 + 0.05 + 0.3 + + + aluminium2024 + 0.001 + + + aluminium2024 + 0.001 + + + False + True + + + + + + + + + + wing_ribs_inner + 4 + + + + + + wing_tank_inner + + + wing_Spar_FS + + + wing_ribs_inner + 1 + + + wing_ribs_outer + 1 + + + wing_Spar_RS + + + + + + wing_tank_outer + + + wing_Spar_FS + + + wing_ribs_outer + 1 + + + wing_ribs_outer + 8 + + + wing_Spar_RS + + + + + MainWing_wingSection1Element1ID + MainWing_wingSection3Element1ID + + +
+ + HorizontalStabiliser + NASA_fuselageID + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 29.743 + 0 + 0.3 + + + +
+ HorizontalStabiliserSection1 + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + HorizontalStabiliserSection1 + Profile_HorizontalStabiliser_1ID + + + 3.2362 + 3.2362 + 3.2362 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ HorizontalStabiliserSection2 + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + HorizontalStabiliserSection2 + Profile_HorizontalStabiliser_2ID + + + 1.13267 + 1.13267 + 1.13267 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + HorizontalStabiliserPositioning1 + 0 + 0 + 0 + HorizontalStabiliser_wingSection1ID + + + HorizontalStabiliserPositioning2 + 5.30725 + 34.2802 + 6 + HorizontalStabiliser_wingSection1ID + HorizontalStabiliser_wingSection2ID + + + + + HorizontalStabiliserSegment1 + HorizontalStabiliser_wingSection1Element1ID + HorizontalStabiliser_wingSection2Element1ID + + + + + htp_CSeg + htp_CSeg + + + + + aluminium7075 + 0.003 + + + + + + + + aluminium7075 + 0.003 + + + + Stringer_WING_up + 0.20 + 0.0 + htp_Spar_FS + + 0 + 0.1 + htp_Cseg + + + + htp_Spar_FS + + + htp_Spar_RS + + + + 0 + htp_Cseg + + + 0 + htp_Cseg + + + + + 1 + htp_Cseg + + + 1 + htp_Cseg + + + + + + + + + aluminium2024 + 0.003 + + + + + + + + aluminium2024 + 0.003 + + + + Stringer_WING_low + 0.20 + 0.0 + htp_Spar_FS + + 0 + 0.1 + htp_Cseg + + + + htp_Spar_FS + + + htp_Spar_RS + + + + 0 + htp_Cseg + + + 0 + htp_Cseg + + + + + 1 + htp_Cseg + + + 1 + htp_Cseg + + + + + + + + trapezoid_ribs + + htp_Spar_FS + + 0 + htp_Cseg + + + 0.875 + htp_Cseg + + htp_Spar_FS + htp_Spar_RS + 7 + cross + + globalY + 90. + + + + + aluminium7075 + 0.003 + + + + + + + + + 0 + 0.22 + htp_Cseg + + + + + 1 + 0.22 + htp_Cseg + + + + + 0 + 0.55 + htp_Cseg + + + + + 1 + 0.55 + htp_Cseg + + + + + + htp_Spar_FS + htp_Spar_FS + + htp_Spar_FS_P0 + htp_Spar_FS_P1 + + + + 0.0003 + + aluminium7075 + 0.003 + + + + 0.0003 + + aluminium7075 + 0.003 + + + + + aluminium7075 + 0.003 + + 0.5 + + 90.0 + + + + htp_Spar_RS + htp_Spar_RS + + htp_Spar_RS_P0 + htp_Spar_RS_P1 + + + + 0.0003 + + aluminium7075 + 0.003 + + + + 0.0003 + + aluminium7075 + 0.003 + + + + + aluminium7075 + 0.003 + + 0.5 + + 90.0 + + + + + + + + + elevator + elevator from VAMPzero + htp + + + + 0.325723 + elevatorUID + + + 0.588078 + elevatorUID + + + 0.5 + 0.85 + 0.85 + + + + + 0.966286 + elevatorUID + + + 0.588078 + elevatorUID + + + 0.5 + 0.85 + 0.85 + + + + + + 0.75 + 0.2 + + + 0.75 + 0.2 + + + + 25 + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + + 25.0 + + + 0 + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + + 0.0 + + + -25 + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + + -25.0 + + + + + + stabilizer + stabilizer exported from VAMPzero + htp + + + + 0 + stabilizerUID + + + 0 + stabilizerUID + + + + + 1 + stabilizerUID + + + 0 + stabilizerUID + + + + + + 0.25 + 0.5 + + + 0.25 + 0.5 + + + + 25 + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + + 25.0 + + + 0 + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + + 0.0 + + + -25 + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + + -25.0 + + + + + + + HorizontalStabiliser_wingSection1Element1ID + HorizontalStabiliser_wingSection2Element1ID + + +
+ + VerticalStabiliser + NASA_fuselageID + + + 1 + 1 + 1 + + + 90 + 0 + 0 + + + 29.0546 + 0.0 + 0.900020 + + + +
+ VerticalStabiliserSection1 + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + VerticalStabiliserSection1 + Profile_VerticalStabiliser_1ID + + + 4.12099 + 4.12099 + 4.12099 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ VerticalStabiliserSection2 + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + VerticalStabiliserSection2 + Profile_VerticalStabiliser_2ID + + + 1.43655 + 1.43655 + 1.43655 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + VerticalStabiliserPositioning1 + 0 + 0 + 0 + VerticalStabiliser_wingSection1ID + + + VerticalStabiliserPositioning2 + 6.28106 + 43.6333 + 0 + VerticalStabiliser_wingSection1ID + VerticalStabiliser_wingSection2ID + + + + + VerticalStabiliserSegment1 + VerticalStabiliser_wingSection1Element1ID + VerticalStabiliser_wingSection2Element1ID + + + + + vtp_CSeg + vtp_CSeg + VerticalStabiliser_wingSection1Element1ID + VerticalStabiliser_wingSection2Element1ID + + + + + aluminium7075 + 0.003 + + + + + + + + aluminium7075 + 0.003 + + + + Stringer_WING_up + 0.20 + 0.0 + vtp_Spar_FS + + 0 + 0 + vtp_Cseg + + + + vtp_Spar_FS + + + vtp_Spar_RS + + + + 0 + vtp_Cseg + + + 0 + vtp_Cseg + + + + + 1 + vtp_Cseg + + + 1 + vtp_Cseg + + + + + + + + + aluminium2024 + 0.003 + + + + + + + + aluminium7075 + 0.003 + + + + Stringer_WING_low + 0.20 + 0.0 + vtp_Spar_FS + + 0 + 0 + vtp_Cseg + + + + vtp_Spar_FS + + + vtp_Spar_RS + + + + 0 + vtp_Cseg + + + 0 + vtp_Cseg + + + + + 1 + vtp_Cseg + + + 1 + vtp_Cseg + + + + + + + + trapezoid_ribs + + vtp_Spar_FS + + 0 + vtp_Cseg + + + 0.9125 + vtp_Cseg + + vtp_Spar_FS + vtp_Spar_RS + 9 + cross + + globalY + 90. + + + + + aluminium7075 + 0.003 + + + + + + + + + 0 + 0.22 + vtp_Cseg + + + + + 1 + 0.22 + vtp_Cseg + + + + + 0 + 0.55 + vtp_Cseg + + + + + 1 + 0.55 + vtp_Cseg + + + + + + vtp_Spar_FS + vtp_Spar_FS + + vtp_Spar_FS_P0 + vtp_Spar_FS_P1 + + + + 0.0003 + + aluminium7075 + 0.003 + + + + 0.0003 + + aluminium7075 + 0.003 + + + + + aluminium7075 + 0.003 + + 0.5 + + 90.0 + + + + vtp_Spar_RS + vtp_Spar_RS + + vtp_Spar_RS_P0 + vtp_Spar_RS_P1 + + + + 0.0003 + + aluminium7075 + 0.003 + + + + 0.0003 + + aluminium7075 + 0.003 + + + + + aluminium7075 + 0.003 + + 0.5 + + 90.0 + + + + + + + + + rudder + rudder from VAMPzero + vtp_Cseg + + + + 0 + rudderUID + + + 0.644471 + rudderUID + + + 0.5 + 0.85 + 0.85 + + + + + 1 + rudderUID + + + 0.644471 + rudderUID + + + 0.5 + 0.85 + 0.85 + + + + + + 0.697801 + 0.5 + + + 0.697801 + 0.5 + + + + 25 + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + + 25.0 + + + 0 + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + + 0.0 + + + -25 + + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + + -25.0 + + + + + + + + +
+
+ + + + Pylon + E2BPR12_Nacelle.stp + + + 1.000000 + 1.000000 + 1.000000 + + + 0.000000 + 0.000000 + 0.000000 + + + 0.0 + 0.000000 + 0.0 + + + + + MainWing_wingID + E2BPR12_Pylon.stp + + + 1.000000 + 1.000000 + 1.000000 + + + 0.000000 + 0.000000 + 0.000000 + + + -12.2479 + 0.000000 + 0.85 + + + + + + + + + + + + 0.0 + 0.0 + 0.0 + + 3160.0 + + + + + 0.0 + 0.0 + 0.0 + + 3160.0 + + + + + 1580.0 + right engine + 0 + + 12.3 + 4.215 + -1.75194260911 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 1580.0 + + 0 + + 12.3 + -4.215 + -1.75194260911 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + + 2663.0 + + + + + + + 5942.0 + + 14.811104 + + + + + + + + 4856.32744539 + wing + + 16.9844277401 + + + + + + 422.438824951 + htp + + 31.0086677265 + + + + + + 315.821401487 + vtp + + 29.7316574784 + + + + + + + + mainGear + 1611.60312188 + + + + + noseGear + 314.322994979 + + + + + + 750.529076187 + + + + + + 4782.0 + + 11.921104 + + + + + + 27758.8623406 + + + + 3255.14166023 + + + + + + 8106.99160478 + Max fuel, not mission fuel + + + + + + 693743.095795 + 1946426.01247 + 2612419.99895 + + 45045.8583098 + + 15.2517882102 + + + + 38560.2667664 + + + 36938.863897 + + + + + Max payload, not design payload + 11500.0 + + + + + + aeromap_empty + Common default aeroMap + + ISA + + + 0 + 0.3 + 0.0 + 0.0 + + + + + + 0.78 + 90.0 + + + + + actuator + cylinder + + + 32.349736 + -0.000019 + 2.015868 + + + 0.000000 + 90.000000 + 0.000000 + + + 0.090712 + 0.090712 + 0.362848 + + + + + actuator + cylinder + + + 32.491777 + -0.000018 + 2.263835 + + + 0.000000 + 90.000000 + 0.000000 + + + 0.090712 + 0.090712 + 0.362848 + + + + + +
+
+ + + + DLR_F6_wing1_airfoil1 + points from IGES slices + + 1.0;0.983323079948;0.966594674614;0.949843257328;0.933079317609;0.916306925455;0.899529384356;0.882750251916;0.865972010961;0.849196373638;0.832424614688;0.815658196309;0.798899026446;0.782151612506;0.765423015544;0.748718255365;0.732036315508;0.715368997656;0.698704283436;0.68203187496;0.665347077356;0.648648990808;0.631940223116;0.615222178159;0.598493202108;0.58175176611;0.564997549398;0.548231385134;0.531456131067;0.514677190255;0.49790054064;0.481129923122;0.464365191898;0.447604843109;0.430848468506;0.414097242848;0.397354086369;0.38062053209;0.363895334431;0.347183425716;0.330489788257;0.31381032706;0.297142276024;0.280489576009;0.263857771712;0.247251682979;0.230671684733;0.214115015039;0.197579595158;0.181072869397;0.164610134621;0.148209932864;0.131890368749;0.115674204279;0.0995879590191;0.083673903474;0.0680051351644;0.0526858285761;0.0379100606055;0.0240299924206;0.0117387944765;0.00270040912991;0.0;0.00408749155449;0.0149988847494;0.0294681988521;0.0452849618346;0.0616461090946;0.0782408668164;0.0949390658408;0.111687900322;0.128459921719;0.145238350136;0.162016516107;0.178789987207;0.195555914019;0.212312780188;0.229057827946;0.245789699237;0.262507298452;0.279212708499;0.295906504259;0.31258723603;0.329258848836;0.345918889013;0.362566248456;0.379201660346;0.395825153846;0.412437141371;0.429037081364;0.445625486221;0.462202826678;0.478769619297;0.495326430628;0.511873360651;0.52840976783;0.544934635707;0.561447301918;0.577948274691;0.594438753782;0.61091925575;0.627390097198;0.643851019846;0.660301073887;0.676739242864;0.693164697779;0.709577438633;0.725977465426;0.742365098925;0.758741797165;0.775109980484;0.791467990886;0.807810366993;0.824129031292;0.84041318183;0.856651054352;0.872833942308;0.888955746948;0.905003433442;0.920970007392;0.936859417987;0.952687928562;0.968479959113;0.984251135604;0.999999683398 + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + -0.11051575302;-0.108671047705;-0.107372417988;-0.10640958196;-0.105697252931;-0.105224041568;-0.104992164085;-0.104976883883;-0.10515054413;-0.105492986456;-0.105993125634;-0.106646450087;-0.107466702834;-0.10849877884;-0.10979617131;-0.111373098165;-0.113176491112;-0.115111352952;-0.117068172792;-0.118958743708;-0.120735662914;-0.122383696031;-0.123919543804;-0.12535082967;-0.126647759736;-0.127771242011;-0.128684746481;-0.129341361927;-0.12969672244;-0.129725437389;-0.129444519954;-0.128910608531;-0.128214092928;-0.12741824768;-0.126543447778;-0.125575150369;-0.124475996442;-0.123239508157;-0.121894254661;-0.12039379547;-0.118702004653;-0.116875058199;-0.114946878323;-0.112890624692;-0.110671971007;-0.108268405215;-0.105690720936;-0.102967149886;-0.100117508837;-0.0971062300771;-0.0938636737111;-0.090318766803;-0.0864197907845;-0.0821115611305;-0.0773411220262;-0.0720263652972;-0.0660282527688;-0.0591892667195;-0.0512491271528;-0.0418401385839;-0.0304543800964;-0.0164045092076;0.0;0.0161325732663;0.0287165903724;0.0371298579852;0.0426872025029;0.0463824327732;0.0488471901931;0.0504810262194;0.0514770262849;0.0519516248631;0.0520921419015;0.0519284004556;0.0514933604377;0.0508288507762;0.0499645112307;0.0488957469095;0.0476364049749;0.0462009532955;0.044628563011;0.0429379761142;0.04112301887;0.0392261784055;0.0372307998001;0.0351310634132;0.0329385960288;0.0306579675437;0.0282947726449;0.0258487488862;0.0233253743115;0.020730464396;0.0180690222809;0.0153458553145;0.0125634004975;0.00971911251803;0.00680874641268;0.00383018178262;0.000787109538191;-0.00231253028103;-0.0054643968979;-0.00866661986237;-0.0119192949881;-0.0152265505959;-0.0185924858456;-0.0220196543807;-0.0255075229771;-0.029054550284;-0.0326584576017;-0.0363116548188;-0.0400028525821;-0.0437388120062;-0.0475424075702;-0.0514468241406;-0.0554921535017;-0.0597197205184;-0.0641527829249;-0.0688030008317;-0.0737029425649;-0.0788609272531;-0.0842519933446;-0.089819681576;-0.0954902445595;-0.101218341586;-0.107008509227 + + + + DLR_F6_wing1_airfoil2 + points from IGES slices + + 1.0;0.983375048039;0.966701926647;0.950008333364;0.933302977722;0.916588614827;0.899867399615;0.883143155205;0.866419052567;0.849697695582;0.832981092687;0.816270765571;0.799568878621;0.782879751159;0.766209876347;0.749564301272;0.732941154543;0.716332430762;0.699726514068;0.683113967166;0.666490390394;0.649854479451;0.633207174757;0.61654948762;0.599880477618;0.583199284667;0.566505757544;0.549799830089;0.533083373693;0.51636042886;0.499636108838;0.482914534469;0.466196598918;0.449481980833;0.432770968485;0.416064681874;0.399364987665;0.382671356576;0.365985437889;0.349313256918;0.332658126404;0.31601522137;0.299382230932;0.28276294513;0.266162151134;0.249584324218;0.233032706236;0.216505359637;0.199998054887;0.183515805991;0.167071670161;0.150682173295;0.134363274207;0.118132325801;0.10201158157;0.0860358985469;0.070262198227;0.0547811107851;0.0397544596161;0.0254994077991;0.0126849873011;0.00298283761838;0.0;0.00469964097824;0.016166564972;0.0308042502215;0.0466519744779;0.0629845025899;0.0795257192254;0.0961640261173;0.112850989192;0.129563064831;0.146284157174;0.163008491373;0.179731596881;0.196450217665;0.21316281786;0.229866869198;0.246561511594;0.263245521084;0.279920296484;0.296585412479;0.313239096918;0.329885390304;0.346521877788;0.363147661478;0.379763379349;0.3963685352;0.412963162109;0.429547335689;0.446121339485;0.462685433411;0.479239716708;0.495784406759;0.512319508292;0.528844803921;0.545359646222;0.561863666585;0.578356874464;0.594838976861;0.611309685508;0.627768712135;0.644215191931;0.660647683547;0.677065033903;0.693466373464;0.709851848728;0.72622210712;0.742578093788;0.758922464596;0.775258692959;0.791586481157;0.807900999488;0.824194393776;0.840456418625;0.856675179356;0.872842812345;0.888953410419;0.904993486328;0.920955606488;0.936843749969;0.95267434343;0.968471700787;0.98424929984;0.999999924388 + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + -0.100584002735;-0.0987686819469;-0.0974625876201;-0.0964452310674;-0.0956424560318;-0.095064399218;-0.0947344010385;-0.0946424665607;-0.0947689036407;-0.0950961230871;-0.0956107227112;-0.0963009921381;-0.09717166183;-0.0982584347261;-0.0996089273472;-0.101230852095;-0.103070330849;-0.105036052927;-0.107025294996;-0.108958277172;-0.110793739049;-0.112513793716;-0.114120029019;-0.115614822004;-0.116977322722;-0.118181246625;-0.119198721322;-0.11998710649;-0.120503922484;-0.120721500118;-0.120647343861;-0.120331518165;-0.119859402912;-0.119280774284;-0.118607011855;-0.117823962043;-0.116910826883;-0.115885266452;-0.114742602271;-0.113426305079;-0.111908762398;-0.110257561712;-0.108509308576;-0.106635563507;-0.104604541202;-0.102394030699;-0.0999951192593;-0.0974340252687;-0.0947469762233;-0.0919102914575;-0.0888608587605;-0.0855308590877;-0.0818706769317;-0.0778387825202;-0.0733871481933;-0.0684410222509;-0.062885862292;-0.0565631056799;-0.0492302512464;-0.0405020853068;-0.0297917091944;-0.0162639340467;0.0;0.0158732621364;0.0278962635435;0.0359104982936;0.0412146413071;0.044791896239;0.0472480410735;0.0489345619139;0.0500470097364;0.0506844359778;0.0510198498513;0.0510666393683;0.0508498603838;0.0504057876511;0.0497725862181;0.0489451003063;0.0479441373335;0.0467806232025;0.0454895047347;0.044079964036;0.0425421573974;0.0409256294402;0.0392118600032;0.0373958303542;0.035489718716;0.033494007114;0.031412802213;0.029250068906;0.027010523478;0.0246986081213;0.0223178529611;0.0198708618781;0.0173601442386;0.0147855062871;0.0121449632146;0.00943758405077;0.00666473925928;0.0038267738189;0.000923626295034;-0.00204527985216;-0.0050827564359;-0.00819490910774;-0.0113863690894;-0.0146588990807;-0.0180098148632;-0.0214344426836;-0.0249264217005;-0.028472784493;-0.0320560222073;-0.0356777368682;-0.0393585846699;-0.0431320427297;-0.0470383837739;-0.0511201252539;-0.0554002011689;-0.05988978316;-0.0646252121407;-0.0696170076005;-0.0748397592543;-0.0802346222313;-0.0857262730175;-0.0912742262282;-0.0968983252311 + + + + DLR_F6_wing1_airfoil3 + points from IGES slices + + 1.0;0.983387420091;0.966727687257;0.950047976847;0.93335682982;0.916656256102;0.899948547882;0.883237574144;0.866526454406;0.849818006456;0.833114459218;0.816417593883;0.799729493377;0.783054386812;0.76639896096;0.749767590934;0.733158578275;0.716564116885;0.699972254283;0.683373709778;0.666764843119;0.650143946113;0.633511393492;0.616868216986;0.600213827729;0.583547485992;0.566868593177;0.550177300151;0.53347516424;0.516765898694;0.500054477224;0.483344992679;0.466638695787;0.449935372414;0.43323538756;0.416540050352;0.39985094245;0.383167927587;0.366492305158;0.349829267873;0.333182339183;0.316547596572;0.299923132315;0.283312226532;0.266719098602;0.250148104175;0.23360328743;0.217082789311;0.200581971905;0.184105546123;0.167665615312;0.1512784876;0.134960028249;0.118725985723;0.10259668313;0.0866053207244;0.0708063221963;0.0552865960926;0.0402002057948;0.0258552391327;0.0129121777017;0.00304536638795;0.0;0.00485532033752;0.0164515864255;0.0311276942148;0.0469821238298;0.0633073964838;0.0798355449688;0.0964592792287;0.113131139741;0.12982852094;0.146535484563;0.163246531301;0.179957208174;0.196664132864;0.213365786977;0.230059678792;0.246745034511;0.26342058394;0.280087597274;0.296745402916;0.313392287806;0.330032159861;0.346662673357;0.363282971766;0.37989365855;0.39649409618;0.413084328456;0.429664491643;0.44623481934;0.462795491614;0.479346581464;0.495888244622;0.512420330223;0.5289427604;0.545455160422;0.56195701929;0.578448264006;0.594928291105;0.611396657723;0.627852920994;0.644295966457;0.660724460652;0.677136909519;0.693532578193;0.70991176354;0.726275054425;0.742623643176;0.758960425445;0.775289260483;0.791610075291;0.807918120021;0.824205666443;0.840462543268;0.856677542613;0.872841150186;0.888949063873;0.904987919868;0.920949099341;0.936836982274;0.952668879323;0.968467649118;0.984247935396;1.0 + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + -0.0980696666659;-0.0962603502468;-0.0949505803391;-0.093920165589;-0.0930959992547;-0.0924939952657;-0.0921415966331;-0.0920312503239;-0.0921455678155;-0.0924665522544;-0.0929817693628;-0.0936802302562;-0.0945644947897;-0.095665704625;-0.0970324872791;-0.0986664098116;-0.100514386859;-0.102489407674;-0.104485695728;-0.106426061164;-0.108275804804;-0.110014408871;-0.111637293852;-0.113147151003;-0.114528197794;-0.115756032866;-0.11679907656;-0.117619008913;-0.11817500364;-0.118439564197;-0.118417931959;-0.118158306181;-0.117741478035;-0.117215899839;-0.11659442927;-0.115858388144;-0.114993020793;-0.114016752335;-0.112921552807;-0.111650316994;-0.110182760722;-0.108581999508;-0.106878274686;-0.105047199497;-0.103061428263;-0.100898866415;-0.0985445928201;-0.0960250382268;-0.0933795883934;-0.0905863872172;-0.0875862222282;-0.0843104883315;-0.0807106504765;-0.0767485882325;-0.0723767155447;-0.0675236435972;-0.0620800626762;-0.0558876462192;-0.0487083228185;-0.0401537974679;-0.0296193603237;-0.0162290493487;0.0;0.0158042593714;0.02768892771;0.035607484756;0.0408513628986;0.0444018091733;0.0468575571838;0.0485586199511;0.049701498001;0.0503804679811;0.0507652784695;0.0508651760918;0.0507035596773;0.0503150894719;0.0497402024289;0.048973598772;0.0480378062009;0.046942801338;0.0457224706325;0.0443836371208;0.0429156185171;0.0413696411267;0.0397267347674;0.0379821009273;0.0361480473516;0.0342240095095;0.0322137785174;0.0301223524198;0.0279542377299;0.0257135126964;0.0234033503717;0.0210259650793;0.0185834738099;0.0160763340279;0.0135036989373;0.0108648823411;0.00815990370584;0.00538770696953;0.00254718253714;-0.000363080918398;-0.00334651924846;-0.00640969269054;-0.00955736082347;-0.0127910955736;-0.0161076654886;-0.0195016053261;-0.0229655372524;-0.0264850657313;-0.0300410307815;-0.0336339920672;-0.0372841510317;-0.0410248928601;-0.0448962846406;-0.048939405724;-0.0531834803136;-0.0576341196511;-0.0623273466429;-0.067278160289;-0.0724595458429;-0.0778100570446;-0.0832575848147;-0.0887584704808;-0.0943395000571 + + + + DLR_F6_wing1_airfoil4 + points from IGES slices + + 1.0;0.983409893829;0.966775088226;0.950120042917;0.933453433524;0.916777288116;0.90009348624;0.883405930391;0.866717908495;0.850032309014;0.833352102349;0.816679080985;0.800015595636;0.783366178727;0.766736919582;0.750132278925;0.73354889713;0.716978016632;0.700410803044;0.683838519286;0.667255444774;0.65066010455;0.634053507525;0.617436601156;0.600808514808;0.584168003984;0.567515381088;0.550850569301;0.534174423893;0.517489920388;0.500801898493;0.484114496284;0.46742929115;0.450746426487;0.434066450284;0.417390658252;0.400720689232;0.38405560089;0.367397154983;0.350750944059;0.334120276534;0.317501178213;0.30089177467;0.284295456261;0.267716560798;0.251158811526;0.234625516858;0.2181161749;0.201627113619;0.185161026862;0.168729202159;0.152346578584;0.13602712727;0.119785633651;0.103641389976;0.08762392102;0.0717813985126;0.0561945713021;0.0410051787887;0.0265032551435;0.0133269810428;0.00315991901475;0.0;0.00514703616517;0.0169643102741;0.0317032925029;0.0475716575097;0.0638833857777;0.0803881594625;0.0969849644026;0.11362959794;0.130300545144;0.146982001426;0.163668968317;0.180357108004;0.19704290722;0.213724675906;0.230399884101;0.247068214278;0.263728063445;0.280380450757;0.297024556792;0.313659244603;0.330287172188;0.34690631148;0.363516380803;0.380117856444;0.396709176383;0.413290996156;0.429863597439;0.446426975112;0.462981134294;0.479526069866;0.496061863768;0.512588280418;0.529105166174;0.54561220351;0.562109080022;0.578595329664;0.595070404448;0.611533597623;0.627984289502;0.644421389229;0.660843088958;0.677248144191;0.693635771358;0.71000612922;0.726359842587;0.74269839666;0.759024213853;0.775341043019;0.791648725395;0.807943051203;0.824216896599;0.840460817754;0.856664254376;0.872819867521;0.888921793207;0.90495776572;0.920921373089;0.936815432075;0.952654712747;0.968460540544;0.984245898173;0.999999918058 + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + -0.0934745276818;-0.0916718212961;-0.0903418032117;-0.0892889543836;-0.0884406996914;-0.0878078298891;-0.0874225789625;-0.087280875412;-0.087364615148;-0.0876610868975;-0.0881762878003;-0.0888896913527;-0.0897977791644;-0.0909349208378;-0.0923328023705;-0.0939979637688;-0.0958675093261;-0.0978461147377;-0.0998532001611;-0.101815734672;-0.103683943549;-0.105443148906;-0.107095276384;-0.108639865059;-0.110056229663;-0.111320647951;-0.112412798273;-0.113293563506;-0.113920917578;-0.114268674859;-0.11434473252;-0.114184991458;-0.113864633577;-0.11343609672;-0.112910064092;-0.112264093792;-0.111481730815;-0.11059195707;-0.109588242792;-0.108411441127;-0.107031663684;-0.10551336819;-0.103892460664;-0.102143160062;-0.100235639448;-0.0981526090341;-0.0958838209314;-0.0934465700512;-0.0908757176485;-0.0881615330955;-0.0852476299634;-0.0820693149404;-0.0785812535426;-0.074746833002;-0.0705220452729;-0.0658405018656;-0.060598438436;-0.0546412199409;-0.0477376773875;-0.039498094003;-0.0292935434502;-0.016161891961;0.0;0.0156705106113;0.027310933117;0.035064778916;0.040194023396;0.0436997586871;0.0461571570887;0.0478899105018;0.0490892206454;0.0498418130217;0.0503165037837;0.0505051294468;0.0504474370655;0.0501617867986;0.0496974873229;0.0490377814729;0.0482221807197;0.0472483906834;0.0461539254959;0.0449405110631;0.0436042039201;0.0421863899642;0.0406696974637;0.0390549970536;0.0373537606324;0.0355570104153;0.0336747587064;0.0317128541253;0.0296744616867;0.0275627259199;0.0253801921523;0.02312877066;0.0208097469099;0.0184237815606;0.0159708899762;0.0134504729549;0.010861332093;0.00820182854786;0.00547003155812;0.00266386184217;-0.000220782827896;-0.00319170231862;-0.0062535519673;-0.00940704876757;-0.0126493452304;-0.0159743878809;-0.0193733423331;-0.0228325498582;-0.0263340907364;-0.0298780673955;-0.0334828963292;-0.0371792495013;-0.0410045181303;-0.0449978859186;-0.0491802429882;-0.0535646642303;-0.0581846434906;-0.0630485798376;-0.0681352758665;-0.0733903373666;-0.0787453529017;-0.0841605139607;-0.0896659086695 + + + + DLR_F6_wing1_airfoil5 + points from IGES slices + + 1.0;0.983442195185;0.966843109454;0.950224051392;0.933592917547;0.916951874524;0.900302780979;0.883649156266;0.86699435477;0.850341736373;0.833694655458;0.817055883517;0.800427933588;0.783815419324;0.767223806719;0.750655762786;0.73410912092;0.717576155043;0.701045201795;0.684508128172;0.66796190423;0.651404940761;0.634836649373;0.618257447989;0.601667342108;0.585065655354;0.568451551881;0.551824520284;0.535185748343;0.518537661113;0.501884289354;0.485229487858;0.468575439723;0.451923074279;0.435272974419;0.41862581102;0.401983508727;0.385346249009;0.368714477282;0.352092235304;0.33548413123;0.318887228597;0.3022999327;0.285725179999;0.269166368869;0.252627277117;0.236111973994;0.21961949168;0.203145892896;0.186694905959;0.170275928642;0.153900371348;0.137580617803;0.121330459473;0.10516643732;0.0891132583053;0.073211658945;0.0575317843537;0.042199748364;0.0274767199991;0.0139638103341;0.00334024589349;0.0;0.00560406452774;0.0177290291596;0.0325577646061;0.0484447641484;0.0647361209099;0.0812056944327;0.0977633287787;0.114368034478;0.131000180136;0.147644236606;0.164295766203;0.180950314746;0.197604736812;0.214256684333;0.230904606593;0.247547073855;0.264183118297;0.280813124848;0.297436246664;0.314051735882;0.330661269694;0.347263082924;0.363857093088;0.38044354764;0.397020945355;0.41358990762;0.430150560912;0.446702745759;0.46324636318;0.479781429672;0.496307681283;0.512825041027;0.529333085483;0.54583164968;0.562320227712;0.578798401655;0.595265588616;0.611720771283;0.6281626134;0.644589855699;0.661001909788;0.677397516399;0.693775086323;0.710133772716;0.726474675376;0.742799213042;0.75911007472;0.775410114387;0.791698820635;0.807973603441;0.824227743039;0.840452518032;0.856639696431;0.872783080875;0.888877205368;0.904910500036;0.920877509881;0.936780995394;0.952632042541;0.968448605523;0.984241583337;0.999999664562 + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + -0.0866411874272;-0.0848489236679;-0.0834874397738;-0.0824010208501;-0.0815163103723;-0.0808399456211;-0.0804081264468;-0.0802181198512;-0.0802594062668;-0.0805284333463;-0.08103575915;-0.0817650131853;-0.0827101080704;-0.083896663599;-0.0853443881506;-0.0870423497333;-0.0889378130348;-0.0909493050217;-0.092977365465;-0.0949549891735;-0.0968546537033;-0.0986576019999;-0.100353990872;-0.101939916035;-0.103407563427;-0.104738132;-0.105901619267;-0.10686321662;-0.107591024421;-0.108062656282;-0.108275846619;-0.108266921758;-0.108097255926;-0.107808366495;-0.107410135151;-0.106901891016;-0.106256865008;-0.105491026193;-0.104612969493;-0.10357118587;-0.102325488705;-0.100936883794;-0.0994380461315;-0.0978066058287;-0.096020473443;-0.0940604794959;-0.09190946164;-0.0895892948569;-0.0871389064957;-0.0845411397081;-0.0817483457471;-0.0787116165973;-0.0753885385501;-0.0717406571695;-0.0677284017249;-0.0632942802774;-0.0583449419758;-0.0527348230603;-0.0462381075134;-0.0384699925239;-0.0287708412677;-0.0160530800331;0.0;0.0154548009376;0.0267396079073;0.0342505901323;0.0392155400661;0.0426586170694;0.0451251119718;0.0469148461958;0.0482008289595;0.0490645442941;0.049662086525;0.0499852896523;0.0500697211422;0.0499463678023;0.0496357188688;0.0491562454486;0.0485139854324;0.0477226587999;0.0468130543951;0.0457845838262;0.0446398811092;0.0434122591246;0.0420851989069;0.0406616369166;0.0391523786689;0.0375477514405;0.0358581208273;0.0340884799122;0.032241501204;0.0303197582301;0.0283252581218;0.0262593921234;0.0241230125785;0.0219164439273;0.0196395596932;0.0172917384903;0.0148719795025;0.0123783635822;0.00980709092759;0.00715190918713;0.00440753383163;0.00157372840452;-0.00135369732445;-0.00438015986025;-0.00750720991803;-0.0107262250817;-0.0140269387373;-0.0173944596204;-0.0208143913755;-0.024287624839;-0.0278260818209;-0.0314581920987;-0.0352182308758;-0.0391368770166;-0.0432322606905;-0.0475172165398;-0.0520242545924;-0.056761122925;-0.0617068978812;-0.0668187148353;-0.0720360244103;-0.0773246503844;-0.0827159369997 + + + + DLR_F6_wing1_airfoil6 + points from IGES slices + + 1.0;0.983477135475;0.966917937701;0.950339169017;0.933747539111;0.917145482471;0.900535006065;0.883919363794;0.86730172643;0.850685995093;0.83407569682;0.817474821797;0.800886813934;0.78431584155;0.767766702368;0.751240483;0.734735105225;0.718243497151;0.70175252442;0.685255483282;0.668751008049;0.652236569228;0.635711080206;0.619174261908;0.602626749676;0.586068098177;0.569497030789;0.552912918107;0.536316846745;0.519710538657;0.503097069612;0.486480245724;0.469862519293;0.453245250072;0.436629334663;0.420015319343;0.40340475387;0.386798261711;0.370196840413;0.353603577619;0.33702146003;0.320449442598;0.303887163117;0.287336800753;0.270801431272;0.254284094817;0.237787689021;0.221312884853;0.204858019736;0.188424940318;0.172019905016;0.155652562713;0.139334640519;0.12307783585;0.106894232081;0.0908034119956;0.0748402481513;0.0590640886166;0.0435815758442;0.0286195328679;0.0147329042099;0.00356740973635;0.0;0.00617361827112;0.0186270816216;0.0335541035965;0.0494573315323;0.0657244679309;0.0821541509408;0.0986666421714;0.115226291217;0.1318133906;0.1484148594;0.165025424873;0.181641156211;0.198258704508;0.214875932165;0.2314913488;0.248103143393;0.264710852795;0.281313859479;0.297911652796;0.314503739911;0.331090839294;0.347671876208;0.364246203435;0.380813642843;0.397374016297;0.41392705066;0.430472656866;0.447010745848;0.46354103853;0.480063540851;0.496577890605;0.513083903723;0.529581217998;0.546069293095;0.56254776087;0.57901599192;0.595473350903;0.611918840272;0.628350833077;0.644767963629;0.661169418453;0.677553748731;0.693919511585;0.710265519459;0.726592585828;0.742901809181;0.759195903082;0.77547740296;0.79174576254;0.807998808597;0.824231108065;0.840435684059;0.85660555969;0.872735385024;0.888820546409;0.904851798728;0.920824160187;0.936738895533;0.952603706059;0.968433364953;0.984235484444;0.999999275591 + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + -0.0786879446544;-0.076908137936;-0.0755141263218;-0.074382166565;-0.0734555113428;-0.0727369098453;-0.0722492343847;-0.0719976686392;-0.0719904067395;-0.0722340693054;-0.0727282466305;-0.073472665577;-0.0744644047593;-0.075707709687;-0.0772143787206;-0.0789551801901;-0.080883573809;-0.0829272137175;-0.0849761144954;-0.0869748351304;-0.0889116782042;-0.0907617347476;-0.0925098574945;-0.0941476860568;-0.0956732906573;-0.0970737447582;-0.0983168002994;-0.0993725665177;-0.100217298248;-0.100831567088;-0.101202618694;-0.101361935156;-0.101362861449;-0.101237491252;-0.100996595689;-0.100644598405;-0.100157801735;-0.0995428084863;-0.0988075812167;-0.0979101695401;-0.0968239603455;-0.0955926200359;-0.0942363489244;-0.0927421551576;-0.0910904025112;-0.0892669412654;-0.0872633397788;-0.0850888312926;-0.0827682060206;-0.0802980438039;-0.0776484420039;-0.0747753126356;-0.0716348646028;-0.0681952179874;-0.0644242791114;-0.0602720756542;-0.055654582151;-0.0504374267364;-0.0444086664426;-0.0371924638154;-0.0281022457196;-0.0159110004843;0.0;0.015171474265;0.0260531905596;0.0332847482749;0.0380740750707;0.041454332053;0.0439377355096;0.0457987116226;0.0471815602184;0.0481857924809;0.048918015236;0.0493999310541;0.0496520846394;0.0497120027345;0.0495880397901;0.0493123191728;0.0488707446032;0.0482944834661;0.0475959457128;0.0467821438566;0.0458596807041;0.0448517610828;0.0437483382763;0.0425475300097;0.0412559450273;0.0398767600391;0.0384120354534;0.0368654230023;0.0352399450136;0.033537964722;0.0317611862693;0.0299106962683;0.0279869281767;0.0259897394879;0.0239183404777;0.0217714070221;0.0195471637261;0.0172440311415;0.0148575559363;0.0123801674466;0.00980583289207;0.00713352503759;0.00435858866694;0.00147544227092;-0.0015170601412;-0.00461148447416;-0.00779877561995;-0.0110624028109;-0.0143882282028;-0.017777730302;-0.0212405223673;-0.0247989601245;-0.0284811648795;-0.0323127581348;-0.0363095343738;-0.040482525984;-0.0448578829296;-0.0494436271459;-0.0542257276686;-0.0591710042069;-0.0642275487251;-0.0693697040941;-0.0746280617347 + + + + DLR_F6_wing1_airfoil7 + points from IGES slices + + 1.0;0.983517654353;0.967001748786;0.950467337854;0.933920039604;0.917361711666;0.900794231022;0.884220551823;0.867644118427;0.851068665448;0.834499120769;0.817940205871;0.801396442281;0.784871977418;0.768370242742;0.751891831662;0.735432422605;0.718984230288;0.702538198759;0.686087348997;0.669628333396;0.65315956523;0.636681063849;0.620192513197;0.603692752254;0.587180878005;0.570657096854;0.554121312049;0.537573910597;0.521015782612;0.504448792177;0.487875803139;0.471300156657;0.454723523308;0.438146793207;0.421570946771;0.404997074069;0.388425955564;0.371858868377;0.355297979745;0.338745760061;0.32220258988;0.305668475654;0.289145087959;0.2726355293;0.256142702225;0.23966867722;0.223214131545;0.20677957476;0.190365677677;0.173975652449;0.15761854858;0.141304157338;0.125040212402;0.108836640493;0.0927092508278;0.0766849081142;0.060810414347;0.0451709948246;0.0299583726051;0.0156603823786;0.0038519925598;0.0;0.00688015776968;0.0196686223937;0.0347079688685;0.0506231628274;0.0668610299696;0.0832458435091;0.0997079100113;0.116215894844;0.132751434545;0.149303757431;0.165867251907;0.182437783452;0.199012294715;0.215588779712;0.232165464662;0.248741059543;0.26531459039;0.281885270288;0.29845265418;0.315016193806;0.331575798866;0.348131075902;0.3646811348;0.381225775606;0.397764811266;0.414297945076;0.430824777129;0.447345307424;0.463859045755;0.480365798616;0.496865372506;0.513357361067;0.52984128054;0.546316634268;0.562782738539;0.579239006393;0.595684541264;0.612118265985;0.628539193688;0.6449459505;0.661335982178;0.67770740529;0.694059342621;0.710391297512;0.726703573119;0.742997440113;0.759274478771;0.775536366121;0.79178288931;0.808011997204;0.824220245443;0.840402602942;0.856554251469;0.872671062954;0.888747812808;0.904777522013;0.920756346303;0.936684582384;0.952566758231;0.968412710263;0.984227076109;0.999998619677 + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + -0.0693759277072;-0.0676089524296;-0.0661817947269;-0.0649992767815;-0.064023717053;-0.0632529805553;-0.0626992644456;-0.0623795776629;-0.0623143670548;-0.0625205706089;-0.0630057414038;-0.0637710275589;-0.0648141586356;-0.0661289167283;-0.0677034658858;-0.0695055426598;-0.0714748707761;-0.0735363838589;-0.075614622076;-0.0776540951343;-0.0796253840839;-0.0815155500049;-0.0833189361512;-0.0850279571938;-0.0866248688814;-0.0880949004627;-0.089426228887;-0.0905959111143;-0.0915775210455;-0.0923498184697;-0.0929054373618;-0.0932597612331;-0.0934544706919;-0.0935240157737;-0.0934753432466;-0.093298887598;-0.0929885276738;-0.0925527002174;-0.0919873868107;-0.0912614527743;-0.0903592049917;-0.0893044443674;-0.0881162696759;-0.0867860055197;-0.0852950691331;-0.0836291864235;-0.0817867126129;-0.0797773099657;-0.0776104665929;-0.0752922262473;-0.0728112044854;-0.070121895784;-0.0671849544743;-0.0639803723165;-0.060483587293;-0.0566514933213;-0.0524094884337;-0.0476389035136;-0.04214961513;-0.0355779919035;-0.0272261964752;-0.0157169369397;0.0;0.0147945970657;0.0252331061551;0.0321371035299;0.0367429333002;0.0400653976614;0.0425736453359;0.0445157539896;0.0460203517084;0.0471867508298;0.0480850640456;0.048747154897;0.0492013780659;0.0494726116252;0.0495732139848;0.0495156209561;0.0493173316864;0.0489876214334;0.0485375908357;0.0479772569135;0.0473154950177;0.0465602516833;0.0457137328477;0.0447734810193;0.0437402250604;0.0426223372133;0.0414193530701;0.0401337301226;0.0387678162106;0.0373233206132;0.0358014108002;0.034202751133;0.0325273545117;0.0307746275263;0.0289432414542;0.0270311193601;0.0250354489962;0.0229528634052;0.0207796344239;0.018511982288;0.0161432762848;0.0136620739199;0.0110615122766;0.00834010782971;0.0055011049844;0.00255152791003;-0.000498496721329;-0.00363651374801;-0.00685231264649;-0.0101450355522;-0.0135223580956;-0.0169988252738;-0.020593510061;-0.0243233504449;-0.0282014336981;-0.0322418339597;-0.0364651335294;-0.0408772536078;-0.0454687512346;-0.050216992975;-0.0550848455481;-0.0600545131014;-0.0651580913803 + + + + DLR_F6_wing1_airfoil8 + points from IGES slices + + 1.0;0.983560679748;0.967094421783;0.950609416864;0.934110734789;0.917600733932;0.901081363128;0.884554768922;0.868024086397;0.851493615702;0.834969175101;0.818456914724;0.801962645773;0.785490569544;0.769042627812;0.752617210668;0.73620977789;0.719812696537;0.70341657548;0.687015829469;0.670608184861;0.654192243578;0.637767144179;0.621331919307;0.604885707519;0.58842838878;0.57195976538;0.555479498391;0.538987277131;0.522483419343;0.505969760888;0.48944866014;0.47292282146;0.456394186625;0.439863715931;0.423332489709;0.406801376463;0.390271548319;0.373744205647;0.357221057208;0.340703945924;0.324194382849;0.307692678666;0.29120034443;0.274719759697;0.258254045428;0.24180577889;0.225375080119;0.208962266859;0.192568624213;0.176196913031;0.15985310692;0.143543885584;0.127275123776;0.111053225822;0.0948892916122;0.0788033673257;0.0628284701958;0.0470293566492;0.0315567507819;0.0168102769233;0.00423723520802;0.0;0.00777705549244;0.0209139674472;0.0360725000554;0.0519996154015;0.0682021167902;0.0845346111803;0.100938160409;0.11738588325;0.133862323177;0.150357128763;0.166864707697;0.183381437687;0.199904529638;0.216431928798;0.232961968772;0.249493089078;0.266024421215;0.282555209655;0.299084607078;0.315612168641;0.332137357709;0.34865975062;0.365179015509;0.381694615739;0.39820633948;0.414713756011;0.431216427551;0.447714036354;0.464206257615;0.480692660611;0.497172920539;0.513646613736;0.530113408337;0.5465724429;0.563023293764;0.579464880597;0.59589601009;0.612315721946;0.628723041748;0.645116465503;0.661493401824;0.677851591192;0.694189529612;0.710506666328;0.726802909547;0.743079318418;0.759337524032;0.775578274855;0.791801253142;0.8080053715;0.824188801129;0.840348639959;0.856480898524;0.872583091353;0.888651885655;0.904681893886;0.920670206915;0.936615313688;0.952519043004;0.968385497303;0.984215319136;0.999997846395 + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + -0.0582316253427;-0.0564772070335;-0.0550101784661;-0.0537737903874;-0.0527393680782;-0.051901523996;-0.0512731727088;-0.0508784134081;-0.0507462879849;-0.0509050828033;-0.051375648995;-0.0521659372454;-0.0532697974239;-0.054667197475;-0.0563249930666;-0.0581935241893;-0.0602140574488;-0.0623171126099;-0.0644276594914;-0.0665019693234;-0.068520991529;-0.0704715926492;-0.0723431458796;-0.0741243818651;-0.0758007478855;-0.0773631846786;-0.0788028942387;-0.0801018215903;-0.0812379858417;-0.0821920610372;-0.0829552350494;-0.0835375698027;-0.0839700489629;-0.0842720832178;-0.0844442303863;-0.0844814630368;-0.0843858924082;-0.0841593755433;-0.0837921470797;-0.0832718290853;-0.0825875405599;-0.0817392461983;-0.0807481643043;-0.0796129038608;-0.078317944791;-0.076846291269;-0.0751918284691;-0.0733703165423;-0.0713935191138;-0.0692641405465;-0.0669723731121;-0.0644898598363;-0.0617912517309;-0.0588604638389;-0.0556779866187;-0.0522099837605;-0.0483977430532;-0.0441470213361;-0.0392864269675;-0.0334779499001;-0.0260385655272;-0.0154379575426;0.0;0.0142823331765;0.0242245523819;0.0307497491456;0.0351562506344;0.0384275764117;0.0409788708839;0.0430277116905;0.0446851824762;0.0460303028867;0.0471280764837;0.0480132433848;0.0487083987885;0.0492307221067;0.0495918992937;0.0498065889844;0.0498919352857;0.0498563266651;0.049707247782;0.0494514983791;0.0490947484388;0.0486417076479;0.0480962313122;0.0474615251255;0.0467401592915;0.0459340897071;0.0450435140804;0.0440694562562;0.0430130036285;0.0418751023713;0.0406564374014;0.0393573194028;0.0379775224236;0.0365161285339;0.0349714007277;0.0333406275812;0.0316197137147;0.0298023748387;0.0278840707303;0.0258623582839;0.0237310379417;0.0214766090728;0.0190902313056;0.0165690590573;0.0139155919219;0.0111370815458;0.00824484671131;0.00525211973148;0.00216577095887;-0.0010128015286;-0.00428604083677;-0.00765978641225;-0.0111451805123;-0.014755794378;-0.018498328898;-0.0223815750165;-0.0264216953617;-0.030624056293;-0.0349875986606;-0.0394995844213;-0.0441409488765;-0.0489056478104;-0.053824707255 + + + + DLR_F6_wing1_airfoil9 + points from IGES slices + + 1.0;0.983594334803;0.967165716797;0.950718181807;0.934256468528;0.917783343084;0.901300407715;0.884809514062;0.868313549176;0.851817009904;0.83532635054;0.818849416004;0.802392773957;0.785960694514;0.769554107274;0.753169316511;0.73680181782;0.720444355787;0.704086198444;0.687723317523;0.671355010156;0.654979674105;0.638595344363;0.622200630308;0.605795418574;0.589379951008;0.572953524743;0.556515686313;0.540066080508;0.523605402636;0.507134574741;0.490655448465;0.474170207989;0.457680130571;0.441186584157;0.424690732637;0.408193732343;0.391696618683;0.375200653798;0.358707220749;0.342217831084;0.325734434693;0.309258074544;0.292789786044;0.276331881857;0.259887233919;0.243458502547;0.227045801108;0.210649477258;0.194271140791;0.1779136712;0.161580197384;0.145275148168;0.129003080861;0.112769527716;0.0965823412082;0.0804548833947;0.064411384339;0.0485029871602;0.0328474260855;0.0177792588902;0.00459943442225;0.0;0.00853801388632;0.0219209824219;0.0371704896507;0.053102134389;0.0692755431653;0.0855669280158;0.101924329587;0.118324228241;0.134753307268;0.151201991031;0.167664921104;0.184138167471;0.200619364564;0.217106683413;0.233597917164;0.250092272254;0.26658823714;0.283085237434;0.299582472017;0.316079358945;0.332575323831;0.349069905653;0.365562635833;0.382053181831;0.398541188433;0.415026202176;0.431507633558;0.447985142482;0.464458509772;0.480927025004;0.497390582368;0.513848494113;0.530300291659;0.546745400618;0.563182891392;0.579611970419;0.596031360444;0.612439912692;0.628836357466;0.645219190779;0.661585880793;0.67793422821;0.694262169772;0.710568662513;0.726853706433;0.743117989285;0.759362894132;0.775588549455;0.791794826774;0.807981030777;0.824146949849;0.8402904905;0.856409234257;0.872502039905;0.888566579665;0.904598379364;0.920594771125;0.936554137596;0.952475919504;0.968359754079;0.984203457139;0.999996886218 + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + -0.0491122455356;-0.0473713086601;-0.0458712137805;-0.044591290521;-0.0435090319792;-0.0426180065317;-0.0419309942903;-0.041475633852;-0.0412894946637;-0.0414112118112;-0.0418700790335;-0.0426817181464;-0.0438350192953;-0.0452979150567;-0.0470241899473;-0.0489473813408;-0.0510116527712;-0.0531546756873;-0.0552931337381;-0.0573948536917;-0.0594542277168;-0.0614562461733;-0.0633826873883;-0.0652187231068;-0.0669589042098;-0.0685990663913;-0.0701260743267;-0.0715241777189;-0.0727780192723;-0.0738743427387;-0.0748065199942;-0.075580242005;-0.0762070796467;-0.0766933285036;-0.0770423442053;-0.0772559103746;-0.0773350321888;-0.0772745401646;-0.0770692345879;-0.0767162888696;-0.0762074953215;-0.0755310412207;-0.0747016641292;-0.0737248509549;-0.0725878064706;-0.0712719764637;-0.0697706345595;-0.0681023198555;-0.0662814600471;-0.0643041477909;-0.0621612760292;-0.0598428912394;-0.0573327443145;-0.0546168081185;-0.0516797707023;-0.0484971601549;-0.0450249073869;-0.041184192893;-0.0368201815783;-0.0316277530031;-0.0249422128853;-0.0151561844509;0.0;0.0138173714048;0.0233812027489;0.0296067646589;0.0338705529935;0.0371151444367;0.0397086303859;0.0418494464466;0.0436370900573;0.0451336479221;0.046397586595;0.0474597642637;0.0483485148362;0.0490748272433;0.0496495921656;0.0500932154582;0.0504034449195;0.0506049262879;0.0507000704773;0.050689996031;0.0505802956648;0.0503759877076;0.0500774500456;0.0496912352257;0.0492227696937;0.0486694309194;0.0480317857321;0.047310159114;0.0465048684894;0.0456163597641;0.0446447840926;0.0435900129935;0.0424512982523;0.0412272416898;0.0399155835465;0.0385130135394;0.0370148005331;0.0354139611904;0.0337050539499;0.0318843226228;0.0299448821223;0.0278740959337;0.0256627587489;0.0233053836602;0.0208040641571;0.0181666149265;0.0154037377057;0.0125290893024;0.00954843626001;0.0064631616421;0.00327513976424;-1.45259458333e-05;-0.00341255430489;-0.00692594376551;-0.0105565913165;-0.0143101576931;-0.0182012519763;-0.022235134342;-0.0264131727383;-0.0307325330187;-0.0351889375113;-0.0397863011171;-0.0445534338807 + + + + DLR_F6_wing1_airfoil10 + points from IGES slices + + 0.999867956093;0.983508073081;0.967133257476;0.950740189998;0.934331061205;0.917909800726;0.901479368326;0.885039998108;0.868593604724;0.852145054224;0.835702749326;0.819276263276;0.802873890101;0.786499450738;0.770151557275;0.753826238279;0.737516997319;0.721214520338;0.704911274153;0.6886048341;0.672294063093;0.655976912709;0.639651468298;0.623316459003;0.606971876462;0.590617603622;0.574253247521;0.557878431917;0.541493282223;0.525097923855;0.508692866826;0.49227876329;0.475856357366;0.459426552034;0.442990501099;0.426549475421;0.410104620445;0.393657332443;0.377208781942;0.360760348495;0.344313328042;0.327869493097;0.311430248293;0.294997508281;0.278573196069;0.262159594187;0.245758500231;0.229370666685;0.212997640316;0.196641319052;0.180303115888;0.163983415426;0.147685018571;0.131411119192;0.115163113563;0.0989431755198;0.0827589552992;0.0666261546965;0.0505723898089;0.0346741379121;0.0191679961355;0.00508153746764;0.0;0.00975316443017;0.0234613586504;0.0388450882928;0.0547750447735;0.0709017837139;0.0871302666105;0.103415653884;0.119741867498;0.136097795799;0.15247542067;0.16886886439;0.185274556847;0.201689555002;0.218112220114;0.234541507069;0.250976027957;0.267414888158;0.283856942229;0.300301412603;0.316747797627;0.33319546187;0.349643895317;0.366092579592;0.382541004679;0.39898891975;0.41543582315;0.431881313556;0.448324897673;0.46476618254;0.481204783553;0.497640199058;0.514071659851;0.53049878133;0.546920677238;0.563336319183;0.579744946321;0.596145655674;0.612537828535;0.628919274344;0.645287710571;0.661640712552;0.677975981035;0.694291342184;0.710585658913;0.726858036605;0.743108458539;0.75933707521;0.775544254499;0.791730506422;0.807896223941;0.824041273282;0.840165529031;0.856268865774;0.872351400565;0.888412121733;0.904450134659;0.920463265507;0.93644833713;0.952400993491;0.968315766552;0.984185123132;1.0 + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + -0.0343231300424;-0.0326180555131;-0.031065726512;-0.0297168687015;-0.0285729870457;-0.0276173262742;-0.0268457644565;-0.0262940444979;-0.0260238532179;-0.0260912589024;-0.0265373470801;-0.0273800937151;-0.0286065561133;-0.0301655989278;-0.0319828769161;-0.033993258562;-0.0361304669045;-0.0383192202786;-0.0405019287122;-0.0426614523328;-0.044787381803;-0.0468635554771;-0.0488730843099;-0.0508034687357;-0.0526509965089;-0.0544113199545;-0.0560746484428;-0.0576321361274;-0.0590760993289;-0.0603997239026;-0.0615969398254;-0.0626622372554;-0.0635911765474;-0.0643798364331;-0.0650249227126;-0.0655245458193;-0.0658790987163;-0.0660895763522;-0.0661544821235;-0.0660702041156;-0.0658318929988;-0.0654352429024;-0.0648778291617;-0.064154593424;-0.0632591981168;-0.0621869778505;-0.0609382001742;-0.0595234332827;-0.0579481201305;-0.0562082140356;-0.054304969135;-0.052249664301;-0.0500332112205;-0.0476457105721;-0.045086953333;-0.0423509112844;-0.0394104449013;-0.0362027553624;-0.0326228713992;-0.0284106515496;-0.0229492694217;-0.0145927370617;0.0;0.0129979346203;0.0220205809571;0.0277875043071;0.0318727553247;0.0351065727181;0.0377843308388;0.0400947438649;0.0420970990339;0.0438406839307;0.0453707979846;0.0467195303815;0.0479101829873;0.0489590930268;0.0498775059288;0.0506734314483;0.0513534830679;0.0519245167367;0.0523930121626;0.05276413639;0.0530418357703;0.0532290784277;0.053327996395;0.0533400361105;0.0532662008835;0.0531072348356;0.0528637399523;0.0525366192125;0.0521265331282;0.0516333980903;0.0510562860374;0.0503934746214;0.0496424137636;0.0487997590987;0.0478606612968;0.046818724259;0.045670620342;0.0444157559207;0.0430528266927;0.0415676525488;0.0399445985807;0.0381731216765;0.0362452706075;0.0341569401652;0.0319099613896;0.0295097187091;0.0269639794122;0.024281823451;0.0214727153796;0.0185453171042;0.0155065514613;0.0123605236594;0.00911002624357;0.00575893867768;0.00230916725001;-0.00123983149883;-0.00489136849057;-0.00865174785398;-0.012530542835;-0.0165408633459;-0.0206994981011;-0.0250273410232;-0.0295494664918 + + + + DLR_F6_wing1_airfoil11 + points from IGES slices + + 0.999869149738;0.983508842044;0.96713392576;0.950740774158;0.934331590392;0.917910509606;0.901480124742;0.885040944218;0.868594908503;0.852146805215;0.83570516733;0.8192793074;0.802877749927;0.786504130113;0.770157134539;0.753832645007;0.737522891169;0.721219085842;0.704914763621;0.688607204462;0.672294739053;0.655975672664;0.639648988453;0.623313627215;0.606968834793;0.590614221398;0.574249388769;0.557874336906;0.541489074283;0.525093982213;0.50868945896;0.492276004469;0.47585440679;0.459425572605;0.442990273018;0.426549931602;0.410105573672;0.393658893959;0.377210799144;0.360762695856;0.344316016143;0.32787218358;0.311432740373;0.294999898147;0.278575199108;0.26216071083;0.24575825515;0.229369628483;0.212996000195;0.196638412546;0.180298272163;0.163977011095;0.147676434232;0.131399007409;0.11514795909;0.0989268990549;0.0827404962901;0.0666043931725;0.050551170926;0.034652194717;0.0191454472939;0.00506096984973;0.0;0.00975752146658;0.0234659971842;0.0388484275378;0.0547768751371;0.0709021234959;0.0871293862504;0.103413532686;0.119738547585;0.136093423663;0.152470153311;0.168862788019;0.185267573956;0.201681799551;0.218103778544;0.234532231414;0.250966243005;0.267404381269;0.283845892049;0.300289860191;0.316735760327;0.333182829829;0.349630797539;0.366079027932;0.38252713122;0.398974717614;0.415421270223;0.431866526361;0.448309842031;0.464750835918;0.481189236865;0.497624409348;0.514055827999;0.530482857294;0.546904582078;0.563320231247;0.579728771015;0.596129676016;0.61252179383;0.628903429728;0.645272016188;0.661625214481;0.677960829929;0.694276523802;0.710571279261;0.726844054044;0.743094975258;0.759324051376;0.775531917922;0.791718837581;0.807885073034;0.824030870019;0.840155855694;0.856260157165;0.872343384642;0.88840501276;0.9044438891;0.920457802036;0.936443929841;0.952397595053;0.96831337453;0.984183904662;1.0 + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + -0.033981750244;-0.0322825864689;-0.0307361858408;-0.0293932123744;-0.0282552506443;-0.0273055566976;-0.0265400462303;-0.0259945458777;-0.0257308032023;-0.0258049138349;-0.0262574327135;-0.0271058748937;-0.0283371909389;-0.0299008185183;-0.0317225622627;-0.0337361157806;-0.035866105864;-0.0380418621865;-0.0402138053619;-0.042360963081;-0.0444698368031;-0.0465278177217;-0.048523551132;-0.0504468516946;-0.0522885170142;-0.0540402598512;-0.055694564069;-0.0572445236344;-0.0586837494076;-0.0600062420371;-0.0612062563813;-0.0622781574561;-0.0632163356985;-0.0640150459667;-0.0646684922772;-0.0651758442113;-0.0655398557085;-0.0657609673992;-0.0658375523405;-0.0657663651207;-0.0655430587521;-0.0651626591959;-0.0646200737825;-0.0639106250514;-0.0630305168028;-0.0619773679381;-0.0607507208797;-0.0593525415168;-0.0577877954143;-0.0560625751338;-0.0541802023503;-0.0521408380633;-0.0499416605439;-0.0475769161768;-0.0450380889334;-0.0423139766349;-0.0393906146891;-0.0362038151198;-0.0326225412446;-0.0284147079829;-0.0229561116258;-0.014597718572;0.0;0.0129953833126;0.0220169334915;0.0277859708657;0.0318758084084;0.0351147633566;0.0377977445082;0.0401136551713;0.0421223787029;0.0438720031248;0.0454075659414;0.0467617839549;0.0479581546253;0.0490130829586;0.0499376440289;0.050739675972;0.0514257289271;0.0520026580855;0.0524769712183;0.0528539219947;0.0531374676141;0.0533306077523;0.0534354523506;0.0534534419313;0.0533855933337;0.0532326183451;0.0529951101218;0.0526740007665;0.05226991733;0.0517827666019;0.0512116249535;0.0505547637579;0.0498096663381;0.0489729686509;0.0480397559735;0.0470036984815;0.0458614660266;0.0446124908734;0.0432555104467;0.0417762466288;0.0401591248322;0.0383935784027;0.0364716505731;0.0343892231447;0.032148126428;0.0297536903553;0.0272137191678;0.0245373305238;0.021733964081;0.0188123307619;0.0157793281262;0.0126391082672;0.00939442512469;0.00604913421393;0.00260517600318;-0.000938051137455;-0.00458382651448;-0.0083385053731;-0.0122116544757;-0.0162163317328;-0.0203693404127;-0.0246915257195;-0.0292079273193 + + + + DLR_F6_wing1_airfoil12 + points from IGES slices + + 0.999872123864;0.98351041367;0.967134327754;0.950740247977;0.934330313531;0.917908697161;0.901477943008;0.885038728924;0.868592797954;0.852145388036;0.835704562955;0.819280261591;0.802880538926;0.78650915395;0.770164645323;0.753842963545;0.737535921587;0.721235200369;0.704933801299;0.688629048188;0.672319462088;0.656003159102;0.639679197281;0.623346502627;0.60700426524;0.590651965729;0.574289586487;0.557916722564;0.541533523615;0.525140385786;0.508737705226;0.492326027735;0.475905890312;0.459478490201;0.443044382007;0.426605035874;0.410161649045;0.393715586026;0.377268044059;0.360820502092;0.344374034123;0.327930251148;0.311490764162;0.295057597917;0.278632345801;0.262217314269;0.245814096709;0.229424312923;0.213049441856;0.196690557508;0.180348725071;0.16402557315;0.147723100083;0.13144373557;0.115190428703;0.0989669384729;0.0827778425747;0.0666387139728;0.0505819310527;0.0346789498653;0.0191669918224;0.00507447121092;0.0;0.00974300655705;0.0234406041803;0.0388162173526;0.0547393491992;0.0708604839403;0.0870843703169;0.103365345826;0.119687696651;0.136040269063;0.152414876032;0.168805601767;0.185208546425;0.201621033816;0.218041303288;0.234468430498;0.250901059744;0.267337993784;0.283778554767;0.300221668695;0.316666657717;0.333113125686;0.349560535604;0.36600820962;0.382455892439;0.398903161505;0.415349497425;0.431794486447;0.448237732424;0.464678962454;0.481117375442;0.497552830534;0.513984517832;0.530412049992;0.54683433541;0.563250581792;0.57965984719;0.596061585802;0.61245472363;0.628837517629;0.645207423658;0.661562012016;0.677899275561;0.694216925446;0.710513482723;0.726788419197;0.743041585212;0.759273130424;0.775483459782;0.79167296063;0.80784217877;0.823990841301;0.840118957026;0.856226244241;0.872312852602;0.888377831356;0.904420247358;0.92043781176;0.93642743462;0.952385084044;0.968304720997;0.984179496543;1.0 + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + -0.0328799775418;-0.0311987488034;-0.0296704150619;-0.0283454806125;-0.027225538845;-0.026293933994;-0.0255465901506;-0.025019239742;-0.0247736376277;-0.0248659221886;-0.0253366500373;-0.0262033308555;-0.0274529094105;-0.0290347229486;-0.0308746216216;-0.0329063697114;-0.0350545761104;-0.037248541848;-0.0394386605617;-0.0416040157086;-0.0437310678769;-0.0458072196035;-0.0478211058814;-0.0497625149304;-0.0516222913616;-0.0533921337021;-0.0550645239688;-0.0566325780134;-0.0580899046703;-0.0594305617397;-0.060648739071;-0.0617388465948;-0.0626952590288;-0.0635122014354;-0.0641838724671;-0.0647094446175;-0.0650916733066;-0.0653310251072;-0.0654258802196;-0.0653729198153;-0.0651678038878;-0.0648055233828;-0.0642809548039;-0.0635894060141;-0.0627270740057;-0.0616916523249;-0.0604827272186;-0.0591023498459;-0.0575554500319;-0.0558485245813;-0.0539852268466;-0.0519643947977;-0.0497827360157;-0.0474350477747;-0.0449134951746;-0.0422070037159;-0.0393014441684;-0.0361322534329;-0.0325687559373;-0.0283782023251;-0.0229360454084;-0.0145923168204;0.0;0.0130059167846;0.0220430428467;0.0278290462447;0.0319370164871;0.0351940285313;0.0378945425774;0.0402293956671;0.042255976244;0.044024137162;0.0455779827472;0.0469500322371;0.0481640280205;0.0492366610757;0.050179402049;0.0510001298569;0.0517049891738;0.0523002655265;0.0527926229819;0.053187510757;0.0534890223672;0.0537001861335;0.0538231412476;0.0538593314441;0.0538097162781;0.0536749824038;0.0534557636559;0.0531529051471;0.0527670847284;0.0522981615477;0.051745220066;0.0511065524512;0.0503795705452;0.0495609643227;0.0486457423361;0.047627531026;0.0465031964324;0.04527218395;0.0439332787291;0.0424721578677;0.0408731603687;0.0391257135184;0.037221929597;0.0351575742371;0.0329343992871;0.0305577659315;0.0280354562512;0.0253766520448;0.0225908256188;0.0196867274123;0.0166713208028;0.0135487345188;0.0103217767997;0.00699420663708;0.00356791673145;4.2317264531e-05;-0.00358598101829;-0.00732327244697;-0.0111791525735;-0.0151666150077;-0.0193024827769;-0.023607443539;-0.0281064721391 + + + + DLR_F6_wing1_airfoil13 + points from IGES slices + + 0.999874772214;0.98351172675;0.967134429207;0.950739243289;0.934328541288;0.917906389995;0.901475280775;0.885035928064;0.868590291982;0.852143391897;0.835703617852;0.819280761282;0.802882919128;0.786513727684;0.770171794716;0.753852778654;0.737548719947;0.721250944612;0.704952610552;0.688650786748;0.672344071805;0.656030642997;0.639709254641;0.623379192301;0.607039494235;0.590689729951;0.574329487275;0.557958894437;0.541577823207;0.525186694918;0.508785775193;0.492375778469;0.475957254312;0.459531173622;0.443098397385;0.426659878182;0.410217173119;0.393771537036;0.377324362168;0.360876903358;0.34443069939;0.327987160818;0.31154809205;0.295114885319;0.278689509905;0.262273779375;0.245869653849;0.229478800343;0.213102757642;0.196742368414;0.180399034053;0.164074293344;0.147769813304;0.131488387559;0.115232690666;0.0990066153831;0.0828149154573;0.0666728413467;0.0506126617382;0.0347055271178;0.0191881813841;0.00508718645699;0.0;0.0097275665486;0.0234144451314;0.0387830782895;0.0547011217962;0.0708181814918;0.0870386603602;0.103316587201;0.119636024597;0.135986063664;0.15235847007;0.168747372616;0.185148429732;0.201559269124;0.217978068064;0.234403727421;0.250835111424;0.267270965231;0.283710317942;0.300152601671;0.31659684552;0.333042628154;0.349489244296;0.365936565715;0.382383740583;0.398830640667;0.415276835476;0.43172163805;0.448164901839;0.464606068118;0.481044724712;0.497480303736;0.513912383856;0.530340278114;0.546763134684;0.563179982664;0.579590125939;0.595992575289;0.612386781148;0.628770646006;0.645141934961;0.661497991776;0.677836847173;0.69415628457;0.710454893413;0.726731986745;0.742987408855;0.759221452846;0.775434246949;0.791626642992;0.807798485264;0.823950204259;0.840081378643;0.856192017575;0.872281818794;0.888350379285;0.904396160263;0.920417348159;0.936410856245;0.952372223876;0.968296129421;0.984175034665;1.0 + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + -0.0317706245364;-0.0301074727721;-0.028597411793;-0.0272906902557;-0.026188947699;-0.0252756238656;-0.0245464870968;-0.0240372133894;-0.0238097296787;-0.0239202840509;-0.0244093978434;-0.0252942816333;-0.0265618191106;-0.0281617616186;-0.0300198811017;-0.0320697167046;-0.0342360877902;-0.0364486590625;-0.038657648996;-0.0408416061955;-0.0429869838576;-0.0450812610357;-0.0471131533067;-0.0490725120174;-0.0509502326899;-0.0527380260364;-0.0544284545961;-0.0560145938366;-0.0574900871106;-0.0588489807858;-0.0600854494619;-0.0611939242028;-0.0621686895216;-0.0630039749747;-0.06369398264;-0.0642378148931;-0.0646382836803;-0.0648958286544;-0.0650088285955;-0.064974041064;-0.0647870970096;-0.064443032019;-0.0639367992437;-0.0632636907347;-0.0624199144861;-0.0614030249288;-0.0602125091347;-0.0588503089038;-0.0573217092296;-0.0556327919766;-0.0537866438741;-0.0517833656759;-0.0496200263631;-0.0472909012891;-0.0447875179772;-0.0420988851063;-0.0392111261334;-0.0360595662927;-0.0325136286887;-0.0283404255444;-0.0229152559611;-0.0145865182213;0.0;0.0130168018465;0.0220692539699;0.0278723051754;0.0319981265659;0.0352733937265;0.0379912726712;0.0403442855498;0.0423895414355;0.0441761257366;0.0457480770134;0.0471379936926;0.0483697635789;0.0494603224663;0.050421293677;0.0512606184406;0.0519842137516;0.0525980515612;0.0531087724592;0.0535218629469;0.0538414447696;0.0540706321351;0.0542116141481;0.0542658837964;0.0542344486178;0.0541179955699;0.0539171016971;0.0536326005078;0.0532651331624;0.0528145256318;0.0522798802913;0.0516594660079;0.0509507089805;0.0501503118128;0.0492531085838;0.0482528708781;0.0471465302854;0.0459336288338;0.0446129299997;0.0431700443119;0.0415892724998;0.0398600445764;0.0379745750224;0.0359284581499;0.0337233792949;0.0313647425235;0.0288603150362;0.0262193203832;0.023451238579;0.0205648718401;0.0175672271337;0.0144624811618;0.0112534458708;0.00794384915042;0.00453549540925;0.00102777096519;-0.0025827498102;-0.00630237776717;-0.0101406753551;-0.0141106398114;-0.0182290054225;-0.0225164267127;-0.0269977165897 + + + + DLR_F6_wing1_airfoil14 + points from IGES slices + + 0.999877355335;0.983513007895;0.967134685377;0.950738588548;0.934326760211;0.917904154645;0.901472814657;0.885033312994;0.868587988383;0.852141346449;0.835702570269;0.819281425213;0.802885767491;0.786518804497;0.770179218908;0.753864843823;0.737565312484;0.721268998086;0.704970640883;0.688672130947;0.672369544947;0.656059541847;0.639741224339;0.623413733301;0.607076333703;0.590728748719;0.574370663335;0.558001953456;0.541623048644;0.525233939353;0.508834931049;0.492426749214;0.476009976143;0.45958547096;0.443153978239;0.426716662568;0.410275127647;0.393830671705;0.377384325691;0.36093754057;0.344491480931;0.328047903204;0.311608258354;0.295174436453;0.278748337119;0.262331707235;0.245926723249;0.229534998404;0.213157687743;0.196795974949;0.180450852785;0.164124239962;0.147817864272;0.131534073987;0.115276210142;0.0990476233205;0.0828531150676;0.0667081305165;0.0506442854154;0.0347329347509;0.0192100606809;0.0051007885609;0.0;0.00971244942626;0.0233885418878;0.0387500248191;0.0546628264479;0.0707756225019;0.0869925538804;0.103267323368;0.119583884445;0.135931335788;0.15230106707;0.168687551261;0.185086702752;0.201496049177;0.217913557276;0.234338052913;0.25076809467;0.26720278524;0.283641122313;0.30008237086;0.316525662212;0.332970690903;0.349416750543;0.365863535664;0.382310320785;0.398756962719;0.415202726438;0.431647468755;0.448090607374;0.464531855921;0.480970632101;0.497406496807;0.513838858198;0.530267143525;0.546690474572;0.563107982671;0.579518789606;0.595922313081;0.612317531696;0.628702564923;0.645075064492;0.661432701222;0.677773298668;0.69409452765;0.710395214033;0.726674498692;0.742932219349;0.759168671925;0.775384152339;0.791579090154;0.807753934022;0.823908674399;0.840043024909;0.85615683282;0.872250107677;0.888322257639;0.904371688556;0.920396653542;0.936393649282;0.952359172462;0.968287132849;0.984170218347;1.0 + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + -0.0306323665075;-0.0289882903364;-0.0274955535581;-0.026208471875;-0.0251265393586;-0.0242306357362;-0.0235189568483;-0.0230302682604;-0.0228217780574;-0.0229491956312;-0.023455792173;-0.0243613084338;-0.0256512920455;-0.0272673798792;-0.0291425221119;-0.031225448157;-0.0334218548822;-0.0356423457052;-0.0378472577539;-0.0400518929738;-0.0422255997446;-0.0443428430041;-0.0463951365205;-0.04837303948;-0.0502677601846;-0.0520715951596;-0.0537778336951;-0.0553802614638;-0.0568725973177;-0.0582487223878;-0.0595031000997;-0.0606303847957;-0.0616249539892;-0.0624805456237;-0.0631901148858;-0.0637521153532;-0.0641698689703;-0.0644445594185;-0.0645752702994;-0.0645591569592;-0.0643919046884;-0.0640679578212;-0.0635815697753;-0.0629280440085;-0.0621036385602;-0.0611059765219;-0.0599346187859;-0.0585913981492;-0.057080963425;-0.0554101207813;-0.0535828126408;-0.0515986667166;-0.0494541892393;-0.0471436336269;-0.0446585518307;-0.0419879566146;-0.0391181401845;-0.0359842768929;-0.0324573836518;-0.0283021178733;-0.0228941544467;-0.0145807495987;0.0;0.0130274541533;0.022095369973;0.0279158654544;0.0320602203633;0.0353541288334;0.0380896833385;0.0404611317216;0.0425257966176;0.0443314071146;0.0459219885236;0.0473300538995;0.0485799068939;0.0496887967993;0.0506685699754;0.0515269967178;0.052269852246;0.0529028067759;0.0534318741724;0.0538631637589;0.0542011620697;0.0544490001329;0.0546088925782;0.0546821949119;0.0546698139864;0.0545723320967;0.054390369721;0.0541248050744;0.0537762490893;0.0533445490327;0.0528287789601;0.0522271442579;0.0515371630135;0.0507554560075;0.0498767730402;0.0488949284216;0.0478070106776;0.0466125807003;0.0453105120835;0.0438863810965;0.0423243894113;0.040614007991;0.0387473997193;0.0367201066993;0.0345336753536;0.0321934799775;0.0297073576871;0.0270845201967;0.0243345610528;0.0214663292284;0.0184868790827;0.0154005062338;0.0122099503312;0.0089188674231;0.00552897575668;0.00203958803306;-0.00155273224211;-0.00525430440009;-0.00907470289597;-0.0130268718585;-0.0171274401019;-0.0213969215884;-0.0258600208939 + + + + DLR_F6_wing1_airfoil15 + points from IGES slices + + 0.999879856779;0.983514675681;0.967134894019;0.950737771069;0.934325439613;0.917901866219;0.901470379618;0.885030680821;0.868585500584;0.852139722371;0.835701847399;0.819282220643;0.802888745344;0.786524172188;0.770187275327;0.753875772487;0.737579478154;0.721286373024;0.704990985621;0.68869545869;0.672395965189;0.656088877401;0.639773417957;0.623448839389;0.607114214834;0.590769255271;0.574413651746;0.55804740426;0.541670662305;0.525283585342;0.508886611887;0.49248022032;0.476065158109;0.459642033197;0.443211911973;0.426775860826;0.410335245134;0.393891440239;0.37744581152;0.360999574859;0.34455378668;0.32811029074;0.311670581977;0.295236514115;0.278809891047;0.262392696058;0.245986752972;0.22959389558;0.213215329801;0.196851972528;0.180505338635;0.164176803462;0.147868340331;0.131582540466;0.115322134623;0.0990910794052;0.0828936304041;0.066744996127;0.0506780253553;0.0347622227614;0.0192337387919;0.00511544024473;0.0;0.00969678880639;0.0233617622127;0.0387159662558;0.0546232576667;0.0707315884026;0.0869450033466;0.103216511599;0.119530147218;0.135874797827;0.152242261197;0.168626607405;0.185023879848;0.201431497265;0.217847476371;0.23427029233;0.250699048177;0.267132358603;0.283569625633;0.300009782877;0.316452371888;0.33289663523;0.349341954996;0.365788201623;0.382234438284;0.398680674944;0.415126303664;0.43157087596;0.448013923418;0.464455137086;0.480894078447;0.497330129594;0.513762832078;0.530191587925;0.546615470273;0.563033572192;0.579445146213;0.595849564462;0.612245770515;0.628632090042;0.645005792289;0.661365043463;0.677707421766;0.694030634957;0.71033331766;0.726614861933;0.742874958822;0.759113927247;0.775332205725;0.791529804219;0.807707639628;0.823865692017;0.840003383345;0.856120683712;0.87221761305;0.888293254465;0.904346382106;0.920374873162;0.936375996877;0.952345487695;0.968277565185;0.984165551957;1.0 + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + -0.0294578123282;-0.0278330633707;-0.0263595722873;-0.0250917349058;-0.0240291127108;-0.0231524807936;-0.0224602146544;-0.0219909734021;-0.0218017739897;-0.0219483477232;-0.0224741076159;-0.0233990160793;-0.0247085522779;-0.0263445531389;-0.0282391584222;-0.0303397363275;-0.0325560324365;-0.0347963870885;-0.0370203073837;-0.0392431014918;-0.0414358074718;-0.043572483158;-0.0456440094258;-0.0476412372517;-0.0495553664314;-0.0513786432174;-0.0531043104876;-0.0547260496357;-0.0562374922236;-0.05763267843;-0.0589061965778;-0.060052694787;-0.0610666218531;-0.061941689068;-0.0626708403223;-0.0632525009473;-0.0636898402128;-0.0639839942719;-0.0641339565327;-0.0641369364433;-0.0639887083112;-0.0636839102902;-0.0632167818842;-0.0625825093914;-0.0617773554654;-0.0607989780361;-0.0596469086895;-0.0583229413516;-0.0568317701293;-0.0551802717395;-0.053372203461;-0.0514071965421;-0.0492819720846;-0.0469905403682;-0.0445243304126;-0.0418725786606;-0.0390220997551;-0.0359083123542;-0.0323986951459;-0.0282625890911;-0.0228720801684;-0.0145748029238;0.0;0.013038494526;0.0221221991007;0.0279607311158;0.0321240350845;0.0354372472769;0.0381909538323;0.0405813504752;0.0426658926739;0.0444911826436;0.0461009124526;0.0475278511521;0.0487963762054;0.0499240282237;0.050922926175;0.0518009932331;0.0525637108391;0.0532164109402;0.0537649038638;0.0542153387902;0.0545724098263;0.0548392962077;0.0550182901735;0.0551107869996;0.0551176637165;0.0550395780973;0.0548770483871;0.0546309914817;0.0543019056937;0.0538897112933;0.0533933518571;0.0528111331217;0.0521405336241;0.0513780751407;0.0505184855221;0.0495555956553;0.0484866349212;0.047311304332;0.046028447802;0.0446236441581;0.0430810071875;0.0413900025571;0.0395428765195;0.0375350246642;0.0353678323008;0.0330467011402;0.0305793948963;0.0279752918165;0.0252440691356;0.022394636687;0.0194341502428;0.0163669550908;0.0131957421202;0.00992395965588;0.00655330196129;0.0030829617697;-0.000490509243613;-0.00417346955027;-0.00797536716137;-0.0119091382778;-0.0159912670877;-0.0202421445518;-0.0246862976272 + + + + DLR_F6_wing1_airfoil16 + points from IGES slices + + 0.999881954292;0.983514791295;0.9671339503;0.95073591798;0.934322623016;0.917898819347;0.901466758837;0.885027046155;0.868582256351;0.852137143362;0.835700297638;0.819282227886;0.802890878185;0.786528489977;0.770194406466;0.753885468787;0.737592429695;0.721302570321;0.705010490357;0.68871777445;0.672420919697;0.656116913186;0.63980446218;0.623482638826;0.607150786331;0.590808591934;0.574455430119;0.558091603219;0.541717121659;0.525331975014;0.508936809652;0.492532261518;0.476118643369;0.45969708114;0.443268189923;0.42683325203;0.410393706153;0.393950824179;0.37750571119;0.361059962257;0.344614526084;0.328171164546;0.311731462289;0.295297160339;0.278870020573;0.262452274005;0.246045494855;0.229651445001;0.213271552709;0.196906933485;0.180558692413;0.164228434989;0.147918058618;0.131629950695;0.115367301362;0.0991336030957;0.0829333075008;0.0667816980717;0.0507112079265;0.0347910506529;0.0192571300108;0.00513024998459;0.0;0.00968257328842;0.0233366762415;0.0386836711979;0.0545856988694;0.0706895916859;0.086899593238;0.103167966063;0.119478498813;0.135820693209;0.152185791997;0.168568071683;0.184963393425;0.201369213446;0.217783623917;0.234205040192;0.250632336338;0.267064407273;0.283500606628;0.299939839746;0.316381449833;0.332824978176;0.349269611601;0.365715204154;0.382161109466;0.398606858398;0.415052138192;0.431496615238;0.447939497212;0.46438079454;0.480819860853;0.497256070633;0.513689090271;0.530118137867;0.54654257748;0.562961283176;0.579373629438;0.595778813515;0.612176043087;0.628563410322;0.64493869463;0.661299175008;0.677643433614;0.693968290732;0.710273099991;0.726556902264;0.742819395217;0.75906089161;0.775281391443;0.791482156176;0.807662883477;0.823823573345;0.839964528114;0.856085445451;0.872185678986;0.888264915961;0.904321561303;0.920354030368;0.936358809827;0.95233241763;0.968268483917;0.984160649251;1.0 + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + -0.0283106509317;-0.0267055399811;-0.0252503970164;-0.024000184236;-0.0229556626869;-0.0220983378814;-0.0214257911492;-0.0209753033742;-0.0208042762759;-0.0209690273417;-0.0215133428451;-0.0224573957476;-0.0237866427513;-0.0254419098355;-0.0273540563895;-0.02947292628;-0.0317093623142;-0.0339711839616;-0.0362154285479;-0.0384537307114;-0.0406632798888;-0.0428197746984;-0.0449101105341;-0.0469264579932;-0.0488598200393;-0.0507022213152;-0.0524465830402;-0.054086535354;-0.0556161983857;-0.0570300675751;-0.058322627937;-0.0594883644859;-0.0605214390521;-0.0614154713501;-0.062163695358;-0.0627646515334;-0.0632213632143;-0.0635347269767;-0.0637036064627;-0.0637251555643;-0.0635952667122;-0.0633088940597;-0.0628604287936;-0.062244887619;-0.0614584861509;-0.0604988891214;-0.0593655752653;-0.0580603898613;-0.0565879513187;-0.0549552133146;-0.0531659289583;-0.0512197020882;-0.0491132174579;-0.0468404179663;-0.0443927861406;-0.0417595734933;-0.0389278213727;-0.0358325905652;-0.0323411356858;-0.0282231722129;-0.0228501898948;-0.0145686001212;0.0;0.0130490079323;0.0221482021064;0.0280041157429;0.0321858716458;0.0355179027893;0.0382891985769;0.0406979023206;0.0428019891312;0.0446465275942;0.0462751267529;0.0477204595073;0.0490071191476;0.0501530371952;0.0511705363585;0.0520677379486;0.0528499171689;0.0535220156131;0.0540896525196;0.0545589266909;0.054934592065;0.0552199743137;0.0554174295556;0.0555285424367;0.0555542303837;0.0554951397654;0.0553517292951;0.0551248017212;0.0548148783088;0.0544218026784;0.0539445322996;0.0533813574228;0.0527296508716;0.051986045273;0.0511450464923;0.050200555727;0.049150050054;0.0479932792658;0.0467291695562;0.0453432089033;0.0438194882944;0.0421474573228;0.040319505517;0.0383307538353;0.0361824950152;0.033879962559;0.0314311213982;0.0288453230297;0.0261322942614;0.0233011468084;0.0203591679574;0.0173106529334;0.0141583331658;0.010905555177;0.00755371595753;0.00410201275907;0.000546942679765;-0.0031178015888;-0.0069016966472;-0.010817555193;-0.0148816824004;-0.0191143971852;-0.0235399696532 + + + + DLR_F6_wing1_airfoil17 + points from IGES slices + + 0.999883934832;0.983515893715;0.967133524779;0.950734467377;0.93432073243;0.917896330854;0.901463918378;0.885024183522;0.868579760158;0.852135347723;0.835699940722;0.81928321125;0.802893159281;0.786533129064;0.770202443008;0.753896773257;0.737606108919;0.721319127627;0.705030135414;0.688740476536;0.672446806743;0.656145814572;0.639836472703;0.623517469666;0.607188116938;0.590848425448;0.574497728533;0.558136364988;0.541763996017;0.525381113421;0.508988066927;0.492585173473;0.476173438519;0.459753375726;0.443325804762;0.426892058957;0.410453482567;0.394011408922;0.377566985558;0.361121578591;0.344676488563;0.328233245523;0.311793335805;0.295358759401;0.278931188437;0.262512622907;0.246105062802;0.229709841452;0.213328794916;0.196962589858;0.180612734469;0.16428055115;0.147968214756;0.131677889214;0.115412743912;0.0991762761048;0.0829731633725;0.0668184220558;0.0507443799104;0.0348207634684;0.0192786976046;0.00514277982853;0.0;0.00966586783522;0.0233090113783;0.0386487937966;0.0545453939396;0.0706449441925;0.0868512153837;0.103116360686;0.119423866496;0.135763394052;0.152126090925;0.168506306863;0.184899692154;0.201303744074;0.21771647356;0.234136372419;0.250562282187;0.266993350406;0.283428265606;0.299866503199;0.316307254445;0.332749994754;0.349194079321;0.365638994487;0.382084412382;0.398529819349;0.414974909377;0.431418983016;0.447862062122;0.464303316098;0.480742395218;0.497178971615;0.51361221469;0.530041785646;0.546466689953;0.562886086081;0.579299154364;0.595705206277;0.612103597015;0.628492315655;0.644868684612;0.661231053618;0.677576745087;0.693903759025;0.710210762104;0.726496748864;0.742761730232;0.759005367413;0.775228982806;0.791432259472;0.807616191943;0.823780113556;0.839924363106;0.856048590868;0.872152807772;0.888235680487;0.904296214483;0.920332387909;0.936341228096;0.952318702273;0.968259160187;0.984155596396;1.0 + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + -0.0271309105804;-0.0255433314332;-0.0241080577642;-0.0228766850214;-0.0218511804112;-0.0210147789647;-0.0203621582963;-0.0199284111793;-0.01977682701;-0.0199640613279;-0.0205307150838;-0.0214935204598;-0.0228378654851;-0.0245113241134;-0.0264481042252;-0.0285882060303;-0.0308410724684;-0.0331181683299;-0.035380171348;-0.0376390049783;-0.0398694780521;-0.0420458638833;-0.0441558018595;-0.0461914231557;-0.0481438753438;-0.0500054207461;-0.0517693052877;-0.0534292557665;-0.0549788569045;-0.0564121742962;-0.057723863698;-0.0589086682976;-0.0599609706283;-0.0608745630616;-0.0616422980816;-0.0622624379893;-0.0627381958883;-0.063070653742;-0.0632588170183;-0.0633000081311;-0.0631899538712;-0.0629233209239;-0.0624943169598;-0.0618981441814;-0.0611311086125;-0.0601908823925;-0.0590770065066;-0.0577913388718;-0.0563385242806;-0.0547254151679;-0.0529553448556;-0.0510279417602;-0.0489402878591;-0.0466866891832;-0.044258774177;-0.0416453844096;-0.0388321702044;-0.0357550989986;-0.032282400761;-0.0281796719399;-0.0228308600451;-0.0145636321272;0.0;0.0130583040584;0.0221732776454;0.0280468855191;0.0322474609925;0.0355987935343;0.0383882264018;0.0408159119006;0.0429399154014;0.0448041493188;0.0464521326264;0.0479164335163;0.0492219262184;0.0503866762433;0.0514233502134;0.0523401338924;0.0531421748033;0.0538341505254;0.0544214053022;0.0549101467623;0.0553050306272;0.0556095869391;0.055826121701;0.0559564053984;0.0560013451319;0.0559616622106;0.055837837507;0.0556305158277;0.055340221761;0.0549668023019;0.0545092082738;0.0539656036176;0.0533334528229;0.0526092804921;0.0517873926561;0.0508619969854;0.0498306126143;0.0486930865378;0.0474483258638;0.0460817186213;0.0445773960135;0.042924822558;0.0411165010133;0.0391473712879;0.0370185699897;0.0347353430021;0.0323055810078;0.02973869381;0.0270445174399;0.0242322431222;0.0213092369513;0.018279957928;0.01514717107;0.0119139036891;0.00858157654531;0.00514915139095;0.00161313097047;-0.00203283442069;-0.00579815458569;-0.00969550707582;-0.0137411213425;-0.0179550738183;-0.0223614737085 + + + + DLR_F6_wing1_airfoil18 + points from IGES slices + + 0.999885762444;0.983516352088;0.967132564427;0.950732665459;0.934318044682;0.917892916531;0.901460427476;0.885020577516;0.86857616862;0.852132460215;0.835698214188;0.819283248908;0.802895258297;0.786538112286;0.7702097094;0.753907236188;0.737620173792;0.72133626935;0.705050263434;0.688763568509;0.672473003655;0.656175433884;0.639868746239;0.623552963685;0.60722665079;0.590889486017;0.574541446397;0.558182554899;0.54181244405;0.525431814344;0.509040677263;0.492640077803;0.476230015964;0.459811536741;0.443385352111;0.426952863056;0.410515114571;0.394073863629;0.377630327476;0.361185401823;0.344740636939;0.328297629025;0.311857606814;0.295422832548;0.278994730178;0.262575550464;0.246167061861;0.229770849086;0.213388462409;0.197020809023;0.180669266945;0.164335248642;0.148020867072;0.131728200743;0.115460591345;0.0992213690834;0.0830154488839;0.0668573573355;0.0507795122729;0.0348514920386;0.0193033564631;0.00515789225279;0.0;0.00965045524206;0.0232826887442;0.0386151303095;0.0545065297592;0.0706015426089;0.0868037880981;0.10306578208;0.11937036825;0.135707177036;0.152067653254;0.168445825498;0.184837318566;0.20123931901;0.21765008134;0.234068204575;0.250492643718;0.266922330807;0.283356220845;0.29979344109;0.316233291049;0.332675070231;0.349118250397;0.365562659294;0.38200759643;0.398452533566;0.414897114715;0.431341167624;0.44778381955;0.464225070493;0.480664575948;0.497101267953;0.513534468983;0.529964500576;0.546389640211;0.562809864921;0.579224129709;0.595631745569;0.61203128855;0.628421024648;0.644798852388;0.66116195832;0.677508585473;0.693837344347;0.710146477971;0.726435285854;0.742703423492;0.758950523414;0.775177297594;0.791383757516;0.807570580706;0.823737790129;0.839885018315;0.856012265264;0.872119186472;0.888205437434;0.904269617168;0.920309957219;0.936323311116;0.95230547591;0.968250491679;0.984152053999;1.0 + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + -0.0259220034704;-0.0243542687128;-0.0229388506965;-0.0217274480016;-0.0207219668841;-0.0199052510404;-0.0192724774133;-0.0188589461884;-0.018727311176;-0.0189341169806;-0.0195203251384;-0.0205031149198;-0.0218677989674;-0.0235610365646;-0.025516797761;-0.0276764709277;-0.0299497845098;-0.0322472707955;-0.0345287720915;-0.0368060245038;-0.0390554180187;-0.0412518957055;-0.0433816084999;-0.0454371151136;-0.0474095617914;-0.0492912086748;-0.0510751656821;-0.0527548527851;-0.0543238966582;-0.0557766818848;-0.0571079031018;-0.0583123468141;-0.0593844894728;-0.0603180381365;-0.0611059764053;-0.0617465128578;-0.0622426102294;-0.0625951642306;-0.0628031528325;-0.0628637855522;-0.0627730202082;-0.0625258155574;-0.0621164987659;-0.0615400515573;-0.0607927647711;-0.059872410614;-0.0587783919456;-0.0575126265055;-0.0560796387806;-0.0544862844023;-0.052735973961;-0.050828443337;-0.0487606264439;-0.0465268274808;-0.0441186864817;-0.0415249840968;-0.038731607142;-0.0356743056046;-0.0322209391997;-0.0281375666838;-0.0228079621096;-0.014557594452;0.0;0.0130691186018;0.0221999009091;0.0280913227516;0.0323095686183;0.0356804377774;0.0384910284532;0.0409361462245;0.0430793980296;0.0449628363343;0.0466305691454;0.048115117649;0.0494412057551;0.0506266787756;0.0516839847915;0.0526209899796;0.0534422647607;0.0541514034609;0.054756180389;0.0552643813375;0.0556806685952;0.0560078900623;0.0562471596356;0.0563990400049;0.0564637378728;0.0564420570821;0.0563360072401;0.0561476783381;0.0558775756489;0.0555246771437;0.0550870995334;0.0545621671696;0.0539469517675;0.0532384791086;0.0524338094246;0.051530094815;0.0505242691934;0.0494133468578;0.0481924703004;0.0468465846927;0.0453597624621;0.0437217718374;0.041927077786;0.0399743482255;0.0378653516103;0.0356045205597;0.0331985729033;0.0306557652558;0.0279848709881;0.0251942959999;0.022291274877;0.0192806766106;0.0161658428904;0.0129502761746;0.00963569898358;0.00622141082578;0.00270427671395;-0.000921938875903;-0.00466668683929;-0.00854308129854;-0.0125680603714;-0.0167629144104;-0.0211534582555 + + + + DLR_F6_wing1_airfoil19 + points from IGES slices + + 0.999887395937;0.983516122584;0.967131178991;0.950730363402;0.934314788794;0.917889233702;0.901456299099;0.885016722937;0.86857271907;0.85212981608;0.835696506453;0.819283145698;0.802897839178;0.78654317577;0.770217667476;0.753918386685;0.737634602866;0.721354145874;0.705071462932;0.688788054136;0.672500955586;0.656206465428;0.639903119858;0.623590168828;0.607266886484;0.590932885704;0.574587452733;0.558231313424;0.541863729825;0.525485427791;0.509096431516;0.492697466854;0.476289259658;0.459872572075;0.44344776703;0.427016671256;0.410580421923;0.394140107811;0.377697204821;0.361252825929;0.344808447037;0.328365544047;0.311925592861;0.29549081943;0.279062312533;0.262642479585;0.246233183609;0.229835876312;0.213452033597;0.197082792633;0.180729605128;0.164393765519;0.148077124734;0.131782271649;0.115512145972;0.0992702680901;0.0830614286373;0.0669000358039;0.0508183900677;0.0348858830169;0.0193314367267;0.00517584307513;0.0;0.00964153534647;0.0232584852629;0.038582013381;0.0544678117634;0.0705586879357;0.0867562645627;0.103015865366;0.119317735033;0.135650804301;0.152007681562;0.168382656768;0.184771846604;0.201172287168;0.217581776704;0.233998657849;0.250421611967;0.266849755937;0.283282134052;0.299718020458;0.316156858669;0.332597910733;0.349040450796;0.365484091736;0.381928470628;0.39837284952;0.414817228412;0.431260857255;0.447703760245;0.464144824406;0.480584025543;0.497020661999;0.513454322455;0.529884680278;0.546310598297;0.56273135066;0.579146187317;0.595554382415;0.611954835077;0.628345682278;0.644724347239;0.66108934196;0.677437738833;0.693768775711;0.710080238742;0.726371777096;0.742643003651;0.758893192555;0.775123069659;0.791332284136;0.807521912668;0.823691616524;0.839841758629;0.855971951862;0.872082583345;0.888172540103;0.904240721258;0.920285263787;0.936303603006;0.952290924088;0.968241335524;0.984147433607;1.0 + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + -0.0246716372142;-0.0231247346703;-0.0217298984207;-0.0205392689369;-0.0195545035842;-0.0187582544657;-0.0181460091925;-0.0177534192657;-0.0176423878855;-0.0178694348394;-0.0184757886023;-0.0194790511199;-0.0208646206407;-0.0225783001084;-0.0245538191045;-0.0267338352078;-0.0290277861049;-0.0313459563117;-0.0336478069137;-0.0359439232736;-0.038212541886;-0.0404296007095;-0.0425799898952;-0.0446560274942;-0.0466492694116;-0.0485517433572;-0.0503565658209;-0.0520569984635;-0.0536467263599;-0.0551200152681;-0.0564716148482;-0.0576962989556;-0.0587885511041;-0.0597422499298;-0.0605505482153;-0.0612117644002;-0.0617287172152;-0.0621021930016;-0.0623309578086;-0.0624122171004;-0.0623418456101;-0.0621149317294;-0.0617260436551;-0.0611697132913;-0.0604420452246;-0.0595412732118;-0.0584677238867;-0.0572234659318;-0.0558122858823;-0.0542395913465;-0.0525097616399;-0.0506227967626;-0.0485755513498;-0.0463622790617;-0.0439744511205;-0.0414009377736;-0.0386279720008;-0.0355912068954;-0.0321577144985;-0.0280942418096;-0.0227843940931;-0.0145521878698;0.0;0.0130770601329;0.0222208898779;0.0281362929184;0.0323739341387;0.0357613711352;0.0385965062545;0.0410533991499;0.0432157891123;0.0451264772992;0.0468213692606;0.0483299225481;0.0496758846665;0.0508779584395;0.0519505036673;0.0529043476637;0.0537466521825;0.0544816513688;0.0551126478557;0.0556433555933;0.056077887751;0.0564202123276;0.0566741279561;0.0568426106354;0.0569278016334;0.056930571974;0.0568504135598;0.0566858020988;0.0564361811031;0.0561016110607;0.0556817895326;0.0551754462753;0.0545801859724;0.0538928874542;0.0531098004779;0.0522270175326;0.0512408730584;0.0501480281296;0.0489446115278;0.0476165054038;0.046148478933;0.0445306000209;0.0427572554011;0.0408268602934;0.0387410357706;0.0365040401728;0.034121994864;0.0316023761344;0.0289532167622;0.0261825011351;0.0232975361776;0.0203040198392;0.0172065733868;0.0140090801361;0.0107134756964;0.00731938504342;0.0038235902269;0.000219715834188;-0.00350206135116;-0.00735527849569;-0.0113578399841;-0.0155320174191;-0.0199050061095 + + + + DLR_F6_wing1_airfoil20 + points from IGES slices + + 0.999888446599;0.983515007019;0.96712909309;0.950726793796;0.934310831512;0.9178847466;0.901451235871;0.885011487968;0.868567841831;0.852125754987;0.835693816333;0.819282148497;0.802898956941;0.78654697682;0.77022463606;0.753928419858;0.737647809375;0.721371109906;0.705092058716;0.688811461013;0.672527335728;0.656236193621;0.639936475399;0.623626621769;0.607306223735;0.590974910646;0.574632682501;0.558278746872;0.541913883407;0.525537721454;0.509151015097;0.492754173331;0.476347975804;0.459932805947;0.443509443408;0.427079447481;0.410644377459;0.39420502577;0.377762542712;0.361318896575;0.344875250438;0.328432383947;0.311992252611;0.295557182589;0.279128362522;0.262707722357;0.246297613814;0.229899212755;0.213514078472;0.197143374047;0.180788262558;0.164450712294;0.148131873553;0.131834507053;0.115561693038;0.0993171635861;0.0831050086493;0.0669400542979;0.0508546750467;0.0349171091642;0.0193561382585;0.00519018557575;0.0;0.00962268225219;0.0232324400051;0.0385494325801;0.0544269273141;0.0705164092969;0.0867069130581;0.102962357565;0.119262472001;0.135593388876;0.151947720718;0.168320380652;0.184707074228;0.201105091854;0.217512465243;0.233928031313;0.250349834558;0.266776315684;0.283207474691;0.299642161281;0.316079557462;0.332519701579;0.348961392209;0.365404258699;0.381848301051;0.398292330621;0.414736372972;0.431179622895;0.447622105953;0.464063413149;0.480502764839;0.496939790368;0.513374067963;0.529804843537;0.546231324663;0.562652744475;0.579068310546;0.59547762666;0.611878762874;0.628270926759;0.644651383161;0.661017409705;0.677368226746;0.693701099129;0.710014863775;0.726308728255;0.742581529489;0.758834059907;0.775066690158;0.791279420244;0.80747265916;0.823645614477;0.839798286196;0.85593223361;0.872046677072;0.888141233149;0.904214342549;0.920264036982;0.936286814428;0.952278009787;0.968231756536;0.984141817501;1.0 + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + -0.0233996678577;-0.0218735539389;-0.0204993689015;-0.0193297069531;-0.0183658973278;-0.0175903404571;-0.0169988313605;-0.0166274510706;-0.0165374082533;-0.0167851314449;-0.0174121336435;-0.0184363467258;-0.0198433024919;-0.0215780422314;-0.0235739125317;-0.0257745231996;-0.0280892179254;-0.0304286185086;-0.0327515059166;-0.0350665840752;-0.037354361814;-0.0395922165941;-0.0417640058918;-0.0438608979704;-0.0458751602669;-0.0477987790347;-0.049624699109;-0.0513461720715;-0.0529567818122;-0.0544508024004;-0.0558229424625;-0.0570679361873;-0.0581803004848;-0.0591541049268;-0.059982767249;-0.0606646642524;-0.0612026333402;-0.0615971729751;-0.061846941142;-0.0619489470646;-0.0618991135735;-0.0616925838525;-0.0613240920901;-0.0607885002861;-0.0600817823953;-0.0592021235023;-0.0581496386369;-0.0569261554957;-0.0555355850939;-0.0539834360838;-0.0522742840973;-0.0504081035724;-0.0483818014839;-0.0461895368713;-0.043822682495;-0.0412700037723;-0.0385181188963;-0.0355025088971;-0.0320896880141;-0.0280470914349;-0.0227577373397;-0.0145445542916;0.0;0.0130877266911;0.0222496632341;0.0281798486731;0.032441372636;0.0358328363085;0.0387069084569;0.0411885881944;0.043359546721;0.0452844435983;0.0469992320479;0.0485328612508;0.049906074925;0.0511336991411;0.0522270451686;0.053196222854;0.0540523261881;0.0548077017092;0.0554648928551;0.0560227109841;0.0564828176385;0.0568479990971;0.0571221024697;0.0573088853984;0.0574114664703;0.0574316606011;0.0573691482633;0.0572226896908;0.056992220978;0.0566783300553;0.0562811063904;0.0557995530579;0.0552306153759;0.0545690914386;0.0538098688078;0.052948985344;0.0519833224598;0.0509103878417;0.0497270884645;0.048419454591;0.0469724173097;0.0453762502068;0.0436253168194;0.0417170609283;0.0396515592202;0.0374325309937;0.035066686324;0.0325638538735;0.0299346802946;0.0271867959014;0.0243250063858;0.0213513311607;0.018270435326;0.0150905243451;0.011814704024;0.0084420029996;0.00496886812728;0.0013890622325;-0.00230942891445;-0.00614203209576;-0.010126909248;-0.0142838071637;-0.018633520685 + + + + DLR_F6_wing1_airfoil21 + points from IGES slices + + 0.999888426846;0.983513916743;0.967126604881;0.950723307201;0.934306408471;0.917879905147;0.901446208204;0.885006510028;0.868563221594;0.852121531742;0.835691031963;0.819281326852;0.802900422421;0.786550690337;0.770231370618;0.7539384275;0.737661483304;0.721388129366;0.705112390658;0.688835040265;0.672554099614;0.656266358439;0.639969418866;0.623662887803;0.607345559759;0.59101702854;0.574677307247;0.558326382778;0.541963862039;0.525590151226;0.509205643434;0.492810731757;0.476405822392;0.459992527023;0.443570819444;0.427142324444;0.410708234408;0.39426974172;0.377828038765;0.361385156528;0.344941461897;0.328498959651;0.312059274578;0.295623572856;0.279194278565;0.262773383381;0.246362079688;0.229962372265;0.213576265891;0.197203747464;0.180847227958;0.164507506665;0.148186575261;0.131886831619;0.115611486005;0.0993641286768;0.0831487691928;0.0669805940807;0.0508911949874;0.0349489440463;0.0193813771133;0.00520477296717;0.0;0.00960760815959;0.0232065870169;0.0385170312259;0.0543884990577;0.0704739016963;0.0866600805093;0.102911827386;0.119208766958;0.135536891981;0.151889021938;0.16825912939;0.184643650285;0.201039754347;0.217445056806;0.233858758372;0.250279260462;0.266704558299;0.283134258786;0.299567549532;0.316004050544;0.332442936327;0.348884233085;0.365326329134;0.381769617568;0.398213312199;0.414657006829;0.431100295263;0.447542391312;0.463983281873;0.48042298005;0.496859874156;0.513294763483;0.529725669459;0.546152958971;0.562575059643;0.578991565279;0.59540127039;0.61180376878;0.628197081875;0.644578785597;0.660946901373;0.677299424424;0.693634349971;0.709950092536;0.726246219714;0.742521565328;0.758776522472;0.775011484238;0.791227643013;0.807424212609;0.823600786827;0.839756972575;0.855894355331;0.872012555105;0.888110353305;0.904187356837;0.920241167829;0.936268589116;0.952264025663;0.968221869329;0.984136525078;1.0 + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + -0.0221381184707;-0.0206327915635;-0.0192785044381;-0.0181297661162;-0.0171871662387;-0.0164318494012;-0.015860421893;-0.0155104372853;-0.0154413968922;-0.0157094214205;-0.0163566636401;-0.0174017430989;-0.0188301939413;-0.020585449954;-0.0226006851732;-0.0248220850429;-0.0271587138397;-0.0295192820554;-0.0318616500232;-0.0341960250816;-0.0365036566512;-0.0387623611327;-0.0409554844475;-0.0430730158041;-0.045107643656;-0.0470514799186;-0.0488974620049;-0.0506390252466;-0.0522696180786;-0.0537837371862;-0.0551760626986;-0.0564415237043;-0.0575746693012;-0.0585694065338;-0.0594188955681;-0.0601213805846;-0.0606796001375;-0.0610943273116;-0.0613642386907;-0.0614865564112;-0.061457257812;-0.0612713637038;-0.0609235804219;-0.0604083391361;-0.0597218530415;-0.0588623663189;-0.0578301803402;-0.0566274571219;-0.0552578917467;-0.0537268171886;-0.0520385836868;-0.0501935057165;-0.0481883337014;-0.0460168043452;-0.0436702302726;-0.0411381158763;-0.0384077249137;-0.035413043815;-0.0320208006427;-0.0279990568891;-0.0227305371935;-0.0145365340297;0.0;0.0130976268895;0.0222748889438;0.0282213383899;0.0325027599778;0.0359118406724;0.0388072000443;0.0413103696259;0.0435006364583;0.0454447871961;0.0471795499132;0.0487340659713;0.0501287369439;0.0513779369651;0.0524924499109;0.0534820900258;0.0543581653112;0.0551338313099;0.055811813473;0.0563909849311;0.0568725904818;0.0572594210917;0.0575549752965;0.0577629612823;0.0578863272531;0.0579270124724;0.0578849252182;0.057759108962;0.0575496292194;0.0572569708063;0.0568812778571;0.0564213710901;0.0558742498884;0.0552343454217;0.0544964295412;0.0536564795857;0.0527115342479;0.051659405305;0.0504970135215;0.0492104171667;0.0477845607442;0.0462096955249;0.044480082338;0.042593074351;0.0405482522639;0.0383493373655;0.0360030646649;0.033518894622;0.0309089476323;0.0281820421024;0.0253423841371;0.0223907992336;0.0193309955777;0.0161713722759;0.0129151395951;0.00956162927571;0.00610875791996;0.00254965948765;-0.00112840226379;-0.00494126901877;-0.00890698378758;-0.013044742656;-0.0173738465347 + + + + DLR_F6_wing1_airfoil22 + points from IGES slices + + 0.999888809404;0.983511094259;0.967120985473;0.95071557088;0.934297342752;0.917869619606;0.901435272973;0.884995142641;0.868552533581;0.852112403249;0.835684246664;0.819278019373;0.80290153682;0.786557304821;0.770244077242;0.753957722868;0.737687473454;0.721420948904;0.705151959172;0.688881303409;0.672606922781;0.656325525864;0.64003543308;0.623735019035;0.607423443941;0.591101127691;0.574767216954;0.558421332471;0.542063880589;0.525694427871;0.509314233997;0.492923705318;0.476522435483;0.460112469782;0.443693428957;0.427267344751;0.410835476846;0.394399071379;0.377959347396;0.361517144685;0.345074129276;0.328631926565;0.312192202582;0.295756203464;0.27932600159;0.262903222355;0.246490371577;0.2300882755;0.213699399305;0.197324162888;0.180963812385;0.164619986735;0.148294365515;0.131990226605;0.11570965593;0.099456351264;0.0832344844556;0.0670593071324;0.0509614444543;0.0350094881107;0.0194287314604;0.00523023821823;0.0;0.00957134447269;0.0231485438366;0.0384440842147;0.054305099681;0.0703806538061;0.0865591225552;0.1028037449;0.119094230488;0.135416560282;0.151763271009;0.168128998862;0.184508786387;0.200900967552;0.217303063629;0.233713435679;0.25013041767;0.266552777011;0.282980093809;0.299411135471;0.315845482104;0.332283133707;0.348722437796;0.365163394371;0.381605597082;0.398048206142;0.414491235095;0.430933844155;0.447376046866;0.463817003441;0.48025630753;0.496693959134;0.513129132009;0.529561406263;0.545989549303;0.562413154781;0.578830963015;0.595242987549;0.611647982249;0.628043468385;0.644428213366;0.660799305024;0.677155537859;0.693494392507;0.709815056271;0.72611589021;0.742396880779;0.758658027979;0.774899331808;0.79112161851;0.807324075388;0.823507095244;0.839670691624;0.855815270878;0.871940833004;0.888047391548;0.904132440691;0.920194355039;0.936229802531;0.952234259149;0.968202333997;0.984126590893;1.0 + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + -0.0195567990794;-0.0180935097064;-0.0167820729064;-0.0156752598527;-0.0147744385864;-0.014061811027;-0.0135333814107;-0.0132253283319;-0.0131986176662;-0.0135094068274;-0.0141994549345;-0.0152866955176;-0.0167568657315;-0.018554918849;-0.0206141323857;-0.0228764932678;-0.0252523338444;-0.0276543161984;-0.030040274862;-0.0324158445394;-0.0347637283137;-0.0370632565725;-0.0392981347259;-0.0414575132592;-0.0435341862524;-0.0455202163575;-0.0474081944801;-0.0491915784034;-0.0508642864393;-0.0524206838835;-0.0538552579363;-0.0551625499779;-0.0563370065736;-0.0573725866704;-0.0582631679451;-0.0590073146318;-0.0596077221781;-0.0600647427529;-0.060376981225;-0.0605413899781;-0.0605539461582;-0.060409732944;-0.0601036980646;-0.0596307079792;-0.0589868075588;-0.0581700598739;-0.0571803159297;-0.0560194991111;-0.0546914290973;-0.0532018354074;-0.0515558380373;-0.0497536401612;-0.0477914762798;-0.0456626822715;-0.043358399731;-0.0408684834814;-0.0381812848551;-0.0352293770295;-0.0318799787387;-0.0279006177939;-0.022673481372;-0.0145187232421;0.0;0.0131235514848;0.0223295747778;0.028311815761;0.0326329702859;0.036084429868;0.0390187563324;0.0415624731725;0.0437948725978;0.0457815799511;0.047558611287;0.0491548038306;0.0505908542843;0.051881526657;0.0530379955428;0.0540702571237;0.0549894724489;0.0558081841534;0.0565287761506;0.0571501512986;0.0576738808129;0.0581028362257;0.0584407694915;0.05869136484;0.0588579001521;0.0589420143683;0.0589434636793;0.0588608935888;0.058694249917;0.058444169277;0.0581108006636;0.0576931552944;0.0571879688335;0.0565902025549;0.0558949396373;0.0550981301369;0.0541964961729;0.0531876402869;0.0520682033282;0.0508243558903;0.04944104952;0.0479084641197;0.0462209785298;0.0443761004774;0.042373992502;0.0402183252884;0.0379159119527;0.0354768434917;0.032911061908;0.0302257731214;0.0274258939533;0.0245138760419;0.0214947445682;0.0183767755041;0.0151632738207;0.0118529798362;0.00844178942714;0.00492337709611;0.00128612126539;-0.00248547350195;-0.00640948973066;-0.0105058385154;-0.0147955822726 + + + + DLR_F6_wing1_airfoil23 + points from IGES slices + + 0.999889657957;0.983504714501;0.967107454798;0.950697014551;0.93427513676;0.917845350643;0.901409413605;0.884969515202;0.868528305946;0.852092801058;0.835670923267;0.819273231415;0.802907187274;0.786576752211;0.770279290115;0.754007756959;0.737751622712;0.721502518089;0.705252520358;0.688999468774;0.672740684013;0.656474869629;0.640199821661;0.623914675811;0.607618524568;0.591310950186;0.574991506112;0.558659313642;0.542314372777;0.525957115666;0.509588003267;0.493207006772;0.476814587137;0.460412501771;0.444000736267;0.427581494585;0.411155237685;0.394723694162;0.378287742719;0.361848290869;0.345407513763;0.328966304508;0.312526406104;0.296089143809;0.279656721583;0.263230896832;0.246813412556;0.230406054972;0.214010552675;0.197628245327;0.181259565078;0.164905837183;0.148569683348;0.132253307532;0.115960238951;0.0996931137144;0.0834567574864;0.067263918662;0.0511466915062;0.0351710075505;0.0195597692451;0.00531086623372;0.0;0.00949898057493;0.0230203463524;0.0382785765508;0.0541118241986;0.070164430675;0.0863225391254;0.10254966177;0.118824709738;0.135132730674;0.151466233995;0.167819529741;0.184188656544;0.200570963892;0.216963815675;0.233365468893;0.249775030437;0.266190757307;0.28261130984;0.299036255889;0.315465595452;0.331898464232;0.348333522567;0.36477121701;0.381210236711;0.397650581668;0.414091790924;0.430533000179;0.44697422384;0.463415000946;0.479854452796;0.496293025942;0.512729409534;0.529163157017;0.545593821837;0.562020525291;0.57844283523;0.594859440803;0.611269434496;0.627671087714;0.644062196496;0.660440989032;0.676805261362;0.693153731444;0.70948504521;0.72579789181;0.742092285648;0.758367319211;0.774623467863;0.790860702794;0.807079484963;0.823279353411;0.839460754692;0.855623703211;0.87176730586;0.88789156264;0.903995609251;0.920077659479;0.936134227321;0.952161337007;0.968153716319;0.984103010376;1.0 + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + -0.0132571642884;-0.011895477218;-0.0106946504075;-0.00968827623862;-0.00888550186514;-0.00828023398621;-0.00786172649688;-0.00765258078946;-0.00772748661483;-0.00814570600483;-0.00894353947484;-0.0101330007668;-0.0117002467081;-0.0136044968387;-0.0157754261126;-0.0181306669318;-0.020592734982;-0.0230970527986;-0.0255997140441;-0.0280801340215;-0.0305246136077;-0.0329194104646;-0.0352521795362;-0.0375126788913;-0.0396933891374;-0.0417862434933;-0.0437824837395;-0.0456736109457;-0.047452739538;-0.0491136753808;-0.0506502675535;-0.0520564515653;-0.0533269551983;-0.0544576298224;-0.0554459689733;-0.0562924768248;-0.0569977727905;-0.0575604595887;-0.0579775409864;-0.0582451420475;-0.0583592725964;-0.0583163602015;-0.0581124434969;-0.057743056943;-0.0572043832238;-0.0564934837262;-0.0556091196229;-0.0545521984269;-0.0533260764954;-0.0519374233278;-0.0503935854569;-0.0486961618342;-0.0468406437049;-0.0448184168994;-0.0426186776927;-0.0402304783103;-0.0376444411191;-0.0347976740358;-0.0315518605728;-0.0276753688701;-0.022545673899;-0.0144843089726;0.0;0.0131752864593;0.0224596762495;0.028532435562;0.0329489262408;0.0364984540158;0.0395337677045;0.0421773815464;0.0445102514528;0.0465989283685;0.048478733271;0.0501780151345;0.0517170129366;0.053110074024;0.0543682758157;0.0555019034579;0.0565229995024;0.0574451766425;0.0582705380033;0.058996879625;0.0596252386651;0.0601583088523;0.0605997778581;0.0609536646681;0.0612233112345;0.0614104749631;0.0615149253746;0.0615353228071;0.0614716240456;0.0613245781484;0.0610943435701;0.0607800272029;0.0603783303094;0.0598848161599;0.059294976;0.0586046323894;0.0578099392021;0.0569074392461;0.055892609362;0.054751606377;0.0534697804404;0.0520374946295;0.0504496928011;0.0487051217233;0.0468056972564;0.0447557120806;0.0425614323561;0.0402300893762;0.0377695770624;0.0351874436172;0.0324906322343;0.0296844151314;0.0267732434433;0.0237612369902;0.0206506573519;0.017441259644;0.0141300476335;0.0107107983748;0.00717358684615;0.0035044258251;-0.000315079830451;-0.0043081797363;-0.00850349656071 + + + + DLR_F6_wing1_airfoil24 + points from IGES slices + + 0.999890162905;0.98349790312;0.967093415288;0.950677206988;0.934251139343;0.917818027111;0.901380685052;0.884941005052;0.868501801868;0.852070566142;0.835656234347;0.819268173629;0.802914397588;0.786599105291;0.770318543727;0.754065222255;0.737827374262;0.721597047672;0.705365767449;0.689131687848;0.672891501914;0.656643794577;0.640386243277;0.624118832632;0.607839209321;0.59154786554;0.575243370841;0.558926202038;0.542595405499;0.526251011986;0.509893944371;0.493524202652;0.477142263649;0.460749511666;0.444346454285;0.427933998995;0.41151449912;0.395087954657;0.378656718932;0.362220791942;0.345782050195;0.329341893377;0.312902213377;0.296463471629;0.280028959709;0.263599139053;0.247176824419;0.230763892312;0.21436081955;0.197969959454;0.18159175808;0.16522766126;0.148879499354;0.132550133266;0.116242346992;0.0999603857388;0.0837065874494;0.0674950259146;0.0513557559845;0.0353535632417;0.0197071528621;0.0054018132734;0.0;0.00941656599035;0.0228760476611;0.0380915539334;0.0538947294268;0.0699213475032;0.0860563876054;0.102263719312;0.118520809177;0.134812629774;0.151131675082;0.167471838767;0.183828444947;0.200199586354;0.216582002174;0.232974754157;0.249375935032;0.265783237623;0.282196631165;0.298615192788;0.315038907111;0.331466389826;0.347897148735;0.364330737783;0.380766664772;0.39720399145;0.413642733198;0.43008242858;0.446522570016;0.462963188269;0.479402868269;0.495842086834;0.512279890329;0.528715817318;0.545149406367;0.561579688459;0.578005771485;0.594427132485;0.61084287935;0.627251581629;0.643650424563;0.660038008465;0.676412441447;0.692771862385;0.709115317645;0.725441407539;0.74174965525;0.758039599341;0.774312178067;0.790566453173;0.806802886096;0.823021476836;0.839222240774;0.855405162528;0.871569765282;0.887716079799;0.90384221419;0.919947214824;0.936027805505;0.952079756405;0.968097930207;0.984074313309;1.0 + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + -0.0061845467774;-0.0049397007266;-0.00385586499866;-0.00296641678125;-0.00228038483436;-0.00179204735438;-0.00149039140751;-0.00139798120311;-0.00158949243065;-0.00212426573071;-0.00303840076205;-0.00434361799332;-0.00602624354442;-0.00804593254747;-0.0103337772602;-0.0128036737671;-0.0153782546699;-0.0179946724164;-0.0206103364844;-0.0232038670164;-0.0257616670383;-0.0282703549126;-0.030717441111;-0.0330924202791;-0.0353872941968;-0.0375944030302;-0.0397049179748;-0.0417105331867;-0.0436043732729;-0.0453801627069;-0.047031625962;-0.0485526413237;-0.049938009949;-0.0511835481535;-0.0522871025702;-0.0532490115853;-0.0540699827338;-0.0547485086588;-0.0552815592653;-0.0556652277305;-0.0558954226571;-0.0559684064154;-0.0558806259499;-0.0556277437644;-0.0552057607488;-0.0546116775705;-0.0538440945411;-0.0529037191954;-0.051793950777;-0.0505212955302;-0.0490937362939;-0.0475131649549;-0.0457747518187;-0.0438693604569;-0.0417859317923;-0.0395135913216;-0.0370438486266;-0.0343136100559;-0.0311835527678;-0.0274225743456;-0.0224043064878;-0.0144461544058;0.0;0.0132336396216;0.0226082611;0.0287819333744;0.0333044653986;0.0369642201932;0.040111765897;0.0428691215101;0.0453156232232;0.0475171486838;0.0495119662986;0.0513265932435;0.0529803944399;0.0544879820206;0.0558608457364;0.0571095678477;0.0582457303925;0.0592826381022;0.0602229519231;0.0610645184883;0.0618084606249;0.0624572854672;0.0630147460261;0.0634847337435;0.0638704632884;0.0641738726913;0.0643945466597;0.0645314238916;0.0645846428176;0.0645543726308;0.0644401826578;0.0642409962152;0.0639542446439;0.0635764979378;0.0631033416948;0.0625302077007;0.0618527584592;0.0610671640534;0.0601693792297;0.0591457454891;0.057981343075;0.0566665125984;0.055195947548;0.0535682020916;0.0517851373537;0.0498511062115;0.0477724457165;0.0455566465094;0.0432118452409;0.0407458094133;0.0381653528949;0.0354756591475;0.0326807426624;0.0297848640299;0.0267901766168;0.023696495849;0.0205008377751;0.0171969268685;0.0137749191661;0.0102207562579;0.00651604223768;0.00263765917323;-0.00144304809707 + + + + DLR_F6_wing1_airfoil25 + points from IGES slices + + 0.999890399981;0.983488556091;0.967076661688;0.950654222484;0.93422321563;0.917787199996;0.901348152732;0.884908611181;0.868471574019;0.852045608898;0.835638756228;0.819262055096;0.802922573814;0.786623805348;0.770361762445;0.75412736669;0.737910567571;0.721701314574;0.705493560916;0.689281787054;0.673061972781;0.65683362381;0.640596196425;0.624347219188;0.608086675623;0.591813577155;0.575526375017;0.559225612925;0.542910252874;0.526580838582;0.510237831383;0.493880736989;0.477510593405;0.461127861966;0.444734074962;0.428330731733;0.411917832279;0.395497897466;0.379071421581;0.362639426152;0.346203394042;0.329764857541;0.313324805226;0.296885263674;0.280448226513;0.264014715269;0.247587250809;0.231167315996;0.214756426644;0.198356098569;0.181967336822;0.165591657218;0.149230542619;0.132886530369;0.116563146384;0.100262878579;0.0839902579225;0.0677578722702;0.0515938795342;0.0355641188122;0.0198762897197;0.0055068407745;0.0;0.00932773272622;0.0227177015235;0.0378891484448;0.0536554209666;0.0696529870948;0.0857636956362;0.101948810925;0.118186732598;0.134460852593;0.150763130501;0.167087519537;0.183430526736;0.199789120468;0.21616028558;0.232542506255;0.248933788869;0.265332090365;0.281737443697;0.298148843812;0.314565763472;0.330987197624;0.347412668457;0.363841648732;0.380273660637;0.396707666169;0.413144192567;0.429581724016;0.44602077128;0.462460823595;0.47890087591;0.49534091175;0.511779959014;0.528218001226;0.544654527624;0.561088038868;0.577519029246;0.593946015894;0.61036796081;0.626783875418;0.643191238853;0.659588535298;0.675973787603;0.692345447002;0.70870252492;0.725043522016;0.741367416764;0.757674719928;0.773964937221;0.790238052164;0.80649406476;0.822732991484;0.838955310147;0.855160048651;0.871348179094;0.887518218614;0.903669656447;0.919800466014;0.935908159402;0.951988189164;0.968035035758;0.984042158112;1.0 + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + 0.00173087955828;0.00284474000641;0.00379751215206;0.00455563387267;0.00511017504039;0.00546711653421;0.00563749744206;0.00559891006307;0.00527655221933;0.00461170255359;0.00356804740942;0.00213350969512;0.000321863556214;-0.00182533790319;-0.00423790585536;-0.00683098760953;-0.00952852879274;-0.012273208529;-0.015028647257;-0.0177565376939;-0.0204393820615;-0.0230703591921;-0.0256408025779;-0.0281418150435;-0.0305643181749;-0.0328990028903;-0.0351371038244;-0.0372705476146;-0.0392925625216;-0.0411964097591;-0.0429757459705;-0.0446246067531;-0.0461379503742;-0.0475118884386;-0.0487444767489;-0.0498359624486;-0.050786543253;-0.0515945056317;-0.0522569662412;-0.0527699543048;-0.0531294660937;-0.0533317944515;-0.0533737759381;-0.0532512091097;-0.0529598925221;-0.0524965474017;-0.0518592954558;-0.0510490099256;-0.050070271209;-0.0489292578998;-0.0476320003058;-0.0461812499609;-0.0445732502798;-0.0427989393249;-0.0408463223855;-0.0387053983776;-0.0363660508833;-0.0337628527112;-0.0307662511027;-0.0271349843196;-0.0222437292214;-0.0144025167802;0.0;0.013297652365;0.0227689920917;0.0290516006513;0.0336982987612;0.0374815424802;0.0407521111844;0.043635059616;0.0462071506269;0.0485343056957;0.0506563808729;0.0525985024406;0.0543803595184;0.0560156932992;0.0575163502073;0.0588943084769;0.0601613486272;0.0613269280261;0.062394292495;0.0633644141325;0.0642382320851;0.0650175422641;0.0657057058245;0.0663069406865;0.0668239654315;0.0672579498733;0.0676087292494;0.0678764188935;0.0680615789982;0.0681640942297;0.0681825146779;0.0681146984302;0.0679579433817;0.0677088554245;0.0673637933074;0.0669191157789;0.0663709838727;0.0657158222423;0.0649490340139;0.0640563507543;0.0630226802181;0.0618385485609;0.0604989799553;0.0590029199211;0.057352180846;0.05555071703;0.0536041963033;0.0515199011689;0.0493056248931;0.0469690454089;0.0445166214064;0.0419529662359;0.0392852800188;0.0365183408679;0.0336538623132;0.0306909052085;0.0276261907798;0.0244529802407;0.0211612395545;0.0177369309556;0.0141615516147;0.010411919447;0.0064597282539 + + + + Profile_MainWing_1 + + 1;0.9898;0.9799;0.9699;0.9599;0.9499;0.9399;0.9299;0.9199;0.9098;0.8997;0.8896;0.8795;0.8693;0.8591;0.8489;0.8387;0.8285;0.8182;0.808;0.7978;0.7875;0.7772;0.767;0.7567;0.7465;0.7362;0.7259;0.7156;0.7054;0.6951;0.6848;0.6745;0.6642;0.6539;0.6436;0.6333;0.623;0.6127;0.6024;0.5921;0.5817;0.5714;0.5611;0.5508;0.5405;0.5301;0.5198;0.5095;0.4991;0.4888;0.4785;0.4681;0.4578;0.4475;0.4371;0.4268;0.4164;0.4061;0.3957;0.3854;0.3751;0.3647;0.3544;0.344;0.3337;0.3233;0.313;0.3026;0.2923;0.282;0.2716;0.2613;0.2509;0.2406;0.2303;0.2199;0.2096;0.1993;0.189;0.1786;0.1683;0.158;0.1477;0.1375;0.1272;0.117;0.1067;0.0965;0.0864;0.0763;0.0662;0.0563;0.0465;0.0369;0.0277;0.019;0.0113;0.0051;0.0013;0;0;0.0015;0.0062;0.013;0.021;0.0297;0.0389;0.0484;0.058;0.0679;0.0778;0.0878;0.0979;0.108;0.1182;0.1284;0.1386;0.1488;0.1591;0.1694;0.1797;0.19;0.2003;0.2106;0.2209;0.2312;0.2415;0.2519;0.2622;0.2725;0.2829;0.2932;0.3036;0.3139;0.3242;0.3346;0.3449;0.3553;0.3656;0.376;0.3863;0.3966;0.407;0.4173;0.4276;0.438;0.4483;0.4586;0.4689;0.4793;0.4896;0.4999;0.5102;0.5205;0.5307;0.541;0.5512;0.5614;0.5716;0.5818;0.592;0.6021;0.6123;0.6224;0.6326;0.6427;0.6528;0.6629;0.673;0.6831;0.6932;0.7032;0.7133;0.7234;0.7334;0.7435;0.7536;0.7638;0.7739;0.7841;0.7943;0.8045;0.8147;0.825;0.8352;0.8455;0.8557;0.866;0.8763;0.8866;0.8969;0.9072;0.9175;0.9278;0.9382;0.9485;0.9588;0.9692;0.9795;0.9899;1 + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0.0021;0.005;0.0078;0.0105;0.0132;0.0159;0.0186;0.0211;0.0236;0.026;0.0283;0.0304;0.0325;0.0344;0.0362;0.038;0.0397;0.0412;0.0428;0.0442;0.0456;0.047;0.0484;0.0497;0.051;0.0523;0.0536;0.0548;0.056;0.0572;0.0583;0.0594;0.0605;0.0615;0.0625;0.0635;0.0644;0.0653;0.0661;0.067;0.0678;0.0685;0.0692;0.0699;0.0706;0.0712;0.0719;0.0724;0.073;0.0735;0.074;0.0745;0.0749;0.0754;0.0757;0.0761;0.0764;0.0767;0.077;0.0772;0.0774;0.0776;0.0777;0.0778;0.0778;0.0778;0.0778;0.0777;0.0776;0.0775;0.0773;0.077;0.0767;0.0764;0.076;0.0756;0.0751;0.0745;0.0738;0.0731;0.0723;0.0714;0.0704;0.0693;0.0681;0.0668;0.0653;0.0638;0.062;0.06;0.0578;0.0554;0.0525;0.0492;0.0453;0.0406;0.0349;0.0281;0.0198;0.0102;0;0;-0.0102;-0.0194;-0.0272;-0.0337;-0.0393;-0.0441;-0.0482;-0.0518;-0.0551;-0.058;-0.0606;-0.0629;-0.0651;-0.067;-0.0687;-0.0703;-0.0718;-0.0731;-0.0742;-0.0753;-0.0762;-0.0771;-0.078;-0.0788;-0.0795;-0.0801;-0.0807;-0.0812;-0.0816;-0.0819;-0.0822;-0.0824;-0.0826;-0.0827;-0.0828;-0.0827;-0.0826;-0.0824;-0.0822;-0.0819;-0.0815;-0.0812;-0.0807;-0.0802;-0.0796;-0.079;-0.0784;-0.0777;-0.077;-0.0762;-0.0753;-0.0742;-0.0731;-0.0718;-0.0704;-0.0689;-0.0672;-0.0655;-0.0637;-0.0619;-0.0599;-0.0579;-0.0559;-0.0538;-0.0517;-0.0495;-0.0473;-0.045;-0.0427;-0.0404;-0.038;-0.0356;-0.0332;-0.0309;-0.0286;-0.0264;-0.0243;-0.0224;-0.0205;-0.0187;-0.0171;-0.0155;-0.014;-0.0125;-0.0111;-0.0099;-0.0087;-0.0075;-0.0065;-0.0056;-0.0047;-0.004;-0.0034;-0.0029;-0.0024;-0.0021;-0.0018;-0.0017;-0.0018;-0.0021 + + + + Profile_MainWing_2 + + 1;0.9898;0.9798;0.9698;0.9598;0.9498;0.9397;0.9297;0.9196;0.9096;0.8995;0.8893;0.8792;0.869;0.8589;0.8487;0.8385;0.8283;0.8181;0.8079;0.7977;0.7874;0.7772;0.767;0.7568;0.7465;0.7363;0.7261;0.7158;0.7056;0.6953;0.6851;0.6748;0.6646;0.6543;0.644;0.6338;0.6235;0.6132;0.603;0.5927;0.5824;0.5721;0.5619;0.5516;0.5413;0.531;0.5207;0.5104;0.5002;0.4899;0.4796;0.4693;0.459;0.4487;0.4384;0.4281;0.4178;0.4075;0.3972;0.3869;0.3766;0.3663;0.356;0.3457;0.3354;0.3251;0.3148;0.3045;0.2942;0.2839;0.2736;0.2633;0.253;0.2427;0.2324;0.2221;0.2118;0.2015;0.1913;0.181;0.1707;0.1605;0.1502;0.14;0.1297;0.1195;0.1093;0.0991;0.089;0.0789;0.0688;0.0589;0.049;0.0393;0.0299;0.0209;0.0127;0.0059;0.0013;0;0;0.0015;0.0064;0.0133;0.0215;0.0304;0.0397;0.0492;0.059;0.0688;0.0788;0.0888;0.0989;0.1091;0.1192;0.1294;0.1396;0.1499;0.1601;0.1704;0.1807;0.191;0.2013;0.2116;0.2219;0.2322;0.2425;0.2528;0.2631;0.2734;0.2837;0.294;0.3043;0.3147;0.325;0.3353;0.3456;0.3559;0.3663;0.3766;0.3869;0.3972;0.4075;0.4178;0.4281;0.4384;0.4487;0.459;0.4693;0.4796;0.4899;0.5002;0.5105;0.5207;0.531;0.5413;0.5515;0.5617;0.5719;0.5821;0.5923;0.6025;0.6126;0.6228;0.6329;0.643;0.6532;0.6633;0.6734;0.6835;0.6936;0.7037;0.7138;0.7238;0.7339;0.744;0.7541;0.7642;0.7744;0.7845;0.7947;0.8049;0.8151;0.8253;0.8356;0.8458;0.856;0.8663;0.8766;0.8868;0.8971;0.9074;0.9177;0.928;0.9383;0.9486;0.9589;0.9692;0.9795;0.9899;1 + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0.0019;0.0044;0.0068;0.0093;0.0117;0.0141;0.0164;0.0187;0.0209;0.023;0.025;0.027;0.0288;0.0305;0.0322;0.0338;0.0353;0.0367;0.0381;0.0394;0.0407;0.042;0.0433;0.0445;0.0457;0.0469;0.0481;0.0492;0.0504;0.0515;0.0525;0.0536;0.0546;0.0556;0.0565;0.0574;0.0583;0.0591;0.0599;0.0607;0.0615;0.0622;0.0629;0.0636;0.0642;0.0649;0.0655;0.066;0.0666;0.0671;0.0676;0.0681;0.0685;0.069;0.0693;0.0697;0.0701;0.0704;0.0706;0.0709;0.0711;0.0713;0.0714;0.0716;0.0716;0.0717;0.0717;0.0716;0.0716;0.0715;0.0713;0.0711;0.0709;0.0706;0.0703;0.0699;0.0694;0.0689;0.0683;0.0677;0.067;0.0661;0.0652;0.0643;0.0631;0.0619;0.0606;0.0592;0.0576;0.0558;0.0538;0.0516;0.049;0.046;0.0425;0.0384;0.0333;0.0271;0.0194;0.0102;0;0;-0.0102;-0.0192;-0.0268;-0.0331;-0.0384;-0.0429;-0.0467;-0.0501;-0.0531;-0.0558;-0.0582;-0.0603;-0.0623;-0.064;-0.0656;-0.0671;-0.0684;-0.0695;-0.0706;-0.0715;-0.0724;-0.0731;-0.0738;-0.0745;-0.075;-0.0756;-0.0761;-0.0764;-0.0768;-0.077;-0.0772;-0.0774;-0.0774;-0.0775;-0.0775;-0.0774;-0.0773;-0.0772;-0.0769;-0.0766;-0.0762;-0.0758;-0.0753;-0.0748;-0.0743;-0.0737;-0.0731;-0.0724;-0.0717;-0.0709;-0.0701;-0.0692;-0.0682;-0.0671;-0.0659;-0.0646;-0.0632;-0.0617;-0.0601;-0.0584;-0.0566;-0.0548;-0.053;-0.0511;-0.0491;-0.0471;-0.0451;-0.043;-0.0409;-0.0388;-0.0366;-0.0344;-0.0322;-0.03;-0.0279;-0.0258;-0.0238;-0.0219;-0.0201;-0.0184;-0.0168;-0.0152;-0.0138;-0.0124;-0.0111;-0.0098;-0.0087;-0.0076;-0.0066;-0.0057;-0.0049;-0.0042;-0.0035;-0.003;-0.0025;-0.0022;-0.0019;-0.0017;-0.0017;-0.0019 + + + + Profile_MainWing_3 + + 1;0.9902;0.9803;0.9703;0.9604;0.9504;0.9404;0.9304;0.9204;0.9104;0.9004;0.8903;0.8803;0.8703;0.8602;0.8501;0.8401;0.83;0.8199;0.8098;0.7997;0.7896;0.7795;0.7694;0.7593;0.7492;0.739;0.7289;0.7187;0.7086;0.6984;0.6882;0.6781;0.6679;0.6577;0.6475;0.6373;0.6271;0.6169;0.6067;0.5965;0.5863;0.576;0.5658;0.5556;0.5454;0.5352;0.5249;0.5147;0.5045;0.4943;0.4841;0.4738;0.4636;0.4534;0.4432;0.4329;0.4227;0.4125;0.4023;0.3921;0.3818;0.3716;0.3614;0.3511;0.3409;0.3307;0.3205;0.3103;0.3001;0.2898;0.2796;0.2694;0.2592;0.249;0.2388;0.2286;0.2184;0.2082;0.198;0.1879;0.1777;0.1675;0.1573;0.1472;0.137;0.1269;0.1168;0.1067;0.0966;0.0865;0.0764;0.0664;0.0565;0.0466;0.0368;0.0273;0.0183;0.0102;0.0034;0;0;0.0041;0.0122;0.0215;0.0311;0.0409;0.0508;0.0608;0.0708;0.0808;0.0908;0.1008;0.1109;0.1209;0.131;0.1411;0.1512;0.1613;0.1714;0.1815;0.1916;0.2017;0.2118;0.2219;0.2321;0.2422;0.2523;0.2625;0.2726;0.2828;0.2929;0.3031;0.3132;0.3234;0.3335;0.3437;0.3538;0.364;0.3741;0.3843;0.3944;0.4046;0.4147;0.4248;0.435;0.4451;0.4552;0.4654;0.4755;0.4856;0.4957;0.5058;0.5159;0.526;0.5361;0.5462;0.5563;0.5664;0.5764;0.5865;0.5966;0.6066;0.6167;0.6267;0.6368;0.6468;0.6568;0.6669;0.6769;0.6869;0.6969;0.707;0.717;0.727;0.737;0.7471;0.7571;0.7671;0.7772;0.7872;0.7973;0.8074;0.8175;0.8276;0.8377;0.8478;0.858;0.8681;0.8783;0.8884;0.8986;0.9087;0.9189;0.929;0.9391;0.9493;0.9594;0.9696;0.9797;0.9898;1 + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0.0024;0.0049;0.0074;0.0098;0.0121;0.0144;0.0166;0.0188;0.0209;0.023;0.025;0.027;0.0289;0.0308;0.0327;0.0345;0.0363;0.0381;0.0398;0.0414;0.0431;0.0447;0.0462;0.0477;0.0491;0.0505;0.0519;0.0532;0.0544;0.0556;0.0567;0.0578;0.0588;0.0597;0.0606;0.0614;0.0622;0.0629;0.0635;0.0641;0.0647;0.0652;0.0656;0.0661;0.0664;0.0668;0.0671;0.0674;0.0676;0.0678;0.0679;0.0681;0.0682;0.0682;0.0682;0.0682;0.0682;0.0681;0.068;0.0679;0.0677;0.0675;0.0673;0.0671;0.0668;0.0664;0.0661;0.0657;0.0652;0.0648;0.0643;0.0637;0.0631;0.0625;0.0618;0.0611;0.0604;0.0596;0.0588;0.0579;0.057;0.056;0.0549;0.0538;0.0526;0.0514;0.0501;0.0486;0.0471;0.0455;0.0437;0.0418;0.0398;0.0375;0.0349;0.0318;0.0282;0.0233;0.0171;0.0095;0;0;-0.009;-0.015;-0.0192;-0.0224;-0.025;-0.0272;-0.0292;-0.0311;-0.0328;-0.0343;-0.0358;-0.0372;-0.0386;-0.0399;-0.0411;-0.0422;-0.0433;-0.0443;-0.0453;-0.0462;-0.047;-0.0478;-0.0485;-0.0492;-0.0498;-0.0503;-0.0508;-0.0512;-0.0515;-0.0518;-0.052;-0.0521;-0.0522;-0.0522;-0.0521;-0.052;-0.0518;-0.0516;-0.0513;-0.051;-0.0506;-0.0502;-0.0496;-0.0491;-0.0485;-0.0478;-0.0471;-0.0463;-0.0455;-0.0446;-0.0436;-0.0427;-0.0416;-0.0406;-0.0394;-0.0383;-0.037;-0.0358;-0.0345;-0.0332;-0.0318;-0.0304;-0.029;-0.0275;-0.026;-0.0245;-0.0229;-0.0214;-0.0198;-0.0182;-0.0166;-0.015;-0.0133;-0.0117;-0.0101;-0.0086;-0.007;-0.0056;-0.0042;-0.0029;-0.0018;-0.0007;0.0002;0.0009;0.0015;0.0019;0.0022;0.0024;0.0024;0.0023;0.0022;0.002;0.0017;0.0013;0.0009;0.0004;-0.0002;-0.0009;-0.0016;-0.0024 + + + + Profile_HorizontalStabiliser_1 + + 1;0.98952;0.969839;0.946227;0.920506;0.893968;0.867152;0.840237;0.81328;0.786301;0.759311;0.732314;0.705318;0.678327;0.651346;0.624382;0.597439;0.570525;0.543645;0.516806;0.490016;0.463283;0.436617;0.410027;0.383526;0.357128;0.33085;0.304713;0.278743;0.252974;0.227451;0.202237;0.177426;0.153163;0.129693;0.107423;0.086964;0.06902;0.054048;0.041996;0.032424;0.024799;0.018663;0.013682;0.009627;0.006354;0.003785;0.001888;0.000655;6.9e-05;6.9e-05;0.000655;0.001888;0.003785;0.006355;0.009627;0.013682;0.018663;0.024799;0.032424;0.041996;0.054048;0.06902;0.086964;0.107423;0.129694;0.153163;0.177426;0.202238;0.227452;0.252975;0.278744;0.304713;0.33085;0.357128;0.383526;0.410027;0.436617;0.463284;0.490017;0.516807;0.543645;0.570525;0.59744;0.624382;0.651347;0.678327;0.705318;0.732315;0.759311;0.786301;0.81328;0.840237;0.867152;0.893968;0.920506;0.946227;0.969839;0.98952;1 + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0.00126;0.002721;0.005415;0.008563;0.011893;0.015226;0.01849;0.021666;0.024749;0.027736;0.030628;0.033423;0.03612;0.038715;0.041204;0.043582;0.045844;0.047981;0.049986;0.051849;0.053559;0.055104;0.05647;0.057641;0.058601;0.059331;0.059809;0.060012;0.059914;0.059485;0.058693;0.057503;0.055874;0.053768;0.051155;0.048034;0.044472;0.040632;0.036739;0.032971;0.02941;0.026051;0.022853;0.019763;0.016731;0.013712;0.010671;0.007597;0.00451;0.001471;-0.001471;-0.004511;-0.007597;-0.010671;-0.013712;-0.016731;-0.019764;-0.022853;-0.026051;-0.02941;-0.032972;-0.036739;-0.040632;-0.044472;-0.048034;-0.051155;-0.053768;-0.055874;-0.057503;-0.058693;-0.059485;-0.059914;-0.060012;-0.059809;-0.059331;-0.058601;-0.057641;-0.05647;-0.055104;-0.053559;-0.051849;-0.049986;-0.047981;-0.045843;-0.043582;-0.041204;-0.038714;-0.03612;-0.033423;-0.030628;-0.027736;-0.024749;-0.021666;-0.01849;-0.015226;-0.011893;-0.008563;-0.005415;-0.002721;-0.00126 + + + + Profile_HorizontalStabiliser_2 + + 1;0.98952;0.969839;0.946227;0.920506;0.893968;0.867152;0.840237;0.81328;0.786301;0.759311;0.732314;0.705318;0.678327;0.651346;0.624382;0.597439;0.570525;0.543645;0.516806;0.490016;0.463283;0.436617;0.410027;0.383526;0.357128;0.33085;0.304713;0.278743;0.252974;0.227451;0.202237;0.177426;0.153163;0.129693;0.107423;0.086964;0.06902;0.054048;0.041996;0.032424;0.024799;0.018663;0.013682;0.009627;0.006354;0.003785;0.001888;0.000655;6.9e-05;6.9e-05;0.000655;0.001888;0.003785;0.006355;0.009627;0.013682;0.018663;0.024799;0.032424;0.041996;0.054048;0.06902;0.086964;0.107423;0.129694;0.153163;0.177426;0.202238;0.227452;0.252975;0.278744;0.304713;0.33085;0.357128;0.383526;0.410027;0.436617;0.463284;0.490017;0.516807;0.543645;0.570525;0.59744;0.624382;0.651347;0.678327;0.705318;0.732315;0.759311;0.786301;0.81328;0.840237;0.867152;0.893968;0.920506;0.946227;0.969839;0.98952;1 + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0.00126;0.002721;0.005415;0.008563;0.011893;0.015226;0.01849;0.021666;0.024749;0.027736;0.030628;0.033423;0.03612;0.038715;0.041204;0.043582;0.045844;0.047981;0.049986;0.051849;0.053559;0.055104;0.05647;0.057641;0.058601;0.059331;0.059809;0.060012;0.059914;0.059485;0.058693;0.057503;0.055874;0.053768;0.051155;0.048034;0.044472;0.040632;0.036739;0.032971;0.02941;0.026051;0.022853;0.019763;0.016731;0.013712;0.010671;0.007597;0.00451;0.001471;-0.001471;-0.004511;-0.007597;-0.010671;-0.013712;-0.016731;-0.019764;-0.022853;-0.026051;-0.02941;-0.032972;-0.036739;-0.040632;-0.044472;-0.048034;-0.051155;-0.053768;-0.055874;-0.057503;-0.058693;-0.059485;-0.059914;-0.060012;-0.059809;-0.059331;-0.058601;-0.057641;-0.05647;-0.055104;-0.053559;-0.051849;-0.049986;-0.047981;-0.045843;-0.043582;-0.041204;-0.038714;-0.03612;-0.033423;-0.030628;-0.027736;-0.024749;-0.021666;-0.01849;-0.015226;-0.011893;-0.008563;-0.005415;-0.002721;-0.00126 + + + + Profile_VerticalStabiliser_1 + + 1;0.98952;0.969839;0.946227;0.920506;0.893968;0.867152;0.840237;0.81328;0.786301;0.759311;0.732314;0.705318;0.678327;0.651346;0.624382;0.597439;0.570525;0.543645;0.516806;0.490016;0.463283;0.436617;0.410027;0.383526;0.357128;0.33085;0.304713;0.278743;0.252974;0.227451;0.202237;0.177426;0.153163;0.129693;0.107423;0.086964;0.06902;0.054048;0.041996;0.032424;0.024799;0.018663;0.013682;0.009627;0.006354;0.003785;0.001888;0.000655;6.9e-05;0;6.9e-05;0.000655;0.001888;0.003785;0.006355;0.009627;0.013682;0.018663;0.024799;0.032424;0.041996;0.054048;0.06902;0.086964;0.107423;0.129694;0.153163;0.177426;0.202238;0.227452;0.252975;0.278744;0.304713;0.33085;0.357128;0.383526;0.410027;0.436617;0.463284;0.490017;0.516807;0.543645;0.570525;0.59744;0.624382;0.651347;0.678327;0.705318;0.732315;0.759311;0.786301;0.81328;0.840237;0.867152;0.893968;0.920506;0.946227;0.969839;0.98952;1 + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0.00126;0.002721;0.005415;0.008563;0.011893;0.015226;0.01849;0.021666;0.024749;0.027736;0.030628;0.033423;0.03612;0.038715;0.041204;0.043582;0.045844;0.047981;0.049986;0.051849;0.053559;0.055104;0.05647;0.057641;0.058601;0.059331;0.059809;0.060012;0.059914;0.059485;0.058693;0.057503;0.055874;0.053768;0.051155;0.048034;0.044472;0.040632;0.036739;0.032971;0.02941;0.026051;0.022853;0.019763;0.016731;0.013712;0.010671;0.007597;0.00451;0.001471;0;-0.001471;-0.004511;-0.007597;-0.010671;-0.013712;-0.016731;-0.019764;-0.022853;-0.026051;-0.02941;-0.032972;-0.036739;-0.040632;-0.044472;-0.048034;-0.051155;-0.053768;-0.055874;-0.057503;-0.058693;-0.059485;-0.059914;-0.060012;-0.059809;-0.059331;-0.058601;-0.057641;-0.05647;-0.055104;-0.053559;-0.051849;-0.049986;-0.047981;-0.045843;-0.043582;-0.041204;-0.038714;-0.03612;-0.033423;-0.030628;-0.027736;-0.024749;-0.021666;-0.01849;-0.015226;-0.011893;-0.008563;-0.005415;-0.002721;-0.00126 + + + + Profile_VerticalStabiliser_2 + + 1;0.98952;0.969839;0.946227;0.920506;0.893968;0.867152;0.840237;0.81328;0.786301;0.759311;0.732314;0.705318;0.678327;0.651346;0.624382;0.597439;0.570525;0.543645;0.516806;0.490016;0.463283;0.436617;0.410027;0.383526;0.357128;0.33085;0.304713;0.278743;0.252974;0.227451;0.202237;0.177426;0.153163;0.129693;0.107423;0.086964;0.06902;0.054048;0.041996;0.032424;0.024799;0.018663;0.013682;0.009627;0.006354;0.003785;0.001888;0.000655;6.9e-05;0;6.9e-05;0.000655;0.001888;0.003785;0.006355;0.009627;0.013682;0.018663;0.024799;0.032424;0.041996;0.054048;0.06902;0.086964;0.107423;0.129694;0.153163;0.177426;0.202238;0.227452;0.252975;0.278744;0.304713;0.33085;0.357128;0.383526;0.410027;0.436617;0.463284;0.490017;0.516807;0.543645;0.570525;0.59744;0.624382;0.651347;0.678327;0.705318;0.732315;0.759311;0.786301;0.81328;0.840237;0.867152;0.893968;0.920506;0.946227;0.969839;0.98952;1 + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0.00126;0.002721;0.005415;0.008563;0.011893;0.015226;0.01849;0.021666;0.024749;0.027736;0.030628;0.033423;0.03612;0.038715;0.041204;0.043582;0.045844;0.047981;0.049986;0.051849;0.053559;0.055104;0.05647;0.057641;0.058601;0.059331;0.059809;0.060012;0.059914;0.059485;0.058693;0.057503;0.055874;0.053768;0.051155;0.048034;0.044472;0.040632;0.036739;0.032971;0.02941;0.026051;0.022853;0.019763;0.016731;0.013712;0.010671;0.007597;0.00451;0.001471;0;-0.001471;-0.004511;-0.007597;-0.010671;-0.013712;-0.016731;-0.019764;-0.022853;-0.026051;-0.02941;-0.032972;-0.036739;-0.040632;-0.044472;-0.048034;-0.051155;-0.053768;-0.055874;-0.057503;-0.058693;-0.059485;-0.059914;-0.060012;-0.059809;-0.059331;-0.058601;-0.057641;-0.05647;-0.055104;-0.053559;-0.051849;-0.049986;-0.047981;-0.045843;-0.043582;-0.041204;-0.038714;-0.03612;-0.033423;-0.030628;-0.027736;-0.024749;-0.021666;-0.01849;-0.015226;-0.011893;-0.008563;-0.005415;-0.002721;-0.00126 + + + + + + NASA_CRM_fus1_profile1 + points from IGES slices + + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + 0.0;0.0190291182093;0.038022167145;0.0569430775335;0.0757506273477;0.0944139000675;0.112891673666;0.131137573362;0.14912583539;0.166820390476;0.184180016592;0.201178949972;0.217775968589;0.233955614182;0.249681817479;0.264928814712;0.279675994868;0.293897594179;0.307588459894;0.320727980997;0.333290393722;0.345265392563;0.356647824765;0.367417079316;0.377568003463;0.387105749957;0.396020013294;0.404305640719;0.411957479479;0.418970376821;0.425339179991;0.431079347249;0.436196031349;0.440678926785;0.444533186308;0.447763962673;0.450371255881;0.452355065929;0.453720545574;0.454478000319;0.454642888427;0.45417398787;0.452968243581;0.45110294686;0.448572944953;0.445404001628;0.441580658625;0.437118374203;0.432022301117;0.426276981105;0.419903025182;0.41287466958;0.405176456039;0.396787773547;0.387744691376;0.378088431553;0.367829299586;0.356946684461;0.345461197191;0.333383143283;0.320727980997;0.307511168593;0.293743011578;0.279449273719;0.264655718783;0.249382957783;0.233656754487;0.217497719907;0.200926465057;0.183958448197;0.166634891354;0.148981558296;0.131029365541;0.112814382365;0.0943675252871;0.0757300163342;0.0569327720267;0.038022167145;0.0190291182093;-0.0;-0.0190291182093;-0.038022167145;-0.0569327720267;-0.0757300163342;-0.0943675252871;-0.112814382365;-0.131029365541;-0.148981558296;-0.166634891354;-0.183958448197;-0.200926465057;-0.217497719907;-0.233656754487;-0.249382957783;-0.264655718783;-0.279449273719;-0.293743011578;-0.307511168593;-0.320727980997;-0.333383143283;-0.345461197191;-0.356946684461;-0.367829299586;-0.378088431553;-0.387744691376;-0.396787773547;-0.405176456039;-0.41287466958;-0.419903025182;-0.426276981105;-0.432022301117;-0.437118374203;-0.441580658625;-0.445404001628;-0.448572944953;-0.45110294686;-0.452968243581;-0.45417398787;-0.454642888427;-0.454478000319;-0.453720545574;-0.452355065929;-0.450371255881;-0.447763962673;-0.444533186308;-0.440678926785;-0.436196031349;-0.431079347249;-0.425339179991;-0.418970376821;-0.411957479479;-0.404305640719;-0.396020013294;-0.387105749957;-0.377568003463;-0.367417079316;-0.356647824765;-0.345265392563;-0.333290393722;-0.320727980997;-0.307588459894;-0.293897594179;-0.279675994868;-0.264928814712;-0.249681817479;-0.233955614182;-0.217775968589;-0.201178949972;-0.184180016592;-0.166820390476;-0.14912583539;-0.131137573362;-0.112891673666;-0.0944139000675;-0.0757506273477;-0.0569430775335;-0.038022167145;-0.0190291182093;-0.0 + 0.0;0.00034008172267;0.00147884021827;0.00351417780091;0.00639971969022;0.0101200076261;0.0146853471152;0.0200802798976;0.0262841949596;0.0332919395479;0.0410880554024;0.0496467787562;0.0589474985959;0.0689747566612;0.0796873309253;0.0910697631279;0.103101442256;0.115741146282;0.128963111439;0.142731268453;0.157019853559;0.171808255741;0.187065558481;0.202750539751;0.218847741291;0.235315941073;0.252129375332;0.269262280299;0.28668889221;0.304378294542;0.322309876282;0.340452720911;0.358786217415;0.377279449274;0.395916958227;0.414667827754;0.433521752348;0.45244781549;0.471425406166;0.490444218868;0.509473337078;0.528497302534;0.547490351469;0.566431872871;0.585290950219;0.604057278007;0.622694786959;0.641198324325;0.659531820828;0.677679818211;0.695606247198;0.713290496777;0.73069134492;0.747772722354;0.764519170819;0.780920384808;0.7969454478;0.812558290523;0.827733149208;0.842439107337;0.856650401142;0.870341266856;0.883475635206;0.896043200684;0.908013046772;0.919364562454;0.930077136718;0.940135311304;0.949487558677;0.958102962318;0.965976369473;0.973082016375;0.979394139258;0.984902432615;0.989591438185;0.993419933942;0.996393072638;0.998505701522;0.999659918277;1.0;0.999659918277;0.998505701522;0.996393072638;0.993419933942;0.989591438185;0.984902432615;0.979394139258;0.973082016375;0.965976369473;0.958102962318;0.949487558677;0.940135311304;0.930077136718;0.919364562454;0.908013046772;0.896043200684;0.883475635206;0.870341266856;0.856650401142;0.842439107337;0.827733149208;0.812558290523;0.7969454478;0.780920384808;0.764519170819;0.747772722354;0.73069134492;0.713290496777;0.695606247198;0.677679818211;0.659531820828;0.641198324325;0.622694786959;0.604057278007;0.585290950219;0.566431872871;0.547490351469;0.528497302534;0.509473337078;0.490444218868;0.471425406166;0.45244781549;0.433521752348;0.414667827754;0.395916958227;0.377279449274;0.358786217415;0.340452720911;0.322309876282;0.304378294542;0.28668889221;0.269262280299;0.252129375332;0.235315941073;0.218847741291;0.202750539751;0.187065558481;0.171808255741;0.157019853559;0.142731268453;0.128963111439;0.115741146282;0.103101442256;0.0910697631279;0.0796873309253;0.0689747566612;0.0589474985959;0.0496467787562;0.0410880554024;0.0332919395479;0.0262841949596;0.0200802798976;0.0146853471152;0.0101200076261;0.00639971969022;0.00351417780091;0.00147884021827;0.00034008172267;0.0 + + + + NASA_CRM_fus1_profile2 + points from IGES slices + + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + 0.0;0.0190152038905;0.0379979082094;0.0569156133851;0.0757328653395;0.094417164501;0.112924193272;0.131221452081;0.149270532343;0.167030070967;0.184467568382;0.20153870699;0.218213941725;0.234460773017;0.25024079228;0.265527408957;0.280294032488;0.294514072315;0.308163892385;0.321231674673;0.33369969214;0.345550217747;0.356780296987;0.367375157327;0.377331844262;0.386650357791;0.395327743407;0.403364001111;0.410762085409;0.41753085982;0.423676233359;0.42920116053;0.434105641335;0.438395584785;0.442085763415;0.445193904262;0.447720007327;0.449675890636;0.451067463202;0.45190654305;0.452213811727;0.451918361076;0.450925646889;0.449250441699;0.446901609024;0.443890966892;0.440215560795;0.43587834524;0.430882274734;0.425233258289;0.418931295906;0.411964569558;0.404330124739;0.396016143424;0.387049216169;0.377455933535;0.367245159041;0.35641393818;0.344977043484;0.332946292981;0.320333504695;0.307153451159;0.293429768426;0.279177229027;0.26441651451;0.249174215431;0.23346805883;0.217324635266;0.200764626284;0.183811667937;0.166498259796;0.148856901432;0.130920092417;0.112717377816;0.0942871662146;0.0756619571833;0.0568831138135;0.0379890446899;0.019012249384;-0.0;-0.019012249384;-0.0379890446899;-0.0568831138135;-0.0756619571833;-0.0942871662146;-0.112717377816;-0.130920092417;-0.148856901432;-0.166498259796;-0.183811667937;-0.200764626284;-0.217324635266;-0.23346805883;-0.249174215431;-0.26441651451;-0.279177229027;-0.293429768426;-0.307153451159;-0.320333504695;-0.332946292981;-0.344977043484;-0.35641393818;-0.367245159041;-0.377455933535;-0.387049216169;-0.396016143424;-0.404330124739;-0.411964569558;-0.418931295906;-0.425233258289;-0.430882274734;-0.43587834524;-0.440215560795;-0.443890966892;-0.446901609024;-0.449250441699;-0.450925646889;-0.451918361076;-0.452213811727;-0.45190654305;-0.451067463202;-0.449675890636;-0.447720007327;-0.445193904262;-0.442085763415;-0.438395584785;-0.434105641335;-0.42920116053;-0.423676233359;-0.41753085982;-0.410762085409;-0.403364001111;-0.395327743407;-0.386650357791;-0.377331844262;-0.367375157327;-0.356780296987;-0.345550217747;-0.33369969214;-0.321231674673;-0.308163892385;-0.294514072315;-0.280294032488;-0.265527408957;-0.25024079228;-0.234460773017;-0.218213941725;-0.20153870699;-0.184467568382;-0.167030070967;-0.149270532343;-0.131221452081;-0.112924193272;-0.094417164501;-0.0757328653395;-0.0569156133851;-0.0379979082094;-0.0190152038905;-0.0 + 0.0;0.000381131339629;0.00153338887806;0.00348927218687;0.00624878126606;0.00980600710263;0.0141816312421;0.0193697446715;0.0253673928844;0.0321657123611;0.0397617485951;0.0481436835605;0.0572878812052;0.0671766144901;0.0777892018696;0.0891049617982;0.101088440198;0.113718955523;0.126961053695;0.140779280637;0.155141136776;0.170017077048;0.185365738361;0.201160530157;0.217363043851;0.233943734378;0.25086714766;0.268106693139;0.285626916736;0.303401227893;0.321400081544;0.339596887132;0.357973917617;0.376501627933;0.395159336536;0.413923407373;0.432773158899;0.451693818581;0.470661750368;0.489662181726;0.508677385616;0.527695544013;0.546690066358;0.565634362092;0.584507749671;0.60328659304;0.62194725615;0.640466102947;0.658816542873;0.676974939876;0.69492061241;0.712618106398;0.730037876773;0.747141514953;0.763914248403;0.780338350085;0.796381320428;0.812016568872;0.827211595847;0.841939810793;0.856177577659;0.869889442366;0.88305472337;0.89564683011;0.907639172029;0.919014022088;0.929735926208;0.939790111858;0.949147033971;0.957765329457;0.965639089303;0.972744677457;0.979061412372;0.984568612505;0.989260368841;0.993115999835;0.99613255098;0.998289340731;0.999565687543;1.0;0.999565687543;0.998289340731;0.99613255098;0.993115999835;0.989260368841;0.984568612505;0.979061412372;0.972744677457;0.965639089303;0.957765329457;0.949147033971;0.939790111858;0.929735926208;0.919014022088;0.907639172029;0.89564683011;0.88305472337;0.869889442366;0.856177577659;0.841939810793;0.827211595847;0.812016568872;0.796381320428;0.780338350085;0.763914248403;0.747141514953;0.730037876773;0.712618106398;0.69492061241;0.676974939876;0.658816542873;0.640466102947;0.62194725615;0.60328659304;0.584507749671;0.565634362092;0.546690066358;0.527695544013;0.508677385616;0.489662181726;0.470661750368;0.451693818581;0.432773158899;0.413923407373;0.395159336536;0.376501627933;0.357973917617;0.339596887132;0.321400081544;0.303401227893;0.285626916736;0.268106693139;0.25086714766;0.233943734378;0.217363043851;0.201160530157;0.185365738361;0.170017077048;0.155141136776;0.140779280637;0.126961053695;0.113718955523;0.101088440198;0.0891049617982;0.0777892018696;0.0671766144901;0.0572878812052;0.0481436835605;0.0397617485951;0.0321657123611;0.0253673928844;0.0193697446715;0.0141816312421;0.00980600710263;0.00624878126606;0.00348927218687;0.00153338887806;0.000381131339629;0.0 + + + + NASA_CRM_fus1_profile3 + points from IGES slices + + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + 0.0;0.0190312917313;0.0380337098928;0.0569801855127;0.0758382358249;0.0945771826614;0.113153715668;0.131535352077;0.149682390732;0.167553325874;0.185104847151;0.202297253402;0.219090843469;0.235445916194;0.251322770419;0.266687118779;0.281506478507;0.295751976035;0.309400151586;0.322427545386;0.334819720648;0.346565849785;0.35765330061;0.368076659328;0.377841339734;0.386940123435;0.395382033421;0.403174288086;0.410322301224;0.41683870502;0.422737936262;0.428029017938;0.432722777637;0.436831847548;0.440368859855;0.443359078933;0.445807918577;0.44772981557;0.449141011297;0.450048724149;0.450485436893;0.450393402389;0.449628252788;0.448173746707;0.446022665752;0.443182228318;0.439652434403;0.435435088606;0.430533800123;0.424955787346;0.418701050276;0.411775002707;0.404184863031;0.395934240445;0.38703035334;0.377485833905;0.367309705129;0.356510990003;0.345102320713;0.333096329447;0.320505648392;0.307344714332;0.293635182445;0.279391489515;0.264635290721;0.249388241239;0.233673800845;0.217515429314;0.200940195618;0.183971559534;0.166643808424;0.148985815859;0.131031869203;0.112812646624;0.0943642400837;0.0757245461436;0.0569296567654;0.0380192731079;0.0190276825351;-0.0;-0.0190276825351;-0.0380192731079;-0.0569296567654;-0.0757245461436;-0.0943642400837;-0.112812646624;-0.131031869203;-0.148985815859;-0.166643808424;-0.183971559534;-0.200940195618;-0.217515429314;-0.233673800845;-0.249388241239;-0.264635290721;-0.279391489515;-0.293635182445;-0.307344714332;-0.320505648392;-0.333096329447;-0.345102320713;-0.356510990003;-0.367309705129;-0.377485833905;-0.38703035334;-0.395934240445;-0.404184863031;-0.411775002707;-0.418701050276;-0.424955787346;-0.430533800123;-0.435435088606;-0.439652434403;-0.443182228318;-0.446022665752;-0.448173746707;-0.449628252788;-0.450393402389;-0.450485436893;-0.450048724149;-0.449141011297;-0.44772981557;-0.445807918577;-0.443359078933;-0.440368859855;-0.436831847548;-0.432722777637;-0.428029017938;-0.422737936262;-0.41683870502;-0.410322301224;-0.403174288086;-0.395382033421;-0.386940123435;-0.377841339734;-0.368076659328;-0.35765330061;-0.346565849785;-0.334819720648;-0.322427545386;-0.309400151586;-0.295751976035;-0.281506478507;-0.266687118779;-0.251322770419;-0.235445916194;-0.219090843469;-0.202297253402;-0.185104847151;-0.167553325874;-0.149682390732;-0.131535352077;-0.113153715668;-0.0945771826614;-0.0758382358249;-0.0569801855127;-0.0380337098928;-0.0190312917313;-0.0 + 0.0;0.000357310426967;0.00142382791352;0.00324105821633;0.0058198289241;0.00916374923305;0.0133034973111;0.0182426823546;0.0239831089616;0.0305356047208;0.0378947558379;0.0460587577147;0.0550167827625;0.0647525895983;0.0752499368391;0.0864835601112;0.0984263904428;0.111047749666;0.124315155015;0.138190709929;0.152638322446;0.167616486808;0.183085501859;0.199011080232;0.215349911575;0.232065903923;0.249121160718;0.266492222182;0.284132168766;0.302015736096;0.320112246003;0.338396434114;0.356843036056;0.375428592053;0.394129642329;0.412928140903;0.431806041794;0.450741689826;0.469724257408;0.48873569856;0.507766990291;0.526800086621;0.545818746165;0.564795899953;0.583708088209;0.602528241961;0.621232901433;0.639793193056;0.658185657054;0.676383224456;0.694358826289;0.712089002779;0.729543075757;0.74669578085;0.763518244487;0.779987006894;0.796071389901;0.811746129137;0.826980546432;0.841749377414;0.856023748511;0.869776590753;0.882977225972;0.895602194391;0.90762442704;0.919016854946;0.929756018335;0.939816652831;0.949169884867;0.957794059263;0.965669325441;0.972772223626;0.979088317032;0.984594145884;0.989280687191;0.993126285776;0.996134550836;0.998283827192;0.999565091854;1.0;0.999565091854;0.998283827192;0.996134550836;0.993126285776;0.989280687191;0.984594145884;0.979088317032;0.972772223626;0.965669325441;0.957794059263;0.949169884867;0.939816652831;0.929756018335;0.919016854946;0.90762442704;0.895602194391;0.882977225972;0.869776590753;0.856023748511;0.841749377414;0.826980546432;0.811746129137;0.796071389901;0.779987006894;0.763518244487;0.74669578085;0.729543075757;0.712089002779;0.694358826289;0.676383224456;0.658185657054;0.639793193056;0.621232901433;0.602528241961;0.583708088209;0.564795899953;0.545818746165;0.526800086621;0.507766990291;0.48873569856;0.469724257408;0.450741689826;0.431806041794;0.412928140903;0.394129642329;0.375428592053;0.356843036056;0.338396434114;0.320112246003;0.302015736096;0.284132168766;0.266492222182;0.249121160718;0.232065903923;0.215349911575;0.199011080232;0.183085501859;0.167616486808;0.152638322446;0.138190709929;0.124315155015;0.111047749666;0.0984263904428;0.0864835601112;0.0752499368391;0.0647525895983;0.0550167827625;0.0460587577147;0.0378947558379;0.0305356047208;0.0239831089616;0.0182426823546;0.0133034973111;0.00916374923305;0.0058198289241;0.00324105821633;0.00142382791352;0.000357310426967;0.0 + + + + NASA_CRM_fus1_profile4 + points from IGES slices + + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + 0.0;0.0192843897467;0.0385481256651;0.0577687579416;0.0769202447928;0.0959756464424;0.114898145196;0.133652719346;0.152201653204;0.170499149152;0.188502103548;0.206160228808;0.223424135345;0.240244433569;0.256570835896;0.272357544709;0.287561456364;0.302141263206;0.316062841518;0.329300149516;0.341832533372;0.353645625205;0.364732241075;0.375088789012;0.384723350949;0.393642212833;0.401859742546;0.409391205959;0.416258154895;0.422476753218;0.428070348735;0.433063187245;0.437475922575;0.441331902532;0.444651780944;0.447460701602;0.449774828371;0.451619305044;0.453007601507;0.453953187649;0.454532392836;0.454646437888;0.454023231067;0.452683426201;0.45070514864;0.448182687602;0.445159146727;0.441644403935;0.437633071269;0.433090127021;0.427950915728;0.422062778658;0.415222769499;0.40709503904;0.398106133738;0.388603576704;0.378467036939;0.367598633255;0.355966935915;0.343554883059;0.330377740561;0.316479510055;0.30193023496;0.286808040625;0.271196440358;0.255184335418;0.2388327893;0.222167843785;0.205135619323;0.187658888555;0.169814878838;0.151662857682;0.133248622704;0.114612583569;0.0957906599796;0.0768160776584;0.0577202663446;0.0385319617994;0.0192816957691;-0.0;-0.0192816957691;-0.0385319617994;-0.0577202663446;-0.0768160776584;-0.0957906599796;-0.114612583569;-0.133248622704;-0.151662857682;-0.169814878838;-0.187658888555;-0.205135619323;-0.222167843785;-0.2388327893;-0.255184335418;-0.271196440358;-0.286808040625;-0.30193023496;-0.316479510055;-0.330377740561;-0.343554883059;-0.355966935915;-0.367598633255;-0.378467036939;-0.388603576704;-0.398106133738;-0.40709503904;-0.415222769499;-0.422062778658;-0.427950915728;-0.433090127021;-0.437633071269;-0.441644403935;-0.445159146727;-0.448182687602;-0.45070514864;-0.452683426201;-0.454023231067;-0.454646437888;-0.454532392836;-0.453953187649;-0.453007601507;-0.451619305044;-0.449774828371;-0.447460701602;-0.444651780944;-0.441331902532;-0.437475922575;-0.433063187245;-0.428070348735;-0.422476753218;-0.416258154895;-0.409391205959;-0.401859742546;-0.393642212833;-0.384723350949;-0.375088789012;-0.364732241075;-0.353645625205;-0.341832533372;-0.329300149516;-0.316062841518;-0.302141263206;-0.287561456364;-0.272357544709;-0.256570835896;-0.240244433569;-0.223424135345;-0.206160228808;-0.188502103548;-0.170499149152;-0.152201653204;-0.133652719346;-0.114898145196;-0.0959756464424;-0.0769202447928;-0.0577687579416;-0.0385481256651;-0.0192843897467;-0.0 + 0.0;0.000305317462812;0.00123294375424;0.00282059456086;0.00509700564388;0.00807744287645;0.0118032139153;0.0162976665664;0.0215805566656;0.0276734360337;0.0345888765664;0.0423421441368;0.0509386267;0.0603729363009;0.0706369910066;0.0817137289589;0.0935798023518;0.106202883454;0.119547950557;0.133573696003;0.148231628195;0.163475949515;0.179257270372;0.195526201177;0.212232454348;0.229332028251;0.246780023258;0.264534233721;0.282557841944;0.300814030235;0.319270470862;0.337900224049;0.356675452027;0.37557280699;0.39457163511;0.41365218055;0.432800075431;0.451998257894;0.471235054037;0.490499687948;0.509777791747;0.529063079486;0.5483393873;0.567579775412;0.586764487987;0.605885443092;0.624933660801;0.643897467212;0.662762494444;0.681507190675;0.700095636205;0.718460481593;0.736491273758;0.753976984451;0.771040638652;0.787825017174;0.804231340838;0.820162626449;0.835545238619;0.850305541961;0.864386064952;0.877756275845;0.890415276649;0.902384619184;0.913708305084;0.924459969738;0.934686308757;0.944395404074;0.953441780899;0.961594655148;0.968912396338;0.975426434206;0.981158320574;0.986122423323;0.990328620369;0.993779605691;0.996484359215;0.998428513059;0.999600393321;1.0;0.999600393321;0.998428513059;0.996484359215;0.993779605691;0.990328620369;0.986122423323;0.981158320574;0.975426434206;0.968912396338;0.961594655148;0.953441780899;0.944395404074;0.934686308757;0.924459969738;0.913708305084;0.902384619184;0.890415276649;0.877756275845;0.864386064952;0.850305541961;0.835545238619;0.820162626449;0.804231340838;0.787825017174;0.771040638652;0.753976984451;0.736491273758;0.718460481593;0.700095636205;0.681507190675;0.662762494444;0.643897467212;0.624933660801;0.605885443092;0.586764487987;0.567579775412;0.5483393873;0.529063079486;0.509777791747;0.490499687948;0.471235054037;0.451998257894;0.432800075431;0.41365218055;0.39457163511;0.37557280699;0.356675452027;0.337900224049;0.319270470862;0.300814030235;0.282557841944;0.264534233721;0.246780023258;0.229332028251;0.212232454348;0.195526201177;0.179257270372;0.163475949515;0.148231628195;0.133573696003;0.119547950557;0.106202883454;0.0935798023518;0.0817137289589;0.0706369910066;0.0603729363009;0.0509386267;0.0423421441368;0.0345888765664;0.0276734360337;0.0215805566656;0.0162976665664;0.0118032139153;0.00807744287645;0.00509700564388;0.00282059456086;0.00123294375424;0.000305317462812;0.0 + + + + NASA_CRM_fus1_profile5 + points from IGES slices + + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + 0.0;0.0198294219752;0.0396437411759;0.0594268132573;0.079157286021;0.0988143280541;0.118369296164;0.137791984801;0.157049063706;0.176100432408;0.194903907296;0.213411055335;0.231571360349;0.249330660663;0.266632711464;0.283421788721;0.299642168404;0.315240209627;0.330169041708;0.344388043394;0.357861280497;0.370564276106;0.382479844306;0.393599652532;0.403927867066;0.413468654192;0.422237116682;0.430251482025;0.437535185558;0.444114787335;0.450017888976;0.455273133675;0.459907081483;0.463951500304;0.467432950192;0.470381115908;0.472820474363;0.474777585608;0.476273801842;0.477332558405;0.477982498488;0.478232996229;0.478096029689;0.477506500703;0.476351919641;0.474497403104;0.471816400259;0.468199546188;0.463590596075;0.458009860549;0.451519833849;0.444302790836;0.436429037531;0.427816810638;0.418267690947;0.407686895531;0.396242638048;0.384044283418;0.371151201165;0.357614949039;0.343475627507;0.328765004476;0.313504432143;0.297712137996;0.281395413027;0.264605294199;0.247400630254;0.229817876165;0.211886195908;0.19363058718;0.175085942598;0.156280905354;0.137246722568;0.118019849212;0.0986190335578;0.0790640654481;0.0593950453526;0.0396416580346;0.0198294219752;0.0;-0.0198294219752;-0.0396416580346;-0.0593950453526;-0.0790640654481;-0.0986190335578;-0.118019849212;-0.137246722568;-0.156280905354;-0.175085942598;-0.19363058718;-0.211886195908;-0.229817876165;-0.247400630254;-0.264605294199;-0.281395413027;-0.297712137996;-0.313504432143;-0.328765004476;-0.343475627507;-0.357614949039;-0.371151201165;-0.384044283418;-0.396242638048;-0.407686895531;-0.418267690947;-0.427816810638;-0.436429037531;-0.444302790836;-0.451519833849;-0.458009860549;-0.463590596075;-0.468199546188;-0.471816400259;-0.474497403104;-0.476351919641;-0.477506500703;-0.478096029689;-0.478232996229;-0.477982498488;-0.477332558405;-0.476273801842;-0.474777585608;-0.472820474363;-0.470381115908;-0.467432950192;-0.463951500304;-0.459907081483;-0.455273133675;-0.450017888976;-0.444114787335;-0.437535185558;-0.430251482025;-0.422237116682;-0.413468654192;-0.403927867066;-0.393599652532;-0.382479844306;-0.370564276106;-0.357861280497;-0.344388043394;-0.330169041708;-0.315240209627;-0.299642168404;-0.283421788721;-0.266632711464;-0.249330660663;-0.231571360349;-0.213411055335;-0.194903907296;-0.176100432408;-0.157049063706;-0.137791984801;-0.118369296164;-0.0988143280541;-0.079157286021;-0.0594268132573;-0.0396437411759;-0.0198294219752;-0.0 + 0.0;0.000262996588336;0.0010665683424;0.00244769102015;0.00443709095568;0.00705612034724;0.010350087518;0.0143507603726;0.019083657392;0.0245873166901;0.0308841320357;0.0380063921191;0.045970241285;0.0547918238787;0.06447895168;0.0750305831181;0.086436823272;0.0986799654407;0.111731366431;0.12555248813;0.140101146926;0.155327868212;0.171177969531;0.187596247638;0.204523853791;0.221907667887;0.239694049038;0.257832481068;0.276277134868;0.294983743686;0.313915331764;0.333037006484;0.352318562299;0.371732918372;0.391255597791;0.410866289931;0.430547288089;0.450280885564;0.470056145866;0.489859007789;0.509679576414;0.529508998389;0.549339461935;0.569162113701;0.588959767771;0.608702739383;0.628350928065;0.647847568219;0.667133811102;0.686161744464;0.704899600401;0.723370814253;0.741570698951;0.759432593974;0.776810158647;0.793579966847;0.809773786479;0.825408282674;0.840474602081;0.854965974491;0.868869901056;0.882167112719;0.894830528644;0.906823173072;0.918092967471;0.928643557339;0.938504106653;0.947674615413;0.956141543201;0.963885620961;0.970910494189;0.977204705608;0.982766692862;0.987622495218;0.991724200425;0.995018167596;0.997541372488;0.999289128034;1.00010624021;1.0;1.00010624021;0.999289128034;0.997541372488;0.995018167596;0.991724200425;0.987622495218;0.982766692862;0.977204705608;0.970910494189;0.963885620961;0.956141543201;0.947674615413;0.938504106653;0.928643557339;0.918092967471;0.906823173072;0.894830528644;0.882167112719;0.868869901056;0.854965974491;0.840474602081;0.825408282674;0.809773786479;0.793579966847;0.776810158647;0.759432593974;0.741570698951;0.723370814253;0.704899600401;0.686161744464;0.667133811102;0.647847568219;0.628350928065;0.608702739383;0.588959767771;0.569162113701;0.549339461935;0.529508998389;0.509679576414;0.489859007789;0.470056145866;0.450280885564;0.430547288089;0.410866289931;0.391255597791;0.371732918372;0.352318562299;0.333037006484;0.313915331764;0.294983743686;0.276277134868;0.257832481068;0.239694049038;0.221907667887;0.204523853791;0.187596247638;0.171177969531;0.155327868212;0.140101146926;0.12555248813;0.111731366431;0.0986799654407;0.086436823272;0.0750305831181;0.06447895168;0.0547918238787;0.045970241285;0.0380063921191;0.0308841320357;0.0245873166901;0.019083657392;0.0143507603726;0.010350087518;0.00705612034724;0.00443709095568;0.00244769102015;0.0010665683424;0.000262996588336;0.0 + + + + NASA_CRM_fus1_profile6 + points from IGES slices + + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + 0.0;0.0193580456306;0.0387029895035;0.058020141769;0.0772908423477;0.0964964311606;0.115610307669;0.134605077288;0.153448978182;0.172103896145;0.190529731859;0.208678445544;0.226500012308;0.243940437027;0.260942548395;0.277446395945;0.293394808369;0.308730614361;0.323402200936;0.337365498546;0.350581995961;0.363024695622;0.374675731495;0.385524780982;0.395576211337;0.404835183857;0.413317976485;0.421046822506;0.428049116505;0.434351061997;0.439984817842;0.44497976374;0.449366470458;0.453178287926;0.456443404774;0.459191597724;0.461449864337;0.463245996222;0.464601829641;0.465540391925;0.466099003234;0.466270914177;0.466022377802;0.465264857989;0.463897907927;0.461843711117;0.459025642125;0.455382162394;0.45087555474;0.445512171533;0.439308687736;0.43237110848;0.424686332008;0.416054258746;0.406388734712;0.39567705517;0.383948996842;0.37123949775;0.357593024465;0.343063572111;0.327668212674;0.311445060359;0.294213866742;0.276463764111;0.258183238802;0.239489412589;0.220779308434;0.203016501068;0.184551360082;0.165930983116;0.147924006629;0.131041796195;0.114648718053;0.0987094371564;0.0826180964655;0.0663842245308;0.0502059358109;0.0339800043355;0.017797745386;-0.0;-0.017797745386;-0.0339800043355;-0.0502059358109;-0.0663842245308;-0.0826180964655;-0.0987094371564;-0.114648718053;-0.131041796195;-0.147924006629;-0.165930983116;-0.184551360082;-0.203016501068;-0.220779308434;-0.239489412589;-0.258183238802;-0.276463764111;-0.294213866742;-0.311445060359;-0.327668212674;-0.343063572111;-0.357593024465;-0.37123949775;-0.383948996842;-0.39567705517;-0.406388734712;-0.416054258746;-0.424686332008;-0.43237110848;-0.439308687736;-0.445512171533;-0.45087555474;-0.455382162394;-0.459025642125;-0.461843711117;-0.463897907927;-0.465264857989;-0.466022377802;-0.466270914177;-0.466099003234;-0.465540391925;-0.464601829641;-0.463245996222;-0.461449864337;-0.459191597724;-0.456443404774;-0.453178287926;-0.449366470458;-0.44497976374;-0.439984817842;-0.434351061997;-0.428049116505;-0.421046822506;-0.413317976485;-0.404835183857;-0.395576211337;-0.385524780982;-0.374675731495;-0.363024695622;-0.350581995961;-0.337365498546;-0.323402200936;-0.308730614361;-0.293394808369;-0.277446395945;-0.260942548395;-0.243940437027;-0.226500012308;-0.208678445544;-0.190529731859;-0.172103896145;-0.153448978182;-0.134605077288;-0.115610307669;-0.0964964311606;-0.0772908423477;-0.058020141769;-0.0387029895035;-0.0193580456306;-0.0 + 0.0;0.000242978053365;0.000984616948275;0.00226223684325;0.00410759957534;0.00654214438455;0.00961192593457;0.0133491030854;0.0177842466053;0.0229558677215;0.0288921550645;0.035628046655;0.0431861728019;0.0515859876304;0.0608413869441;0.0709575320417;0.0819284675787;0.0937406947743;0.106368407136;0.119775475574;0.133918624585;0.148747432254;0.164206712388;0.180238499634;0.196783240549;0.213784557871;0.231183692202;0.248932206741;0.266980076594;0.28528442328;0.303805544505;0.32250889927;0.341364313829;0.360344790622;0.379428493385;0.398590012649;0.417817040702;0.437093299602;0.456404893546;0.47574189696;0.495093590223;0.5144524299;0.533810078507;0.553154228334;0.572465028232;0.591714289571;0.610866677307;0.62987931296;0.64870534782;0.667305873637;0.68564317323;0.703716452552;0.72148362717;0.738809312253;0.755580356257;0.771702664739;0.787101597382;0.801700925778;0.815428391747;0.828217295432;0.839948529943;0.850503782438;0.859312927941;0.867032642434;0.873390568164;0.878414496738;0.883356638581;0.890912779613;0.896728768999;0.902025055325;0.90909246109;0.918520962415;0.928772492343;0.939745015972;0.9505083085;0.961056811604;0.971689880599;0.982250294393;0.992875819952;1.0;0.992875819952;0.982250294393;0.971689880599;0.961056811604;0.9505083085;0.939745015972;0.928772492343;0.918520962415;0.90909246109;0.902025055325;0.896728768999;0.890912779613;0.883356638581;0.878414496738;0.873390568164;0.867032642434;0.859312927941;0.850503782438;0.839948529943;0.828217295432;0.815428391747;0.801700925778;0.787101597382;0.771702664739;0.755580356257;0.738809312253;0.72148362717;0.703716452552;0.68564317323;0.667305873637;0.64870534782;0.62987931296;0.610866677307;0.591714289571;0.572465028232;0.553154228334;0.533810078507;0.5144524299;0.495093590223;0.47574189696;0.456404893546;0.437093299602;0.417817040702;0.398590012649;0.379428493385;0.360344790622;0.341364313829;0.32250889927;0.303805544505;0.28528442328;0.266980076594;0.248932206741;0.231183692202;0.213784557871;0.196783240549;0.180238499634;0.164206712388;0.148747432254;0.133918624585;0.119775475574;0.106368407136;0.0937406947743;0.0819284675787;0.0709575320417;0.0608413869441;0.0515859876304;0.0431861728019;0.035628046655;0.0288921550645;0.0229558677215;0.0177842466053;0.0133491030854;0.00961192593457;0.00654214438455;0.00410759957534;0.00226223684325;0.000984616948275;0.000242978053365;0.0 + + + + NASA_CRM_fus1_profile7 + points from IGES slices + + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + 0.0;0.0188174213593;0.0376221110397;0.0563989920531;0.0751303070579;0.0937966234918;0.112371807908;0.130828051641;0.149134195581;0.167251374603;0.185139718449;0.202749975626;0.220032559593;0.236933193196;0.253394248833;0.269355418552;0.284759744844;0.299550940285;0.313677743116;0.32709793777;0.339774334343;0.351682139565;0.362804936273;0.37313669367;0.382682102375;0.391448868405;0.399457429454;0.406728558261;0.413292073759;0.419174444438;0.424409174716;0.429025413436;0.43305364962;0.43652705264;0.439473766208;0.441922604124;0.443900704966;0.445435207314;0.446545878772;0.447256842524;0.447613329532;0.447541630077;0.446906051266;0.445662367268;0.443780089061;0.441243134526;0.438035086497;0.434128136307;0.429497825731;0.424111990528;0.417930090351;0.410916275475;0.403090313504;0.394462925854;0.384873291317;0.374164274172;0.36212345641;0.348825887926;0.334410277011;0.318867577473;0.302030267221;0.28475304396;0.26925825574;0.254633242212;0.239007786762;0.223310296812;0.207635924911;0.191843617459;0.176042598857;0.160257662377;0.144471050675;0.128683768885;0.112894141786;0.0971212668959;0.0813480569615;0.0655647957018;0.0497751686026;0.0338176843689;0.017651802655;0.0;-0.017651802655;-0.0338176843689;-0.0497751686026;-0.0655647957018;-0.0813480569615;-0.0971212668959;-0.112894141786;-0.128683768885;-0.144471050675;-0.160257662377;-0.176042598857;-0.191843617459;-0.207635924911;-0.223310296812;-0.239007786762;-0.254633242212;-0.26925825574;-0.28475304396;-0.302030267221;-0.318867577473;-0.334410277011;-0.348825887926;-0.36212345641;-0.374164274172;-0.384873291317;-0.394462925854;-0.403090313504;-0.410916275475;-0.417930090351;-0.424111990528;-0.429497825731;-0.434128136307;-0.438035086497;-0.441243134526;-0.443780089061;-0.445662367268;-0.446906051266;-0.447541630077;-0.447613329532;-0.447256842524;-0.446545878772;-0.445435207314;-0.443900704966;-0.441922604124;-0.439473766208;-0.43652705264;-0.43305364962;-0.429025413436;-0.424409174716;-0.419174444438;-0.413292073759;-0.406728558261;-0.399457429454;-0.391448868405;-0.382682102375;-0.37313669367;-0.362804936273;-0.351682139565;-0.339774334343;-0.32709793777;-0.313677743116;-0.299550940285;-0.284759744844;-0.269355418552;-0.253394248833;-0.236933193196;-0.220032559593;-0.202749975626;-0.185139718449;-0.167251374603;-0.149134195581;-0.130828051641;-0.112371807908;-0.0937966234918;-0.0751303070579;-0.0563989920531;-0.0376221110397;-0.0188174213593;-0.0 + 0.0;0.000238216412407;0.000965932372672;0.00221966769648;0.00403058149263;0.00642011658867;0.00943618430244;0.0131092736544;0.0174702087091;0.0225578545915;0.0283996849245;0.0350315494353;0.0424755610399;0.050749812124;0.0598677044548;0.0698335936068;0.0806407786963;0.0922725075142;0.104702981659;0.117893000961;0.131799344721;0.146369746047;0.161547247428;0.177274891354;0.193491699783;0.21014272547;0.22717134595;0.244527639637;0.26216403026;0.280039642427;0.298115275971;0.316358766649;0.334741300662;0.353236409519;0.371823320482;0.3904819309;0.40919682874;0.427953272058;0.446739199265;0.465544894077;0.484360640216;0.503179401752;0.52198710683;0.540764657932;0.559488601964;0.578135150792;0.596678170967;0.615086168338;0.633325638485;0.651356376109;0.669130134845;0.686591632406;0.703704684018;0.720427744204;0.736616743967;0.752086068829;0.766540209825;0.779849504855;0.79193622367;0.802533336058;0.810900059336;0.818355127399;0.8287528885;0.840569226661;0.851056779602;0.861437118406;0.871852636848;0.882088236565;0.892310434515;0.902558095823;0.912802406689;0.923045712423;0.933285667715;0.943551756452;0.953817175102;0.964066846675;0.974306801966;0.984282072355;0.993916937857;1.0;0.993916937857;0.984282072355;0.974306801966;0.964066846675;0.953817175102;0.943551756452;0.933285667715;0.923045712423;0.912802406689;0.902558095823;0.892310434515;0.882088236565;0.871852636848;0.861437118406;0.851056779602;0.840569226661;0.8287528885;0.818355127399;0.810900059336;0.802533336058;0.79193622367;0.779849504855;0.766540209825;0.752086068829;0.736616743967;0.720427744204;0.703704684018;0.686591632406;0.669130134845;0.651356376109;0.633325638485;0.615086168338;0.596678170967;0.578135150792;0.559488601964;0.540764657932;0.52198710683;0.503179401752;0.484360640216;0.465544894077;0.446739199265;0.427953272058;0.40919682874;0.3904819309;0.371823320482;0.353236409519;0.334741300662;0.316358766649;0.298115275971;0.280039642427;0.26216403026;0.244527639637;0.22717134595;0.21014272547;0.193491699783;0.177274891354;0.161547247428;0.146369746047;0.131799344721;0.117893000961;0.104702981659;0.0922725075142;0.0806407786963;0.0698335936068;0.0598677044548;0.050749812124;0.0424755610399;0.0350315494353;0.0283996849245;0.0225578545915;0.0174702087091;0.0131092736544;0.00943618430244;0.00642011658867;0.00403058149263;0.00221966769648;0.000965932372672;0.000238216412407;0.0 + + + + NASA_CRM_fus1_profile8 + points from IGES slices + + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + 0.0;0.0189528098002;0.037890751528;0.0567965675993;0.0756498144146;0.0944281898653;0.113103019812;0.131643506104;0.150014868072;0.168176749521;0.186085608237;0.203691264476;0.220942210989;0.237783754507;0.254158812253;0.270009770448;0.28528140482;0.299921677119;0.313884124616;0.327130249624;0.339628722992;0.35135724261;0.362303329917;0.37246194039;0.381840508063;0.390445935972;0.398298667715;0.405417819385;0.411832065122;0.417566096547;0.422650180806;0.427112726539;0.430982673386;0.434289757491;0.437060263483;0.439325520515;0.441107299693;0.442428699628;0.443321580476;0.443809571853;0.443846211031;0.443313349936;0.442054077303;0.440075827169;0.437403291154;0.434044699798;0.430017045183;0.425335460884;0.420016142479;0.414071568529;0.407497491013;0.400293113427;0.392473834848;0.384054257844;0.375059870542;0.36548669042;0.35533684149;0.344642183907;0.333442011863;0.321774823043;0.309687080176;0.297223652979;0.28438401045;0.271119565852;0.257359164839;0.243074398772;0.228258895621;0.212960445617;0.197185951796;0.180938600171;0.164244675372;0.147133913542;0.129639502344;0.111798346458;0.0936515985833;0.0752425354311;0.0566216022472;0.0378384477732;0.0189461722679;0.0;-0.0189461722679;-0.0378384477732;-0.0566216022472;-0.0752425354311;-0.0936515985833;-0.111798346458;-0.129639502344;-0.147133913542;-0.164244675372;-0.180938600171;-0.197185951796;-0.212960445617;-0.228258895621;-0.243074398772;-0.257359164839;-0.271119565852;-0.28438401045;-0.297223652979;-0.309687080176;-0.321774823043;-0.333442011863;-0.344642183907;-0.35533684149;-0.36548669042;-0.375059870542;-0.384054257844;-0.392473834848;-0.400293113427;-0.407497491013;-0.414071568529;-0.420016142479;-0.425335460884;-0.430017045183;-0.434044699798;-0.437403291154;-0.440075827169;-0.442054077303;-0.443313349936;-0.443846211031;-0.443809571853;-0.443321580476;-0.442428699628;-0.441107299693;-0.439325520515;-0.437060263483;-0.434289757491;-0.430982673386;-0.427112726539;-0.422650180806;-0.417566096547;-0.411832065122;-0.405417819385;-0.398298667715;-0.390445935972;-0.381840508063;-0.37246194039;-0.362303329917;-0.35135724261;-0.339628722992;-0.327130249624;-0.313884124616;-0.299921677119;-0.28528140482;-0.270009770448;-0.254158812253;-0.237783754507;-0.220942210989;-0.203691264476;-0.186085608237;-0.168176749521;-0.150014868072;-0.131643506104;-0.113103019812;-0.0944281898653;-0.0756498144146;-0.0567965675993;-0.037890751528;-0.0189528098002;-0.0 + 0.0;0.00025833275808;0.00104687159826;0.00240358320545;0.00435900022833;0.00693409726905;0.0101750715526;0.0141124557277;0.0187746584326;0.0241959293342;0.0304017565566;0.0374210797407;0.0452714219718;0.0539655273121;0.0635087057874;0.0738988333873;0.0851234315511;0.0971594016663;0.109975680082;0.123531114097;0.137778975484;0.152666960488;0.16813957934;0.184140545764;0.200610918475;0.217497862715;0.234748543725;0.252314374771;0.27014995513;0.288215725111;0.306475576536;0.324896852748;0.343451941611;0.362115620503;0.380866649321;0.399685380968;0.418555885367;0.437464356451;0.45639831566;0.475346877439;0.494301280247;0.513247983518;0.532159906119;0.551010497921;0.569775067305;0.58842918815;0.606950292848;0.625317406796;0.643509820893;0.661507622542;0.67928532362;0.696816639497;0.714082719583;0.731064182283;0.747748283534;0.764107411203;0.780114749659;0.795763661369;0.811054942838;0.825992576584;0.840593023688;0.854873541734;0.868817138639;0.882356377076;0.895391163055;0.907848483722;0.919669663291;0.930858684282;0.941365897952;0.951125725482;0.960099934687;0.968251355384;0.975543082895;0.981939540046;0.98740860118;0.99191575113;0.995448245833;0.997977942153;0.999489972016;1.0;0.999489972016;0.997977942153;0.995448245833;0.99191575113;0.98740860118;0.981939540046;0.975543082895;0.968251355384;0.960099934687;0.951125725482;0.941365897952;0.930858684282;0.919669663291;0.907848483722;0.895391163055;0.882356377076;0.868817138639;0.854873541734;0.840593023688;0.825992576584;0.811054942838;0.795763661369;0.780114749659;0.764107411203;0.747748283534;0.731064182283;0.714082719583;0.696816639497;0.67928532362;0.661507622542;0.643509820893;0.625317406796;0.606950292848;0.58842918815;0.569775067305;0.551010497921;0.532159906119;0.513247983518;0.494301280247;0.475346877439;0.45639831566;0.437464356451;0.418555885367;0.399685380968;0.380866649321;0.362115620503;0.343451941611;0.324896852748;0.306475576536;0.288215725111;0.27014995513;0.252314374771;0.234748543725;0.217497862715;0.200610918475;0.184140545764;0.16813957934;0.152666960488;0.137778975484;0.123531114097;0.109975680082;0.0971594016663;0.0851234315511;0.0738988333873;0.0635087057874;0.0539655273121;0.0452714219718;0.0374210797407;0.0304017565566;0.0241959293342;0.0187746584326;0.0141124557277;0.0101750715526;0.00693409726905;0.00435900022833;0.00240358320545;0.00104687159826;0.00025833275808;0.0 + + + + NASA_CRM_fus1_profile9 + points from IGES slices + + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + 0.0;0.019274209384;0.0385301332247;0.0577461613346;0.0768979822526;0.0959606611471;0.114901574946;0.133687477208;0.152282628007;0.170645261499;0.188732988471;0.206497809371;0.22389297139;0.240868397075;0.257374424551;0.273362223106;0.288785455513;0.303601109184;0.317770327342;0.331260902495;0.344045614119;0.356104514347;0.367424927975;0.377999166761;0.38782993198;0.396918262582;0.405276418195;0.412916658442;0.419857061077;0.426116327224;0.431716898232;0.436679968707;0.441027356627;0.444784204615;0.447971499487;0.450615007236;0.452733844567;0.454350037246;0.455487273366;0.456164461839;0.456381602666;0.456045398017;0.454983797554;0.453217788093;0.450794538025;0.447742514615;0.444097042209;0.439889704927;0.435114061271;0.429762838581;0.423818998056;0.417261552879;0.410072840877;0.402235823249;0.393724734002;0.384522534335;0.374598679077;0.363932804784;0.352522625762;0.340376453623;0.327516937504;0.313978155009;0.299804157675;0.285045854117;0.269759763285;0.254000949602;0.237813049021;0.221202918622;0.204197363349;0.186830045226;0.169131301629;0.151129184247;0.132852575924;0.114335346475;0.0956103267606;0.0767078541603;0.0576613829065;0.0385039516514;0.0192708847398;-0.0;-0.0192708847398;-0.0385039516514;-0.0576613829065;-0.0767078541603;-0.0956103267606;-0.114335346475;-0.132852575924;-0.151129184247;-0.169131301629;-0.186830045226;-0.204197363349;-0.221202918622;-0.237813049021;-0.254000949602;-0.269759763285;-0.285045854117;-0.299804157675;-0.313978155009;-0.327516937504;-0.340376453623;-0.352522625762;-0.363932804784;-0.374598679077;-0.384522534335;-0.393724734002;-0.402235823249;-0.410072840877;-0.417261552879;-0.423818998056;-0.429762838581;-0.435114061271;-0.439889704927;-0.444097042209;-0.447742514615;-0.450794538025;-0.453217788093;-0.454983797554;-0.456045398017;-0.456381602666;-0.456164461839;-0.455487273366;-0.454350037246;-0.452733844567;-0.450615007236;-0.447971499487;-0.444784204615;-0.441027356627;-0.436679968707;-0.431716898232;-0.426116327224;-0.419857061077;-0.412916658442;-0.405276418195;-0.396918262582;-0.38782993198;-0.377999166761;-0.367424927975;-0.356104514347;-0.344045614119;-0.331260902495;-0.317770327342;-0.303601109184;-0.288785455513;-0.273362223106;-0.257374424551;-0.240868397075;-0.22389297139;-0.206497809371;-0.188732988471;-0.170645261499;-0.152282628007;-0.133687477208;-0.114901574946;-0.0959606611471;-0.0768979822526;-0.0577461613346;-0.0385301332247;-0.019274209384;-0.0 + 0.0;0.000293607644188;0.00118502788026;0.00271041621429;0.00489657759044;0.00775826511752;0.0113372446388;0.0156557497125;0.0207335204138;0.0265965305259;0.0332587019966;0.0407389437397;0.0490430738829;0.0581737936996;0.0681279863357;0.0788948466975;0.0904558814515;0.102785947976;0.11585408552;0.129621229516;0.14404644528;0.159083811164;0.174684912037;0.190801124976;0.207381541367;0.224380239561;0.241749635588;0.259446924652;0.277430340911;0.295661858746;0.314106777183;0.332733096522;0.351512972866;0.370420016852;0.389431163761;0.408525842356;0.427685559304;0.446894522545;0.466137771179;0.485402837792;0.504678293917;0.52395167214;0.543198453209;0.562393910083;0.581517055944;0.600550436412;0.619479090585;0.63829117442;0.656966532261;0.675485424032;0.693822707112;0.711949290864;0.729835045698;0.747446309593;0.764741316705;0.781678924561;0.798203860951;0.814259399133;0.829794838282;0.844761971057;0.859120693936;0.872840877332;0.88590382012;0.898303288593;0.910045932038;0.921146711355;0.931611652462;0.941392132437;0.950467995624;0.958830722622;0.966467222644;0.973358378987;0.979484243784;0.984838167747;0.989413917169;0.9931890507;0.996154009988;0.998285730315;0.999566757298;1.0;0.999566757298;0.998285730315;0.996154009988;0.9931890507;0.989413917169;0.984838167747;0.979484243784;0.973358378987;0.966467222644;0.958830722622;0.950467995624;0.941392132437;0.931611652462;0.921146711355;0.910045932038;0.898303288593;0.88590382012;0.872840877332;0.859120693936;0.844761971057;0.829794838282;0.814259399133;0.798203860951;0.781678924561;0.764741316705;0.747446309593;0.729835045698;0.711949290864;0.693822707112;0.675485424032;0.656966532261;0.63829117442;0.619479090585;0.600550436412;0.581517055944;0.562393910083;0.543198453209;0.52395167214;0.504678293917;0.485402837792;0.466137771179;0.446894522545;0.427685559304;0.408525842356;0.389431163761;0.370420016852;0.351512972866;0.332733096522;0.314106777183;0.295661858746;0.277430340911;0.259446924652;0.241749635588;0.224380239561;0.207381541367;0.190801124976;0.174684912037;0.159083811164;0.14404644528;0.129621229516;0.11585408552;0.102785947976;0.0904558814515;0.0788948466975;0.0681279863357;0.0581737936996;0.0490430738829;0.0407389437397;0.0332587019966;0.0265965305259;0.0207335204138;0.0156557497125;0.0113372446388;0.00775826511752;0.00489657759044;0.00271041621429;0.00118502788026;0.000293607644188;0.0 + + + + NASA_CRM_fus1_profile10 + points from IGES slices + + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + 0.0;0.0196175540498;0.0392127166505;0.0587609806256;0.078235723071;0.097610673704;0.11685339137;0.135931434915;0.154812186872;0.173458269391;0.191834067726;0.209899030433;0.227614721796;0.244941824547;0.261840492485;0.278272289894;0.294200015233;0.309588230067;0.324403611688;0.338617068843;0.352201273386;0.365132776004;0.377393416702;0.388966445973;0.399843224594;0.410013526551;0.419475412426;0.428225884938;0.436269528165;0.443609868317;0.450256073548;0.456216959389;0.461502222924;0.466125969003;0.470099128884;0.473439862562;0.476159630227;0.478275005078;0.479800444585;0.480749877288;0.481144989393;0.480903091219;0.479854748257;0.478001194681;0.475368524463;0.472019327876;0.467952899675;0.463162716368;0.45755357022;0.45110606706;0.443850003385;0.435904036244;0.427332342703;0.418133159656;0.408282332547;0.397766814391;0.386591541886;0.374761980659;0.362293822358;0.349206108528;0.335523698969;0.32127533231;0.306492920776;0.291212608043;0.275477237593;0.259300914276;0.242692982555;0.225656968642;0.208225137381;0.190439979633;0.172334994414;0.153941036086;0.135289311627;0.11640873598;0.0973287530184;0.078078277685;0.0586885169597;0.0391896199589;0.0196143804586;0.0;-0.0196143804586;-0.0391896199589;-0.0586885169597;-0.078078277685;-0.0973287530184;-0.11640873598;-0.135289311627;-0.153941036086;-0.172334994414;-0.190439979633;-0.208225137381;-0.225656968642;-0.242692982555;-0.259300914276;-0.275477237593;-0.291212608043;-0.306492920776;-0.32127533231;-0.335523698969;-0.349206108528;-0.362293822358;-0.374761980659;-0.386591541886;-0.397766814391;-0.408282332547;-0.418133159656;-0.427332342703;-0.435904036244;-0.443850003385;-0.45110606706;-0.45755357022;-0.463162716368;-0.467952899675;-0.472019327876;-0.475368524463;-0.478001194681;-0.479854748257;-0.480903091219;-0.481144989393;-0.480749877288;-0.479800444585;-0.478275005078;-0.476159630227;-0.473439862562;-0.470099128884;-0.466125969003;-0.461502222924;-0.456216959389;-0.450256073548;-0.443609868317;-0.436269528165;-0.428225884938;-0.419475412426;-0.410013526551;-0.399843224594;-0.388966445973;-0.377393416702;-0.365132776004;-0.352201273386;-0.338617068843;-0.324403611688;-0.309588230067;-0.294200015233;-0.278272289894;-0.261840492485;-0.244941824547;-0.227614721796;-0.209899030433;-0.191834067726;-0.173458269391;-0.154812186872;-0.135931434915;-0.11685339137;-0.097610673704;-0.078235723071;-0.0587609806256;-0.0392127166505;-0.0196175540498;-0.0 + 0.0;0.000328114068741;0.00131704035115;0.00299481223624;0.00537729768003;0.00846837551624;0.0122978422401;0.0168762764889;0.0222107306876;0.0283142518223;0.0351891319311;0.042843304992;0.0512743026562;0.060477364537;0.0704452618989;0.0811653003769;0.092620730462;0.104791276432;0.117653136354;0.131177395286;0.145333375178;0.160088105944;0.175404738665;0.191247482284;0.207576137979;0.224354033141;0.241541321568;0.259101683273;0.27699685885;0.295191938796;0.313652013608;0.332344465821;0.351239498939;0.370306963846;0.38952059026;0.408854460518;0.428285301618;0.447791251044;0.467352385694;0.486949664022;0.506566160209;0.526184772122;0.54577640851;0.565308451908;0.584750753199;0.604083036661;0.623276739974;0.642302948196;0.661103655131;0.679633372639;0.697861775293;0.715800852215;0.733449721852;0.750779469263;0.767747074654;0.78431092872;0.800436827199;0.816089155345;0.831237764043;0.845854267281;0.85991592099;0.873403683623;0.88630380295;0.898610460721;0.910329651497;0.921432284027;0.931877806865;0.941609447993;0.950613102559;0.958897057164;0.966456727731;0.973282769798;0.979369541423;0.984704348243;0.989275730067;0.993064292726;0.996059104963;0.998230899212;0.99954970267;1.0;0.99954970267;0.998230899212;0.996059104963;0.993064292726;0.989275730067;0.984704348243;0.979369541423;0.973282769798;0.966456727731;0.958897057164;0.950613102559;0.941609447993;0.931877806865;0.921432284027;0.910329651497;0.898610460721;0.88630380295;0.873403683623;0.85991592099;0.845854267281;0.831237764043;0.816089155345;0.800436827199;0.78431092872;0.767747074654;0.750779469263;0.733449721852;0.715800852215;0.697861775293;0.679633372639;0.661103655131;0.642302948196;0.623276739974;0.604083036661;0.584750753199;0.565308451908;0.54577640851;0.526184772122;0.506566160209;0.486949664022;0.467352385694;0.447791251044;0.428285301618;0.408854460518;0.38952059026;0.370306963846;0.351239498939;0.332344465821;0.313652013608;0.295191938796;0.27699685885;0.259101683273;0.241541321568;0.224354033141;0.207576137979;0.191247482284;0.175404738665;0.160088105944;0.145333375178;0.131177395286;0.117653136354;0.104791276432;0.092620730462;0.0811653003769;0.0704452618989;0.060477364537;0.0512743026562;0.042843304992;0.0351891319311;0.0283142518223;0.0222107306876;0.0168762764889;0.0122978422401;0.00846837551624;0.00537729768003;0.00299481223624;0.00131704035115;0.000328114068741;0.0 + + + + NASA_CRM_fus1_profile11 + points from IGES slices + + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + 0.0;0.0198778973877;0.039724654382;0.0595080011449;0.0791972813307;0.0987626453393;0.118170209841;0.137391577379;0.15639544621;0.175152450781;0.193632580145;0.2118059847;0.229644751037;0.247120320349;0.264205263275;0.280872311801;0.297095488709;0.312848655429;0.328106964186;0.342846857999;0.357044457187;0.370677495564;0.383724675035;0.396163406714;0.407978362428;0.419147114641;0.429653689782;0.439479855392;0.448610444649;0.457032872316;0.464731971568;0.471698384152;0.477916459199;0.483380226786;0.488077263027;0.492005147685;0.495154522505;0.497520869711;0.499099832875;0.499888023663;0.499892702789;0.49909870343;0.497518126775;0.495153231711;0.492003534193;0.488075488186;0.483377322501;0.477913554913;0.471693866375;0.464729389981;0.457029161284;0.448605926872;0.439475014917;0.429648849306;0.419140660673;0.407971908461;0.396158404889;0.38371757567;0.37067023485;0.357037196474;0.342839597285;0.328098896727;0.312841556064;0.297088712043;0.280866180532;0.264199616053;0.247115318524;0.229640878656;0.211803080414;0.193629998558;0.175150998639;0.156394800813;0.13739125468;0.118170209841;0.0987621612917;0.0791974426799;0.0595081624941;0.0397248157312;0.0198778973877;0.0;-0.0198778973877;-0.0397248157312;-0.0595081624941;-0.0791974426799;-0.0987621612917;-0.118170209841;-0.13739125468;-0.156394800813;-0.175150998639;-0.193629998558;-0.211803080414;-0.229640878656;-0.247115318524;-0.264199616053;-0.280866180532;-0.297088712043;-0.312841556064;-0.328098896727;-0.342839597285;-0.357037196474;-0.37067023485;-0.38371757567;-0.396158404889;-0.407971908461;-0.419140660673;-0.429648849306;-0.439475014917;-0.448605926872;-0.457029161284;-0.464729389981;-0.471693866375;-0.477913554913;-0.483377322501;-0.488075488186;-0.492003534193;-0.495153231711;-0.497518126775;-0.49909870343;-0.499892702789;-0.499888023663;-0.499099832875;-0.497520869711;-0.495154522505;-0.492005147685;-0.488077263027;-0.483380226786;-0.477916459199;-0.471698384152;-0.464731971568;-0.457032872316;-0.448610444649;-0.439479855392;-0.429653689782;-0.419147114641;-0.407978362428;-0.396163406714;-0.383724675035;-0.370677495564;-0.357044457187;-0.342846857999;-0.328106964186;-0.312848655429;-0.297095488709;-0.280872311801;-0.264205263275;-0.247120320349;-0.229644751037;-0.2118059847;-0.193632580145;-0.175152450781;-0.15639544621;-0.137391577379;-0.118170209841;-0.0987626453393;-0.0791972813307;-0.0595080011449;-0.039724654382;-0.0198778973877;-0.0 + 0.0;0.000396596306588;0.00157815641771;0.00355436128471;0.00631536860706;0.00984859314802;0.0141650066524;0.0192475061063;0.0250906056371;0.0316833335001;0.0390160087438;0.0470794344646;0.0558582824895;0.065339322185;0.0755075480764;0.0863473092925;0.0978406960733;0.109970282706;0.12271654594;0.136059155776;0.149977459518;0.16444902963;0.179451115875;0.194961290716;0.210951802093;0.227400061119;0.24427912248;0.261563008956;0.279224291185;0.297234087662;0.315564807677;0.33418611758;0.353070588011;0.372187078576;0.391506062373;0.41099607631;0.430626786741;0.450367375968;0.470186542251;0.490052661148;0.509934592266;0.529800549813;0.549619554747;0.569360305324;0.588991015754;0.608480868343;0.62779969079;0.646916181355;0.665800167739;0.684422284388;0.702752359006;0.720761832785;0.738422953665;0.755706840141;0.772584933406;0.789033192432;0.805024833254;0.820533233254;0.8355349968;0.850006728261;0.863924870654;0.877266673745;0.890014389121;0.902144137103;0.913638814677;0.924478737243;0.934648253927;0.944131713861;0.952912175378;0.960976246495;0.968312471421;0.974907135474;0.980751041751;0.985834347951;0.990149147963;0.993686406234;0.996446445461;0.998422811677;0.9996021129;1.0;0.9996021129;0.998422811677;0.996446445461;0.993686406234;0.990149147963;0.985834347951;0.980751041751;0.974907135474;0.968312471421;0.960976246495;0.952912175378;0.944131713861;0.934648253927;0.924478737243;0.913638814677;0.902144137103;0.890014389121;0.877266673745;0.863924870654;0.850006728261;0.8355349968;0.820533233254;0.805024833254;0.789033192432;0.772584933406;0.755706840141;0.738422953665;0.720761832785;0.702752359006;0.684422284388;0.665800167739;0.646916181355;0.62779969079;0.608480868343;0.588991015754;0.569360305324;0.549619554747;0.529800549813;0.509934592266;0.490052661148;0.470186542251;0.450367375968;0.430626786741;0.41099607631;0.391506062373;0.372187078576;0.353070588011;0.33418611758;0.315564807677;0.297234087662;0.279224291185;0.261563008956;0.24427912248;0.227400061119;0.210951802093;0.194961290716;0.179451115875;0.16444902963;0.149977459518;0.136059155776;0.12271654594;0.109970282706;0.0978406960733;0.0863473092925;0.0755075480764;0.065339322185;0.0558582824895;0.0470794344646;0.0390160087438;0.0316833335001;0.0250906056371;0.0192475061063;0.0141650066524;0.00984859314802;0.00631536860706;0.00355436128471;0.00157815641771;0.000396596306588;0.0 + + + + NASA_CRM_fus1_profile12 + points from IGES slices + + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + 0.0;0.0198783400026;0.0397252162127;0.0595088421324;0.0791983993804;0.098764037692;0.118171872983;0.137393507164;0.156398283206;0.175155382729;0.193635439525;0.211809248741;0.229648089583;0.247124209371;0.26420937137;0.280876629663;0.297100167807;0.31285384665;0.328112495159;0.342852555828;0.357050632503;0.3706844585;0.38373144443;0.396170775784;0.407986317284;0.41915547954;0.429660997806;0.439487543565;0.448618658836;0.457040951336;0.464740867433;0.471706789725;0.477925809991;0.483387924358;0.488086033303;0.492013682716;0.495164257132;0.497531141087;0.499110139409;0.499900768039;0.499901897509;0.499111107525;0.497529850265;0.49516296631;0.492014650833;0.488088292242;0.483390021944;0.47792693946;0.471707757842;0.46474248096;0.457042080805;0.448619142894;0.439488188976;0.429661643217;0.419154350071;0.407984703756;0.396170775784;0.383730960372;0.3706844585;0.357050955208;0.342852878534;0.328112979218;0.312853685298;0.297099038337;0.280875338841;0.2642082419;0.247124048019;0.229648573641;0.211809248741;0.193635278172;0.175155221376;0.156398121854;0.13739382987;0.118172357041;0.0987637149864;0.079198722086;0.059509164838;0.0397252162127;0.0198781786498;0.0;-0.0198781786498;-0.0397252162127;-0.059509164838;-0.079198722086;-0.0987637149864;-0.118172357041;-0.13739382987;-0.156398121854;-0.175155221376;-0.193635278172;-0.211809248741;-0.229648573641;-0.247124048019;-0.2642082419;-0.280875338841;-0.297099038337;-0.312853685298;-0.328112979218;-0.342852878534;-0.357050955208;-0.3706844585;-0.383730960372;-0.396170775784;-0.407984703756;-0.419154350071;-0.429661643217;-0.439488188976;-0.448619142894;-0.457042080805;-0.46474248096;-0.471707757842;-0.47792693946;-0.483390021944;-0.488088292242;-0.492014650833;-0.49516296631;-0.497529850265;-0.499111107525;-0.499901897509;-0.499900768039;-0.499110139409;-0.497531141087;-0.495164257132;-0.492013682716;-0.488086033303;-0.483387924358;-0.477925809991;-0.471706789725;-0.464740867433;-0.457040951336;-0.448618658836;-0.439487543565;-0.429660997806;-0.41915547954;-0.407986317284;-0.396170775784;-0.38373144443;-0.3706844585;-0.357050632503;-0.342852555828;-0.328112495159;-0.31285384665;-0.297100167807;-0.280876629663;-0.26420937137;-0.247124209371;-0.229648089583;-0.211809248741;-0.193635439525;-0.175155382729;-0.156398283206;-0.137393507164;-0.118171872983;-0.098764037692;-0.0791983993804;-0.0595088421324;-0.0397252162127;-0.0198783400026;-0.0 + 0.0;0.000395152962437;0.00157738479411;0.00355444042855;0.00631518652382;0.00984913514909;0.0141658061185;0.0192484187427;0.0250895507939;0.0316827481606;0.039016877501;0.0470799987092;0.0558593649155;0.0653401316639;0.0755087453208;0.0863484251969;0.0978419065445;0.109971279205;0.122717826255;0.136060733187;0.149978862786;0.164450271073;0.179452691364;0.19496288886;0.210953433587;0.227401736156;0.244281818769;0.261565928747;0.279227281528;0.297237479024;0.315568123144;0.334190009036;0.353074577256;0.372191816187;0.391510907448;0.411001194011;0.430632180199;0.450373047631;0.470192332516;0.490058893765;0.509940944882;0.529807344779;0.549626629663;0.569367335743;0.588998644637;0.608489415258;0.627808506519;0.646925261392;0.665809668259;0.684432038208;0.702762359623;0.720772234413;0.738433748548;0.755717858526;0.772596650316;0.789044791532;0.805036465729;0.820546179166;0.835549083516;0.850020814509;0.86393910546;0.877282012392;0.890027752678;0.902155995869;0.913648993159;0.924489157093;0.934659384278;0.944141441848;0.952919839938;0.960982477088;0.968316445076;0.974909803795;0.980752549374;0.985835323351;0.990148444559;0.993686427004;0.996447334452;0.998421001678;0.999603072157;1.0;0.999603072157;0.998421001678;0.996447334452;0.993686427004;0.990148444559;0.985835323351;0.980752549374;0.974909803795;0.968316445076;0.960982477088;0.952919839938;0.944141441848;0.934659384278;0.924489157093;0.913648993159;0.902155995869;0.890027752678;0.877282012392;0.86393910546;0.850020814509;0.835549083516;0.820546179166;0.805036465729;0.789044791532;0.772596650316;0.755717858526;0.738433748548;0.720772234413;0.702762359623;0.684432038208;0.665809668259;0.646925261392;0.627808506519;0.608489415258;0.588998644637;0.569367335743;0.549626629663;0.529807344779;0.509940944882;0.490058893765;0.470192332516;0.450373047631;0.430632180199;0.411001194011;0.391510907448;0.372191816187;0.353074577256;0.334190009036;0.315568123144;0.297237479024;0.279227281528;0.261565928747;0.244281818769;0.227401736156;0.210953433587;0.19496288886;0.179452691364;0.164450271073;0.149978862786;0.136060733187;0.122717826255;0.109971279205;0.0978419065445;0.0863484251969;0.0755087453208;0.0653401316639;0.0558593649155;0.0470799987092;0.039016877501;0.0316827481606;0.0250895507939;0.0192484187427;0.0141658061185;0.00984913514909;0.00631518652382;0.00355444042855;0.00157738479411;0.000395152962437;0.0 + + + + NASA_CRM_fus1_profile13 + points from IGES slices + + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + 0.0;0.0199286820705;0.0398259003485;0.059659222925;0.0793978314186;0.0990115528592;0.118466180457;0.13773315477;0.156781818769;0.175581031367;0.194100780947;0.212312346715;0.230186362463;0.247694591455;0.264809281012;0.282320091648;0.300029043501;0.317069510778;0.333214792823;0.348414386214;0.3627262166;0.376221117852;0.388934748935;0.400870014199;0.412036917516;0.422469020266;0.431970278818;0.439777333161;0.447476119788;0.456011359236;0.463822124693;0.470897121466;0.477223279979;0.482789305538;0.487588098619;0.491613366464;0.494858332258;0.497316380534;0.498982509358;0.499856557377;0.499937072415;0.499221956887;0.497711856202;0.495411933652;0.492326061701;0.488457790112;0.48381325029;0.478399219053;0.472224409449;0.465299148057;0.457633922809;0.449241480573;0.440136504453;0.430331579966;0.419841228863;0.408684006712;0.396878146379;0.384442042081;0.371395217504;0.357757196334;0.343550567962;0.328798244482;0.313522815283;0.297748483284;0.281501548987;0.26480799019;0.247694268749;0.230186685168;0.212312346715;0.194100619595;0.175580708661;0.156781657416;0.137733638828;0.118466664515;0.0990110688008;0.0793981541242;0.0596595456306;0.0398259003485;0.0199286820705;0.0;-0.0199286820705;-0.0398259003485;-0.0596595456306;-0.0793981541242;-0.0990110688008;-0.118466664515;-0.137733638828;-0.156781657416;-0.175580708661;-0.194100619595;-0.212312346715;-0.230186685168;-0.247694268749;-0.26480799019;-0.281501548987;-0.297748483284;-0.313522815283;-0.328798244482;-0.343550567962;-0.357757196334;-0.371395217504;-0.384442042081;-0.396878146379;-0.408684006712;-0.419841228863;-0.430331579966;-0.440136504453;-0.449241480573;-0.457633922809;-0.465299148057;-0.472224409449;-0.478399219053;-0.48381325029;-0.488457790112;-0.492326061701;-0.495411933652;-0.497711856202;-0.499221956887;-0.499937072415;-0.499856557377;-0.498982509358;-0.497316380534;-0.494858332258;-0.491613366464;-0.487588098619;-0.482789305538;-0.477223279979;-0.470897121466;-0.463822124693;-0.456011359236;-0.447476119788;-0.439777333161;-0.431970278818;-0.422469020266;-0.412036917516;-0.400870014199;-0.388934748935;-0.376221117852;-0.3627262166;-0.348414386214;-0.333214792823;-0.317069510778;-0.300029043501;-0.282320091648;-0.264809281012;-0.247694591455;-0.230186362463;-0.212312346715;-0.194100780947;-0.175581031367;-0.156781818769;-0.13773315477;-0.118466180457;-0.0990115528592;-0.0793978314186;-0.059659222925;-0.0398259003485;-0.0199286820705;-0.0 + 0.0;0.000397089195818;0.00158529108042;0.00357251194011;0.0063471343746;0.00989915451142;0.0142379308119;0.0193461985285;0.0252163740803;0.0318423260617;0.0392129211308;0.0473154124177;0.0561376984639;0.0656649348135;0.075882599716;0.0853122176326;0.0944575319479;0.104791370853;0.116473634955;0.129364108687;0.143235284626;0.157903543307;0.173254162902;0.189217600361;0.205728185104;0.222712340261;0.240231057183;0.258565896476;0.276919614044;0.294932393184;0.313270943591;0.331905737705;0.350808054731;0.369947721699;0.38929408158;0.408815993288;0.428482799793;0.44826336001;0.468126210146;0.488039725055;0.507972279592;0.52789208726;0.547767361559;0.567566961404;0.58725926165;0.606812959855;0.626196914935;0.645380308507;0.664332322189;0.683023267071;0.701423131535;0.71950287208;0.737234574674;0.754588873112;0.77153769201;0.788055053569;0.804115464051;0.819692945656;0.834762327353;0.849299083516;0.863280624758;0.8766850071;0.88949012521;0.901675487285;0.913223021815;0.924115302698;0.934334258423;0.943862785594;0.952684264877;0.960786594811;0.96815718988;0.974783303214;0.980655253647;0.985763682716;0.99009858655;0.993654479153;0.996429101588;0.998412934039;0.999601135924;1.0;0.999601135924;0.998412934039;0.996429101588;0.993654479153;0.99009858655;0.985763682716;0.980655253647;0.974783303214;0.96815718988;0.960786594811;0.952684264877;0.943862785594;0.934334258423;0.924115302698;0.913223021815;0.901675487285;0.88949012521;0.8766850071;0.863280624758;0.849299083516;0.834762327353;0.819692945656;0.804115464051;0.788055053569;0.77153769201;0.754588873112;0.737234574674;0.71950287208;0.701423131535;0.683023267071;0.664332322189;0.645380308507;0.626196914935;0.606812959855;0.58725926165;0.567566961404;0.547767361559;0.52789208726;0.507972279592;0.488039725055;0.468126210146;0.44826336001;0.428482799793;0.408815993288;0.38929408158;0.369947721699;0.350808054731;0.331905737705;0.313270943591;0.294932393184;0.276919614044;0.258565896476;0.240231057183;0.222712340261;0.205728185104;0.189217600361;0.173254162902;0.157903543307;0.143235284626;0.129364108687;0.116473634955;0.104791370853;0.0944575319479;0.0853122176326;0.075882599716;0.0656649348135;0.0561376984639;0.0473154124177;0.0392129211308;0.0318423260617;0.0252163740803;0.0193461985285;0.0142379308119;0.00989915451142;0.0063471343746;0.00357251194011;0.00158529108042;0.000397089195818;0.0 + + + + NASA_CRM_fus1_profile14 + points from IGES slices + + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + 0.0;0.0205342860577;0.0410661521224;0.0615936621996;0.0821131056335;0.102621094434;0.12311085262;0.143574313549;0.164002119914;0.18437878376;0.204686558471;0.224897533462;0.244975570171;0.264868719412;0.284504704063;0.303780916419;0.322550866236;0.340624987396;0.357716752724;0.37349188052;0.387872931007;0.400942990611;0.412790469745;0.423527656083;0.433231182739;0.441925733641;0.449579526214;0.456327434735;0.462662169782;0.467462467925;0.470370492864;0.472957626729;0.475420695619;0.477650154517;0.480108222088;0.486027041002;0.490425136306;0.493997045995;0.496736155422;0.498636011271;0.499695645545;0.499914251581;0.49928747339;0.497816601636;0.495507444302;0.492364196042;0.488390567513;0.483591721365;0.477977821571;0.471556450774;0.464340192938;0.456339696033;0.447569802682;0.438046807505;0.42778410113;0.416797816844;0.405109089252;0.392738730294;0.379705777249;0.366031364723;0.351739853978;0.33685463828;0.32140169222;0.305406506393;0.288896023387;0.271898476453;0.254441776178;0.236556253141;0.218271431256;0.199618447768;0.180629085251;0.161334803614;0.141768676094;0.1219631306;0.101951885699;0.0817683372954;0.0614474946216;0.0410229149139;0.0205286394073;0.0;-0.0205286394073;-0.0410229149139;-0.0614474946216;-0.0817683372954;-0.101951885699;-0.1219631306;-0.141768676094;-0.161334803614;-0.180629085251;-0.199618447768;-0.218271431256;-0.236556253141;-0.254441776178;-0.271898476453;-0.288896023387;-0.305406506393;-0.32140169222;-0.33685463828;-0.351739853978;-0.366031364723;-0.379705777249;-0.392738730294;-0.405109089252;-0.416797816844;-0.42778410113;-0.438046807505;-0.447569802682;-0.456339696033;-0.464340192938;-0.471556450774;-0.477977821571;-0.483591721365;-0.488390567513;-0.492364196042;-0.495507444302;-0.497816601636;-0.49928747339;-0.499914251581;-0.499695645545;-0.498636011271;-0.496736155422;-0.493997045995;-0.490425136306;-0.486027041002;-0.480108222088;-0.477650154517;-0.475420695619;-0.472957626729;-0.470370492864;-0.467462467925;-0.462662169782;-0.456327434735;-0.449579526214;-0.441925733641;-0.433231182739;-0.423527656083;-0.412790469745;-0.400942990611;-0.387872931007;-0.37349188052;-0.357716752724;-0.340624987396;-0.322550866236;-0.303780916419;-0.284504704063;-0.264868719412;-0.244975570171;-0.224897533462;-0.204686558471;-0.18437878376;-0.164002119914;-0.143574313549;-0.12311085262;-0.102621094434;-0.0821131056335;-0.0615936621996;-0.0410661521224;-0.0205342860577;-0.0 + 0.0;6.5662477121e-05;0.000372356258465;0.000905561385946;0.00168189514493;0.00272023348093;0.00407042825003;0.00577297400202;0.00785900798033;0.0103958059908;0.0134343492195;0.0170596600878;0.0213598263413;0.0264451996615;0.0324451690083;0.0395138072701;0.047830355263;0.0575645351637;0.0689291450245;0.0820590591228;0.0967071155055;0.112537419142;0.129304421408;0.146804197559;0.164898323994;0.183498228968;0.202550188638;0.221943205991;0.241475776273;0.261428134677;0.281753333339;0.302124027869;0.322510210354;0.342923012762;0.363293545959;0.382947922557;0.403004340661;0.42322418896;0.443573587551;0.464018656533;0.484524064007;0.505056091405;0.525579406827;0.546059646374;0.566462284812;0.586753280906;0.606897948088;0.626862406457;0.646612937444;0.666115983812;0.685338956322;0.704249427067;0.722815129474;0.741006216962;0.758790422958;0.776136932885;0.793018158821;0.809406512847;0.825272955045;0.84059005883;0.855333140272;0.869476386111;0.882997209748;0.895871733917;0.908078501347;0.919597506762;0.930408099555;0.940493178443;0.949834835477;0.9584180667;0.966228513487;0.973252139879;0.979478459239;0.984895855601;0.989494971658;0.993266934103;0.99621029094;0.998316975525;0.99957746922;1.0;0.99957746922;0.998316975525;0.99621029094;0.993266934103;0.989494971658;0.984895855601;0.979478459239;0.973252139879;0.966228513487;0.9584180667;0.949834835477;0.940493178443;0.930408099555;0.919597506762;0.908078501347;0.895871733917;0.882997209748;0.869476386111;0.855333140272;0.84059005883;0.825272955045;0.809406512847;0.793018158821;0.776136932885;0.758790422958;0.741006216962;0.722815129474;0.704249427067;0.685338956322;0.666115983812;0.646612937444;0.626862406457;0.606897948088;0.586753280906;0.566462284812;0.546059646374;0.525579406827;0.505056091405;0.484524064007;0.464018656533;0.443573587551;0.42322418896;0.403004340661;0.382947922557;0.363293545959;0.342923012762;0.322510210354;0.302124027869;0.281753333339;0.261428134677;0.241475776273;0.221943205991;0.202550188638;0.183498228968;0.164898323994;0.146804197559;0.129304421408;0.112537419142;0.0967071155055;0.0820590591228;0.0689291450245;0.0575645351637;0.047830355263;0.0395138072701;0.0324451690083;0.0264451996615;0.0213598263413;0.0170596600878;0.0134343492195;0.0103958059908;0.00785900798033;0.00577297400202;0.00407042825003;0.00272023348093;0.00168189514493;0.000905561385946;0.000372356258465;6.5662477121e-05;0.0 + + + + NASA_CRM_fus1_profile15 + points from IGES slices + + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + 0.0;0.0209149511099;0.0418299022198;0.0627446969363;0.0836593352595;0.104573660796;0.125486735186;0.146397776462;0.167305533478;0.188202655747;0.209071783607;0.229899154444;0.250660683683;0.271336040189;0.291906613155;0.312306248196;0.332455497492;0.352199688027;0.371349740246;0.389651045787;0.406823973348;0.422423896653;0.436043411039;0.447346739996;0.456427250352;0.463197205439;0.468160348219;0.47156205985;0.473880903966;0.475543990789;0.476915091238;0.478083193127;0.478476365994;0.478437580445;0.478408960463;0.478443523392;0.478496853522;0.478992307637;0.479477752578;0.479946619824;0.481579522731;0.483472820557;0.484467325833;0.484561318233;0.48375073153;0.482038068017;0.479429583428;0.475929813169;0.471543136256;0.466277685141;0.460143781785;0.453152686509;0.445317379961;0.436652563115;0.427176064812;0.416904775533;0.405854334614;0.394048357448;0.381510772217;0.36826253563;0.354327888655;0.339733105374;0.324505867409;0.308674325562;0.292268194567;0.275317658341;0.257854464733;0.239910987164;0.221520693811;0.202717678422;0.183537442287;0.164015486695;0.144188251294;0.124092488522;0.103765576386;0.0832450492905;0.0625698491774;0.0417782924161;0.0209085389828;0.0;-0.0209085389828;-0.0417782924161;-0.0625698491774;-0.0832450492905;-0.103765576386;-0.124092488522;-0.144188251294;-0.164015486695;-0.183537442287;-0.202717678422;-0.221520693811;-0.239910987164;-0.257854464733;-0.275317658341;-0.292268194567;-0.308674325562;-0.324505867409;-0.339733105374;-0.354327888655;-0.36826253563;-0.381510772217;-0.394048357448;-0.405854334614;-0.416904775533;-0.427176064812;-0.436652563115;-0.445317379961;-0.453152686509;-0.460143781785;-0.466277685141;-0.471543136256;-0.475929813169;-0.479429583428;-0.482038068017;-0.48375073153;-0.484561318233;-0.484467325833;-0.483472820557;-0.481579522731;-0.479946619824;-0.479477752578;-0.478992307637;-0.478496853522;-0.478443523392;-0.478408960463;-0.478437580445;-0.478476365994;-0.478083193127;-0.476915091238;-0.475543990789;-0.473880903966;-0.47156205985;-0.468160348219;-0.463197205439;-0.456427250352;-0.447346739996;-0.436043411039;-0.422423896653;-0.406823973348;-0.389651045787;-0.371349740246;-0.352199688027;-0.332455497492;-0.312306248196;-0.291906613155;-0.271336040189;-0.250660683683;-0.229899154444;-0.209071783607;-0.188202655747;-0.167305533478;-0.146397776462;-0.125486735186;-0.104573660796;-0.0836593352595;-0.0627446969363;-0.0418299022198;-0.0209149511099;-0.0 + 0.0;-7.06897916121e-05;-5.09842302335e-05;3.20606355762e-05;0.000158739244439;0.00032561094278;0.000606336995753;0.00101514919769;0.00156190032927;0.00241737192245;0.00379378974541;0.00569991182543;0.00822222368189;0.0113718292422;0.0151484157198;0.019753886922;0.0253518302869;0.0322378292354;0.0406306780559;0.0507383798963;0.0626574294502;0.0765673662767;0.0924198648324;0.110002386562;0.128827766199;0.148605737696;0.168917636071;0.189549828014;0.210334659862;0.231182987407;0.252052897234;0.272934692955;0.293845734231;0.314760528947;0.335675636451;0.35659058756;0.377505382277;0.398414234046;0.419323554996;0.440233345125;0.461055085802;0.481882613033;0.502772384814;0.523685615597;0.544583363439;0.565426373611;0.586176486136;0.606794915465;0.627243188835;0.647482833485;0.66747631501;0.687186724582;0.706576840585;0.725610848944;0.744254030335;0.762471196256;0.780226532631;0.797489073579;0.81422754043;0.830409559762;0.846004165693;0.860982894634;0.875318221357;0.888983246207;0.901952633461;0.914202142151;0.925709095243;0.936451597667;0.946409787471;0.955565053845;0.963900975488;0.971401756673;0.978053791178;0.983844098356;0.98876204346;0.992796991743;0.995944251403;0.998199443427;0.999548648808;1.0;0.999548648808;0.998199443427;0.995944251403;0.992796991743;0.98876204346;0.983844098356;0.978053791178;0.971401756673;0.963900975488;0.955565053845;0.946409787471;0.936451597667;0.925709095243;0.914202142151;0.901952633461;0.888983246207;0.875318221357;0.860982894634;0.846004165693;0.830409559762;0.81422754043;0.797489073579;0.780226532631;0.762471196256;0.744254030335;0.725610848944;0.706576840585;0.687186724582;0.66747631501;0.647482833485;0.627243188835;0.606794915465;0.586176486136;0.565426373611;0.544583363439;0.523685615597;0.502772384814;0.481882613033;0.461055085802;0.440233345125;0.419323554996;0.398414234046;0.377505382277;0.35659058756;0.335675636451;0.314760528947;0.293845734231;0.272934692955;0.252052897234;0.231182987407;0.210334659862;0.189549828014;0.168917636071;0.148605737696;0.128827766199;0.110002386562;0.0924198648324;0.0765673662767;0.0626574294502;0.0507383798963;0.0406306780559;0.0322378292354;0.0253518302869;0.019753886922;0.0151484157198;0.0113718292422;0.00822222368189;0.00569991182543;0.00379378974541;0.00241737192245;0.00156190032927;0.00101514919769;0.000606336995753;0.00032561094278;0.000158739244439;3.20606355762e-05;-5.09842302335e-05;-7.06897916121e-05;0.0 + + + + NASA_CRM_fus1_profile16 + points from IGES slices + + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + 0.0;0.0209371423431;0.0418741285041;0.0628112708472;0.0837484131903;0.104685555533;0.125622541694;0.146559684037;0.167496826381;0.188433812542;0.209369236882;0.230291698111;0.251126853569;0.271830191367;0.292357043436;0.312616667999;0.332520509828;0.351984074428;0.370914902018;0.389084810607;0.406131301634;0.421657204116;0.435243481586;0.446585579023;0.455718637393;0.462705441883;0.467752465178;0.47121002364;0.473195097633;0.474244016353;0.474568875039;0.474504215666;0.474265881841;0.473902446186;0.473527140694;0.473306455442;0.473490750274;0.47437489692;0.475441308031;0.477825114825;0.480705736755;0.482684407283;0.483760501682;0.483933863769;0.483200432812;0.481560833537;0.479021937957;0.47558827535;0.471264062633;0.466057733636;0.459978659283;0.453038553229;0.445250222403;0.436628504101;0.427191359259;0.416956748814;0.40593779206;0.394159634309;0.381646327597;0.368418956504;0.354500948337;0.339919478777;0.324702192046;0.308877669464;0.292475117074;0.275525302743;0.25805993143;0.240111645184;0.221713866968;0.202901113016;0.183708680474;0.16417280358;0.144329872755;0.124216903147;0.103871222268;0.0833307823597;0.0626349413005;0.0418222760599;0.0209305826965;0.0;-0.0209305826965;-0.0418222760599;-0.0626349413005;-0.0833307823597;-0.103871222268;-0.124216903147;-0.144329872755;-0.16417280358;-0.183708680474;-0.202901113016;-0.221713866968;-0.240111645184;-0.25805993143;-0.275525302743;-0.292475117074;-0.308877669464;-0.324702192046;-0.339919478777;-0.354500948337;-0.368418956504;-0.381646327597;-0.394159634309;-0.40593779206;-0.416956748814;-0.427191359259;-0.436628504101;-0.445250222403;-0.453038553229;-0.459978659283;-0.466057733636;-0.471264062633;-0.47558827535;-0.479021937957;-0.481560833537;-0.483200432812;-0.483933863769;-0.483760501682;-0.482684407283;-0.480705736755;-0.477825114825;-0.475441308031;-0.47437489692;-0.473490750274;-0.473306455442;-0.473527140694;-0.473902446186;-0.474265881841;-0.474504215666;-0.474568875039;-0.474244016353;-0.473195097633;-0.47121002364;-0.467752465178;-0.462705441883;-0.455718637393;-0.446585579023;-0.435243481586;-0.421657204116;-0.406131301634;-0.389084810607;-0.370914902018;-0.351984074428;-0.332520509828;-0.312616667999;-0.292357043436;-0.271830191367;-0.251126853569;-0.230291698111;-0.209369236882;-0.188433812542;-0.167496826381;-0.146559684037;-0.125622541694;-0.104685555533;-0.0837484131903;-0.0628112708472;-0.0418741285041;-0.0209371423431;-0.0 + 0.0;4.68546182393e-07;9.37092364897e-07;1.71800266883e-06;3.90455152011e-06;6.09110037133e-06;6.09110037133e-06;6.55964655372e-06;6.71582861458e-06;1.78047549317e-05;0.000250828389651;0.00101190357195;0.00303539835172;0.00614670118498;0.010256475933;0.0155279328492;0.0220129243779;0.0297198843503;0.0386542791386;0.0490414794564;0.061182291953;0.0752074410132;0.0911183322755;0.10869896595;0.127526401016;0.147252663841;0.167566015033;0.188210472195;0.209050156932;0.22995965505;0.25089351757;0.271830503731;0.292766084253;0.313700102955;0.334633809293;0.35556970218;0.37650512652;0.397423214652;0.418332868952;0.43909680539;0.459833253785;0.480674812706;0.501582749004;0.522517392434;0.543440009846;0.564311243359;0.585092047459;0.605744157541;0.626228215726;0.646505801226;0.666539274166;0.686290994667;0.705723791401;0.72480158631;0.743489394613;0.761752543893;0.779553550456;0.796861646434;0.81364590778;0.82987338008;0.845512358374;0.860535042257;0.874913006592;0.888619856612;0.901629509913;0.913917445911;0.925461018207;0.936238517495;0.946229327742;0.95541455092;0.963778100276;0.97130404524;0.977978797973;0.983789395363;0.98872365521;0.99277142568;0.995930364042;0.998193910649;0.999547072024;1.0;0.999547072024;0.998193910649;0.995930364042;0.99277142568;0.98872365521;0.983789395363;0.977978797973;0.97130404524;0.963778100276;0.95541455092;0.946229327742;0.936238517495;0.925461018207;0.913917445911;0.901629509913;0.888619856612;0.874913006592;0.860535042257;0.845512358374;0.82987338008;0.81364590778;0.796861646434;0.779553550456;0.761752543893;0.743489394613;0.72480158631;0.705723791401;0.686290994667;0.666539274166;0.646505801226;0.626228215726;0.605744157541;0.585092047459;0.564311243359;0.543440009846;0.522517392434;0.501582749004;0.480674812706;0.459833253785;0.43909680539;0.418332868952;0.397423214652;0.37650512652;0.35556970218;0.334633809293;0.313700102955;0.292766084253;0.271830503731;0.25089351757;0.22995965505;0.209050156932;0.188210472195;0.167566015033;0.147252663841;0.127526401016;0.10869896595;0.0911183322755;0.0752074410132;0.061182291953;0.0490414794564;0.0386542791386;0.0297198843503;0.0220129243779;0.0155279328492;0.010256475933;0.00614670118498;0.00303539835172;0.00101190357195;0.000250828389651;1.78047549317e-05;6.71582861458e-06;6.55964655372e-06;6.09110037133e-06;6.09110037133e-06;3.90455152011e-06;1.71800266883e-06;9.37092364897e-07;4.68546182393e-07;0.0 + + + + NASA_CRM_fus1_profile17 + points from IGES slices + + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + 0.0;0.0206020790221;0.0412047909854;0.0618067117722;0.0824072084412;0.103003432757;0.123588580601;0.144156955502;0.164703335695;0.185215220591;0.205678685482;0.22607379272;0.246372376419;0.266534086576;0.28650021789;0.30618279153;0.325456326896;0.344048501021;0.361670059759;0.37811324015;0.393165215702;0.406671074047;0.41854030459;0.428658344966;0.437030575176;0.443755259346;0.449013893377;0.452875309627;0.455611989299;0.457230420042;0.458060680709;0.458572413699;0.458960248442;0.459253300235;0.465451693767;0.47152017611;0.476754600138;0.481148478204;0.484694056777;0.487383740562;0.489210725442;0.490174853181;0.490276282015;0.489510739589;0.487879333551;0.485388551549;0.482042349465;0.477844999653;0.472803622702;0.46692707979;0.46022597268;0.452712010788;0.444398327643;0.435301537952;0.425438572895;0.414822091295;0.403471556096;0.391411335534;0.37866105079;0.365241430688;0.351176368759;0.33649165736;0.32121324708;0.305368037923;0.288983562833;0.27208909534;0.254714225449;0.236889809045;0.218647018483;0.200018133766;0.181036384311;0.161735316001;0.142148791193;0.12231114695;0.102257669745;0.0820231713457;0.0616446788156;0.0411573203926;0.0205966990216;0.0;-0.0205966990216;-0.0411573203926;-0.0616446788156;-0.0820231713457;-0.102257669745;-0.12231114695;-0.142148791193;-0.161735316001;-0.181036384311;-0.200018133766;-0.218647018483;-0.236889809045;-0.254714225449;-0.27208909534;-0.288983562833;-0.305368037923;-0.32121324708;-0.33649165736;-0.351176368759;-0.365241430688;-0.37866105079;-0.391411335534;-0.403471556096;-0.414822091295;-0.425438572895;-0.435301537952;-0.444398327643;-0.452712010788;-0.46022597268;-0.46692707979;-0.472803622702;-0.477844999653;-0.482042349465;-0.485388551549;-0.487879333551;-0.489510739589;-0.490276282015;-0.490174853181;-0.489210725442;-0.487383740562;-0.484694056777;-0.481148478204;-0.476754600138;-0.47152017611;-0.465451693767;-0.459253300235;-0.458960248442;-0.458572413699;-0.458060680709;-0.457230420042;-0.455611989299;-0.452875309627;-0.449013893377;-0.443755259346;-0.437030575176;-0.428658344966;-0.41854030459;-0.406671074047;-0.393165215702;-0.37811324015;-0.361670059759;-0.344048501021;-0.325456326896;-0.30618279153;-0.28650021789;-0.266534086576;-0.246372376419;-0.22607379272;-0.205678685482;-0.185215220591;-0.164703335695;-0.144156955502;-0.123588580601;-0.103003432757;-0.0824072084412;-0.0618067117722;-0.0412047909854;-0.0206020790221;-0.0 + 0.0;-0.000152697073375;-0.000116777658187;5.79141231659e-05;0.000361092975587;0.000869977729963;0.00171178957489;0.00290029498226;0.004418562774;0.00634808413435;0.00873522200889;0.0116481758159;0.0151698608574;0.0194036047902;0.0244780529208;0.0305579282061;0.0378252012516;0.0466859038607;0.0573424189938;0.0697414213518;0.0837952485734;0.099341867702;0.116170984012;0.134108855133;0.152926039867;0.172394837605;0.192310650091;0.212544515548;0.232962566906;0.253498978275;0.274084442589;0.29468082514;0.315279897691;0.335880552596;0.355425461517;0.375112623981;0.395037772351;0.41516498721;0.43545882385;0.455883679325;0.476403792457;0.496982294418;0.517583265793;0.538170312461;0.558706882065;0.579156896955;0.599484595951;0.619653584932;0.639628419188;0.659373812246;0.678854635867;0.698036711225;0.716886017727;0.735370117135;0.753456729447;0.771111675835;0.788304100415;0.805006153771;0.821187771196;0.836818571509;0.851871338237;0.866320120791;0.880139759754;0.893305412186;0.905793975729;0.91758329744;0.928652332025;0.938981933009;0.948553112156;0.95734957123;0.96535611964;0.972558674444;0.978944418582;0.984501642641;0.989220377796;0.993090022283;0.996110734335;0.998273494541;0.999567068194;1.0;0.999567068194;0.998273494541;0.996110734335;0.993090022283;0.989220377796;0.984501642641;0.978944418582;0.972558674444;0.96535611964;0.95734957123;0.948553112156;0.938981933009;0.928652332025;0.91758329744;0.905793975729;0.893305412186;0.880139759754;0.866320120791;0.851871338237;0.836818571509;0.821187771196;0.805006153771;0.788304100415;0.771111675835;0.753456729447;0.735370117135;0.716886017727;0.698036711225;0.678854635867;0.659373812246;0.639628419188;0.619653584932;0.599484595951;0.579156896955;0.558706882065;0.538170312461;0.517583265793;0.496982294418;0.476403792457;0.455883679325;0.43545882385;0.41516498721;0.395037772351;0.375112623981;0.355425461517;0.335880552596;0.315279897691;0.29468082514;0.274084442589;0.253498978275;0.232962566906;0.212544515548;0.192310650091;0.172394837605;0.152926039867;0.134108855133;0.116170984012;0.099341867702;0.0837952485734;0.0697414213518;0.0573424189938;0.0466859038607;0.0378252012516;0.0305579282061;0.0244780529208;0.0194036047902;0.0151698608574;0.0116481758159;0.00873522200889;0.00634808413435;0.004418562774;0.00290029498226;0.00171178957489;0.000869977729963;0.000361092975587;5.79141231659e-05;-0.000116777658187;-0.000152697073375;0.0 + + + + NASA_CRM_fus1_profile18 + points from IGES slices + + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + 0.0;0.0204062076376;0.040809995433;0.0612079756067;0.0815974056709;0.101969896839;0.122326417048;0.142656641636;0.162941050544;0.183172384243;0.203328864153;0.223382420104;0.243293044034;0.263003466343;0.282425927417;0.301444436145;0.319802166598;0.337128237608;0.353120330208;0.367523715665;0.380357914038;0.391651479467;0.401419898944;0.409744156524;0.416723143098;0.422490756606;0.427154922016;0.430860668544;0.436036388621;0.445651228772;0.454523016008;0.462637392597;0.469981452715;0.47654309715;0.482310065366;0.487273161964;0.491424966094;0.494758540874;0.497267756037;0.498945513378;0.499794071419;0.499812139575;0.498994716839;0.497345352314;0.494868885684;0.491569027373;0.487449971777;0.482518333129;0.476782177571;0.470251184472;0.462936969077;0.454850178689;0.446006461624;0.436422434132;0.426110195425;0.415084425879;0.403369323917;0.390984248278;0.377946137859;0.364278384468;0.350003089332;0.335144934843;0.31972908736;0.303780067952;0.287325140177;0.270391567592;0.25300709772;0.235201413962;0.217003393103;0.198444009124;0.179554236007;0.160365047733;0.140909192836;0.121218451911;0.101325412168;0.081263306108;0.0610664954924;0.0407678901766;0.0204008839845;0.0;-0.0204008839845;-0.0407678901766;-0.0610664954924;-0.081263306108;-0.101325412168;-0.121218451911;-0.140909192836;-0.160365047733;-0.179554236007;-0.198444009124;-0.217003393103;-0.235201413962;-0.25300709772;-0.270391567592;-0.287325140177;-0.303780067952;-0.31972908736;-0.335144934843;-0.350003089332;-0.364278384468;-0.377946137859;-0.390984248278;-0.403369323917;-0.415084425879;-0.426110195425;-0.436422434132;-0.446006461624;-0.454850178689;-0.462936969077;-0.470251184472;-0.476782177571;-0.482518333129;-0.487449971777;-0.491569027373;-0.494868885684;-0.497345352314;-0.498994716839;-0.499812139575;-0.499794071419;-0.498945513378;-0.497267756037;-0.494758540874;-0.491424966094;-0.487273161964;-0.482310065366;-0.47654309715;-0.469981452715;-0.462637392597;-0.454523016008;-0.445651228772;-0.436036388621;-0.430860668544;-0.427154922016;-0.422490756606;-0.416723143098;-0.409744156524;-0.401419898944;-0.391651479467;-0.380357914038;-0.367523715665;-0.353120330208;-0.337128237608;-0.319802166598;-0.301444436145;-0.282425927417;-0.263003466343;-0.243293044034;-0.223382420104;-0.203328864153;-0.183172384243;-0.162941050544;-0.142656641636;-0.122326417048;-0.101969896839;-0.0815974056709;-0.0612079756067;-0.040809995433;-0.0204062076376;-0.0 + 0.0;5.50110820711e-05;0.00038039921268;0.000961000046622;0.00179084463951;0.00295978980282;0.00438620618896;0.0061425277447;0.00836700812793;0.0110307705536;0.0142114112988;0.0179850747352;0.0224509743979;0.0277286504975;0.0339807164379;0.041367043135;0.0502615768886;0.0610219703937;0.0736796816004;0.0881187194001;0.103975462154;0.120963723176;0.138873460154;0.157499631781;0.176671558512;0.196242759227;0.216106599539;0.236172093378;0.255593425192;0.273591083107;0.291966720393;0.310689040421;0.32972642392;0.349047574261;0.36862071085;0.388412923829;0.408391142022;0.428521971604;0.448772180073;0.469108212283;0.489495545151;0.509900462206;0.530289085656;0.550627376386;0.570881617926;0.591017932483;0.611002926235;0.630803205355;0.650385376022;0.669716851024;0.688765849766;0.707500107683;0.725889134763;0.743903408929;0.761510826939;0.778680576135;0.795387328834;0.81160382148;0.827300209349;0.842451326082;0.85703152135;0.871017080699;0.884385741579;0.897113144245;0.909179607311;0.920564804103;0.931248569268;0.941214770524;0.950445178392;0.958925112494;0.966641505684;0.973580161552;0.97973091676;0.985082156067;0.989624684069;0.993349789337;0.996257471868;0.998338213618;0.999582980507;1.0;0.999582980507;0.998338213618;0.996257471868;0.993349789337;0.989624684069;0.985082156067;0.97973091676;0.973580161552;0.966641505684;0.958925112494;0.950445178392;0.941214770524;0.931248569268;0.920564804103;0.909179607311;0.897113144245;0.884385741579;0.871017080699;0.85703152135;0.842451326082;0.827300209349;0.81160382148;0.795387328834;0.778680576135;0.761510826939;0.743903408929;0.725889134763;0.707500107683;0.688765849766;0.669716851024;0.650385376022;0.630803205355;0.611002926235;0.591017932483;0.570881617926;0.550627376386;0.530289085656;0.509900462206;0.489495545151;0.469108212283;0.448772180073;0.428521971604;0.408391142022;0.388412923829;0.36862071085;0.349047574261;0.32972642392;0.310689040421;0.291966720393;0.273591083107;0.255593425192;0.236172093378;0.216106599539;0.196242759227;0.176671558512;0.157499631781;0.138873460154;0.120963723176;0.103975462154;0.0881187194001;0.0736796816004;0.0610219703937;0.0502615768886;0.041367043135;0.0339807164379;0.0277286504975;0.0224509743979;0.0179850747352;0.0142114112988;0.0110307705536;0.00836700812793;0.0061425277447;0.00438620618896;0.00295978980282;0.00179084463951;0.000961000046622;0.00038039921268;5.50110820711e-05;0.0 + + + + NASA_CRM_fus1_profile19 + points from IGES slices + + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + 0.0;0.0201481218536;0.0402639731509;0.0603138311604;0.0802654253259;0.100087937266;0.119746837485;0.139738608494;0.159731831677;0.179649703111;0.199466890409;0.219144023493;0.238629146766;0.257844972247;0.276682425455;0.29496982703;0.312440299471;0.32870417581;0.343478281916;0.356600135536;0.368074738608;0.37805860333;0.386624338454;0.39390602814;0.400033884084;0.411023460694;0.422161965922;0.432615367239;0.442365593133;0.451397476442;0.459695850006;0.467247160191;0.474040435007;0.480063895702;0.48530624758;0.489760552472;0.493420194914;0.496277914031;0.49832773977;0.499568542662;0.499999193236;0.499616141732;0.498420033561;0.496415709307;0.493606880083;0.489997741061;0.485592648767;0.480396605137;0.474419452691;0.46767167936;0.460163611721;0.451907835291;0.44291935588;0.433212695237;0.422800277527;0.411699367497;0.399930134246;0.387512585517;0.374466729056;0.360812733962;0.346571092036;0.331766651607;0.316423615593;0.300566509617;0.284220827417;0.267413676262;0.250172324771;0.232524041564;0.214498031496;0.196123822125;0.177430941009;0.158449883826;0.139211791661;0.119747160191;0.100087453208;0.0802657480315;0.0603139925132;0.0402638117981;0.0201481218536;0.0;-0.0201481218536;-0.0402638117981;-0.0603139925132;-0.0802657480315;-0.100087453208;-0.119747160191;-0.139211791661;-0.158449883826;-0.177430941009;-0.196123822125;-0.214498031496;-0.232524041564;-0.250172324771;-0.267413676262;-0.284220827417;-0.300566509617;-0.316423615593;-0.331766651607;-0.346571092036;-0.360812733962;-0.374466729056;-0.387512585517;-0.399930134246;-0.411699367497;-0.422800277527;-0.433212695237;-0.44291935588;-0.451907835291;-0.460163611721;-0.46767167936;-0.474419452691;-0.480396605137;-0.485592648767;-0.489997741061;-0.493606880083;-0.496415709307;-0.498420033561;-0.499616141732;-0.499999193236;-0.499568542662;-0.49832773977;-0.496277914031;-0.493420194914;-0.489760552472;-0.48530624758;-0.480063895702;-0.474040435007;-0.467247160191;-0.459695850006;-0.451397476442;-0.442365593133;-0.432615367239;-0.422161965922;-0.411023460694;-0.400033884084;-0.39390602814;-0.386624338454;-0.37805860333;-0.368074738608;-0.356600135536;-0.343478281916;-0.32870417581;-0.312440299471;-0.29496982703;-0.276682425455;-0.257844972247;-0.238629146766;-0.219144023493;-0.199466890409;-0.179649703111;-0.159731831677;-0.139738608494;-0.119746837485;-0.100087937266;-0.0802654253259;-0.0603138311604;-0.0402639731509;-0.0201481218536;0.0 + 0.0;0.000407738479411;0.00162046598683;0.0036502839809;0.00648718858913;0.0101181102362;0.0145499870918;0.0169417193752;0.019475926165;0.02254582419;0.0262080482768;0.0305592487414;0.035700755131;0.0417697173099;0.0489242610043;0.057381728411;0.0674128694979;0.0792976313412;0.0929887375758;0.108268846005;0.124828804699;0.142328804699;0.160566509617;0.179354911579;0.198551536078;0.215288982832;0.232083387118;0.249312475797;0.266949141603;0.28496401833;0.303328546534;0.322012553246;0.340985220085;0.36021637408;0.379674874145;0.399328772428;0.419145959726;0.439094649542;0.459142409965;0.479256486382;0.49940428553;0.519552891442;0.539669710856;0.55972215051;0.579677617142;0.599504324255;0.619169194527;0.638640118756;0.657885471796;0.676874596618;0.695576029431;0.713959758616;0.731996417968;0.749656963986;0.766910900994;0.783729992255;0.800088582677;0.81596053311;0.831320349813;0.846142054989;0.860400154899;0.874072705563;0.887138247063;0.89957483542;0.911361817478;0.922481121725;0.932914192591;0.942643119917;0.951653059249;0.95992981154;0.967459016393;0.974229540467;0.98023025042;0.985449690203;0.989878662708;0.993513456822;0.996349877372;0.998376306958;0.999591454757;1.0;0.999591454757;0.998376306958;0.996349877372;0.993513456822;0.989878662708;0.985449690203;0.98023025042;0.974229540467;0.967459016393;0.95992981154;0.951653059249;0.942643119917;0.932914192591;0.922481121725;0.911361817478;0.89957483542;0.887138247063;0.874072705563;0.860400154899;0.846142054989;0.831320349813;0.81596053311;0.800088582677;0.783729992255;0.766910900994;0.749656963986;0.731996417968;0.713959758616;0.695576029431;0.676874596618;0.657885471796;0.638640118756;0.619169194527;0.599504324255;0.579677617142;0.55972215051;0.539669710856;0.519552891442;0.49940428553;0.479256486382;0.459142409965;0.439094649542;0.419145959726;0.399328772428;0.379674874145;0.36021637408;0.340985220085;0.322012553246;0.303328546534;0.28496401833;0.266949141603;0.249312475797;0.232083387118;0.215288982832;0.198551536078;0.179354911579;0.160566509617;0.142328804699;0.124828804699;0.108268846005;0.0929887375758;0.0792976313412;0.0674128694979;0.057381728411;0.0489242610043;0.0417697173099;0.035700755131;0.0305592487414;0.0262080482768;0.02254582419;0.019475926165;0.0169417193752;0.0145499870918;0.0101181102362;0.00648718858913;0.0036502839809;0.00162046598683;0.000407738479411;0.0 + + + + NASA_CRM_fus1_profile20 + points from IGES slices + + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + 0.0;0.0198860849361;0.0397408674326;0.0595322382858;0.0792292177617;0.0988021169485;0.118217697173;0.137446269524;0.156457338325;0.175221053311;0.193707402866;0.211887020782;0.229731508971;0.247699593391;0.265428391635;0.282373176714;0.298290789983;0.312835452433;0.32775461469;0.342513069575;0.356729379114;0.370380953918;0.383446334065;0.395905350458;0.407738479411;0.418925874532;0.429449948367;0.439294404286;0.448443913773;0.456883955079;0.46460032916;0.47158238673;0.477818671744;0.483297889506;0.488011972376;0.491954788951;0.495119562411;0.497499193236;0.499090777075;0.499894152575;0.499906415387;0.499125629276;0.497555182651;0.495199109333;0.492061281786;0.488145733832;0.48345649929;0.478000677682;0.471788111527;0.464828966051;0.457133567833;0.448715147799;0.439588227701;0.429766199819;0.419261649671;0.408092648767;0.396278720795;0.383839066736;0.370793048922;0.357159868336;0.342960339486;0.328218342584;0.312957273783;0.297200851943;0.28097392539;0.264302471925;0.247212953401;0.229731831677;0.211887182135;0.193707402866;0.175221053311;0.156457499677;0.137446592229;0.118217858526;0.0988017942429;0.0792295404673;0.0595325609914;0.0397407060798;0.0198860849361;0.0;-0.0198860849361;-0.0397407060798;-0.0595325609914;-0.0792295404673;-0.0988017942429;-0.118217858526;-0.137446592229;-0.156457499677;-0.175221053311;-0.193707402866;-0.211887182135;-0.229731831677;-0.247212953401;-0.264302471925;-0.28097392539;-0.297200851943;-0.312957273783;-0.328218342584;-0.342960339486;-0.357159868336;-0.370793048922;-0.383839066736;-0.396278720795;-0.408092648767;-0.419261649671;-0.429766199819;-0.439588227701;-0.448715147799;-0.457133567833;-0.464828966051;-0.471788111527;-0.478000677682;-0.48345649929;-0.488145733832;-0.492061281786;-0.495199109333;-0.497555182651;-0.499125629276;-0.499906415387;-0.499894152575;-0.499090777075;-0.497499193236;-0.495119562411;-0.491954788951;-0.488011972376;-0.483297889506;-0.477818671744;-0.47158238673;-0.46460032916;-0.456883955079;-0.448443913773;-0.439294404286;-0.429449948367;-0.418925874532;-0.407738479411;-0.395905350458;-0.383446334065;-0.370380953918;-0.356729379114;-0.342513069575;-0.32775461469;-0.312835452433;-0.298290789983;-0.282373176714;-0.265428391635;-0.247699593391;-0.229731508971;-0.211887020782;-0.193707402866;-0.175221053311;-0.156457338325;-0.137446269524;-0.118217697173;-0.0988021169485;-0.0792292177617;-0.0595322382858;-0.0397408674326;-0.0198860849361;-0.0 + 0.0;0.000397250548599;0.00157867561637;0.00355573125081;0.00631986575449;0.00985736414096;0.014175809991;0.0192621337292;0.025109397186;0.0317074351362;0.0390465664128;0.0471158190267;0.0559014779915;0.0643989608881;0.0734058345166;0.0838140570543;0.0957331870401;0.10928423906;0.122405931328;0.13574012521;0.14965083258;0.164116109462;0.179112882406;0.194617109849;0.21060442752;0.227049825739;0.24392748806;0.261210307216;0.278870853234;0.296881373435;0.315213631083;0.333837775913;0.352724764425;0.371845069059;0.391168355492;0.410663643991;0.430300277527;0.450047276365;0.469873499419;0.489747160191;0.509637117594;0.529511746483;0.549339583064;0.569089647606;0.588730637666;0.608231250807;0.627560507293;0.646687588744;0.665582483542;0.68421518007;0.702556150768;0.720576836195;0.738249160966;0.755544726991;0.772434652123;0.788892474506;0.80489382987;0.820413708532;0.835427423519;0.849909965148;0.863837775913;0.877190041306;0.889945946818;0.902084516587;0.913586549632;0.9244344585;0.934610655738;0.944098522009;0.952883696915;0.960952626823;0.9682917581;0.974890602814;0.980738350329;0.985824190009;0.990139570156;0.993680941009;0.996444430102;0.998418420034;0.999601942687;1.0;0.999601942687;0.998418420034;0.996444430102;0.993680941009;0.990139570156;0.985824190009;0.980738350329;0.974890602814;0.9682917581;0.960952626823;0.952883696915;0.944098522009;0.934610655738;0.9244344585;0.913586549632;0.902084516587;0.889945946818;0.877190041306;0.863837775913;0.849909965148;0.835427423519;0.820413708532;0.80489382987;0.788892474506;0.772434652123;0.755544726991;0.738249160966;0.720576836195;0.702556150768;0.68421518007;0.665582483542;0.646687588744;0.627560507293;0.608231250807;0.588730637666;0.569089647606;0.549339583064;0.529511746483;0.509637117594;0.489747160191;0.469873499419;0.450047276365;0.430300277527;0.410663643991;0.391168355492;0.371845069059;0.352724764425;0.333837775913;0.315213631083;0.296881373435;0.278870853234;0.261210307216;0.24392748806;0.227049825739;0.21060442752;0.194617109849;0.179112882406;0.164116109462;0.14965083258;0.13574012521;0.122405931328;0.10928423906;0.0957331870401;0.0838140570543;0.0734058345166;0.0643989608881;0.0559014779915;0.0471158190267;0.0390465664128;0.0317074351362;0.025109397186;0.0192621337292;0.014175809991;0.00985736414096;0.00631986575449;0.00355573125081;0.00157867561637;0.000397250548599;0.0 + + + + NASA_CRM_fus1_profile21 + points from IGES slices + + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + 0.0;0.0198783400026;0.0397253775655;0.0595093261908;0.0791985607332;0.0987641990448;0.118172679747;0.13739382987;0.156398444559;0.175155221376;0.193636084936;0.2118097328;0.229648734994;0.247125016135;0.264210178133;0.28087759778;0.297100974571;0.312854492061;0.328113140571;0.342853201239;0.357051439267;0.370684619853;0.383731928488;0.396171743901;0.407986801342;0.41915547954;0.429662127275;0.439488027624;0.448619949658;0.457041596747;0.464741996902;0.471707919195;0.477926616755;0.483390021944;0.488087646831;0.49201626436;0.495165063896;0.497532754615;0.499110946173;0.499899154511;0.499903672389;0.499111430231;0.497530334323;0.495165709307;0.49201626436;0.488089099006;0.483390667355;0.477927100813;0.471706789725;0.464742319608;0.457042887569;0.4486194656;0.439487866271;0.429662934039;0.419154834129;0.407985026462;0.396172550665;0.383731928488;0.3706844585;0.357050793856;0.342853039886;0.328113140571;0.312854330709;0.297100974571;0.28087759778;0.264210178133;0.247124854782;0.229648896347;0.211809894153;0.193635600878;0.175155705434;0.156398444559;0.137394152575;0.118172357041;0.0987638763392;0.0791988834388;0.0595093261908;0.0397253775655;0.0198783400026;0.0;-0.0198783400026;-0.0397253775655;-0.0595093261908;-0.0791988834388;-0.0987638763392;-0.118172357041;-0.137394152575;-0.156398444559;-0.175155705434;-0.193635600878;-0.211809894153;-0.229648896347;-0.247124854782;-0.264210178133;-0.28087759778;-0.297100974571;-0.312854330709;-0.328113140571;-0.342853039886;-0.357050793856;-0.3706844585;-0.383731928488;-0.396172550665;-0.407985026462;-0.419154834129;-0.429662934039;-0.439487866271;-0.4486194656;-0.457042887569;-0.464742319608;-0.471706789725;-0.477927100813;-0.483390667355;-0.488089099006;-0.49201626436;-0.495165709307;-0.497530334323;-0.499111430231;-0.499903672389;-0.499899154511;-0.499110946173;-0.497532754615;-0.495165063896;-0.49201626436;-0.488087646831;-0.483390021944;-0.477926616755;-0.471707919195;-0.464741996902;-0.457041596747;-0.448619949658;-0.439488027624;-0.429662127275;-0.41915547954;-0.407986801342;-0.396171743901;-0.383731928488;-0.370684619853;-0.357051439267;-0.342853201239;-0.328113140571;-0.312854492061;-0.297100974571;-0.28087759778;-0.264210178133;-0.247125016135;-0.229648734994;-0.2118097328;-0.193636084936;-0.175155221376;-0.156398444559;-0.13739382987;-0.118172679747;-0.0987641990448;-0.0791985607332;-0.0595093261908;-0.0397253775655;-0.0198783400026;0.0 + 0.0;0.000397089195818;0.00157786885246;0.00355234284239;0.00631583193494;0.00984913514909;0.0141633858268;0.0192479346844;0.0250898734994;0.0316840389828;0.0390162320898;0.0470795146508;0.0558587195043;0.0653394862527;0.0755079385569;0.0863474570802;0.0978412611333;0.109970956499;0.122717664903;0.136060410481;0.149978701433;0.164450432425;0.179452852717;0.194962566155;0.210953433587;0.227402220214;0.244281657416;0.261566090099;0.279226958823;0.297237479024;0.315568123144;0.334190009036;0.353074577256;0.372191493481;0.391510746095;0.411001032658;0.430632180199;0.450373047631;0.470192332516;0.490059055118;0.509941267587;0.529807667484;0.549626952369;0.569367981154;0.588999290048;0.60848957661;0.627808829224;0.646925584097;0.665809668259;0.684432199561;0.702763005034;0.720772718472;0.738433909901;0.755718987995;0.772597295727;0.789045436943;0.805038079256;0.820547308636;0.835549406222;0.850020975862;0.863939428166;0.877282819156;0.890029043501;0.902158738867;0.913652704273;0.924492222796;0.9346606751;0.944141925907;0.952920646702;0.960982961146;0.968317413192;0.974910449206;0.980753194785;0.985835000645;0.990149251323;0.993686427004;0.99644781851;0.9984222925;0.999602749451;1.0;0.999602749451;0.9984222925;0.99644781851;0.993686427004;0.990149251323;0.985835000645;0.980753194785;0.974910449206;0.968317413192;0.960982961146;0.952920646702;0.944141925907;0.9346606751;0.924492222796;0.913652704273;0.902158738867;0.890029043501;0.877282819156;0.863939428166;0.850020975862;0.835549406222;0.820547308636;0.805038079256;0.789045436943;0.772597295727;0.755718987995;0.738433909901;0.720772718472;0.702763005034;0.684432199561;0.665809668259;0.646925584097;0.627808829224;0.60848957661;0.588999290048;0.569367981154;0.549626952369;0.529807667484;0.509941267587;0.490059055118;0.470192332516;0.450373047631;0.430632180199;0.411001032658;0.391510746095;0.372191493481;0.353074577256;0.334190009036;0.315568123144;0.297237479024;0.279226958823;0.261566090099;0.244281657416;0.227402220214;0.210953433587;0.194962566155;0.179452852717;0.164450432425;0.149978701433;0.136060410481;0.122717664903;0.109970956499;0.0978412611333;0.0863474570802;0.0755079385569;0.0653394862527;0.0558587195043;0.0470795146508;0.0390162320898;0.0316840389828;0.0250898734994;0.0192479346844;0.0141633858268;0.00984913514909;0.00631583193494;0.00355234284239;0.00157786885246;0.000397089195818;0.0 + + + + NASA_CRM_fus1_profile22 + points from IGES slices + + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + 0.0;0.0198801955236;0.0397292382032;0.0595153295398;0.0792071552756;0.0987756609447;0.118187111084;0.137411482745;0.156419721461;0.175180190149;0.193664802823;0.21184240664;0.229685238443;0.247165212249;0.264254080659;0.280925371829;0.297152452496;0.312909335055;0.32817132321;0.342913720665;0.357112799606;0.370747576252;0.383794161376;0.39623609078;0.408043664343;0.419209618449;0.429711193766;0.439536122853;0.448674236646;0.457092768166;0.464802047888;0.471775603966;0.4779934211;0.483457436257;0.488152476546;0.492075313695;0.49521658571;0.497567899076;0.499146040821;0.499938743501;0.499921795062;0.499144910925;0.497579682277;0.495216101469;0.492075475109;0.48815263796;0.483460825944;0.478001814613;0.471782544755;0.464815768052;0.457112622051;0.44868747257;0.439551618568;0.429714744867;0.419216074997;0.408046246962;0.396226405958;0.383786897759;0.370737407189;0.357101984888;0.342901130396;0.328157925873;0.312895776304;0.297138893745;0.280911974491;0.264241974632;0.24715391329;0.229674907966;0.211833044645;0.193656086483;0.175173733601;0.156414071982;0.137407447402;0.118183559982;0.0987730783255;0.0792061867934;0.0595148452987;0.0397290767895;0.0198800341099;0.0;-0.0198800341099;-0.0397290767895;-0.0595148452987;-0.0792061867934;-0.0987730783255;-0.118183559982;-0.137407447402;-0.156414071982;-0.175173733601;-0.193656086483;-0.211833044645;-0.229674907966;-0.24715391329;-0.264241974632;-0.280911974491;-0.297138893745;-0.312895776304;-0.328157925873;-0.342901130396;-0.357101984888;-0.370737407189;-0.383786897759;-0.396226405958;-0.408046246962;-0.419216074997;-0.429714744867;-0.439551618568;-0.44868747257;-0.457112622051;-0.464815768052;-0.471782544755;-0.478001814613;-0.483460825944;-0.48815263796;-0.492075475109;-0.495216101469;-0.497579682277;-0.499144910925;-0.499921795062;-0.499938743501;-0.499146040821;-0.497567899076;-0.49521658571;-0.492075313695;-0.488152476546;-0.483457436257;-0.4779934211;-0.471775603966;-0.464802047888;-0.457092768166;-0.448674236646;-0.439536122853;-0.429711193766;-0.419209618449;-0.408043664343;-0.39623609078;-0.383794161376;-0.370747576252;-0.357112799606;-0.342913720665;-0.32817132321;-0.312909335055;-0.297152452496;-0.280925371829;-0.264254080659;-0.247165212249;-0.229685238443;-0.21184240664;-0.193664802823;-0.175180190149;-0.156419721461;-0.137411482745;-0.118187111084;-0.0987756609447;-0.0792071552756;-0.0595153295398;-0.0397292382032;-0.0198801955236;0.0 + 0.0;0.000395140737412;0.00157313791945;0.00354383778181;0.0063027207409;0.00983138563492;0.0141401629407;0.0192193678362;0.0250560872254;0.0316453172836;0.0389731764328;0.0470322396425;0.0558076568526;0.0652852236572;0.0754510584784;0.0862883742913;0.0977800612436;0.109908202415;0.122653750988;0.135996691665;0.149916524905;0.164389684309;0.179395024681;0.19490542852;0.210903947388;0.227357007235;0.244241525902;0.26152877175;0.279188721831;0.297202652156;0.315531339196;0.33415250786;0.353039363475;0.372158009162;0.391479713284;0.410973000169;0.430607201214;0.45035180923;0.470173088753;0.490041339663;0.509925409115;0.529794467093;0.549616715099;0.569359708978;0.58899423285;0.608487358321;0.627810030925;0.646929967922;0.665816500709;0.684440090579;0.702771360238;0.720782223703;0.738443142266;0.755723608739;0.772610225784;0.789060380184;0.805050021299;0.820562362102;0.835565119855;0.850037633604;0.86395552988;0.877297663488;0.890043050648;0.902171514646;0.913663040185;0.924502454376;0.934669580507;0.944148922862;0.95292643845;0.960987277211;0.968320463012;0.974911952862;0.98075383749;0.985835140763;0.990148921894;0.993685657473;0.996446800224;0.998421696842;0.999602760884;1.0;0.999602760884;0.998421696842;0.996446800224;0.993685657473;0.990148921894;0.985835140763;0.98075383749;0.974911952862;0.968320463012;0.960987277211;0.95292643845;0.944148922862;0.934669580507;0.924502454376;0.913663040185;0.902171514646;0.890043050648;0.877297663488;0.86395552988;0.850037633604;0.835565119855;0.820562362102;0.805050021299;0.789060380184;0.772610225784;0.755723608739;0.738443142266;0.720782223703;0.702771360238;0.684440090579;0.665816500709;0.646929967922;0.627810030925;0.608487358321;0.58899423285;0.569359708978;0.549616715099;0.529794467093;0.509925409115;0.490041339663;0.470173088753;0.45035180923;0.430607201214;0.410973000169;0.391479713284;0.372158009162;0.353039363475;0.33415250786;0.315531339196;0.297202652156;0.279188721831;0.26152877175;0.244241525902;0.227357007235;0.210903947388;0.19490542852;0.179395024681;0.164389684309;0.149916524905;0.135996691665;0.122653750988;0.109908202415;0.0977800612436;0.0862883742913;0.0754510584784;0.0652852236572;0.0558076568526;0.0470322396425;0.0389731764328;0.0316453172836;0.0250560872254;0.0192193678362;0.0141401629407;0.00983138563492;0.0063027207409;0.00354383778181;0.00157313791945;0.000395140737412;0.0 + + + + NASA_CRM_fus1_profile23 + points from IGES slices + + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + 0.0;0.0199351460349;0.0398392166225;0.0596803142139;0.0794275277821;0.0990522481853;0.118522413454;0.137808427924;0.156881846875;0.175712416959;0.194272351139;0.212531889328;0.230462915646;0.248037478634;0.265227462409;0.282004915511;0.298342544162;0.314212561321;0.32958816647;0.344442723511;0.358748609826;0.372481655621;0.385613580595;0.398123503364;0.409977553333;0.421158466366;0.431640264046;0.441403544771;0.450447650861;0.458760579628;0.466370118113;0.473272155807;0.479453210242;0.484922488956;0.48966601622;0.493674255653;0.496932080582;0.499415978896;0.501114605592;0.501990143986;0.502041278717;0.501355481413;0.499935876061;0.497744152719;0.494765842395;0.490975459933;0.486370703449;0.480946475913;0.474708203195;0.467673149432;0.459864497896;0.451313817295;0.44205448496;0.432129414604;0.421564255804;0.410333523403;0.398434915518;0.385899178753;0.372738644637;0.358977976222;0.344639863518;0.329752257985;0.314343768764;0.298445306884;0.282086796848;0.265296354538;0.248097492063;0.230514050377;0.212573323258;0.194304577528;0.175736751172;0.156898617751;0.137819772929;0.118528825848;0.0990557010128;0.0794296652467;0.0596809718953;0.0398393810429;0.0199353104552;0.0;-0.0199353104552;-0.0398393810429;-0.0596809718953;-0.0794296652467;-0.0990557010128;-0.118528825848;-0.137819772929;-0.156898617751;-0.175736751172;-0.194304577528;-0.212573323258;-0.230514050377;-0.248097492063;-0.265296354538;-0.282086796848;-0.298445306884;-0.314343768764;-0.329752257985;-0.344639863518;-0.358977976222;-0.372738644637;-0.385899178753;-0.398434915518;-0.410333523403;-0.421564255804;-0.432129414604;-0.44205448496;-0.451313817295;-0.459864497896;-0.467673149432;-0.474708203195;-0.480946475913;-0.486370703449;-0.490975459933;-0.494765842395;-0.497744152719;-0.499935876061;-0.501355481413;-0.502041278717;-0.501990143986;-0.501114605592;-0.499415978896;-0.496932080582;-0.493674255653;-0.48966601622;-0.484922488956;-0.479453210242;-0.473272155807;-0.466370118113;-0.458760579628;-0.450447650861;-0.441403544771;-0.431640264046;-0.421158466366;-0.409977553333;-0.398123503364;-0.385613580595;-0.372481655621;-0.358748609826;-0.344442723511;-0.32958816647;-0.314212561321;-0.298342544162;-0.282004915511;-0.265227462409;-0.248037478634;-0.230462915646;-0.212531889328;-0.194272351139;-0.175712416959;-0.156881846875;-0.137808427924;-0.118522413454;-0.0990522481853;-0.0794275277821;-0.0596803142139;-0.0398392166225;-0.0199351460349;0.0 + 0.0;0.000399541464512;0.00158419012781;0.00355986512269;0.00631998963494;0.00984713510684;0.0141462341491;0.0192085724827;0.0250201743777;0.0315762716435;0.0388632173907;0.0468732838625;0.0555943039527;0.0650124663514;0.0751159327929;0.0858902342859;0.0973207374187;0.109391822258;0.122086717926;0.135387667026;0.149276912159;0.163732749838;0.178736764983;0.194263143599;0.21029593691;0.226805220412;0.243766824313;0.26115197505;0.27892186942;0.297045596395;0.315475638494;0.33418223563;0.353139409389;0.372313946858;0.391680856143;0.411213007886;0.43088442367;0.450668302978;0.470534885725;0.490454740666;0.51039383279;0.530321579909;0.550210194983;0.570028602565;0.589743260903;0.609319477301;0.628719435078;0.647906468494;0.666844405071;0.68550118284;0.703847699397;0.721860442633;0.739519188842;0.756812921862;0.773723062191;0.790198310679;0.806198055499;0.82170371715;0.836682740401;0.851112270823;0.864968138623;0.878232257564;0.890887034666;0.902920631664;0.914321210292;0.925075452501;0.93516362785;0.944565348213;0.95326630902;0.961255165265;0.96852221615;0.975056774349;0.980850454425;0.985893555577;0.990179829832;0.993699247547;0.996449506838;0.998419920381;0.999602267159;1.0;0.999602267159;0.998419920381;0.996449506838;0.993699247547;0.990179829832;0.985893555577;0.980850454425;0.975056774349;0.96852221615;0.961255165265;0.95326630902;0.944565348213;0.93516362785;0.925075452501;0.914321210292;0.902920631664;0.890887034666;0.878232257564;0.864968138623;0.851112270823;0.836682740401;0.82170371715;0.806198055499;0.790198310679;0.773723062191;0.756812921862;0.739519188842;0.721860442633;0.703847699397;0.68550118284;0.666844405071;0.647906468494;0.628719435078;0.609319477301;0.589743260903;0.570028602565;0.550210194983;0.530321579909;0.51039383279;0.490454740666;0.470534885725;0.450668302978;0.43088442367;0.411213007886;0.391680856143;0.372313946858;0.353139409389;0.33418223563;0.315475638494;0.297045596395;0.27892186942;0.26115197505;0.243766824313;0.226805220412;0.21029593691;0.194263143599;0.178736764983;0.163732749838;0.149276912159;0.135387667026;0.122086717926;0.109391822258;0.0973207374187;0.0858902342859;0.0751159327929;0.0650124663514;0.0555943039527;0.0468732838625;0.0388632173907;0.0315762716435;0.0250201743777;0.0192085724827;0.0141462341491;0.00984713510684;0.00631998963494;0.00355986512269;0.00158419012781;0.000399541464512;0.0 + + + + NASA_CRM_fus1_profile24 + points from IGES slices + + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + 0.0;0.0200300459283;0.0400277770138;0.0599610503011;0.0797985822722;0.0995114958334;0.119068679354;0.138441427629;0.157601894887;0.176521204037;0.195172540634;0.213527543247;0.231559569319;0.249241632518;0.266546918402;0.283448440637;0.299919212893;0.315931905063;0.331460390253;0.346476650807;0.360953356618;0.374864380793;0.388180674349;0.40087834493;0.412918202195;0.424285291934;0.434970160337;0.444970057204;0.454282747999;0.462876261654;0.470757129892;0.477901976018;0.484289829763;0.48991897225;0.494771870961;0.498838040758;0.502105621408;0.504560690025;0.506208231347;0.507027618877;0.507033291164;0.50630826985;0.504838288276;0.502589140838;0.499547248426;0.495690953219;0.491017848794;0.485527075713;0.47922447815;0.472126213525;0.464256174198;0.455645987459;0.446325389841;0.436330649597;0.425643546657;0.414223343692;0.402110434256;0.389341086604;0.375941083854;0.361940678199;0.347367887297;0.332254166552;0.316628908721;0.300521162784;0.283957227524;0.266972511757;0.249597611452;0.231855903303;0.213772826655;0.19537261764;0.176681575039;0.157725997635;0.138533731196;0.119132793378;0.0995525769368;0.0798223027419;0.0599720510987;0.0400313866505;0.0200305615907;0.0;-0.0200305615907;-0.0400313866505;-0.0599720510987;-0.0798223027419;-0.0995525769368;-0.119132793378;-0.138533731196;-0.157725997635;-0.176681575039;-0.19537261764;-0.213772826655;-0.231855903303;-0.249597611452;-0.266972511757;-0.283957227524;-0.300521162784;-0.316628908721;-0.332254166552;-0.347367887297;-0.361940678199;-0.375941083854;-0.389341086604;-0.402110434256;-0.414223343692;-0.425643546657;-0.436330649597;-0.446325389841;-0.455645987459;-0.464256174198;-0.472126213525;-0.47922447815;-0.485527075713;-0.491017848794;-0.495690953219;-0.499547248426;-0.502589140838;-0.504838288276;-0.50630826985;-0.507033291164;-0.507027618877;-0.506208231347;-0.504560690025;-0.502105621408;-0.498838040758;-0.494771870961;-0.48991897225;-0.484289829763;-0.477901976018;-0.470757129892;-0.462876261654;-0.454282747999;-0.444970057204;-0.434970160337;-0.424285291934;-0.412918202195;-0.40087834493;-0.388180674349;-0.374864380793;-0.360953356618;-0.346476650807;-0.331460390253;-0.315931905063;-0.299919212893;-0.283448440637;-0.266546918402;-0.249241632518;-0.231559569319;-0.213527543247;-0.195172540634;-0.176521204037;-0.157601894887;-0.138441427629;-0.119068679354;-0.0995114958334;-0.0797985822722;-0.0599610503011;-0.0400277770138;-0.0200300459283;0.0 + 0.0;0.000407201397101;0.00161642969115;0.00362648166992;0.00642721597316;0.0100014438547;0.0143472745524;0.0194531916064;0.0253057877946;0.031896468744;0.0392109677952;0.0472401749127;0.055970510987;0.0653897720085;0.0754843788675;0.0862414400044;0.0976472044223;0.109687233574;0.122345713814;0.135608034708;0.149457007508;0.163874240257;0.178842372322;0.194338886444;0.210351406727;0.226848649652;0.243795722065;0.261156011936;0.278894282335;0.29699179753;0.315411086054;0.334127911774;0.353116663458;0.372343823052;0.391781201012;0.411398545145;0.431164571931;0.451047825967;0.471014101647;0.491031427904;0.511065771018;0.531087222574;0.551067593025;0.570975255081;0.590777206347;0.610436662908;0.629918215946;0.649185081543;0.668202022772;0.686936381013;0.70536013861;0.723449746982;0.741183892082;0.75854710404;0.775492629466;0.791952744699;0.807910260994;0.823347645829;0.838241006848;0.852571264542;0.866319167515;0.879469933445;0.892008780012;0.903921612442;0.915191585765;0.925816981106;0.935791266742;0.945097597701;0.953721879211;0.961647094414;0.968859664201;0.975344806248;0.98109220731;0.986090350925;0.990331845934;0.993808441737;0.996517560023;0.998453356618;0.999612737548;1.0;0.999612737548;0.998453356618;0.996517560023;0.993808441737;0.990331845934;0.986090350925;0.98109220731;0.975344806248;0.968859664201;0.961647094414;0.953721879211;0.945097597701;0.935791266742;0.925816981106;0.915191585765;0.903921612442;0.892008780012;0.879469933445;0.866319167515;0.852571264542;0.838241006848;0.823347645829;0.807910260994;0.791952744699;0.775492629466;0.75854710404;0.741183892082;0.723449746982;0.70536013861;0.686936381013;0.668202022772;0.649185081543;0.629918215946;0.610436662908;0.590777206347;0.570975255081;0.551067593025;0.531087222574;0.511065771018;0.491031427904;0.471014101647;0.451047825967;0.431164571931;0.411398545145;0.391781201012;0.372343823052;0.353116663458;0.334127911774;0.315411086054;0.29699179753;0.278894282335;0.261156011936;0.243795722065;0.226848649652;0.210351406727;0.194338886444;0.178842372322;0.163874240257;0.149457007508;0.135608034708;0.122345713814;0.109687233574;0.0976472044223;0.0862414400044;0.0754843788675;0.0653897720085;0.055970510987;0.0472401749127;0.0392109677952;0.031896468744;0.0253057877946;0.0194531916064;0.0143472745524;0.0100014438547;0.00642721597316;0.00362648166992;0.00161642969115;0.000407201397101;0.0 + + + + NASA_CRM_fus1_profile25 + points from IGES slices + + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + 0.0;0.0199515201279;0.0398735000093;0.0597358349344;0.0795076675755;0.0991583287596;0.11865658485;0.137970637748;0.157068689352;0.175920258645;0.194494300144;0.212759768367;0.230687311222;0.248247388463;0.265412529543;0.28215432314;0.298447744715;0.314267017111;0.329589185485;0.344392047615;0.358649826343;0.372351608711;0.385478391122;0.398017190918;0.409947311113;0.421255204587;0.431920174351;0.441925850971;0.451271858136;0.459937687014;0.467927100693;0.475218649567;0.481794082656;0.487642863312;0.492742413002;0.497072787356;0.500611595996;0.50332440666;0.505198048537;0.506196772286;0.506265448655;0.505456196424;0.503766193276;0.501215383582;0.497834060205;0.493632759795;0.488636695045;0.482864869553;0.476328948896;0.469043609118;0.461021268413;0.452281871151;0.442829368574;0.432695746938;0.421892859972;0.410433125868;0.398334607452;0.38563568823;0.372350667939;0.358497609404;0.344095892532;0.329168472165;0.313740372843;0.297839065113;0.281489385362;0.264731786792;0.247596562268;0.23009725891;0.212250246153;0.194074151287;0.17559136469;0.156825970129;0.137801486909;0.118546890814;0.0990936036335;0.0794741760858;0.0597215351972;0.0398691724573;0.0199509556646;0.0;-0.0199509556646;-0.0398691724573;-0.0597215351972;-0.0794741760858;-0.0990936036335;-0.118546890814;-0.137801486909;-0.156825970129;-0.17559136469;-0.194074151287;-0.212250246153;-0.23009725891;-0.247596562268;-0.264731786792;-0.281489385362;-0.297839065113;-0.313740372843;-0.329168472165;-0.344095892532;-0.358497609404;-0.372350667939;-0.38563568823;-0.398334607452;-0.410433125868;-0.421892859972;-0.432695746938;-0.442829368574;-0.452281871151;-0.461021268413;-0.469043609118;-0.476328948896;-0.482864869553;-0.488636695045;-0.493632759795;-0.497834060205;-0.501215383582;-0.503766193276;-0.505456196424;-0.506265448655;-0.506196772286;-0.505198048537;-0.50332440666;-0.500611595996;-0.497072787356;-0.492742413002;-0.487642863312;-0.481794082656;-0.475218649567;-0.467927100693;-0.459937687014;-0.451271858136;-0.441925850971;-0.431920174351;-0.421255204587;-0.409947311113;-0.398017190918;-0.385478391122;-0.372351608711;-0.358649826343;-0.344392047615;-0.329589185485;-0.314267017111;-0.298447744715;-0.28215432314;-0.265412529543;-0.248247388463;-0.230687311222;-0.212759768367;-0.194494300144;-0.175920258645;-0.157068689352;-0.137970637748;-0.11865658485;-0.0991583287596;-0.0795076675755;-0.0597358349344;-0.0398735000093;-0.0199515201279;0.0 + 0.0;0.00038195350591;0.00153270603899;0.00345526807021;0.00615415530606;0.00962598096667;0.0138722502875;0.01888920018;0.0246745727906;0.0312185840889;0.0385131434341;0.0465492194131;0.0553132649066;0.064792109104;0.074968818106;0.0858277750945;0.0973486593902;0.109512279241;0.122296432423;0.135678540403;0.149640164048;0.164147623713;0.179177400093;0.194701458178;0.210697595744;0.227139847478;0.244006011158;0.261271438552;0.278902826324;0.296877972252;0.315164325618;0.333739684198;0.352580340533;0.371659200385;0.390951803677;0.410431244324;0.430070051778;0.449839626566;0.469706289043;0.489635983257;0.509590513855;0.529529051327;0.549412271395;0.569203483943;0.588869761945;0.608377425758;0.627696935134;0.646799126136;0.665653517745;0.684231134178;0.702502811498;0.720442208083;0.738016585061;0.755206938835;0.771985422547;0.788321931488;0.804191064809;0.819584167406;0.834474333195;0.848837478407;0.862650460047;0.875893710054;0.888550294528;0.900606478195;0.91204758501;0.922882646385;0.933110345239;0.942700765017;0.951628316716;0.95986477717;0.967387756001;0.974174674676;0.98019768634;0.985438351857;0.989885005653;0.993529368932;0.996363351053;0.998385634936;0.999597349506;1.0;0.999597349506;0.998385634936;0.996363351053;0.993529368932;0.989885005653;0.985438351857;0.98019768634;0.974174674676;0.967387756001;0.95986477717;0.951628316716;0.942700765017;0.933110345239;0.922882646385;0.91204758501;0.900606478195;0.888550294528;0.875893710054;0.862650460047;0.848837478407;0.834474333195;0.819584167406;0.804191064809;0.788321931488;0.771985422547;0.755206938835;0.738016585061;0.720442208083;0.702502811498;0.684231134178;0.665653517745;0.646799126136;0.627696935134;0.608377425758;0.588869761945;0.569203483943;0.549412271395;0.529529051327;0.509590513855;0.489635983257;0.469706289043;0.449839626566;0.430070051778;0.410431244324;0.390951803677;0.371659200385;0.352580340533;0.333739684198;0.315164325618;0.296877972252;0.278902826324;0.261271438552;0.244006011158;0.227139847478;0.210697595744;0.194701458178;0.179177400093;0.164147623713;0.149640164048;0.135678540403;0.122296432423;0.109512279241;0.0973486593902;0.0858277750945;0.074968818106;0.064792109104;0.0553132649066;0.0465492194131;0.0385131434341;0.0312185840889;0.0246745727906;0.01888920018;0.0138722502875;0.00962598096667;0.00615415530606;0.00345526807021;0.00153270603899;0.00038195350591;0.0 + + + + NASA_CRM_fus1_profile26 + points from IGES slices + + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + 0.0;0.0200133724337;0.0399937753563;0.0599097778339;0.0797295093389;0.0994213191409;0.118958172241;0.138309956485;0.157446339923;0.176341166743;0.194964104994;0.213288779069;0.231285955999;0.248927941397;0.266187700262;0.2830379778;0.299449760839;0.315399750926;0.330852340989;0.34577631989;0.360146191208;0.373931622992;0.387103382276;0.399641027963;0.4115076342;0.42268957359;0.433175416702;0.442931754431;0.451959465964;0.460229757929;0.467738673984;0.474513029331;0.480453475844;0.485612105349;0.489996390938;0.49362303716;0.496276423415;0.497532561788;0.497864015273;0.497714333693;0.497444203498;0.497092308916;0.496494901375;0.495543401284;0.493271582172;0.489666036436;0.485298894994;0.480168179674;0.474202456536;0.467440629603;0.459968199808;0.451774616905;0.442822075857;0.433123984264;0.42269968424;0.411580826515;0.399764553731;0.38729196788;0.374199775016;0.360513251765;0.34626053211;0.331460958164;0.316128377122;0.300279713332;0.283937386063;0.26712865011;0.249885595796;0.232240093651;0.214223135014;0.195871865534;0.177221452689;0.158296513716;0.139148041457;0.119785926766;0.100011253593;0.0800506323772;0.0600462716099;0.0400339981599;0.0200184277587;0.0;-0.0200184277587;-0.0400339981599;-0.0600462716099;-0.0800506323772;-0.100011253593;-0.119785926766;-0.139148041457;-0.158296513716;-0.177221452689;-0.195871865534;-0.214223135014;-0.232240093651;-0.249885595796;-0.26712865011;-0.283937386063;-0.300279713332;-0.316128377122;-0.331460958164;-0.34626053211;-0.360513251765;-0.374199775016;-0.38729196788;-0.399764553731;-0.411580826515;-0.42269968424;-0.433123984264;-0.442822075857;-0.451774616905;-0.459968199808;-0.467440629603;-0.474202456536;-0.480168179674;-0.485298894994;-0.489666036436;-0.493271582172;-0.495543401284;-0.496494901375;-0.497092308916;-0.497444203498;-0.497714333693;-0.497864015273;-0.497532561788;-0.496276423415;-0.49362303716;-0.489996390938;-0.485612105349;-0.480453475844;-0.474513029331;-0.467738673984;-0.460229757929;-0.451959465964;-0.442931754431;-0.433175416702;-0.42268957359;-0.4115076342;-0.399641027963;-0.387103382276;-0.373931622992;-0.360146191208;-0.34577631989;-0.330852340989;-0.315399750926;-0.299449760839;-0.2830379778;-0.266187700262;-0.248927941397;-0.231285955999;-0.213288779069;-0.194964104994;-0.176341166743;-0.157446339923;-0.138309956485;-0.118958172241;-0.0994213191409;-0.0797295093389;-0.0599097778339;-0.0399937753563;-0.0200133724337;0.0 + 0.0;0.000406843767158;0.00162759486537;0.00364401016516;0.00645147393496;0.0100484475976;0.0144094347311;0.0195300394008;0.0254041072977;0.0320144942763;0.0393561450113;0.0474127945441;0.0561771895822;0.0656357027275;0.0757753659726;0.0865814529356;0.0980429737796;0.110138388424;0.122863300934;0.136204303708;0.150140516056;0.164654574036;0.179728014721;0.195332704129;0.21145369608;0.228056922081;0.245108313636;0.262587209852;0.280453387925;0.298682670214;0.31723857046;0.336074931346;0.355190434094;0.374532107688;0.394063685666;0.413750220346;0.433589293965;0.453564861359;0.47358043176;0.493598419925;0.5136157487;0.533631319101;0.553641394584;0.573636304091;0.593520655838;0.613210047876;0.632746021789;0.652094509082;0.67120253874;0.690043295562;0.708614361783;0.726878371957;0.744782135273;0.762293341609;0.779382538204;0.796027965179;0.812185882983;0.827842664218;0.842985340876;0.857593252064;0.871648814043;0.88512784917;0.897996948342;0.910224680624;0.921784670408;0.932655157816;0.942822955044;0.952274874287;0.960998387132;0.968994372764;0.976265688542;0.982788596418;0.988625079072;0.993694910694;0.996738875757;0.998240307293;0.99899113296;0.999511391845;0.999874715858;1.0;0.999874715858;0.999511391845;0.99899113296;0.998240307293;0.996738875757;0.993694910694;0.988625079072;0.982788596418;0.976265688542;0.968994372764;0.960998387132;0.952274874287;0.942822955044;0.932655157816;0.921784670408;0.910224680624;0.897996948342;0.88512784917;0.871648814043;0.857593252064;0.842985340876;0.827842664218;0.812185882983;0.796027965179;0.779382538204;0.762293341609;0.744782135273;0.726878371957;0.708614361783;0.690043295562;0.67120253874;0.652094509082;0.632746021789;0.613210047876;0.593520655838;0.573636304091;0.553641394584;0.533631319101;0.5136157487;0.493598419925;0.47358043176;0.453564861359;0.433589293965;0.413750220346;0.394063685666;0.374532107688;0.355190434094;0.336074931346;0.31723857046;0.298682670214;0.280453387925;0.262587209852;0.245108313636;0.228056922081;0.21145369608;0.195332704129;0.179728014721;0.164654574036;0.150140516056;0.136204303708;0.122863300934;0.110138388424;0.0980429737796;0.0865814529356;0.0757753659726;0.0656357027275;0.0561771895822;0.0474127945441;0.0393561450113;0.0320144942763;0.0254041072977;0.0195300394008;0.0144094347311;0.0100484475976;0.00645147393496;0.00364401016516;0.00162759486537;0.000406843767158;0.0 + + + + NASA_CRM_fus1_profile27 + points from IGES slices + + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + 0.0;0.0199346279562;0.0398369013916;0.0596789742026;0.0794327350841;0.0990756419521;0.118585948326;0.137938990512;0.157114348037;0.176090539618;0.194844757971;0.213352074203;0.231587294221;0.249525223929;0.267133774009;0.28438058994;0.30123066519;0.31762989876;0.333541692911;0.348913007446;0.363673829303;0.377738763766;0.391035676163;0.40343700482;0.414823409291;0.425433040065;0.434260254991;0.439405154181;0.440515550723;0.43873180887;0.436688435248;0.435237255435;0.433905681268;0.432664540639;0.431581725;0.430627531841;0.429805673975;0.429112438589;0.428549151688;0.428129868924;0.427859098714;0.427733658647;0.427750101108;0.427904448084;0.428192721559;0.42861120872;0.429160174767;0.429916262788;0.430949751043;0.432107088159;0.433234457565;0.43429234431;0.433293597385;0.428907173024;0.421413123471;0.41181231726;0.40087118525;0.389162561576;0.376538198887;0.363065193033;0.348822573908;0.333893879824;0.31835654947;0.30227343548;0.285687500414;0.268617043142;0.251080627731;0.233149062846;0.214924716069;0.196427477474;0.177651777841;0.158600799581;0.139260487042;0.119591590477;0.0997004554827;0.0797607887077;0.0598205915308;0.0398803943539;0.0199401971769;0.0;-0.0199401971769;-0.0398803943539;-0.0598205915308;-0.0797607887077;-0.0997004554827;-0.119591590477;-0.139260487042;-0.158600799581;-0.177651777841;-0.196427477474;-0.214924716069;-0.233149062846;-0.251080627731;-0.268617043142;-0.285687500414;-0.30227343548;-0.31835654947;-0.333893879824;-0.348822573908;-0.363065193033;-0.376538198887;-0.389162561576;-0.40087118525;-0.41181231726;-0.421413123471;-0.428907173024;-0.433293597385;-0.43429234431;-0.433234457565;-0.432107088159;-0.430949751043;-0.429916262788;-0.429160174767;-0.42861120872;-0.428192721559;-0.427904448084;-0.427750101108;-0.427733658647;-0.427859098714;-0.428129868924;-0.428549151688;-0.429112438589;-0.429805673975;-0.430627531841;-0.431581725;-0.432664540639;-0.433905681268;-0.435237255435;-0.436688435248;-0.43873180887;-0.440515550723;-0.439405154181;-0.434260254991;-0.425433040065;-0.414823409291;-0.40343700482;-0.391035676163;-0.377738763766;-0.363673829303;-0.348913007446;-0.333541692911;-0.31762989876;-0.30123066519;-0.28438058994;-0.267133774009;-0.249525223929;-0.231587294221;-0.213352074203;-0.194844757971;-0.176090539618;-0.157114348037;-0.137938990512;-0.118585948326;-0.0990756419521;-0.0794327350841;-0.0596789742026;-0.0398369013916;-0.0199346279562;0.0 + 0.0;0.000408674724357;0.00161931724005;0.00358127415815;0.00629428027767;0.00971802504823;0.0138320879937;0.0186303694913;0.0240966922807;0.0302188571163;0.0369902339736;0.0444094968474;0.052473993728;0.0611810726054;0.0705360374994;0.080541275219;0.0912010289798;0.102542084082;0.114557014898;0.127256694667;0.140659952662;0.154791452572;0.169647746786;0.185258272613;0.201623560456;0.218506255428;0.236339961148;0.255567298066;0.275448090221;0.295296262655;0.315129318632;0.335016475611;0.354912384223;0.374813862056;0.394724621923;0.414641746614;0.434564970927;0.45449323406;0.474425475207;0.494361163967;0.514299504737;0.534239436713;0.554179368689;0.574119035464;0.594056845832;0.613992799793;0.633925571342;0.653851182465;0.673764594342;0.693671110993;0.713579484051;0.733490243919;0.753390660947;0.772811859788;0.791274091852;0.8087399638;0.825407845971;0.841545856566;0.856976841324;0.871673484542;0.885625973785;0.898841999881;0.911337209688;0.923122211246;0.934188252922;0.94449051575;0.953977815937;0.962696828859;0.970787315437;0.978231242003;0.984942153034;0.990823515372;0.995663698626;0.9989007419;1.00012305326;1.00002890691;0.999988596357;0.999999734799;1.0;1.0;1.0;0.999999734799;0.999988596357;1.00002890691;1.00012305326;0.9989007419;0.995663698626;0.990823515372;0.984942153034;0.978231242003;0.970787315437;0.962696828859;0.953977815937;0.94449051575;0.934188252922;0.923122211246;0.911337209688;0.898841999881;0.885625973785;0.871673484542;0.856976841324;0.841545856566;0.825407845971;0.8087399638;0.791274091852;0.772811859788;0.753390660947;0.733490243919;0.713579484051;0.693671110993;0.673764594342;0.653851182465;0.633925571342;0.613992799793;0.594056845832;0.574119035464;0.554179368689;0.534239436713;0.514299504737;0.494361163967;0.474425475207;0.45449323406;0.434564970927;0.414641746614;0.394724621923;0.374813862056;0.354912384223;0.335016475611;0.315129318632;0.295296262655;0.275448090221;0.255567298066;0.236339961148;0.218506255428;0.201623560456;0.185258272613;0.169647746786;0.154791452572;0.140659952662;0.127256694667;0.114557014898;0.102542084082;0.0912010289798;0.080541275219;0.0705360374994;0.0611810726054;0.052473993728;0.0444094968474;0.0369902339736;0.0302188571163;0.0240966922807;0.0186303694913;0.0138320879937;0.00971802504823;0.00629428027767;0.00358127415815;0.00161931724005;0.000408674724357;0.0 + + + + NASA_CRM_fus1_profile28 + points from IGES slices + + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + 0.0;0.019722841895;0.0394269315502;0.0590966420989;0.0787104431918;0.0982488880616;0.117697044369;0.137027478282;0.156220048506;0.175243501307;0.194073180963;0.212671930258;0.230999813867;0.249010298452;0.266647127296;0.283842583975;0.300512977939;0.316563158933;0.331855263268;0.346234064069;0.359575588195;0.371504443586;0.381789352617;0.391074836717;0.399647041174;0.407046883378;0.413139277747;0.418222523801;0.422409829507;0.425674108296;0.428058768131;0.429790224944;0.431113299644;0.431997433027;0.43233080618;0.432505479821;0.432624591271;0.432632925599;0.432572154452;0.432485338527;0.432382895735;0.432251630056;0.43207278925;0.431825190231;0.431458479763;0.430955989188;0.429990596099;0.42837026367;0.426255774995;0.423758254458;0.420804776682;0.417329014299;0.413260820042;0.408441147137;0.402767205527;0.39635880119;0.389362479407;0.381541406335;0.372277799848;0.36130253058;0.348781937843;0.334860483336;0.319576366066;0.303204966149;0.286076878627;0.268410532369;0.250338929372;0.232012782082;0.213481054682;0.194745483488;0.175808152085;0.156682603755;0.137389674322;0.117960270255;0.0984235617032;0.0788090660829;0.0591421336437;0.039442211153;0.0197245782135;0.0;-0.0197245782135;-0.039442211153;-0.0591421336437;-0.0788090660829;-0.0984235617032;-0.117960270255;-0.137389674322;-0.156682603755;-0.175808152085;-0.194745483488;-0.213481054682;-0.232012782082;-0.250338929372;-0.268410532369;-0.286076878627;-0.303204966149;-0.319576366066;-0.334860483336;-0.348781937843;-0.36130253058;-0.372277799848;-0.381541406335;-0.389362479407;-0.39635880119;-0.402767205527;-0.408441147137;-0.413260820042;-0.417329014299;-0.420804776682;-0.423758254458;-0.426255774995;-0.42837026367;-0.429990596099;-0.430955989188;-0.431458479763;-0.431825190231;-0.43207278925;-0.432251630056;-0.432382895735;-0.432485338527;-0.432572154452;-0.432632925599;-0.432624591271;-0.432505479821;-0.43233080618;-0.431997433027;-0.431113299644;-0.429790224944;-0.428058768131;-0.425674108296;-0.422409829507;-0.418222523801;-0.413139277747;-0.407046883378;-0.399647041174;-0.391074836717;-0.381789352617;-0.371504443586;-0.359575588195;-0.346234064069;-0.331855263268;-0.316563158933;-0.300512977939;-0.283842583975;-0.266647127296;-0.249010298452;-0.230999813867;-0.212671930258;-0.194073180963;-0.175243501307;-0.156220048506;-0.137027478282;-0.117697044369;-0.0982488880616;-0.0787104431918;-0.0590966420989;-0.0394269315502;-0.019722841895;-0.0 + 0.0;0.000295521409501;0.00120361598747;0.00268087577127;0.00477279230575;0.00747797653609;0.0107703836847;0.0146958525602;0.0192495214706;0.0244598660396;0.0303348733321;0.036902671708;0.0441924313182;0.0522343641046;0.0610652800196;0.0707265034435;0.0812669985582;0.0927294787989;0.105183744169;0.118681536961;0.133203757671;0.148901813272;0.16572743411;0.183129512692;0.200893092786;0.219173054004;0.237930850074;0.256988681981;0.276263206439;0.295714835383;0.315294604633;0.33494347936;0.354624649611;0.374330128321;0.394052622952;0.413777895693;0.433503168434;0.453228788439;0.472954408443;0.492680028448;0.512405301189;0.532130921193;0.551855846671;0.571579730357;0.591302224988;0.611021594246;0.630722558528;0.650381156638;0.669992874149;0.689559447378;0.709062124087;0.728478679398;0.747779595896;0.766905838753;0.785795942293;0.804450948308;0.822893081674;0.840999063777;0.858405309523;0.874785738297;0.890018807802;0.903982281217;0.916438977433;0.927432304414;0.937210555705;0.945980353209;0.953884422306;0.961180085399;0.967936447965;0.974105240348;0.979621871501;0.984446406099;0.988551063044;0.991950080148;0.994667765872;0.996754126187;0.998268195923;0.999264495481;0.999826715413;1.0;0.999826715413;0.999264495481;0.998268195923;0.996754126187;0.994667765872;0.991950080148;0.988551063044;0.984446406099;0.979621871501;0.974105240348;0.967936447965;0.961180085399;0.953884422306;0.945980353209;0.937210555705;0.927432304414;0.916438977433;0.903982281217;0.890018807802;0.874785738297;0.858405309523;0.840999063777;0.822893081674;0.804450948308;0.785795942293;0.766905838753;0.747779595896;0.728478679398;0.709062124087;0.689559447378;0.669992874149;0.650381156638;0.630722558528;0.611021594246;0.591302224988;0.571579730357;0.551855846671;0.532130921193;0.512405301189;0.492680028448;0.472954408443;0.453228788439;0.433503168434;0.413777895693;0.394052622952;0.374330128321;0.354624649611;0.33494347936;0.315294604633;0.295714835383;0.276263206439;0.256988681981;0.237930850074;0.219173054004;0.200893092786;0.183129512692;0.16572743411;0.148901813272;0.133203757671;0.118681536961;0.105183744169;0.0927294787989;0.0812669985582;0.0707265034435;0.0610652800196;0.0522343641046;0.0441924313182;0.036902671708;0.0303348733321;0.0244598660396;0.0192495214706;0.0146958525602;0.0107703836847;0.00747797653609;0.00477279230575;0.00268087577127;0.00120361598747;0.000295521409501;0.0 + + + + NASA_CRM_fus1_profile29 + points from IGES slices + + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + 0.0;0.0451009578722;0.0900275678038;0.134544922946;0.178312041927;0.220839824773;0.261396935874;0.298916844133;0.331917592054;0.358538439671;0.379185941693;0.395299240082;0.406351819487;0.413019856765;0.416753294192;0.418732066174;0.419611906113;0.419446044134;0.418864755757;0.416325138852;0.412086400976;0.405994637644;0.397983889787;0.387931496688;0.375269670363;0.358293889683;0.334664729296;0.302257227243;0.263367221893;0.221721207614;0.178629879765;0.134625539582;0.0900375966676;0.0451005721467;0.0;-0.0451005721467;-0.0900375966676;-0.134625539582;-0.178629879765;-0.221721207614;-0.263367221893;-0.302257227243;-0.334664729296;-0.358293889683;-0.375269670363;-0.387931496688;-0.397983889787;-0.405994637644;-0.412086400976;-0.416325138852;-0.418864755757;-0.419446044134;-0.419611906113;-0.418732066174;-0.416753294192;-0.413019856765;-0.406351819487;-0.395299240082;-0.379185941693;-0.358538439671;-0.331917592054;-0.298916844133;-0.261396935874;-0.220839824773;-0.178312041927;-0.134544922946;-0.0900275678038;-0.0451009578722;-0.0 + 0.0;0.00133422461646;0.0054900315022;0.0128180451661;0.0237583784407;0.0387962740456;0.0585207348689;0.0835215352493;0.114216801664;0.150559475598;0.190665673552;0.232791916119;0.276520076821;0.321139649229;0.366108303244;0.41119074629;0.456309447537;0.501436634745;0.546556878894;0.591610392526;0.636536231006;0.681247220365;0.72565464373;0.769644326344;0.81294741751;0.854727278548;0.893077268153;0.924255462934;0.94703178417;0.964358189358;0.977717407446;0.987678383594;0.994586342153;0.998649574911;1.0;0.998649574911;0.994586342153;0.987678383594;0.977717407446;0.964358189358;0.94703178417;0.924255462934;0.893077268153;0.854727278548;0.81294741751;0.769644326344;0.72565464373;0.681247220365;0.636536231006;0.591610392526;0.546556878894;0.501436634745;0.456309447537;0.41119074629;0.366108303244;0.321139649229;0.276520076821;0.232791916119;0.190665673552;0.150559475598;0.114216801664;0.0835215352493;0.0585207348689;0.0387962740456;0.0237583784407;0.0128180451661;0.0054900315022;0.00133422461646;0.0 + + + + NASA_CRM_fus1_profile30 + points from IGES slices + + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + 0.0;0.0427959221601;0.0854862414175;0.127851451302;0.169400890292;0.209168914379;0.245525826366;0.276673610019;0.301755452269;0.321316430105;0.336583658481;0.347351004219;0.353997992161;0.357755887592;0.359832898394;0.360949798963;0.361452450333;0.361569581937;0.361042950868;0.35957650008;0.357049869933;0.35329474139;0.348022896923;0.340784717185;0.330634387533;0.316749681001;0.299129214144;0.276608126996;0.245855086071;0.209001517638;0.169111750467;0.127663302899;0.0854138411742;0.0427866991991;0.0;-0.0427866991991;-0.0854138411742;-0.127663302899;-0.169111750467;-0.209001517638;-0.245855086071;-0.276608126996;-0.299129214144;-0.316749681001;-0.330634387533;-0.340784717185;-0.348022896923;-0.35329474139;-0.357049869933;-0.35957650008;-0.361042950868;-0.361569581937;-0.361452450333;-0.360949798963;-0.359832898394;-0.357755887592;-0.353997992161;-0.347351004219;-0.336583658481;-0.321316430105;-0.301755452269;-0.276673610019;-0.245525826366;-0.209168914379;-0.169400890292;-0.127851451302;-0.0854862414175;-0.0427959221601;-0.0 + 0.0;0.000900622134829;0.00397878534527;0.0100373483803;0.0202420935015;0.0359704699237;0.058441753082;0.087702518929;0.122326436557;0.160367461209;0.200346229953;0.24175732453;0.284033532841;0.326679581886;0.369429389242;0.41222346681;0.455029534227;0.497837907384;0.540643052505;0.583425140224;0.626158346249;0.668800244962;0.71128028071;0.753467487449;0.795043211878;0.835520942808;0.874515160473;0.910853165389;0.940444574386;0.962108848463;0.977536556359;0.988170169163;0.995037585872;0.998813466076;1.0;0.998813466076;0.995037585872;0.988170169163;0.977536556359;0.962108848463;0.940444574386;0.910853165389;0.874515160473;0.835520942808;0.795043211878;0.753467487449;0.71128028071;0.668800244962;0.626158346249;0.583425140224;0.540643052505;0.497837907384;0.455029534227;0.41222346681;0.369429389242;0.326679581886;0.284033532841;0.24175732453;0.200346229953;0.160367461209;0.122326436557;0.087702518929;0.058441753082;0.0359704699237;0.0202420935015;0.0100373483803;0.00397878534527;0.000900622134829;0.0 + + + + NASA_CRM_fus1_profile31 + points from IGES slices + + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + 0.0;0.017698859462;0.0353926521182;0.0530752978015;0.0707305827333;0.0883427998156;0.105889655103;0.123319973855;0.140581567974;0.157566514494;0.174160810284;0.190182557014;0.205422495605;0.219668833571;0.232752846278;0.244579784458;0.255168395292;0.264597720951;0.272984804649;0.280506984592;0.287230635935;0.29313093133;0.298099947812;0.302078403753;0.305276571596;0.307887496643;0.310007954885;0.31173117555;0.313135694127;0.314276232121;0.315211564478;0.315970571992;0.316572508525;0.317055881802;0.317439945684;0.317730780339;0.317944599545;0.318091536914;0.318177672613;0.318217193699;0.318180206016;0.318020094952;0.317732807061;0.317322395788;0.316780247564;0.316093188693;0.315270846106;0.314314739845;0.313204602686;0.31192219413;0.31045535384;0.308772667623;0.30686856199;0.304738983497;0.302291716279;0.299421877454;0.295960742388;0.291612409621;0.286485815477;0.280764885009;0.274536767277;0.267806529086;0.260496141627;0.252173406363;0.242359510141;0.23100023814;0.218184766142;0.20413299352;0.189088633634;0.173279692749;0.156900736207;0.140099714739;0.123001271768;0.105691036314;0.0882338634901;0.0706763679109;0.0530530038558;0.0353860652706;0.0176983527814;0.0;-0.0176983527814;-0.0353860652706;-0.0530530038558;-0.0706763679109;-0.0882338634901;-0.105691036314;-0.123001271768;-0.140099714739;-0.156900736207;-0.173279692749;-0.189088633634;-0.20413299352;-0.218184766142;-0.23100023814;-0.242359510141;-0.252173406363;-0.260496141627;-0.267806529086;-0.274536767277;-0.280764885009;-0.286485815477;-0.291612409621;-0.295960742388;-0.299421877454;-0.302291716279;-0.304738983497;-0.30686856199;-0.308772667623;-0.31045535384;-0.31192219413;-0.313204602686;-0.314314739845;-0.315270846106;-0.316093188693;-0.316780247564;-0.317322395788;-0.317732807061;-0.318020094952;-0.318180206016;-0.318217193699;-0.318177672613;-0.318091536914;-0.317944599545;-0.317730780339;-0.317439945684;-0.317055881802;-0.316572508525;-0.315970571992;-0.315211564478;-0.314276232121;-0.313135694127;-0.31173117555;-0.310007954885;-0.307887496643;-0.305276571596;-0.302078403753;-0.298099947812;-0.29313093133;-0.287230635935;-0.280506984592;-0.272984804649;-0.264597720951;-0.255168395292;-0.244579784458;-0.232752846278;-0.219668833571;-0.205422495605;-0.190182557014;-0.174160810284;-0.157566514494;-0.140581567974;-0.123319973855;-0.105889655103;-0.0883427998156;-0.0707305827333;-0.0530752978015;-0.0353926521182;-0.017698859462;0.0 + 0.0;0.000134777035209;0.000598389769106;0.0013660108531;0.00261447181083;0.00436403986563;0.00667906345161;0.00974448098174;0.0136499749193;0.0186169646793;0.0247630001571;0.0322704863627;0.0412579865527;0.0517477946728;0.0636563084266;0.0768158165411;0.0909922325867;0.105966670551;0.121549631897;0.137569858585;0.153940708238;0.170626206533;0.187611153053;0.204856026712;0.222263038158;0.239768852318;0.257340534953;0.274955792119;0.292599930078;0.310262815219;0.327937860693;0.345621013057;0.363310245588;0.381004038244;0.398699350942;0.416396690362;0.434095043144;0.451794409286;0.469493775429;0.487193648252;0.504893014395;0.522592380537;0.540289719958;0.557984525975;0.575675785228;0.593361977676;0.611042596637;0.62871662875;0.646381540613;0.664035305503;0.681673363295;0.699293180586;0.716890197251;0.734461373206;0.751990494672;0.769455774385;0.786812117773;0.803967308969;0.820907160917;0.837655994285;0.854223436004;0.870592765615;0.886710274976;0.902325157198;0.91704574819;0.930607054007;0.942802348971;0.953551070869;0.962863859994;0.970812158307;0.977510982302;0.983069774983;0.987635980402;0.991321574966;0.99423397496;0.996466409611;0.998100961173;0.999172083927;0.999804421295;1.0;0.999804421295;0.999172083927;0.998100961173;0.996466409611;0.99423397496;0.991321574966;0.987635980402;0.983069774983;0.977510982302;0.970812158307;0.962863859994;0.953551070869;0.942802348971;0.930607054007;0.91704574819;0.902325157198;0.886710274976;0.870592765615;0.854223436004;0.837655994285;0.820907160917;0.803967308969;0.786812117773;0.769455774385;0.751990494672;0.734461373206;0.716890197251;0.699293180586;0.681673363295;0.664035305503;0.646381540613;0.62871662875;0.611042596637;0.593361977676;0.575675785228;0.557984525975;0.540289719958;0.522592380537;0.504893014395;0.487193648252;0.469493775429;0.451794409286;0.434095043144;0.416396690362;0.398699350942;0.381004038244;0.363310245588;0.345621013057;0.327937860693;0.310262815219;0.292599930078;0.274955792119;0.257340534953;0.239768852318;0.222263038158;0.204856026712;0.187611153053;0.170626206533;0.153940708238;0.137569858585;0.121549631897;0.105966670551;0.0909922325867;0.0768158165411;0.0636563084266;0.0517477946728;0.0412579865527;0.0322704863627;0.0247630001571;0.0186169646793;0.0136499749193;0.00974448098174;0.00667906345161;0.00436403986563;0.00261447181083;0.0013660108531;0.000598389769106;0.000134777035209;0.0 + + + + NASA_CRM_fus1_profile32 + points from IGES slices + + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + 0.0;0.036678260335;0.0729448861797;0.107845825707;0.139192123618;0.164442856032;0.182671091989;0.195122583305;0.203466770007;0.208762571275;0.211592784403;0.213358654178;0.214558601865;0.215369817127;0.215911631778;0.216250341271;0.216420901389;0.216457665231;0.216301569575;0.215874265251;0.215129345441;0.213996898578;0.21239134326;0.210188526186;0.20720703889;0.203156386753;0.197602033221;0.1895242337;0.177328281218;0.160006484901;0.136434835488;0.106680833804;0.0726766909408;0.0366541528978;0.0;-0.0366541528978;-0.0726766909408;-0.106680833804;-0.136434835488;-0.160006484901;-0.177328281218;-0.1895242337;-0.197602033221;-0.203156386753;-0.20720703889;-0.210188526186;-0.21239134326;-0.213996898578;-0.215129345441;-0.215874265251;-0.216301569575;-0.216457665231;-0.216420901389;-0.216250341271;-0.215911631778;-0.215369817127;-0.214558601865;-0.213358654178;-0.211592784403;-0.208762571275;-0.203466770007;-0.195122583305;-0.182671091989;-0.164442856032;-0.139192123618;-0.107845825707;-0.0729448861797;-0.036678260335;-0.0 + 0.0;0.00153624643587;0.00708457310852;0.01831803616;0.0372417716797;0.0637527203736;0.0955534434762;0.130068664008;0.165816377267;0.202144477077;0.238755236587;0.275435907666;0.312136467381;0.348849683499;0.385567721106;0.422288772142;0.45901102855;0.495733284958;0.53245493868;0.569174181658;0.605889205835;0.642593984351;0.679284298404;0.71593724593;0.752536554408;0.789033406278;0.825328961048;0.861137545586;0.895745579751;0.928071844984;0.956120245486;0.977469791874;0.99113569534;0.998050913702;1.0;0.998050913702;0.99113569534;0.977469791874;0.956120245486;0.928071844984;0.895745579751;0.861137545586;0.825328961048;0.789033406278;0.752536554408;0.71593724593;0.679284298404;0.642593984351;0.605889205835;0.569174181658;0.53245493868;0.495733284958;0.45901102855;0.422288772142;0.385567721106;0.348849683499;0.312136467381;0.275435907666;0.238755236587;0.202144477077;0.165816377267;0.130068664008;0.0955534434762;0.0637527203736;0.0372417716797;0.01831803616;0.00708457310852;0.00153624643587;0.0 + + + + NASA_CRM_fus1_profile33 + points from IGES slices + + 0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0 + 0.0;0.000125103677642;0.000166534116342;0.000194966770351;0.000224211785904;0.000249394993741;0.000268079309233;0.00028026473238;0.000288388347811;0.000294887240156;0.000299761409415;0.00030382321713;0.00030626030176;0.000307072663303;0.000308697386389;0.000308697386389;0.000309509747932;0.000309509747932;0.000310322109475;0.000309509747932;0.000309509747932;0.000309509747932;0.000308697386389;0.000309509747932;0.000308697386389;0.000309509747932;0.000309509747932;0.000309509747932;0.000309509747932;0.000309509747932;0.000309509747932;0.000309509747932;0.000309509747932;0.000308697386389;0.000309509747932;0.000309509747932;0.000309509747932;0.000309509747932;0.000309509747932;0.000309509747932;0.000309509747932;0.000309509747932;0.000309509747932;0.000308697386389;0.000308697386389;0.000307885024846;0.000307885024846;0.000307885024846;0.000307885024846;0.000307072663303;0.000307072663303;0.000305447940217;0.000305447940217;0.000304635578674;0.00030382321713;0.000303010855587;0.000302198494044;0.000301386132501;0.000300573770958;0.000299761409415;0.000298136686329;0.000296511963242;0.000295699601699;0.000294074878613;0.00029082543244;0.000287575986268;0.000284326540095;0.000281077093923;0.000277015286207;0.000273765840035;0.000270516393862;0.000266454586146;0.000261580416888;0.000256706247629;0.000249394993741;0.000238021932137;0.000219337616645;0.00018684315492;0.00013241493153;0.0;-0.00013241493153;-0.00018684315492;-0.000219337616645;-0.000238021932137;-0.000249394993741;-0.000256706247629;-0.000261580416888;-0.000266454586146;-0.000270516393862;-0.000273765840035;-0.000277015286207;-0.000281077093923;-0.000284326540095;-0.000287575986268;-0.00029082543244;-0.000294074878613;-0.000295699601699;-0.000296511963242;-0.000298136686329;-0.000299761409415;-0.000300573770958;-0.000301386132501;-0.000302198494044;-0.000303010855587;-0.00030382321713;-0.000304635578674;-0.000305447940217;-0.000305447940217;-0.000307072663303;-0.000307072663303;-0.000307885024846;-0.000307885024846;-0.000307885024846;-0.000307885024846;-0.000308697386389;-0.000308697386389;-0.000309509747932;-0.000309509747932;-0.000309509747932;-0.000309509747932;-0.000309509747932;-0.000309509747932;-0.000309509747932;-0.000309509747932;-0.000309509747932;-0.000308697386389;-0.000309509747932;-0.000309509747932;-0.000309509747932;-0.000309509747932;-0.000309509747932;-0.000309509747932;-0.000309509747932;-0.000309509747932;-0.000308697386389;-0.000309509747932;-0.000308697386389;-0.000309509747932;-0.000309509747932;-0.000309509747932;-0.000310322109475;-0.000309509747932;-0.000309509747932;-0.000308697386389;-0.000308697386389;-0.000307072663303;-0.00030626030176;-0.00030382321713;-0.000299761409415;-0.000294887240156;-0.000288388347811;-0.00028026473238;-0.000268079309233;-0.000249394993741;-0.000224211785904;-0.000194966770351;-0.000166534116342;-0.000125103677642;0.0 + 0.0;0.012658217565;0.0253164351301;0.0379738403336;0.0506320578986;0.0632902754637;0.0759493053903;0.0886075229553;0.10126574052;0.113923958085;0.12658217565;0.139240393215;0.151898610781;0.164556828346;0.177215045911;0.189873263476;0.202531481041;0.215189698606;0.227847916171;0.240506133736;0.253164351301;0.265822568866;0.278480786431;0.291139816358;0.303797221561;0.316455439126;0.329113656691;0.341771874256;0.354430091821;0.367089121748;0.379746526951;0.392404744516;0.405062962081;0.417721179646;0.430380209573;0.443038427138;0.455696644703;0.468354862268;0.481013079833;0.493671297398;0.506329514963;0.518987732528;0.531645950093;0.544304167658;0.556962385223;0.569620602789;0.582279632715;0.59493785028;0.607595255484;0.620253473049;0.632911690614;0.645569908179;0.658228938105;0.67088715567;0.683545373235;0.6962035908;0.708861808366;0.721520025931;0.734178243496;0.746836461061;0.759494678626;0.772152896191;0.784811113756;0.797469331321;0.810128361247;0.822785766451;0.835444796378;0.848102201581;0.860760419146;0.873418636711;0.886076854276;0.898735071841;0.911393289406;0.924051506971;0.936709724536;0.949368754463;0.962026159666;0.974684377231;0.987342594796;1.0;0.987342594796;0.974684377231;0.962026159666;0.949368754463;0.936709724536;0.924051506971;0.911393289406;0.898735071841;0.886076854276;0.873418636711;0.860760419146;0.848102201581;0.835444796378;0.822785766451;0.810128361247;0.797469331321;0.784811113756;0.772152896191;0.759494678626;0.746836461061;0.734178243496;0.721520025931;0.708861808366;0.6962035908;0.683545373235;0.67088715567;0.658228938105;0.645569908179;0.632911690614;0.620253473049;0.607595255484;0.59493785028;0.582279632715;0.569620602789;0.556962385223;0.544304167658;0.531645950093;0.518987732528;0.506329514963;0.493671297398;0.481013079833;0.468354862268;0.455696644703;0.443038427138;0.430380209573;0.417721179646;0.405062962081;0.392404744516;0.379746526951;0.367089121748;0.354430091821;0.341771874256;0.329113656691;0.316455439126;0.303797221561;0.291139816358;0.278480786431;0.265822568866;0.253164351301;0.240506133736;0.227847916171;0.215189698606;0.202531481041;0.189873263476;0.177215045911;0.164556828346;0.151898610781;0.139240393215;0.12658217565;0.113923958085;0.10126574052;0.0886075229553;0.0759493053903;0.0632902754637;0.0506320578986;0.0379738403336;0.0253164351301;0.012658217565;0.0 + + + + Profile_Fuselage_1 + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;-0.00760827;-0.0151289;-0.0224751;-0.0295622;-0.0363087;-0.0426367;-0.0484732;-0.0537511;-0.0584094;-0.0611548;-0.0634929;-0.0654046;-0.0668743;-0.0678901;-0.0684436;-0.0685304;-0.0681497;-0.0673046;-0.0643827;-0.0599899;-0.0542266;-0.0472243;-0.0391432;-0.0301677;-0.0205031;-0.01037;-8.42605e-18;8.42605e-18;0.01037;0.0205031;0.0301677;0.0391432;0.0472243;0.0542266;0.0599899;0.0643827;0.0673046;0.0681497;0.0685304;0.0684436;0.0678901;0.0668743;0.0654046;0.0634929;0.0611548;0.0584094;0.0537511;0.0484732;0.0426367;0.0363087;0.0295622;0.0224751;0.0151289;0.00760827;0 + -0.380603;-0.381012;-0.382234;-0.384255;-0.387053;-0.390594;-0.394837;-0.399735;-0.40523;-0.41126;-0.415649;-0.420268;-0.425079;-0.430044;-0.43512;-0.440268;-0.445444;-0.450607;-0.455715;-0.465696;-0.475122;-0.483779;-0.491468;-0.498014;-0.503267;-0.507108;-0.509448;-0.510234;-0.510234;-0.509448;-0.507108;-0.503267;-0.498014;-0.491468;-0.483779;-0.475122;-0.465696;-0.455715;-0.450607;-0.445444;-0.440268;-0.43512;-0.430044;-0.425079;-0.420268;-0.415649;-0.41126;-0.40523;-0.399735;-0.394837;-0.390594;-0.387053;-0.384255;-0.382234;-0.381012;-0.380603 + + + + Profile_Fuselage_2 + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;-0.0269479;-0.0535852;-0.0796049;-0.104707;-0.128603;-0.151016;-0.171688;-0.190382;-0.206882;-0.216606;-0.224887;-0.231658;-0.236864;-0.240461;-0.242422;-0.242729;-0.241381;-0.238388;-0.228039;-0.21248;-0.192066;-0.167265;-0.138642;-0.106852;-0.0726203;-0.0367297;-2.98444e-17;2.98444e-17;0.0367297;0.0726203;0.106852;0.138642;0.167265;0.192066;0.21248;0.228039;0.238388;0.241381;0.242729;0.242422;0.240461;0.236864;0.231658;0.224887;0.216606;0.206882;0.190382;0.171688;0.151016;0.128603;0.104707;0.0796049;0.0535852;0.0269479;0 + -0.202044;-0.203493;-0.207822;-0.214982;-0.224889;-0.237431;-0.252463;-0.26981;-0.289273;-0.310629;-0.326176;-0.342536;-0.359577;-0.37716;-0.395141;-0.413373;-0.431708;-0.449995;-0.468086;-0.503438;-0.536825;-0.567487;-0.594721;-0.617906;-0.636513;-0.650115;-0.658403;-0.661187;-0.661187;-0.658403;-0.650115;-0.636513;-0.617906;-0.594721;-0.567487;-0.536825;-0.503438;-0.468086;-0.449995;-0.431708;-0.413373;-0.395141;-0.37716;-0.359577;-0.342536;-0.326176;-0.310629;-0.289273;-0.26981;-0.252463;-0.237431;-0.224889;-0.214982;-0.207822;-0.203493;-0.202044 + + + + Profile_Fuselage_3 + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;-0.0514493;-0.102306;-0.151983;-0.199908;-0.24553;-0.288321;-0.32779;-0.36348;-0.394981;-0.413546;-0.429357;-0.442285;-0.452223;-0.459092;-0.462836;-0.463422;-0.460848;-0.455133;-0.435374;-0.405669;-0.366696;-0.319344;-0.264697;-0.204003;-0.138648;-0.0701249;-5.69794e-17;5.69794e-17;0.0701249;0.138648;0.204003;0.264697;0.319344;0.366696;0.405669;0.435374;0.455133;0.460848;0.463422;0.462836;0.459092;0.452223;0.442285;0.429357;0.413546;0.394981;0.36348;0.32779;0.288321;0.24553;0.199908;0.151983;0.102306;0.0514493;0 + 0.0458874;0.0431216;0.0348563;0.0211867;0.00227037;-0.0216747;-0.0503726;-0.0834924;-0.120653;-0.161425;-0.191107;-0.222343;-0.254878;-0.288447;-0.322776;-0.357585;-0.39259;-0.427505;-0.462045;-0.529538;-0.593282;-0.651821;-0.703818;-0.748083;-0.783607;-0.809577;-0.8254;-0.830715;-0.830715;-0.8254;-0.809577;-0.783607;-0.748083;-0.703818;-0.651821;-0.593282;-0.529538;-0.462045;-0.427505;-0.39259;-0.357585;-0.322776;-0.288447;-0.254878;-0.222343;-0.191107;-0.161425;-0.120653;-0.0834924;-0.0503726;-0.0216747;0.00227037;0.0211867;0.0348563;0.0431216;0.0458874 + + + + Profile_Fuselage_4 + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;-0.0750025;-0.149141;-0.22156;-0.291425;-0.357932;-0.420313;-0.47785;-0.529879;-0.575801;-0.602865;-0.625914;-0.64476;-0.659248;-0.669262;-0.674719;-0.675574;-0.671821;-0.66349;-0.634686;-0.591382;-0.534566;-0.465538;-0.385874;-0.297394;-0.20212;-0.102228;-8.30642e-17;8.30642e-17;0.102228;0.20212;0.297394;0.385874;0.465538;0.534566;0.591382;0.634686;0.66349;0.671821;0.675574;0.674719;0.669262;0.659248;0.64476;0.625914;0.602865;0.575801;0.529879;0.47785;0.420313;0.357932;0.291425;0.22156;0.149141;0.0750025;0 + 0.305768;0.301737;0.289687;0.26976;0.242184;0.207277;0.165441;0.117159;0.0629876;0.0035503;-0.0397198;-0.0852555;-0.132685;-0.181622;-0.231667;-0.282411;-0.333441;-0.38434;-0.434692;-0.533083;-0.626009;-0.711347;-0.787147;-0.851677;-0.903463;-0.941322;-0.964389;-0.972137;-0.972137;-0.964389;-0.941322;-0.903463;-0.851677;-0.787147;-0.711347;-0.626009;-0.533083;-0.434692;-0.38434;-0.333441;-0.282411;-0.231667;-0.181622;-0.132685;-0.0852555;-0.0397198;0.0035503;0.0629876;0.117159;0.165441;0.207277;0.242184;0.26976;0.289687;0.301737;0.305768 + + + + Profile_Fuselage_5 + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;-0.0962309;-0.191353;-0.284269;-0.373909;-0.459239;-0.539277;-0.613099;-0.679854;-0.738774;-0.773498;-0.80307;-0.82725;-0.845839;-0.858687;-0.865688;-0.866786;-0.86197;-0.851282;-0.814325;-0.758764;-0.685868;-0.597302;-0.49509;-0.381567;-0.259327;-0.131162;-1.06574e-16;1.06574e-16;0.131162;0.259327;0.381567;0.49509;0.597302;0.685868;0.758764;0.814325;0.851282;0.86197;0.866786;0.865688;0.858687;0.845839;0.82725;0.80307;0.773498;0.738774;0.679854;0.613099;0.539277;0.459239;0.373909;0.284269;0.191353;0.0962309;0 + 0.556032;0.550859;0.5354;0.509832;0.474451;0.429664;0.375988;0.31404;0.244536;0.168276;0.112759;0.0543348;-0.00651942;-0.0693073;-0.133517;-0.198623;-0.264096;-0.329401;-0.394004;-0.520244;-0.639471;-0.748963;-0.846217;-0.929011;-0.995455;-1.04403;-1.07363;-1.08357;-1.08357;-1.07363;-1.04403;-0.995455;-0.929011;-0.846217;-0.748963;-0.639471;-0.520244;-0.394004;-0.329401;-0.264096;-0.198623;-0.133517;-0.0693073;-0.00651942;0.0543348;0.112759;0.168276;0.244536;0.31404;0.375988;0.429664;0.474451;0.509832;0.5354;0.550859;0.556032 + + + + Profile_Fuselage_6 + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;-0.116018;-0.230698;-0.34272;-0.450792;-0.553668;-0.650162;-0.739163;-0.819645;-0.89068;-0.932543;-0.968196;-0.997348;-1.01976;-1.03525;-1.04369;-1.04501;-1.03921;-1.02632;-0.981766;-0.91478;-0.826895;-0.720119;-0.59689;-0.460025;-0.312649;-0.158131;-1.28488e-16;1.28488e-16;0.158131;0.312649;0.460025;0.59689;0.720119;0.826895;0.91478;0.981766;1.02632;1.03921;1.04501;1.04369;1.03525;1.01976;0.997348;0.968196;0.932543;0.89068;0.819645;0.739163;0.650162;0.553668;0.450792;0.34272;0.230698;0.116018;0 + 0.796924;0.790687;0.772049;0.741224;0.698568;0.644572;0.579859;0.505174;0.421378;0.329438;0.262505;0.192068;0.118701;0.0430027;-0.0344091;-0.112903;-0.191838;-0.270571;-0.348458;-0.500655;-0.644398;-0.776403;-0.893654;-0.993472;-1.07358;-1.13214;-1.16782;-1.17981;-1.17981;-1.16782;-1.13214;-1.07358;-0.993472;-0.893654;-0.776403;-0.644398;-0.500655;-0.348458;-0.270571;-0.191838;-0.112903;-0.0344091;0.0430027;0.118701;0.192068;0.262505;0.329438;0.421378;0.505174;0.579859;0.644572;0.698568;0.741224;0.772049;0.790687;0.796924 + + + + Profile_Fuselage_7 + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;-0.133077;-0.264621;-0.393115;-0.517077;-0.635081;-0.745764;-0.847852;-0.940168;-1.02165;-1.06967;-1.11056;-1.144;-1.16971;-1.18748;-1.19716;-1.19868;-1.19202;-1.17723;-1.12613;-1.04929;-0.948484;-0.826007;-0.684659;-0.527668;-0.358622;-0.181383;-1.47381e-16;1.47381e-16;0.181383;0.358622;0.527668;0.684659;0.826007;0.948484;1.04929;1.12613;1.17723;1.19202;1.19868;1.19716;1.18748;1.16971;1.144;1.11056;1.06967;1.02165;0.940168;0.847852;0.745764;0.635081;0.517077;0.393115;0.264621;0.133077;0 + 1.00719;1.00004;0.978662;0.943304;0.894376;0.83244;0.758211;0.672544;0.576427;0.470967;0.394193;0.313398;0.229243;0.142414;0.0536191;-0.0364167;-0.126959;-0.217269;-0.306609;-0.481185;-0.646064;-0.797479;-0.931972;-1.04647;-1.13835;-1.20553;-1.24645;-1.2602;-1.2602;-1.24645;-1.20553;-1.13835;-1.04647;-0.931972;-0.797479;-0.646064;-0.481185;-0.306609;-0.217269;-0.126959;-0.0364167;0.0536191;0.142414;0.229243;0.313398;0.394193;0.470967;0.576427;0.672544;0.758211;0.83244;0.894376;0.943304;0.978662;1.00004;1.00719 + + + + Profile_Fuselage_8 + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;-0.147337;-0.292977;-0.435239;-0.572485;-0.703133;-0.825677;-0.938704;-1.04091;-1.13112;-1.18429;-1.22957;-1.26659;-1.29505;-1.31472;-1.32544;-1.32712;-1.31975;-1.30338;-1.2468;-1.16173;-1.05012;-0.914519;-0.758024;-0.584211;-0.397051;-0.200819;-1.63174e-16;1.63174e-16;0.200819;0.397051;0.584211;0.758024;0.914519;1.05012;1.16173;1.2468;1.30338;1.31975;1.32712;1.32544;1.31472;1.29505;1.26659;1.22957;1.18429;1.13112;1.04091;0.938704;0.825677;0.703133;0.572485;0.435239;0.292977;0.147337;0 + 1.18088;1.17296;1.1493;1.11015;1.05598;0.987405;0.905222;0.810375;0.703958;0.587198;0.502197;0.412745;0.319572;0.223438;0.125129;0.0254449;-0.0747993;-0.174786;-0.2737;-0.466983;-0.64953;-0.81717;-0.966074;-1.09284;-1.19457;-1.26894;-1.31425;-1.32948;-1.32948;-1.31425;-1.26894;-1.19457;-1.09284;-0.966074;-0.81717;-0.64953;-0.466983;-0.2737;-0.174786;-0.0747993;0.0254449;0.125129;0.223438;0.319572;0.412745;0.502197;0.587198;0.703958;0.810375;0.905222;0.987405;1.05598;1.11015;1.1493;1.17296;1.18088 + + + + Profile_Fuselage_9 + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;-0.158826;-0.315821;-0.469176;-0.617124;-0.757959;-0.890058;-1.0119;-1.12208;-1.21932;-1.27663;-1.32544;-1.36535;-1.39603;-1.41723;-1.42879;-1.4306;-1.42265;-1.40501;-1.34402;-1.25231;-1.132;-0.985826;-0.817129;-0.629763;-0.42801;-0.216478;-1.75897e-16;1.75897e-16;0.216478;0.42801;0.629763;0.817129;0.985826;1.132;1.25231;1.34402;1.40501;1.42265;1.4306;1.42879;1.41723;1.39603;1.36535;1.32544;1.27663;1.21932;1.12208;1.0119;0.890058;0.757959;0.617124;0.469176;0.315821;0.158826;0 + 1.31647;1.30794;1.28242;1.24022;1.18183;1.10791;1.01932;0.917075;0.802361;0.676496;0.584867;0.48844;0.388002;0.284373;0.178398;0.0709417;-0.0371189;-0.144902;-0.251528;-0.459882;-0.656663;-0.837375;-0.997889;-1.13454;-1.2442;-1.32437;-1.37322;-1.38963;-1.38963;-1.37322;-1.32437;-1.2442;-1.13454;-0.997889;-0.837375;-0.656663;-0.459882;-0.251528;-0.144902;-0.0371189;0.0709417;0.178398;0.284373;0.388002;0.48844;0.584867;0.676496;0.802361;0.917075;1.01932;1.10791;1.18183;1.24022;1.28242;1.30794;1.31647 + + + + Profile_Fuselage_10 + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;-0.167385;-0.33284;-0.49446;-0.65038;-0.798805;-0.938022;-1.06643;-1.18254;-1.28503;-1.34543;-1.39687;-1.43892;-1.47126;-1.49361;-1.50578;-1.50746;-1.50746;-1.50769;-1.49932;-1.48073;-1.41644;-1.3198;-1.193;-1.03895;-0.861164;-0.663701;-0.451075;-0.228144;-1.85376e-16;1.85376e-16;0.228144;0.451075;0.663701;0.861164;1.03895;1.193;1.3198;1.41644;1.48073;1.49932;1.50769;1.50746;1.50746;1.50578;1.49361;1.47126;1.43892;1.39687;1.34543;1.28503;1.18254;1.06643;0.938022;0.798805;0.65038;0.49446;0.33284;0.167385;0 + 1.4125;1.4035;1.37661;1.33214;1.2706;1.1927;1.09933;0.991579;0.870683;0.738035;0.641468;0.539845;0.433995;0.324781;0.213095;0.0998478;-1.21431e-17;-1.04083e-17;-0.0140362;-0.127628;-0.24;-0.459582;-0.666967;-0.857417;-1.02658;-1.17059;-1.28617;-1.37066;-1.42214;-1.43943;-1.43943;-1.42214;-1.37066;-1.28617;-1.17059;-1.02658;-0.857417;-0.666967;-0.459582;-0.24;-0.127628;-0.0140362;-1.04083e-17;-1.21431e-17;0.0998478;0.213095;0.324781;0.433995;0.539845;0.641468;0.738035;0.870683;0.991579;1.09933;1.1927;1.2706;1.33214;1.37661;1.4035;1.4125 + + + + Profile_Fuselage_11 + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;-0.170215;-0.338336;-0.502295;-0.660075;-0.809738;-0.949443;-1.07747;-1.19226;-1.29239;-1.34981;-1.39871;-1.43873;-1.46958;-1.49103;-1.50292;-1.50517;-1.49775;-1.48073;-1.41929;-1.32466;-1.19904;-1.04538;-0.867254;-0.668842;-0.454782;-0.230083;-1.84815e-16;1.84815e-16;0.230083;0.454782;0.668842;0.867254;1.04538;1.19904;1.32466;1.41929;1.48073;1.49775;1.50517;1.50292;1.49103;1.46958;1.43873;1.39871;1.34981;1.29239;1.19226;1.07747;0.949443;0.809738;0.660075;0.502295;0.338336;0.170215;0 + 1.44226;1.43282;1.40459;1.35794;1.29343;1.21187;1.11425;1.00179;0.875866;0.738035;0.640312;0.538033;0.431945;0.322822;0.211459;0.09867;-0.0147213;-0.127887;-0.24;-0.462387;-0.672814;-0.866355;-1.03848;-1.18517;-1.30298;-1.38915;-1.44168;-1.45932;-1.45932;-1.44168;-1.38915;-1.30298;-1.18517;-1.03848;-0.866355;-0.672814;-0.462387;-0.24;-0.127887;-0.0147213;0.09867;0.211459;0.322822;0.431945;0.538033;0.640312;0.738035;0.875866;1.00179;1.11425;1.21187;1.29343;1.35794;1.40459;1.43282;1.44226 + + + + Profile_Fuselage_12 + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;-0.175211;-0.348035;-0.516116;-0.677163;-0.828981;-0.969502;-1.09681;-1.20917;-1.30506;-1.35719;-1.40161;-1.43805;-1.4663;-1.4862;-1.49763;-1.50053;-1.49489;-1.48073;-1.4245;-1.33355;-1.21009;-1.05713;-0.878398;-0.67825;-0.461567;-0.233631;-1.83808e-16;1.83808e-16;0.233631;0.461567;0.67825;0.878398;1.05713;1.21009;1.33355;1.4245;1.48073;1.49489;1.50053;1.49763;1.4862;1.4663;1.43805;1.40161;1.35719;1.30506;1.20917;1.09681;0.969502;0.828981;0.677163;0.516116;0.348035;0.175211;0 + 1.49503;1.48478;1.45419;1.40366;1.33389;1.24583;1.14068;1.01986;0.885037;0.738035;0.638276;0.534848;0.428346;0.319386;0.208596;0.0966149;-0.0159107;-0.128332;-0.24;-0.467501;-0.683478;-0.882665;-1.06021;-1.21177;-1.33367;-1.42293;-1.47737;-1.49566;-1.49566;-1.47737;-1.42293;-1.33367;-1.21177;-1.06021;-0.882665;-0.683478;-0.467501;-0.24;-0.128332;-0.0159107;0.0966149;0.208596;0.319386;0.428346;0.534848;0.638276;0.738035;0.885037;1.01986;1.14068;1.24583;1.33389;1.40366;1.45419;1.48478;1.49503 + + + + Profile_Fuselage_13 + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;-0.175669;-0.34892;-0.51737;-0.6787;-0.830689;-0.971247;-1.09844;-1.21051;-1.30593;-1.35757;-1.40157;-1.43768;-1.46572;-1.48551;-1.49695;-1.49996;-1.49455;-1.48073;-1.42514;-1.33464;-1.21144;-1.05857;-0.879761;-0.679402;-0.462398;-0.234066;-1.83703e-16;1.83703e-16;0.234066;0.462398;0.679402;0.879761;1.05857;1.21144;1.33464;1.42514;1.48073;1.49455;1.49996;1.49695;1.48551;1.46572;1.43768;1.40157;1.35757;1.30593;1.21051;1.09844;0.971247;0.830689;0.6787;0.51737;0.34892;0.175669;0 + 1.50005;1.48973;1.45891;1.40801;1.33773;1.24904;1.14317;1.02156;0.885893;0.738035;0.638095;0.534567;0.428033;0.319092;0.208356;0.0964481;-0.0160019;-0.128362;-0.24;-0.468111;-0.684754;-0.884622;-1.06282;-1.21498;-1.33737;-1.427;-1.48168;-1.50005;-1.50005;-1.48168;-1.427;-1.33737;-1.21498;-1.06282;-0.884622;-0.684754;-0.468111;-0.24;-0.128362;-0.0160019;0.0964481;0.208356;0.319092;0.428033;0.534567;0.638095;0.738035;0.885893;1.02156;1.14317;1.24904;1.33773;1.40801;1.45891;1.48973;1.50005 + + + + Profile_Fuselage_14 + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;-0.175669;-0.34892;-0.51737;-0.6787;-0.830689;-0.971247;-1.09844;-1.21051;-1.30593;-1.35757;-1.40157;-1.43768;-1.46572;-1.48551;-1.49695;-1.49996;-1.49455;-1.48073;-1.42514;-1.33464;-1.21144;-1.05857;-0.879761;-0.679402;-0.462398;-0.234066;-1.83703e-16;1.83703e-16;0.234066;0.462398;0.679402;0.879761;1.05857;1.21144;1.33464;1.42514;1.48073;1.49455;1.49996;1.49695;1.48551;1.46572;1.43768;1.40157;1.35757;1.30593;1.21051;1.09844;0.971247;0.830689;0.6787;0.51737;0.34892;0.175669;0 + 1.50005;1.48973;1.45891;1.40801;1.33773;1.24904;1.14317;1.02156;0.885893;0.738035;0.638095;0.534567;0.428033;0.319092;0.208356;0.0964481;-0.0160019;-0.128362;-0.24;-0.468111;-0.684754;-0.884622;-1.06282;-1.21498;-1.33737;-1.427;-1.48168;-1.50005;-1.50005;-1.48168;-1.427;-1.33737;-1.21498;-1.06282;-0.884622;-0.684754;-0.468111;-0.24;-0.128362;-0.0160019;0.0964481;0.208356;0.319092;0.428033;0.534567;0.638095;0.738035;0.885893;1.02156;1.14317;1.24904;1.33773;1.40801;1.45891;1.48973;1.50005 + + + + Profile_Fuselage_15 + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;-0.175669;-0.34892;-0.51737;-0.6787;-0.830689;-0.971247;-1.09844;-1.21051;-1.30593;-1.35757;-1.40157;-1.43768;-1.46572;-1.48551;-1.49695;-1.49996;-1.49455;-1.48073;-1.42514;-1.33464;-1.21144;-1.05857;-0.879761;-0.679402;-0.462398;-0.234066;-1.83703e-16;1.83703e-16;0.234066;0.462398;0.679402;0.879761;1.05857;1.21144;1.33464;1.42514;1.48073;1.49455;1.49996;1.49695;1.48551;1.46572;1.43768;1.40157;1.35757;1.30593;1.21051;1.09844;0.971247;0.830689;0.6787;0.51737;0.34892;0.175669;0 + 1.50005;1.48973;1.45891;1.40801;1.33773;1.24904;1.14317;1.02156;0.885893;0.738035;0.638095;0.534567;0.428033;0.319092;0.208356;0.0964481;-0.0160019;-0.128362;-0.24;-0.468111;-0.684754;-0.884622;-1.06282;-1.21498;-1.33737;-1.427;-1.48168;-1.50005;-1.50005;-1.48168;-1.427;-1.33737;-1.21498;-1.06282;-0.884622;-0.684754;-0.468111;-0.24;-0.128362;-0.0160019;0.0964481;0.208356;0.319092;0.428033;0.534567;0.638095;0.738035;0.885893;1.02156;1.14317;1.24904;1.33773;1.40801;1.45891;1.48973;1.50005 + + + + Profile_Fuselage_16 + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;-0.175662;-0.348914;-0.517377;-0.678739;-0.830787;-0.971432;-1.09875;-1.21098;-1.3066;-1.35836;-1.40244;-1.43859;-1.46661;-1.48633;-1.49764;-1.50048;-1.49483;-1.48073;-1.42463;-1.33377;-1.21036;-1.05741;-0.878664;-0.678474;-0.461729;-0.233716;-1.83786e-16;1.83786e-16;0.233716;0.461729;0.678474;0.878664;1.05741;1.21036;1.33377;1.42463;1.48073;1.49483;1.50048;1.49764;1.48633;1.46661;1.43859;1.40244;1.35836;1.3066;1.21098;1.09875;0.971432;0.830787;0.678739;0.517377;0.348914;0.175662;0 + 1.49917;1.48886;1.45808;1.40725;1.33707;1.2485;1.14275;1.02128;0.885755;0.738035;0.638146;0.534639;0.428102;0.319142;0.20838;0.0964462;-0.016022;-0.128384;-0.24;-0.467621;-0.683729;-0.883049;-1.06072;-1.2124;-1.3344;-1.42372;-1.47821;-1.49652;-1.49652;-1.47821;-1.42372;-1.3344;-1.2124;-1.06072;-0.883049;-0.683729;-0.467621;-0.24;-0.128384;-0.016022;0.0964462;0.20838;0.319142;0.428102;0.534639;0.638146;0.738035;0.885755;1.02128;1.14275;1.2485;1.33707;1.40725;1.45808;1.48886;1.49917 + + + + Profile_Fuselage_17 + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;-0.175611;-0.348904;-0.517594;-0.679454;-0.83235;-0.974263;-1.10332;-1.21782;-1.31626;-1.36984;-1.4151;-1.45173;-1.47948;-1.49818;-1.50768;-1.50793;-1.49892;-1.48073;-1.4175;-1.3216;-1.19524;-1.04133;-0.863417;-0.665603;-0.452447;-0.228861;-1.8517e-16;1.8517e-16;0.228861;0.452447;0.665603;0.863417;1.04133;1.19524;1.3216;1.4175;1.48073;1.49892;1.50793;1.50768;1.49818;1.47948;1.45173;1.4151;1.36984;1.31626;1.21782;1.10332;0.974263;0.83235;0.679454;0.517594;0.348904;0.175611;0 + 1.48673;1.47663;1.44646;1.39661;1.32775;1.24078;1.13685;1.01734;0.88381;0.738035;0.638866;0.535631;0.429028;0.319778;0.208619;0.0963014;-0.0164149;-0.128768;-0.24;-0.460619;-0.669129;-0.860722;-1.03098;-1.17598;-1.29238;-1.3775;-1.42936;-1.44679;-1.44679;-1.42936;-1.3775;-1.29238;-1.17598;-1.03098;-0.860722;-0.669129;-0.460619;-0.24;-0.128768;-0.0164149;0.0963014;0.208619;0.319778;0.429028;0.535631;0.638866;0.738035;0.88381;1.01734;1.13685;1.24078;1.32775;1.39661;1.44646;1.47663;1.48673 + + + + Profile_Fuselage_18 + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;-0.175832;-0.349588;-0.519218;-0.68272;-0.838165;-0.983716;-1.11766;-1.23841;-1.34455;-1.40314;-1.45163;-1.48952;-1.51644;-1.53209;-1.53633;-1.52912;-1.51052;-1.48073;-1.39918;-1.29045;-1.15666;-1.00039;-0.824688;-0.632961;-0.428934;-0.216571;-1.90889e-16;1.90889e-16;0.216571;0.428934;0.632961;0.824688;1.00039;1.15666;1.29045;1.39918;1.48073;1.51052;1.52912;1.53633;1.53209;1.51644;1.48952;1.45163;1.40314;1.34455;1.23841;1.11766;0.983716;0.838165;0.68272;0.519218;0.349588;0.175832;0 + 1.45358;1.44401;1.41543;1.36818;1.3028;1.22007;1.12097;1.00667;0.878524;0.738035;0.640777;0.538103;0.431062;0.320746;0.208282;0.0948189;-0.0184848;-0.130472;-0.24;-0.4411;-0.628928;-0.799831;-0.950485;-1.07796;-1.17977;-1.25394;-1.29903;-1.31416;-1.31416;-1.29903;-1.25394;-1.17977;-1.07796;-0.950485;-0.799831;-0.628928;-0.4411;-0.24;-0.130472;-0.0184848;0.0948189;0.208282;0.320746;0.431062;0.538103;0.640777;0.738035;0.878524;1.00667;1.12097;1.22007;1.3028;1.36818;1.41543;1.44401;1.45358 + + + + Profile_Fuselage_19 + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;-0.171561;-0.341303;-0.507426;-0.668169;-0.821826;-0.96677;-1.10146;-1.22447;-1.3345;-1.39767;-1.44857;-1.48644;-1.5107;-1.52099;-1.51716;-1.49926;-1.46758;-1.42259;-1.3248;-1.20692;-1.07074;-0.918311;-0.751952;-0.574183;-0.3877;-0.195332;-1.95014e-16;1.95014e-16;0.195332;0.3877;0.574183;0.751952;0.918311;1.07074;1.20692;1.3248;1.42259;1.46758;1.49926;1.51716;1.52099;1.5107;1.48644;1.44857;1.39767;1.3345;1.22447;1.10146;0.96677;0.821826;0.668169;0.507426;0.341303;0.171561;0 + 1.40515;1.39631;1.36987;1.32611;1.26551;1.18869;1.09649;0.989864;0.869956;0.738035;0.642103;0.539138;0.430703;0.318445;0.204066;0.089304;-0.0241001;-0.134426;-0.24;-0.409315;-0.565362;-0.705768;-0.828395;-0.931378;-1.01315;-1.07246;-1.10842;-1.12046;-1.12046;-1.10842;-1.07246;-1.01315;-0.931378;-0.828395;-0.705768;-0.565362;-0.409315;-0.24;-0.134426;-0.0241001;0.089304;0.204066;0.318445;0.430703;0.539138;0.642103;0.738035;0.869956;0.989864;1.09649;1.18869;1.26551;1.32611;1.36987;1.39631;1.40515 + + + + Profile_Fuselage_20 + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;-0.162522;-0.323372;-0.480897;-0.633477;-0.779541;-0.917589;-1.0462;-1.16405;-1.26993;-1.33438;-1.38495;-1.42069;-1.44093;-1.44527;-1.43364;-1.40628;-1.3637;-1.30674;-1.20499;-1.08859;-0.958951;-0.817648;-0.666394;-0.507027;-0.341488;-0.17179;-1.91908e-16;1.91908e-16;0.17179;0.341488;0.507027;0.666394;0.817648;0.958951;1.08859;1.20499;1.30674;1.3637;1.40628;1.43364;1.44527;1.44093;1.42069;1.38495;1.33438;1.26993;1.16405;1.0462;0.917589;0.779541;0.633477;0.480897;0.323372;0.162522;0 + 1.36175;1.3535;1.32883;1.288;1.23142;1.15969;1.07352;0.973821;0.861608;0.738035;0.641563;0.537151;0.426787;0.31257;0.196675;0.0813069;-0.0313402;-0.139125;-0.24;-0.378415;-0.504841;-0.617728;-0.715696;-0.797543;-0.862267;-0.909073;-0.937388;-0.946866;-0.946866;-0.937388;-0.909073;-0.862267;-0.797543;-0.715696;-0.617728;-0.504841;-0.378415;-0.24;-0.139125;-0.0313402;0.0813069;0.196675;0.31257;0.426787;0.537151;0.641563;0.738035;0.861608;0.973821;1.07352;1.15969;1.23142;1.288;1.32883;1.3535;1.36175 + + + + Profile_Fuselage_21 + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;-0.158809;-0.315997;-0.469962;-0.619133;-0.761988;-0.89707;-1.023;-1.1385;-1.24238;-1.30717;-1.35747;-1.39225;-1.4108;-1.41273;-1.39801;-1.37646;-1.37646;-1.36694;-1.32016;-1.25862;-1.15615;-1.04101;-0.914462;-0.777892;-0.632797;-0.480768;-0.323469;-0.162626;-1.90505e-16;1.90505e-16;0.162626;0.323469;0.480768;0.632797;0.777892;0.914462;1.04101;1.15615;1.25862;1.32016;1.36694;1.37646;1.37646;1.39801;1.41273;1.4108;1.39225;1.35747;1.30717;1.24238;1.1385;1.023;0.89707;0.761988;0.619133;0.469962;0.315997;0.158809;0 + 1.34539;1.33736;1.31335;1.27361;1.21854;1.1487;1.06481;0.967721;0.858424;0.738035;0.641215;0.536136;0.42495;0.309937;0.193454;0.0778887;-4.51028e-17;1.38778e-16;-0.0343905;-0.141082;-0.24;-0.36657;-0.481734;-0.58423;-0.672935;-0.746877;-0.805244;-0.847398;-0.872877;-0.881401;-0.881401;-0.872877;-0.847398;-0.805244;-0.746877;-0.672935;-0.58423;-0.481734;-0.36657;-0.24;-0.141082;-0.0343905;1.38778e-16;-4.51028e-17;0.0778887;0.193454;0.309937;0.42495;0.536136;0.641215;0.738035;0.858424;0.967721;1.06481;1.1487;1.21854;1.27361;1.31335;1.33736;1.34539 + + + + Profile_Fuselage_22 + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;-0.138612;-0.275811;-0.410195;-0.540395;-0.665083;-0.782986;-0.892901;-0.993708;-1.08438;-1.14093;-1.18483;-1.21519;-1.23138;-1.23307;-1.22022;-1.1931;-1.15227;-1.09855;-1.00912;-0.90862;-0.798166;-0.678964;-0.552322;-0.419626;-0.282332;-0.141944;-1.66277e-16;1.66277e-16;0.141944;0.282332;0.419626;0.552322;0.678964;0.798166;0.90862;1.00912;1.09855;1.15227;1.1931;1.22022;1.23307;1.23138;1.21519;1.18483;1.14093;1.08438;0.993708;0.892901;0.782986;0.665083;0.540395;0.410195;0.275811;0.138612;0 + 1.29468;1.28756;1.26629;1.23107;1.18227;1.12038;1.04605;0.960013;0.863162;0.756481;0.670685;0.577571;0.479045;0.377129;0.273909;0.171503;0.0720081;-0.0225352;-0.110189;-0.222348;-0.324398;-0.415224;-0.493828;-0.55935;-0.611072;-0.648426;-0.671003;-0.678557;-0.678557;-0.671003;-0.648426;-0.611072;-0.55935;-0.493828;-0.415224;-0.324398;-0.222348;-0.110189;-0.0225352;0.0720081;0.171503;0.273909;0.377129;0.479045;0.577571;0.670685;0.756481;0.863162;0.960013;1.04605;1.12038;1.18227;1.23107;1.26629;1.28756;1.29468 + + + + Profile_Fuselage_23 + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;-0.115885;-0.230588;-0.342939;-0.451791;-0.556034;-0.654606;-0.746499;-0.830777;-0.90658;-0.95386;-0.990566;-1.01595;-1.02948;-1.03089;-1.02015;-0.99748;-0.96334;-0.918432;-0.843659;-0.75964;-0.667297;-0.56764;-0.461762;-0.350824;-0.23604;-0.11867;-1.39014e-16;1.39014e-16;0.11867;0.23604;0.350824;0.461762;0.56764;0.667297;0.75964;0.843659;0.918432;0.96334;0.99748;1.02015;1.03089;1.02948;1.01595;0.990566;0.95386;0.90658;0.830777;0.746499;0.654606;0.556034;0.451791;0.342939;0.230588;0.115885;0 + 1.23706;1.23098;1.21281;1.18273;1.14106;1.08821;1.02473;0.951255;0.868545;0.77744;0.704172;0.624653;0.540513;0.453476;0.365328;0.277873;0.192906;0.112167;0.0373106;-0.0584715;-0.145622;-0.223186;-0.290314;-0.346269;-0.390439;-0.422339;-0.44162;-0.448071;-0.448071;-0.44162;-0.422339;-0.390439;-0.346269;-0.290314;-0.223186;-0.145622;-0.0584715;0.0373106;0.112167;0.192906;0.277873;0.365328;0.453476;0.540513;0.624653;0.704172;0.77744;0.868545;0.951255;1.02473;1.08821;1.14106;1.18273;1.21281;1.23098;1.23706 + + + + Profile_Fuselage_24 + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;-0.0920396;-0.18314;-0.272373;-0.358827;-0.44162;-0.519908;-0.592893;-0.659829;-0.720034;-0.757585;-0.786739;-0.806897;-0.817646;-0.818767;-0.810237;-0.79223;-0.765115;-0.729448;-0.670061;-0.60333;-0.529988;-0.450837;-0.366746;-0.278635;-0.187471;-0.0942518;-1.10409e-16;1.10409e-16;0.0942518;0.187471;0.278635;0.366746;0.450837;0.529988;0.60333;0.670061;0.729448;0.765115;0.79223;0.810237;0.818767;0.817646;0.806897;0.786739;0.757585;0.720034;0.659829;0.592893;0.519908;0.44162;0.358827;0.272373;0.18314;0.0920396;0 + 1.17298;1.16806;1.15334;1.12899;1.09524;1.05243;1.00102;0.941516;0.874531;0.800747;0.741408;0.677007;0.608864;0.538375;0.466986;0.396158;0.327345;0.261956;0.201331;0.12376;0.053178;-0.00963954;-0.0640047;-0.109322;-0.145094;-0.170929;-0.186544;-0.191769;-0.191769;-0.186544;-0.170929;-0.145094;-0.109322;-0.0640047;-0.00963954;0.053178;0.12376;0.201331;0.261956;0.327345;0.396158;0.466986;0.538375;0.608864;0.677007;0.741408;0.800747;0.874531;0.941516;1.00102;1.05243;1.09524;1.12899;1.15334;1.16806;1.17298 + + + + Profile_Fuselage_25 + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;-0.0693292;-0.137951;-0.205166;-0.270288;-0.332652;-0.391623;-0.446599;-0.497019;-0.542369;-0.570654;-0.592614;-0.607798;-0.615895;-0.61674;-0.610314;-0.59675;-0.576326;-0.549459;-0.504726;-0.454461;-0.399215;-0.339595;-0.276253;-0.209883;-0.141213;-0.0709956;-8.31663e-17;8.31663e-17;0.0709956;0.141213;0.209883;0.276253;0.339595;0.399215;0.454461;0.504726;0.549459;0.576326;0.59675;0.610314;0.61674;0.615895;0.607798;0.592614;0.570654;0.542369;0.497019;0.446599;0.391623;0.332652;0.270288;0.205166;0.137951;0.0693292;0 + 1.10741;1.10367;1.09249;1.07399;1.04834;1.01582;0.976759;0.93155;0.880656;0.824597;0.779513;0.730583;0.67881;0.625254;0.571014;0.517201;0.464918;0.415237;0.369176;0.310239;0.256613;0.208886;0.167581;0.13315;0.105971;0.0863423;0.0744781;0.0705089;0.0705089;0.0744781;0.0863423;0.105971;0.13315;0.167581;0.208886;0.256613;0.310239;0.369176;0.415237;0.464918;0.517201;0.571014;0.625254;0.67881;0.730583;0.779513;0.824597;0.880656;0.93155;0.976759;1.01582;1.04834;1.07399;1.09249;1.10367;1.10741 + + + + Profile_Fuselage_26 + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;-0.049198;-0.0978941;-0.145592;-0.191804;-0.236059;-0.277907;-0.31692;-0.352699;-0.384881;-0.404953;-0.420536;-0.431311;-0.437057;-0.437656;-0.433097;-0.423471;-0.408977;-0.389912;-0.358168;-0.322499;-0.283295;-0.240986;-0.196037;-0.148939;-0.100209;-0.0503805;-5.90172e-17;5.90172e-17;0.0503805;0.100209;0.148939;0.196037;0.240986;0.283295;0.322499;0.358168;0.389912;0.408977;0.423471;0.433097;0.437656;0.437057;0.431311;0.420536;0.404953;0.384881;0.352699;0.31692;0.277907;0.236059;0.191804;0.145592;0.0978941;0.049198;0 + 1.04425;1.04165;1.03388;1.02101;1.00317;0.980557;0.953391;0.92195;0.886557;0.847571;0.816218;0.78219;0.746185;0.70894;0.671219;0.633796;0.597436;0.562886;0.530853;0.489866;0.452573;0.419381;0.390656;0.366711;0.34781;0.334159;0.325909;0.323148;0.323148;0.325909;0.334159;0.34781;0.366711;0.390656;0.419381;0.452573;0.489866;0.530853;0.562886;0.597436;0.633796;0.671219;0.70894;0.746185;0.78219;0.816218;0.847571;0.886557;0.92195;0.953391;0.980557;1.00317;1.02101;1.03388;1.04165;1.04425 + + + + Profile_Fuselage_27 + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;-0.0327759;-0.0652174;-0.0969936;-0.12778;-0.157264;-0.185143;-0.211133;-0.234969;-0.256409;-0.269781;-0.280162;-0.287341;-0.291169;-0.291568;-0.28853;-0.282118;-0.272462;-0.259761;-0.238613;-0.21485;-0.188732;-0.160546;-0.1306;-0.0992237;-0.0667595;-0.0335637;-3.93175e-17;3.93175e-17;0.0335637;0.0667595;0.0992237;0.1306;0.160546;0.188732;0.21485;0.238613;0.259761;0.272462;0.282118;0.28853;0.291568;0.291169;0.287341;0.280162;0.269781;0.256409;0.234969;0.211133;0.185143;0.157264;0.12778;0.0969936;0.0652174;0.0327759;0 + 0.988024;0.986438;0.981694;0.973842;0.962961;0.949162;0.932587;0.913404;0.891809;0.868023;0.848893;0.828131;0.806163;0.783439;0.760424;0.737591;0.715406;0.694326;0.674782;0.649774;0.62702;0.606769;0.589242;0.574633;0.563101;0.554772;0.549738;0.548053;0.548053;0.549738;0.554772;0.563101;0.574633;0.589242;0.606769;0.62702;0.649774;0.674782;0.694326;0.715406;0.737591;0.760424;0.783439;0.806163;0.828131;0.848893;0.868023;0.891809;0.913404;0.932587;0.949162;0.962961;0.973842;0.981694;0.986438;0.988024 + + + + Profile_Fuselage_28 + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;-0.0207606;-0.0413094;-0.0614368;-0.0809375;-0.0996125;-0.117271;-0.133734;-0.148832;-0.162412;-0.170882;-0.177458;-0.182005;-0.18443;-0.184682;-0.182758;-0.178696;-0.17258;-0.164535;-0.15114;-0.136088;-0.119545;-0.101692;-0.0827237;-0.0628493;-0.0422862;-0.0212596;-2.49041e-17;2.49041e-17;0.0212596;0.0422862;0.0628493;0.0827237;0.101692;0.119545;0.136088;0.15114;0.164535;0.17258;0.178696;0.182758;0.184682;0.18443;0.182005;0.177458;0.170882;0.162412;0.148832;0.133734;0.117271;0.0996125;0.0809375;0.0614368;0.0413094;0.0207606;0 + 0.943811;0.943021;0.940661;0.936754;0.931341;0.924475;0.916229;0.906684;0.89594;0.884105;0.874587;0.864258;0.853328;0.842021;0.83057;0.81921;0.808172;0.797684;0.78796;0.775518;0.764196;0.754121;0.745401;0.738132;0.732394;0.72825;0.725745;0.724907;0.724907;0.725745;0.72825;0.732394;0.738132;0.745401;0.754121;0.764196;0.775518;0.78796;0.797684;0.808172;0.81921;0.83057;0.842021;0.853328;0.864258;0.874587;0.884105;0.89594;0.906684;0.916229;0.924475;0.931341;0.936754;0.940661;0.943021;0.943811 + + + + Profile_Fuselage_29 + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;-0.0134438;-0.0267504;-0.0397841;-0.052412;-0.0645053;-0.0759405;-0.086601;-0.096378;-0.105172;-0.110657;-0.114915;-0.117859;-0.11943;-0.119593;-0.118347;-0.115717;-0.111757;-0.106547;-0.0978725;-0.0881255;-0.0774127;-0.0658516;-0.0535688;-0.0406989;-0.0273829;-0.0137669;-1.6127e-17;1.6127e-17;0.0137669;0.0273829;0.0406989;0.0535688;0.0658516;0.0774127;0.0881255;0.0978725;0.106547;0.111757;0.115717;0.118347;0.119593;0.11943;0.117859;0.114915;0.110657;0.105172;0.096378;0.086601;0.0759405;0.0645053;0.052412;0.0397841;0.0267504;0.0134438;0 + 0.915758;0.915474;0.914626;0.913223;0.911278;0.908812;0.905849;0.90242;0.898561;0.894309;0.89089;0.887179;0.883253;0.879191;0.875078;0.870996;0.867031;0.863264;0.85977;0.855301;0.851234;0.847614;0.844481;0.84187;0.839809;0.83832;0.837421;0.83712;0.83712;0.837421;0.83832;0.839809;0.84187;0.844481;0.847614;0.851234;0.855301;0.85977;0.863264;0.867031;0.870996;0.875078;0.879191;0.883253;0.887179;0.89089;0.894309;0.898561;0.90242;0.905849;0.908812;0.911278;0.913223;0.914626;0.915474;0.915758 + + + + Profile_Fuselage_30 + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;-0.0109799;-0.0218478;-0.0324928;-0.0428063;-0.0526831;-0.0620226;-0.0707293;-0.0787144;-0.0858966;-0.0903763;-0.0938541;-0.0962589;-0.0975413;-0.097675;-0.0966574;-0.0945092;-0.0912745;-0.0870196;-0.079935;-0.0719744;-0.063225;-0.0537827;-0.043751;-0.0332398;-0.0223644;-0.0112438;-1.31713e-17;1.31713e-17;0.0112438;0.0223644;0.0332398;0.043751;0.0537827;0.063225;0.0719744;0.079935;0.0870196;0.0912745;0.0945092;0.0966574;0.097675;0.0975413;0.0962589;0.0938541;0.0903763;0.0858966;0.0787144;0.0707293;0.0620226;0.0526831;0.0428063;0.0324928;0.0218478;0.0109799;0 + 0.906311;0.906198;0.905859;0.905299;0.904522;0.903537;0.902354;0.900985;0.899443;0.897745;0.89638;0.894898;0.89333;0.891708;0.890065;0.888435;0.886852;0.885347;0.883952;0.882167;0.880543;0.879097;0.877846;0.876804;0.87598;0.875386;0.875027;0.874906;0.874906;0.875027;0.875386;0.87598;0.876804;0.877846;0.879097;0.880543;0.882167;0.883952;0.885347;0.886852;0.888435;0.890065;0.891708;0.89333;0.894898;0.89638;0.897745;0.899443;0.900985;0.902354;0.903537;0.904522;0.905299;0.905859;0.906198;0.906311 + + + + + + + + + + + 0.000390 + 0 + 0.06 + 0 + 0 + + + 1.37242e+04 + 3.8444e+03 + 2.73e+07 + 0 + 0 + 0 + 0 + + + 0 + 0 + + + 0 + 0 + + 0 + + aluminium7075 + + + + 0 + 0 + + + 0 + + + 0 + 0 + + + + Z Profile with 30 / 4 / 55 / 60 [mm] + Z + + + + + 0.000390 + 0 + 0.06 + 0 + 0 + + + 1.37242e+04 + 3.8444e+03 + 2.73e+07 + 0 + 0 + 0 + 0 + + + 0 + 0 + + + 0 + 0 + + 0 + + aluminium7075 + + + + 0 + 0 + + + 0 + + + 0 + 0 + + + + Z Profile with 30 / 4 / 55 / 60 [mm] + Z + + + + + + aluminium7075 + 0.005 + + + + +
+
diff --git a/test_files/CPACSfiles/Optimale17_1_4_v3.1.xml b/test_files/CPACSfiles/Optimale17_1_4_v3.1.xml new file mode 100644 index 000000000..aaba83217 --- /dev/null +++ b/test_files/CPACSfiles/Optimale17_1_4_v3.1.xml @@ -0,0 +1,15401 @@ + + +
+ OptimaleBL3 + vofl150 (MMAIN) + This CPACS document has been generated using CATIA2CPACS. + 2013-12-04T10:14:18 + 1.0 + 3.0 + + + Converted to cpacs 3.0 using cpacs2to3 + cpacs2to3 + 2018-10-15T14:19:56 + ver1 + 3.0 + + + Replaced aeroPerformanceMap by aeroMap. Removed toolspecifics. + CFSE + 2020-03-06 15:35:29.614247 + 3.0 + + + Added missing names + CFSE + 2020-05-20T18:00:08 + 3.1 + + +
+ + + + + 55.7983 + 1.8008 + + 9.6115 + 0 + 2.5277 + + + + + + + .001 + .001 + .001 + + + 0 + 0 + 0 + + + 2.500 + 0 + 3.000 + + + +
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 85.6888 + 52.5953 + + + 0 + 0 + 0 + + + 0 + 0 + -26.2972 + + + OptimaleBL3 - Fuselage Section 1 Main Element + OptimaleBL3 - Fuselage Section 1 Main Element + OptimaleBL3_Fuselage_Sec1_El1_Pro + + + OptimaleBL3 - Fuselage Section 1 + OptimaleBL3 - Fuselage Section 1 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 281.859 + 200.97 + + + 0 + 0 + 0 + + + 0 + 0 + -23.3505 + + + OptimaleBL3 - Fuselage Section 2 Main Element + OptimaleBL3 - Fuselage Section 2 Main Element + OptimaleBL3_Fuselage_Sec2_El1_Pro + + + OptimaleBL3 - Fuselage Section 2 + OptimaleBL3 - Fuselage Section 2 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 457.206 + 387.316 + + + 0 + 0 + 0 + + + 0 + 0 + -14.0338 + + + OptimaleBL3 - Fuselage Section 3 Main Element + OptimaleBL3 - Fuselage Section 3 Main Element + OptimaleBL3_Fuselage_Sec3_El1_Pro + + + OptimaleBL3 - Fuselage Section 3 + OptimaleBL3 - Fuselage Section 3 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 574.879 + 559.325 + + + 0 + 0 + 0 + + + 0 + 0 + 4.84822 + + + OptimaleBL3 - Fuselage Section 4 Main Element + OptimaleBL3 - Fuselage Section 4 Main Element + OptimaleBL3_Fuselage_Sec4_El1_Pro + + + OptimaleBL3 - Fuselage Section 4 + OptimaleBL3 - Fuselage Section 4 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 670.824 + 707.057 + + + 0 + 0 + 0 + + + 0 + 0 + 36.431 + + + OptimaleBL3 - Fuselage Section 5 Main Element + OptimaleBL3 - Fuselage Section 5 Main Element + OptimaleBL3_Fuselage_Sec5_El1_Pro + + + OptimaleBL3 - Fuselage Section 5 + OptimaleBL3 - Fuselage Section 5 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 783.919 + 876.562 + + + 0 + 0 + 0 + + + 0 + 0 + 73.1598 + + + OptimaleBL3 - Fuselage Section 6 Main Element + OptimaleBL3 - Fuselage Section 6 Main Element + OptimaleBL3_Fuselage_Sec6_El1_Pro + + + OptimaleBL3 - Fuselage Section 6 + OptimaleBL3 - Fuselage Section 6 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 909.182 + 1060.89 + + + 0 + 0 + 0 + + + 0 + 0 + 111.641 + + + OptimaleBL3 - Fuselage Section 7 Main Element + OptimaleBL3 - Fuselage Section 7 Main Element + OptimaleBL3_Fuselage_Sec7_El1_Pro + + + OptimaleBL3 - Fuselage Section 7 + OptimaleBL3 - Fuselage Section 7 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 1038.9 + 1247.99 + + + 0 + 0 + 0 + + + 0 + 0 + 148.574 + + + OptimaleBL3 - Fuselage Section 8 Main Element + OptimaleBL3 - Fuselage Section 8 Main Element + OptimaleBL3_Fuselage_Sec8_El1_Pro + + + OptimaleBL3 - Fuselage Section 8 + OptimaleBL3 - Fuselage Section 8 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 1165.6 + 1425.15 + + + 0 + 0 + 0 + + + 0 + 0 + 180.553 + + + OptimaleBL3 - Fuselage Section 9 Main Element + OptimaleBL3 - Fuselage Section 9 Main Element + OptimaleBL3_Fuselage_Sec9_El1_Pro + + + OptimaleBL3 - Fuselage Section 9 + OptimaleBL3 - Fuselage Section 9 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 1284.79 + 1580.42 + + + 0 + 0 + 0 + + + 0 + 0 + 204.328 + + + OptimaleBL3 - Fuselage Section 10 Main Element + OptimaleBL3 - Fuselage Section 10 Main Element + OptimaleBL3_Fuselage_Sec10_El1_Pro + + + OptimaleBL3 - Fuselage Section 10 + OptimaleBL3 - Fuselage Section 10 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 1391.24 + 1703.33 + + + 0 + 0 + 0 + + + 0 + 0 + 217.14 + + + OptimaleBL3 - Fuselage Section 11 Main Element + OptimaleBL3 - Fuselage Section 11 Main Element + OptimaleBL3_Fuselage_Sec11_El1_Pro + + + OptimaleBL3 - Fuselage Section 11 + OptimaleBL3 - Fuselage Section 11 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 1472.79 + 1781.4 + + + 0 + 0 + 0 + + + 0 + 0 + 217.122 + + + OptimaleBL3 - Fuselage Section 12 Main Element + OptimaleBL3 - Fuselage Section 12 Main Element + OptimaleBL3_Fuselage_Sec12_El1_Pro + + + OptimaleBL3 - Fuselage Section 12 + OptimaleBL3 - Fuselage Section 12 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 1537.34 + 1812.14 + + + 0 + 0 + 0 + + + 0 + 0 + 203.777 + + + OptimaleBL3 - Fuselage Section 13 Main Element + OptimaleBL3 - Fuselage Section 13 Main Element + OptimaleBL3_Fuselage_Sec13_El1_Pro + + + OptimaleBL3 - Fuselage Section 13 + OptimaleBL3 - Fuselage Section 13 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 1583.53 + 1800.47 + + + 0 + 0 + 0 + + + 0 + 0 + 178.457 + + + OptimaleBL3 - Fuselage Section 14 Main Element + OptimaleBL3 - Fuselage Section 14 Main Element + OptimaleBL3_Fuselage_Sec14_El1_Pro + + + OptimaleBL3 - Fuselage Section 14 + OptimaleBL3 - Fuselage Section 14 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 1604.28 + 1753.54 + + + 0 + 0 + 0 + + + 0 + 0 + 144.497 + + + OptimaleBL3 - Fuselage Section 15 Main Element + OptimaleBL3 - Fuselage Section 15 Main Element + OptimaleBL3_Fuselage_Sec15_El1_Pro + + + OptimaleBL3 - Fuselage Section 15 + OptimaleBL3 - Fuselage Section 15 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 1606.99 + 1686.3 + + + 0 + 0 + 0 + + + 0 + 0 + 106.791 + + + OptimaleBL3 - Fuselage Section 16 Main Element + OptimaleBL3 - Fuselage Section 16 Main Element + OptimaleBL3_Fuselage_Sec16_El1_Pro + + + OptimaleBL3 - Fuselage Section 16 + OptimaleBL3 - Fuselage Section 16 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 1601.54 + 1616.36 + + + 0 + 0 + 0 + + + 0 + 0 + 70.9466 + + + OptimaleBL3 - Fuselage Section 17 Main Element + OptimaleBL3 - Fuselage Section 17 Main Element + OptimaleBL3_Fuselage_Sec17_El1_Pro + + + OptimaleBL3 - Fuselage Section 17 + OptimaleBL3 - Fuselage Section 17 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 1609.61 + 1563.07 + + + 0 + 0 + 0 + + + 0 + 0 + 42.0178 + + + OptimaleBL3 - Fuselage Section 18 Main Element + OptimaleBL3 - Fuselage Section 18 Main Element + OptimaleBL3_Fuselage_Sec18_El1_Pro + + + OptimaleBL3 - Fuselage Section 18 + OptimaleBL3 - Fuselage Section 18 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 1618.72 + 1529.91 + + + 0 + 0 + 0 + + + 0 + 0 + 23.0558 + + + OptimaleBL3 - Fuselage Section 19 Main Element + OptimaleBL3 - Fuselage Section 19 Main Element + OptimaleBL3_Fuselage_Sec19_El1_Pro + + + OptimaleBL3 - Fuselage Section 19 + OptimaleBL3 - Fuselage Section 19 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 1619.95 + 1513.68 + + + 0 + 0 + 0 + + + 0 + 0 + 14.565 + + + OptimaleBL3 - Fuselage Section 20 Main Element + OptimaleBL3 - Fuselage Section 20 Main Element + OptimaleBL3_Fuselage_Sec20_El1_Pro + + + OptimaleBL3 - Fuselage Section 20 + OptimaleBL3 - Fuselage Section 20 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 1609.91 + 1504.61 + + + 0 + 0 + 0 + + + 0 + 0 + 14.9733 + + + OptimaleBL3 - Fuselage Section 21 Main Element + OptimaleBL3 - Fuselage Section 21 Main Element + OptimaleBL3_Fuselage_Sec21_El1_Pro + + + OptimaleBL3 - Fuselage Section 21 + OptimaleBL3 - Fuselage Section 21 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 1594.22 + 1496.49 + + + 0 + 0 + 0 + + + 0 + 0 + 21.6099 + + + OptimaleBL3 - Fuselage Section 22 Main Element + OptimaleBL3 - Fuselage Section 22 Main Element + OptimaleBL3_Fuselage_Sec22_El1_Pro + + + OptimaleBL3 - Fuselage Section 22 + OptimaleBL3 - Fuselage Section 22 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 1572.53 + 1481.21 + + + 0 + 0 + 0 + + + 0 + 0 + 31.892 + + + OptimaleBL3 - Fuselage Section 23 Main Element + OptimaleBL3 - Fuselage Section 23 Main Element + OptimaleBL3_Fuselage_Sec23_El1_Pro + + + OptimaleBL3 - Fuselage Section 23 + OptimaleBL3 - Fuselage Section 23 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 1535.55 + 1451.16 + + + 0 + 0 + 0 + + + 0 + 0 + 43.9833 + + + OptimaleBL3 - Fuselage Section 24 Main Element + OptimaleBL3 - Fuselage Section 24 Main Element + OptimaleBL3_Fuselage_Sec24_El1_Pro + + + OptimaleBL3 - Fuselage Section 24 + OptimaleBL3 - Fuselage Section 24 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 1483.44 + 1405.21 + + + 0 + 0 + 0 + + + 0 + 0 + 56.7842 + + + OptimaleBL3 - Fuselage Section 25 Main Element + OptimaleBL3 - Fuselage Section 25 Main Element + OptimaleBL3_Fuselage_Sec25_El1_Pro + + + OptimaleBL3 - Fuselage Section 25 + OptimaleBL3 - Fuselage Section 25 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 1418.39 + 1345.19 + + + 0 + 0 + 0 + + + 0 + 0 + 69.7721 + + + OptimaleBL3 - Fuselage Section 26 Main Element + OptimaleBL3 - Fuselage Section 26 Main Element + OptimaleBL3_Fuselage_Sec26_El1_Pro + + + OptimaleBL3 - Fuselage Section 26 + OptimaleBL3 - Fuselage Section 26 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 1343.75 + 1274.7 + + + 0 + 0 + 0 + + + 0 + 0 + 82.8098 + + + OptimaleBL3 - Fuselage Section 27 Main Element + OptimaleBL3 - Fuselage Section 27 Main Element + OptimaleBL3_Fuselage_Sec27_El1_Pro + + + OptimaleBL3 - Fuselage Section 27 + OptimaleBL3 - Fuselage Section 27 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 1263.29 + 1198.06 + + + 0 + 0 + 0 + + + 0 + 0 + 95.9619 + + + OptimaleBL3 - Fuselage Section 28 Main Element + OptimaleBL3 - Fuselage Section 28 Main Element + OptimaleBL3_Fuselage_Sec28_El1_Pro + + + OptimaleBL3 - Fuselage Section 28 + OptimaleBL3 - Fuselage Section 28 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 1180.52 + 1119.41 + + + 0 + 0 + 0 + + + 0 + 0 + 109.341 + + + OptimaleBL3 - Fuselage Section 29 Main Element + OptimaleBL3 - Fuselage Section 29 Main Element + OptimaleBL3_Fuselage_Sec29_El1_Pro + + + OptimaleBL3 - Fuselage Section 29 + OptimaleBL3 - Fuselage Section 29 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 1099.48 + 1042.45 + + + 0 + 0 + 0 + + + 0 + 0 + 122.997 + + + OptimaleBL3 - Fuselage Section 30 Main Element + OptimaleBL3 - Fuselage Section 30 Main Element + OptimaleBL3_Fuselage_Sec30_El1_Pro + + + OptimaleBL3 - Fuselage Section 30 + OptimaleBL3 - Fuselage Section 30 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 1021.24 + 969.079 + + + 0 + 0 + 0 + + + 0 + 0 + 136.869 + + + OptimaleBL3 - Fuselage Section 31 Main Element + OptimaleBL3 - Fuselage Section 31 Main Element + OptimaleBL3_Fuselage_Sec31_El1_Pro + + + OptimaleBL3 - Fuselage Section 31 + OptimaleBL3 - Fuselage Section 31 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 947.001 + 900.892 + + + 0 + 0 + 0 + + + 0 + 0 + 150.789 + + + OptimaleBL3 - Fuselage Section 32 Main Element + OptimaleBL3 - Fuselage Section 32 Main Element + OptimaleBL3_Fuselage_Sec32_El1_Pro + + + OptimaleBL3 - Fuselage Section 32 + OptimaleBL3 - Fuselage Section 32 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 877.782 + 838.711 + + + 0 + 0 + 0 + + + 0 + 0 + 164.525 + + + OptimaleBL3 - Fuselage Section 33 Main Element + OptimaleBL3 - Fuselage Section 33 Main Element + OptimaleBL3_Fuselage_Sec33_El1_Pro + + + OptimaleBL3 - Fuselage Section 33 + OptimaleBL3 - Fuselage Section 33 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 814.314 + 782.952 + + + 0 + 0 + 0 + + + 0 + 0 + 177.805 + + + OptimaleBL3 - Fuselage Section 34 Main Element + OptimaleBL3 - Fuselage Section 34 Main Element + OptimaleBL3_Fuselage_Sec34_El1_Pro + + + OptimaleBL3 - Fuselage Section 34 + OptimaleBL3 - Fuselage Section 34 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 757.153 + 733.796 + + + 0 + 0 + 0 + + + 0 + 0 + 190.344 + + + OptimaleBL3 - Fuselage Section 35 Main Element + OptimaleBL3 - Fuselage Section 35 Main Element + OptimaleBL3_Fuselage_Sec35_El1_Pro + + + OptimaleBL3 - Fuselage Section 35 + OptimaleBL3 - Fuselage Section 35 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 706.748 + 691.293 + + + 0 + 0 + 0 + + + 0 + 0 + 201.863 + + + OptimaleBL3 - Fuselage Section 36 Main Element + OptimaleBL3 - Fuselage Section 36 Main Element + OptimaleBL3_Fuselage_Sec36_El1_Pro + + + OptimaleBL3 - Fuselage Section 36 + OptimaleBL3 - Fuselage Section 36 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 663.469 + 655.432 + + + 0 + 0 + 0 + + + 0 + 0 + 212.099 + + + OptimaleBL3 - Fuselage Section 37 Main Element + OptimaleBL3 - Fuselage Section 37 Main Element + OptimaleBL3_Fuselage_Sec37_El1_Pro + + + OptimaleBL3 - Fuselage Section 37 + OptimaleBL3 - Fuselage Section 37 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 627.627 + 626.175 + + + 0 + 0 + 0 + + + 0 + 0 + 220.818 + + + OptimaleBL3 - Fuselage Section 38 Main Element + OptimaleBL3 - Fuselage Section 38 Main Element + OptimaleBL3_Fuselage_Sec38_El1_Pro + + + OptimaleBL3 - Fuselage Section 38 + OptimaleBL3 - Fuselage Section 38 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 582.074 + 563.145 + + + 0 + 0 + 0 + + + 0 + 0 + 230.695 + + + OptimaleBL3 - Fuselage Section 39 Main Element + OptimaleBL3 - Fuselage Section 39 Main Element + OptimaleBL3_Fuselage_Sec39_El1_Pro + + + OptimaleBL3 - Fuselage Section 39 + OptimaleBL3 - Fuselage Section 39 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 482.445 + 417.102 + + + 0 + 0 + 0 + + + 0 + 0 + 244.702 + + + OptimaleBL3 - Fuselage Section 40 Main Element + OptimaleBL3 - Fuselage Section 40 Main Element + OptimaleBL3_Fuselage_Sec40_El1_Pro + + + OptimaleBL3 - Fuselage Section 40 + OptimaleBL3 - Fuselage Section 40 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 325.333 + 245.875 + + + 0 + 0 + 0 + + + 0 + 0 + 256.048 + + + OptimaleBL3 - Fuselage Section 41 Main Element + OptimaleBL3 - Fuselage Section 41 Main Element + OptimaleBL3_Fuselage_Sec41_El1_Pro + + + OptimaleBL3 - Fuselage Section 41 + OptimaleBL3 - Fuselage Section 41 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 199.393 + 137.442 + + + 0 + 0 + 0 + + + 0 + 0 + 260.338 + + + OptimaleBL3 - Fuselage Section 42 Main Element + OptimaleBL3 - Fuselage Section 42 Main Element + OptimaleBL3_Fuselage_Sec42_El1_Pro + + + OptimaleBL3 - Fuselage Section 42 + OptimaleBL3 - Fuselage Section 42 +
+
+ + + 5.06641e-07 + -90 + 0 + OptimaleBL3 - Fuselage Section 1 Positioning + OptimaleBL3 - Fuselage Section 1 Positioning + + OptimaleBL3_Fuselage_Sec1 + + + 20.272 + 90 + 0 + OptimaleBL3 - Fuselage Section 2 Positioning + OptimaleBL3 - Fuselage Section 2 Positioning + OptimaleBL3_Fuselage_Sec1 + OptimaleBL3_Fuselage_Sec2 + + + 60.697 + 90 + 0 + OptimaleBL3 - Fuselage Section 3 Positioning + OptimaleBL3 - Fuselage Section 3 Positioning + OptimaleBL3_Fuselage_Sec2 + OptimaleBL3_Fuselage_Sec3 + + + 100.766 + 90 + 0 + OptimaleBL3 - Fuselage Section 4 Positioning + OptimaleBL3 - Fuselage Section 4 Positioning + OptimaleBL3_Fuselage_Sec3 + OptimaleBL3_Fuselage_Sec4 + + + 140.243 + 90 + 0 + OptimaleBL3 - Fuselage Section 5 Positioning + OptimaleBL3 - Fuselage Section 5 Positioning + OptimaleBL3_Fuselage_Sec4 + OptimaleBL3_Fuselage_Sec5 + + + 178.898 + 90 + 0 + OptimaleBL3 - Fuselage Section 6 Positioning + OptimaleBL3 - Fuselage Section 6 Positioning + OptimaleBL3_Fuselage_Sec5 + OptimaleBL3_Fuselage_Sec6 + + + 216.503 + 90 + 0 + OptimaleBL3 - Fuselage Section 7 Positioning + OptimaleBL3 - Fuselage Section 7 Positioning + OptimaleBL3_Fuselage_Sec6 + OptimaleBL3_Fuselage_Sec7 + + + 252.837 + 90 + 0 + OptimaleBL3 - Fuselage Section 8 Positioning + OptimaleBL3 - Fuselage Section 8 Positioning + OptimaleBL3_Fuselage_Sec7 + OptimaleBL3_Fuselage_Sec8 + + + 287.687 + 90 + 0 + OptimaleBL3 - Fuselage Section 9 Positioning + OptimaleBL3 - Fuselage Section 9 Positioning + OptimaleBL3_Fuselage_Sec8 + OptimaleBL3_Fuselage_Sec9 + + + 320.849 + 90 + 0 + OptimaleBL3 - Fuselage Section 10 Positioning + OptimaleBL3 - Fuselage Section 10 Positioning + OptimaleBL3_Fuselage_Sec9 + OptimaleBL3_Fuselage_Sec10 + + + 352.128 + 90 + 0 + OptimaleBL3 - Fuselage Section 11 Positioning + OptimaleBL3 - Fuselage Section 11 Positioning + OptimaleBL3_Fuselage_Sec10 + OptimaleBL3_Fuselage_Sec11 + + + 381.341 + 90 + 0 + OptimaleBL3 - Fuselage Section 12 Positioning + OptimaleBL3 - Fuselage Section 12 Positioning + OptimaleBL3_Fuselage_Sec11 + OptimaleBL3_Fuselage_Sec12 + + + 408.316 + 90 + 0 + OptimaleBL3 - Fuselage Section 13 Positioning + OptimaleBL3 - Fuselage Section 13 Positioning + OptimaleBL3_Fuselage_Sec12 + OptimaleBL3_Fuselage_Sec13 + + + 432.895 + 90 + 0 + OptimaleBL3 - Fuselage Section 14 Positioning + OptimaleBL3 - Fuselage Section 14 Positioning + OptimaleBL3_Fuselage_Sec13 + OptimaleBL3_Fuselage_Sec14 + + + 454.933 + 90 + 0 + OptimaleBL3 - Fuselage Section 15 Positioning + OptimaleBL3 - Fuselage Section 15 Positioning + OptimaleBL3_Fuselage_Sec14 + OptimaleBL3_Fuselage_Sec15 + + + 474.302 + 90 + 0 + OptimaleBL3 - Fuselage Section 16 Positioning + OptimaleBL3 - Fuselage Section 16 Positioning + OptimaleBL3_Fuselage_Sec15 + OptimaleBL3_Fuselage_Sec16 + + + 490.887 + 90 + 0 + OptimaleBL3 - Fuselage Section 17 Positioning + OptimaleBL3 - Fuselage Section 17 Positioning + OptimaleBL3_Fuselage_Sec16 + OptimaleBL3_Fuselage_Sec17 + + + 504.592 + 90 + 0 + OptimaleBL3 - Fuselage Section 18 Positioning + OptimaleBL3 - Fuselage Section 18 Positioning + OptimaleBL3_Fuselage_Sec17 + OptimaleBL3_Fuselage_Sec18 + + + 515.335 + 90 + 0 + OptimaleBL3 - Fuselage Section 19 Positioning + OptimaleBL3 - Fuselage Section 19 Positioning + OptimaleBL3_Fuselage_Sec18 + OptimaleBL3_Fuselage_Sec19 + + + 523.055 + 90 + 0 + OptimaleBL3 - Fuselage Section 20 Positioning + OptimaleBL3 - Fuselage Section 20 Positioning + OptimaleBL3_Fuselage_Sec19 + OptimaleBL3_Fuselage_Sec20 + + + 527.704 + 90 + 0 + OptimaleBL3 - Fuselage Section 21 Positioning + OptimaleBL3 - Fuselage Section 21 Positioning + OptimaleBL3_Fuselage_Sec20 + OptimaleBL3_Fuselage_Sec21 + + + 529.257 + 90 + 0 + OptimaleBL3 - Fuselage Section 22 Positioning + OptimaleBL3 - Fuselage Section 22 Positioning + OptimaleBL3_Fuselage_Sec21 + OptimaleBL3_Fuselage_Sec22 + + + 527.704 + 90 + 0 + OptimaleBL3 - Fuselage Section 23 Positioning + OptimaleBL3 - Fuselage Section 23 Positioning + OptimaleBL3_Fuselage_Sec22 + OptimaleBL3_Fuselage_Sec23 + + + 523.055 + 90 + 0 + OptimaleBL3 - Fuselage Section 24 Positioning + OptimaleBL3 - Fuselage Section 24 Positioning + OptimaleBL3_Fuselage_Sec23 + OptimaleBL3_Fuselage_Sec24 + + + 515.335 + 90 + 0 + OptimaleBL3 - Fuselage Section 25 Positioning + OptimaleBL3 - Fuselage Section 25 Positioning + OptimaleBL3_Fuselage_Sec24 + OptimaleBL3_Fuselage_Sec25 + + + 504.592 + 90 + 0 + OptimaleBL3 - Fuselage Section 26 Positioning + OptimaleBL3 - Fuselage Section 26 Positioning + OptimaleBL3_Fuselage_Sec25 + OptimaleBL3_Fuselage_Sec26 + + + 490.887 + 90 + 0 + OptimaleBL3 - Fuselage Section 27 Positioning + OptimaleBL3 - Fuselage Section 27 Positioning + OptimaleBL3_Fuselage_Sec26 + OptimaleBL3_Fuselage_Sec27 + + + 474.302 + 90 + 0 + OptimaleBL3 - Fuselage Section 28 Positioning + OptimaleBL3 - Fuselage Section 28 Positioning + OptimaleBL3_Fuselage_Sec27 + OptimaleBL3_Fuselage_Sec28 + + + 454.933 + 90 + 0 + OptimaleBL3 - Fuselage Section 29 Positioning + OptimaleBL3 - Fuselage Section 29 Positioning + OptimaleBL3_Fuselage_Sec28 + OptimaleBL3_Fuselage_Sec29 + + + 432.895 + 90 + 0 + OptimaleBL3 - Fuselage Section 30 Positioning + OptimaleBL3 - Fuselage Section 30 Positioning + OptimaleBL3_Fuselage_Sec29 + OptimaleBL3_Fuselage_Sec30 + + + 408.316 + 90 + 0 + OptimaleBL3 - Fuselage Section 31 Positioning + OptimaleBL3 - Fuselage Section 31 Positioning + OptimaleBL3_Fuselage_Sec30 + OptimaleBL3_Fuselage_Sec31 + + + 381.341 + 90 + 0 + OptimaleBL3 - Fuselage Section 32 Positioning + OptimaleBL3 - Fuselage Section 32 Positioning + OptimaleBL3_Fuselage_Sec31 + OptimaleBL3_Fuselage_Sec32 + + + 352.128 + 90 + 0 + OptimaleBL3 - Fuselage Section 33 Positioning + OptimaleBL3 - Fuselage Section 33 Positioning + OptimaleBL3_Fuselage_Sec32 + OptimaleBL3_Fuselage_Sec33 + + + 320.849 + 90 + 0 + OptimaleBL3 - Fuselage Section 34 Positioning + OptimaleBL3 - Fuselage Section 34 Positioning + OptimaleBL3_Fuselage_Sec33 + OptimaleBL3_Fuselage_Sec34 + + + 287.687 + 90 + 0 + OptimaleBL3 - Fuselage Section 35 Positioning + OptimaleBL3 - Fuselage Section 35 Positioning + OptimaleBL3_Fuselage_Sec34 + OptimaleBL3_Fuselage_Sec35 + + + 252.837 + 90 + 0 + OptimaleBL3 - Fuselage Section 36 Positioning + OptimaleBL3 - Fuselage Section 36 Positioning + OptimaleBL3_Fuselage_Sec35 + OptimaleBL3_Fuselage_Sec36 + + + 216.503 + 90 + 0 + OptimaleBL3 - Fuselage Section 37 Positioning + OptimaleBL3 - Fuselage Section 37 Positioning + OptimaleBL3_Fuselage_Sec36 + OptimaleBL3_Fuselage_Sec37 + + + 178.898 + 90 + 0 + OptimaleBL3 - Fuselage Section 38 Positioning + OptimaleBL3 - Fuselage Section 38 Positioning + OptimaleBL3_Fuselage_Sec37 + OptimaleBL3_Fuselage_Sec38 + + + 140.243 + 90 + 0 + OptimaleBL3 - Fuselage Section 39 Positioning + OptimaleBL3 - Fuselage Section 39 Positioning + OptimaleBL3_Fuselage_Sec38 + OptimaleBL3_Fuselage_Sec39 + + + 100.766 + 90 + 0 + OptimaleBL3 - Fuselage Section 40 Positioning + OptimaleBL3 - Fuselage Section 40 Positioning + OptimaleBL3_Fuselage_Sec39 + OptimaleBL3_Fuselage_Sec40 + + + 60.697 + 90 + 0 + OptimaleBL3 - Fuselage Section 41 Positioning + OptimaleBL3 - Fuselage Section 41 Positioning + OptimaleBL3_Fuselage_Sec40 + OptimaleBL3_Fuselage_Sec41 + + + 20.272 + 90 + 0 + OptimaleBL3 - Fuselage Section 42 Positioning + OptimaleBL3 - Fuselage Section 42 Positioning + OptimaleBL3_Fuselage_Sec41 + OptimaleBL3_Fuselage_Sec42 + + + + + Segment from OptimaleBL3 - Fuselage Section 1 Main Element to OptimaleBL3 - Fuselage Section 2 Main Element + Segment from OptimaleBL3 - Fuselage Section 1 Main Element to OptimaleBL3 - Fuselage Section 2 Main Element + OptimaleBL3_Fuselage_Sec1_El1 + OptimaleBL3_Fuselage_Sec2_El1 + + + Segment from OptimaleBL3 - Fuselage Section 2 Main Element to OptimaleBL3 - Fuselage Section 3 Main Element + Segment from OptimaleBL3 - Fuselage Section 2 Main Element to OptimaleBL3 - Fuselage Section 3 Main Element + OptimaleBL3_Fuselage_Sec2_El1 + OptimaleBL3_Fuselage_Sec3_El1 + + + Segment from OptimaleBL3 - Fuselage Section 3 Main Element to OptimaleBL3 - Fuselage Section 4 Main Element + Segment from OptimaleBL3 - Fuselage Section 3 Main Element to OptimaleBL3 - Fuselage Section 4 Main Element + OptimaleBL3_Fuselage_Sec3_El1 + OptimaleBL3_Fuselage_Sec4_El1 + + + Segment from OptimaleBL3 - Fuselage Section 4 Main Element to OptimaleBL3 - Fuselage Section 5 Main Element + Segment from OptimaleBL3 - Fuselage Section 4 Main Element to OptimaleBL3 - Fuselage Section 5 Main Element + OptimaleBL3_Fuselage_Sec4_El1 + OptimaleBL3_Fuselage_Sec5_El1 + + + Segment from OptimaleBL3 - Fuselage Section 5 Main Element to OptimaleBL3 - Fuselage Section 6 Main Element + Segment from OptimaleBL3 - Fuselage Section 5 Main Element to OptimaleBL3 - Fuselage Section 6 Main Element + OptimaleBL3_Fuselage_Sec5_El1 + OptimaleBL3_Fuselage_Sec6_El1 + + + Segment from OptimaleBL3 - Fuselage Section 6 Main Element to OptimaleBL3 - Fuselage Section 7 Main Element + Segment from OptimaleBL3 - Fuselage Section 6 Main Element to OptimaleBL3 - Fuselage Section 7 Main Element + OptimaleBL3_Fuselage_Sec6_El1 + OptimaleBL3_Fuselage_Sec7_El1 + + + Segment from OptimaleBL3 - Fuselage Section 7 Main Element to OptimaleBL3 - Fuselage Section 8 Main Element + Segment from OptimaleBL3 - Fuselage Section 7 Main Element to OptimaleBL3 - Fuselage Section 8 Main Element + OptimaleBL3_Fuselage_Sec7_El1 + OptimaleBL3_Fuselage_Sec8_El1 + + + Segment from OptimaleBL3 - Fuselage Section 8 Main Element to OptimaleBL3 - Fuselage Section 9 Main Element + Segment from OptimaleBL3 - Fuselage Section 8 Main Element to OptimaleBL3 - Fuselage Section 9 Main Element + OptimaleBL3_Fuselage_Sec8_El1 + OptimaleBL3_Fuselage_Sec9_El1 + + + Segment from OptimaleBL3 - Fuselage Section 9 Main Element to OptimaleBL3 - Fuselage Section 10 Main Element + Segment from OptimaleBL3 - Fuselage Section 9 Main Element to OptimaleBL3 - Fuselage Section 10 Main Element + OptimaleBL3_Fuselage_Sec9_El1 + OptimaleBL3_Fuselage_Sec10_El1 + + + Segment from OptimaleBL3 - Fuselage Section 10 Main Element to OptimaleBL3 - Fuselage Section 11 Main Element + Segment from OptimaleBL3 - Fuselage Section 10 Main Element to OptimaleBL3 - Fuselage Section 11 Main Element + OptimaleBL3_Fuselage_Sec10_El1 + OptimaleBL3_Fuselage_Sec11_El1 + + + Segment from OptimaleBL3 - Fuselage Section 11 Main Element to OptimaleBL3 - Fuselage Section 12 Main Element + Segment from OptimaleBL3 - Fuselage Section 11 Main Element to OptimaleBL3 - Fuselage Section 12 Main Element + OptimaleBL3_Fuselage_Sec11_El1 + OptimaleBL3_Fuselage_Sec12_El1 + + + Segment from OptimaleBL3 - Fuselage Section 12 Main Element to OptimaleBL3 - Fuselage Section 13 Main Element + Segment from OptimaleBL3 - Fuselage Section 12 Main Element to OptimaleBL3 - Fuselage Section 13 Main Element + OptimaleBL3_Fuselage_Sec12_El1 + OptimaleBL3_Fuselage_Sec13_El1 + + + Segment from OptimaleBL3 - Fuselage Section 13 Main Element to OptimaleBL3 - Fuselage Section 14 Main Element + Segment from OptimaleBL3 - Fuselage Section 13 Main Element to OptimaleBL3 - Fuselage Section 14 Main Element + OptimaleBL3_Fuselage_Sec13_El1 + OptimaleBL3_Fuselage_Sec14_El1 + + + Segment from OptimaleBL3 - Fuselage Section 14 Main Element to OptimaleBL3 - Fuselage Section 15 Main Element + Segment from OptimaleBL3 - Fuselage Section 14 Main Element to OptimaleBL3 - Fuselage Section 15 Main Element + OptimaleBL3_Fuselage_Sec14_El1 + OptimaleBL3_Fuselage_Sec15_El1 + + + Segment from OptimaleBL3 - Fuselage Section 15 Main Element to OptimaleBL3 - Fuselage Section 16 Main Element + Segment from OptimaleBL3 - Fuselage Section 15 Main Element to OptimaleBL3 - Fuselage Section 16 Main Element + OptimaleBL3_Fuselage_Sec15_El1 + OptimaleBL3_Fuselage_Sec16_El1 + + + Segment from OptimaleBL3 - Fuselage Section 16 Main Element to OptimaleBL3 - Fuselage Section 17 Main Element + Segment from OptimaleBL3 - Fuselage Section 16 Main Element to OptimaleBL3 - Fuselage Section 17 Main Element + OptimaleBL3_Fuselage_Sec16_El1 + OptimaleBL3_Fuselage_Sec17_El1 + + + Segment from OptimaleBL3 - Fuselage Section 17 Main Element to OptimaleBL3 - Fuselage Section 18 Main Element + Segment from OptimaleBL3 - Fuselage Section 17 Main Element to OptimaleBL3 - Fuselage Section 18 Main Element + OptimaleBL3_Fuselage_Sec17_El1 + OptimaleBL3_Fuselage_Sec18_El1 + + + Segment from OptimaleBL3 - Fuselage Section 18 Main Element to OptimaleBL3 - Fuselage Section 19 Main Element + Segment from OptimaleBL3 - Fuselage Section 18 Main Element to OptimaleBL3 - Fuselage Section 19 Main Element + OptimaleBL3_Fuselage_Sec18_El1 + OptimaleBL3_Fuselage_Sec19_El1 + + + Segment from OptimaleBL3 - Fuselage Section 19 Main Element to OptimaleBL3 - Fuselage Section 20 Main Element + Segment from OptimaleBL3 - Fuselage Section 19 Main Element to OptimaleBL3 - Fuselage Section 20 Main Element + OptimaleBL3_Fuselage_Sec19_El1 + OptimaleBL3_Fuselage_Sec20_El1 + + + Segment from OptimaleBL3 - Fuselage Section 20 Main Element to OptimaleBL3 - Fuselage Section 21 Main Element + Segment from OptimaleBL3 - Fuselage Section 20 Main Element to OptimaleBL3 - Fuselage Section 21 Main Element + OptimaleBL3_Fuselage_Sec20_El1 + OptimaleBL3_Fuselage_Sec21_El1 + + + Segment from OptimaleBL3 - Fuselage Section 21 Main Element to OptimaleBL3 - Fuselage Section 22 Main Element + Segment from OptimaleBL3 - Fuselage Section 21 Main Element to OptimaleBL3 - Fuselage Section 22 Main Element + OptimaleBL3_Fuselage_Sec21_El1 + OptimaleBL3_Fuselage_Sec23_El1 + + + Segment from OptimaleBL3 - Fuselage Section 23 Main Element to OptimaleBL3 - Fuselage Section 24 Main Element + Segment from OptimaleBL3 - Fuselage Section 23 Main Element to OptimaleBL3 - Fuselage Section 24 Main Element + OptimaleBL3_Fuselage_Sec23_El1 + OptimaleBL3_Fuselage_Sec24_El1 + + + Segment from OptimaleBL3 - Fuselage Section 24 Main Element to OptimaleBL3 - Fuselage Section 25 Main Element + Segment from OptimaleBL3 - Fuselage Section 24 Main Element to OptimaleBL3 - Fuselage Section 25 Main Element + OptimaleBL3_Fuselage_Sec24_El1 + OptimaleBL3_Fuselage_Sec25_El1 + + + Segment from OptimaleBL3 - Fuselage Section 25 Main Element to OptimaleBL3 - Fuselage Section 26 Main Element + Segment from OptimaleBL3 - Fuselage Section 25 Main Element to OptimaleBL3 - Fuselage Section 26 Main Element + OptimaleBL3_Fuselage_Sec25_El1 + OptimaleBL3_Fuselage_Sec26_El1 + + + Segment from OptimaleBL3 - Fuselage Section 26 Main Element to OptimaleBL3 - Fuselage Section 27 Main Element + Segment from OptimaleBL3 - Fuselage Section 26 Main Element to OptimaleBL3 - Fuselage Section 27 Main Element + OptimaleBL3_Fuselage_Sec26_El1 + OptimaleBL3_Fuselage_Sec27_El1 + + + Segment from OptimaleBL3 - Fuselage Section 27 Main Element to OptimaleBL3 - Fuselage Section 28 Main Element + Segment from OptimaleBL3 - Fuselage Section 27 Main Element to OptimaleBL3 - Fuselage Section 28 Main Element + OptimaleBL3_Fuselage_Sec27_El1 + OptimaleBL3_Fuselage_Sec28_El1 + + + Segment from OptimaleBL3 - Fuselage Section 28 Main Element to OptimaleBL3 - Fuselage Section 29 Main Element + Segment from OptimaleBL3 - Fuselage Section 28 Main Element to OptimaleBL3 - Fuselage Section 29 Main Element + OptimaleBL3_Fuselage_Sec28_El1 + OptimaleBL3_Fuselage_Sec29_El1 + + + Segment from OptimaleBL3 - Fuselage Section 29 Main Element to OptimaleBL3 - Fuselage Section 30 Main Element + Segment from OptimaleBL3 - Fuselage Section 29 Main Element to OptimaleBL3 - Fuselage Section 30 Main Element + OptimaleBL3_Fuselage_Sec29_El1 + OptimaleBL3_Fuselage_Sec30_El1 + + + Segment from OptimaleBL3 - Fuselage Section 30 Main Element to OptimaleBL3 - Fuselage Section 31 Main Element + Segment from OptimaleBL3 - Fuselage Section 30 Main Element to OptimaleBL3 - Fuselage Section 31 Main Element + OptimaleBL3_Fuselage_Sec30_El1 + OptimaleBL3_Fuselage_Sec31_El1 + + + Segment from OptimaleBL3 - Fuselage Section 31 Main Element to OptimaleBL3 - Fuselage Section 32 Main Element + Segment from OptimaleBL3 - Fuselage Section 31 Main Element to OptimaleBL3 - Fuselage Section 32 Main Element + OptimaleBL3_Fuselage_Sec31_El1 + OptimaleBL3_Fuselage_Sec32_El1 + + + Segment from OptimaleBL3 - Fuselage Section 32 Main Element to OptimaleBL3 - Fuselage Section 33 Main Element + Segment from OptimaleBL3 - Fuselage Section 32 Main Element to OptimaleBL3 - Fuselage Section 33 Main Element + OptimaleBL3_Fuselage_Sec32_El1 + OptimaleBL3_Fuselage_Sec33_El1 + + + Segment from OptimaleBL3 - Fuselage Section 33 Main Element to OptimaleBL3 - Fuselage Section 34 Main Element + Segment from OptimaleBL3 - Fuselage Section 33 Main Element to OptimaleBL3 - Fuselage Section 34 Main Element + OptimaleBL3_Fuselage_Sec33_El1 + OptimaleBL3_Fuselage_Sec34_El1 + + + Segment from OptimaleBL3 - Fuselage Section 34 Main Element to OptimaleBL3 - Fuselage Section 35 Main Element + Segment from OptimaleBL3 - Fuselage Section 34 Main Element to OptimaleBL3 - Fuselage Section 35 Main Element + OptimaleBL3_Fuselage_Sec34_El1 + OptimaleBL3_Fuselage_Sec35_El1 + + + Segment from OptimaleBL3 - Fuselage Section 35 Main Element to OptimaleBL3 - Fuselage Section 36 Main Element + Segment from OptimaleBL3 - Fuselage Section 35 Main Element to OptimaleBL3 - Fuselage Section 36 Main Element + OptimaleBL3_Fuselage_Sec35_El1 + OptimaleBL3_Fuselage_Sec36_El1 + + + Segment from OptimaleBL3 - Fuselage Section 36 Main Element to OptimaleBL3 - Fuselage Section 37 Main Element + Segment from OptimaleBL3 - Fuselage Section 36 Main Element to OptimaleBL3 - Fuselage Section 37 Main Element + OptimaleBL3_Fuselage_Sec36_El1 + OptimaleBL3_Fuselage_Sec37_El1 + + + Segment from OptimaleBL3 - Fuselage Section 37 Main Element to OptimaleBL3 - Fuselage Section 38 Main Element + Segment from OptimaleBL3 - Fuselage Section 37 Main Element to OptimaleBL3 - Fuselage Section 38 Main Element + OptimaleBL3_Fuselage_Sec37_El1 + OptimaleBL3_Fuselage_Sec38_El1 + + + Segment from OptimaleBL3 - Fuselage Section 38 Main Element to OptimaleBL3 - Fuselage Section 39 Main Element + Segment from OptimaleBL3 - Fuselage Section 38 Main Element to OptimaleBL3 - Fuselage Section 39 Main Element + OptimaleBL3_Fuselage_Sec38_El1 + OptimaleBL3_Fuselage_Sec39_El1 + + + Segment from OptimaleBL3 - Fuselage Section 39 Main Element to OptimaleBL3 - Fuselage Section 40 Main Element + Segment from OptimaleBL3 - Fuselage Section 39 Main Element to OptimaleBL3 - Fuselage Section 40 Main Element + OptimaleBL3_Fuselage_Sec39_El1 + OptimaleBL3_Fuselage_Sec40_El1 + + + Segment from OptimaleBL3 - Fuselage Section 40 Main Element to OptimaleBL3 - Fuselage Section 41 Main Element + Segment from OptimaleBL3 - Fuselage Section 40 Main Element to OptimaleBL3 - Fuselage Section 41 Main Element + OptimaleBL3_Fuselage_Sec40_El1 + OptimaleBL3_Fuselage_Sec41_El1 + + + Segment from OptimaleBL3 - Fuselage Section 41 Main Element to OptimaleBL3 - Fuselage Section 42 Main Element + Segment from OptimaleBL3 - Fuselage Section 41 Main Element to OptimaleBL3 - Fuselage Section 42 Main Element + OptimaleBL3_Fuselage_Sec41_El1 + OptimaleBL3_Fuselage_Sec42_El1 + + + + + + + 130 + 0 + 0 + 0 + 0 + 0 + + 0 + 0 + 0 + + Frame1 + + + + + 250 + 0 + 0 + 0 + 0 + 0 + + 0 + 0 + 0 + + Frame1 + + + + + 410 + 0 + 0 + 0 + 0 + 0 + + 0 + 0 + 0 + + Frame1 + + + + + 610 + 0 + 0 + 0 + 0 + 0 + + 0 + 0 + 0 + + Frame1 + + + + + 845 + 0 + 0 + 0 + 0 + 0 + + 0 + 0 + 0 + + Frame1 + + + + + 1115 + 0 + 0 + 0 + 0 + 0 + + 0 + 0 + 0 + + Frame1 + + + + + 1410 + 0 + 0 + 0 + 0 + 0 + + 0 + 0 + 0 + + Frame1 + + + + + 1750 + 0 + 0 + 0 + 0 + 0 + + 0 + 0 + 0 + + Frame1 + + + + + 2120 + 0 + 0 + 0 + 0 + 0 + + 0 + 0 + 0 + + Frame1 + + + + + 2515 + 0 + 0 + 0 + 0 + 0 + + 0 + 0 + 0 + + Frame1 + + + + + 2935 + 0 + 0 + 0 + 0 + 0 + + 0 + 0 + 0 + + Frame1 + + + + + 3380 + 0 + 0 + 0 + 0 + 0 + + 0 + 0 + 0 + + Frame1 + + + + + 3845 + 0 + 0 + 0 + 0 + 0 + + 0 + 0 + 0 + + Frame1 + + + + + 4325 + 0 + 0 + 0 + 0 + 0 + + 0 + 0 + 0 + + Frame1 + + + + + 4825 + 0 + 0 + 0 + 0 + 0 + + 0 + 0 + 0 + + Frame1 + + + + + 5335 + 0 + 0 + 0 + 0 + 0 + + 0 + 0 + 0 + + Frame1 + + + + + 5852.31 + 0 + 0 + 0 + 0 + 0 + + 0 + 0 + 0 + + Frame1 + + + + + 6375 + 0 + 0 + 0 + 0 + 0 + + 0 + 0 + 0 + + Frame1 + + + + + 6905 + 0 + 0 + 0 + 0 + 0 + + 0 + 0 + 0 + + Frame1 + + + + + 7525 + 0 + 0 + 0 + 0 + 0 + + 0 + 0 + 0 + + Frame1 + + + + + 7960 + 0 + 0 + 0 + 0 + 0 + + 0 + 0 + 0 + + Frame1 + + + + + 8475 + 0 + 0 + 0 + 0 + 0 + + 0 + 0 + 0 + + Frame1 + + + + + 8985 + 0 + 0 + 0 + 0 + 0 + + 0 + 0 + 0 + + Frame1 + + + + + 9485 + 0 + 0 + 0 + 0 + 0 + + 0 + 0 + 0 + + Frame1 + + + + + 9965 + 0 + 0 + 0 + 0 + 0 + + 0 + 0 + 0 + + Frame1 + + + + + 10430 + 0 + 0 + 0 + 0 + 0 + + 0 + 0 + 0 + + Frame1 + + + + + 10875 + 0 + 0 + 0 + 0 + 0 + + 0 + 0 + 0 + + Frame1 + + + + + 11295 + 0 + 0 + 0 + 0 + 0 + + 0 + 0 + 0 + + Frame1 + + + + + 11690 + 0 + 0 + 0 + 0 + 0 + + 0 + 0 + 0 + + Frame1 + + + + + 12055 + 0 + 0 + 0 + 0 + 0 + + 0 + 0 + 0 + + Frame1 + + + + + 12395 + 0 + 0 + 0 + 0 + 0 + + 0 + 0 + 0 + + Frame1 + + + + + 12695 + 0 + 0 + 0 + 0 + 0 + + 0 + 0 + 0 + + Frame1 + + + + + 12965 + 0 + 0 + 0 + 0 + 0 + + 0 + 0 + 0 + + Frame1 + + + + + 13200 + 0 + 0 + 0 + 0 + 0 + + 0 + 0 + 0 + + Frame1 + + + + + 13400 + 0 + 0 + 0 + 0 + 0 + + 0 + 0 + 0 + + Frame1 + + + + + 13560 + 0 + 0 + 0 + 0 + 0 + + 0 + 0 + 0 + + Frame1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fuselage_skin + + + + F5 + pBulkElem + + + F10 + pBulkElem + + + F19 + pBulkElem + + + F22 + pBulkElem + + + F27 + pBulkElem + + + F35 + pBulkElem + + + + + + 130 + 0 + -0.0 + -30 + 0 + 0 + + 0 + 0 + 0 + + String1 + + + 13560 + 0 + 250 + -30 + 0 + 0 + + 0 + 0 + 0 + + String1 + + + + + 130 + 0 + 0 + -60 + 0 + 0 + + 0 + 0 + 0 + + String1 + + + 13560 + 0 + 250 + -60 + 0 + 0 + + 0 + 0 + 0 + + String1 + + + + + 130 + 0 + 0 + -90 + 0 + 0 + + 0 + 0 + 0 + + String1 + + + 2935 + 0 + 50.0 + -90 + 0 + 0 + + 0 + 0 + 0 + + String1 + + + 13560 + 0 + 250 + -90 + 0 + 0 + + 0 + 0 + 0 + + String1 + + + + + 130 + 0 + 0 + -110 + 0 + 0 + + 0 + 0 + 0 + + String1 + + + 2935 + 0 + 50.0 + -110 + 0 + 0 + + 0 + 0 + 0 + + String1 + + + 13560 + 0 + 250 + -110 + 0 + 0 + + 0 + 0 + 0 + + String1 + + + + + 130 + 0 + 0 + -150 + 0 + 0 + + 0 + 0 + 0 + + KeelBeam + + + 2935 + 0 + 50.0 + -150 + 0 + 0 + + 0 + 0 + 0 + + KeelBeam + + + 13560 + 0 + 250 + -150 + 0 + 0 + + 0 + 0 + 0 + + KeelBeam + + + + + 130 + 0 + 0 + 150 + 0 + 0 + + 0 + 0 + 0 + + KeelBeam + + + 2935 + 0 + 50.0 + 150 + 0 + 0 + + 0 + 0 + 0 + + KeelBeam + + + 13560 + 0 + 250 + 150 + 0 + 0 + + 0 + 0 + 0 + + KeelBeam + + + + + 130 + 0 + 0 + 110 + 0 + 0 + + 0 + 0 + 0 + + String1 + + + 2935 + 0 + 50.0 + 110 + 0 + 0 + + 0 + 0 + 0 + + String1 + + + 13560 + 0 + 250 + 110 + 0 + 0 + + 0 + 0 + 0 + + String1 + + + + + 130 + 0 + 0 + 90 + 0 + 0 + + 0 + 0 + 0 + + String1 + + + 2935 + -0.578395 + 50.0 + 90 + 0 + 0 + + 0 + 0 + 0 + + String1 + + + 13560 + 0 + 250 + 90 + 0 + 0 + + 0 + 0 + 0 + + String1 + + + + + 130 + 0 + 0 + 60 + 0 + 0 + + 0 + 0 + 0 + + String1 + + + 2935 + 0 + 50.0 + 60 + 0 + 0 + + 0 + 0 + 0 + + String1 + + + 13560 + 0 + 250 + 60 + 0 + 0 + + 0 + 0 + 0 + + String1 + + + + + 130 + 0 + 0 + 30 + 0 + 0 + + 0 + 0 + 0 + + String1 + + + 2935 + 0 + 50.0 + 30 + 0 + 0 + + 0 + 0 + 0 + + String1 + + + 13560 + 0 + 250 + 30 + 0 + 0 + + 0 + 0 + 0 + + String1 + + + + + 130 + 0 + 0 + 0 + 0 + 0 + + 0 + 0 + 0 + + String1 + + + 2935 + 0 + 50.0 + 0 + 0 + 0 + + 0 + 0 + 0 + + String1 + + + 13560 + 0 + 250 + 0 + 0 + 0 + + 0 + 0 + 0 + + String1 + + + + + + 123 + F2 + St+03 + 0 + + + 123 + F2 + St+05 + 0 + + + 123 + F2 + St+09 + 0 + + + 123 + F2 + St+07 + 0 + + + 123 + F5 + St+03 + 0 + + + 123 + F5 + St+05 + 0 + + + 123 + F5 + St+09 + 0 + + + 123 + F5 + St+07 + 0 + + + 123 + F10 + St+03 + 0 + + + 123 + F10 + St+05 + 0 + + + 123 + F10 + St+09 + 0 + + + 123 + F10 + St+07 + 0 + + + 123 + F18 + St+03 + 0 + + + 123 + F18 + St+05 + 0 + + + 123 + F18 + St+09 + 0 + + + 123 + F18 + St+07 + 0 + + + 123 + F20 + St+03 + 0 + + + 123 + F20 + St+05 + 0 + + + 123 + F20 + St+09 + 0 + + + 123 + F20 + St+07 + 0 + + + 123 + F26 + St+03 + 0 + + + 123 + F26 + St+05 + 0 + + + 123 + F26 + St+09 + 0 + + + 123 + F26 + St+07 + 0 + + + 123 + F28 + St+03 + 0 + + + 123 + F28 + St+05 + 0 + + + 123 + F28 + St+09 + 0 + + + 123 + F28 + St+07 + 0 + + + 123 + F24 + St+02 + 0 + + + 123 + F24 + St+03 + 0 + + + 123 + F24 + St+09 + 0 + + + 123 + F24 + St+10 + 0 + + + 123 + F26 + St+10 + 0 + + + 123 + F26 + St+02 + 0 + + + 123 + F19 + St+04 + 0 + + + 123 + F19 + St+05 + 0 + + + 123 + F22 + St+04 + 0 + + + 123 + F22 + St+05 + 0 + + + 123 + F30 + St+11 + 0 + + + 123 + F30 + St+01 + 0 + + + 123 + F33 + St+11 + 0 + + + 123 + F33 + St+01 + 0 + + + 123 + F19 + St+02 + 0 + + + 123 + F19 + St+05 + 0 + + + 123 + F19 + St+07 + 0 + + + 123 + F19 + St+10 + 0 + + + 123 + F22 + St+02 + 0 + + + 123 + F22 + St+05 + 0 + + + 123 + F22 + St+07 + 0 + + + 123 + F22 + St+10 + 0 + + + 123 + F27 + St+02 + 0 + + + 123 + F27 + St+05 + 0 + + + 123 + F27 + St+07 + 0 + + + 123 + F27 + St+10 + 0 + + + 123 + F35 + St+02 + 0 + + + 123 + F35 + St+05 + 0 + + + 123 + F35 + St+07 + 0 + + + 123 + F35 + St+10 + 0 + + + + Fuselage + This fuselage has been generated using CATIA2CPACS. + OptimaleBL3 +
+
+ + + + + .001 + .001 + .001 + + + 0 + 0 + 0 + + + 9.200 + 0 + 2.530 + + + +
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + -3.16174 + 0 + -16.1205 + + + + + + + 2203.19 + 2203.19 + 2203.19 + + + 0 + 0.32099 + 0 + + + 0 + 0 + 0 + + + OptimaleBL3 - Wing Section 1 Main Element + OptimaleBL3 - Wing Section 1 Main Element + OptimaleBL3_Wing_Sec1_El1_Pro + + + OptimaleBL3 - Wing Section 1 + OptimaleBL3 - Wing Section 1 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 182.239 + 4050 + -16.1205 + + + + + + + 2048.97 + 2048.97 + 2048.97 + + + 0 + 0.320975 + 0 + + + 0 + 0 + 0 + + + OptimaleBL3 - Wing Section 2 Main Element + OptimaleBL3 - Wing Section 2 Main Element + OptimaleBL3_Wing_Sec2_El1_Pro + + + OptimaleBL3 - Wing Section 2 + OptimaleBL3 - Wing Section 2 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 477.837 + 10072.5 + -25.9373 + + + + + + + 1718.49 + 1718.49 + 1718.49 + + + -0.0528401 + -1.17807 + 0 + + + 0 + 0 + 0 + + + OptimaleBL3 - Wing Section 3 Main Element + OptimaleBL3 - Wing Section 3 Main Element + OptimaleBL3_Wing_Sec3_El1_Pro + + + OptimaleBL3 - Wing Section 3 + OptimaleBL3 - Wing Section 3 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 1115.56 + 14998 + -20.9338 + + + + + + + 1057.8 + 1057.8 + 1057.8 + + + 20 + -1.67 + 0 + + + 0 + 0 + 0 + + + OptimaleBL3 - Wing Section 4 Main Element + OptimaleBL3 - Wing Section 4 Main Element + OptimaleBL3_Wing_Sec4_El1_Pro + + + OptimaleBL3 - Wing Section 4 + OptimaleBL3 - Wing Section 4 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 2004.8 + 16200 + 1079.6 + + + + + + + 300 + 300 + 300 + + + 20 + -1.67 + 0 + + + 0 + 0 + 0 + + + OptimaleBL3 - Wing Section 4 Main Element + OptimaleBL3 - Wing Section 4 Main Element + OptimaleBL3_Wing_Sec4_El1_Pro + + + OptimaleBL3 - Wing Section 4 + OptimaleBL3 - Wing Section 4 +
+
+ + + + + + + + + Segment from OptimaleBL3 - Wing Section 1 Main Element to OptimaleBL3 - Wing Section 2 Main Element + Segment from OptimaleBL3 - Wing Section 1 Main Element to OptimaleBL3 - Wing Section 2 Main Element + OptimaleBL3_Wing_Sec1_El1 + OptimaleBL3_Wing_Sec2_El1 + + + Segment from OptimaleBL3 - Wing Section 2 Main Element to OptimaleBL3 - Wing Section 3 Main Element + Segment from OptimaleBL3 - Wing Section 2 Main Element to OptimaleBL3 - Wing Section 3 Main Element + OptimaleBL3_Wing_Sec2_El1 + OptimaleBL3_Wing_Sec3_El1 + + + Segment from OptimaleBL3 - Wing Section 3 Main Element to OptimaleBL3 - Wing Section 4 Main Element + Segment from OptimaleBL3 - Wing Section 3 Main Element to OptimaleBL3 - Wing Section 4 Main Element + OptimaleBL3_Wing_Sec3_El1 + OptimaleBL3_Wing_Sec4_El1 + + + Segment from OptimaleBL3 - Wing Section 3 Main Element to OptimaleBL3 - Wing Section 4 Main Element + Segment from OptimaleBL3 - Wing Section 3 Main Element to OptimaleBL3 - Wing Section 4 Main Element + OptimaleBL3_Wing_Sec4_El1 + OptimaleBL3_Wing_Sec5_El1 + + + + + + + + + + + 0.31 + Wing_Flap + + + 0.31 + Wing_Flap + + + 0.74 + Wing_Flap + + + + + 0.64 + Wing_Flap + + + 0.64 + Wing_Flap + + + 0.76 + Wing_Flap + + + + + + 0.72 + 0.5 + + + 0.74 + 0.5 + + + + 0 + + 0 + 0 + 0 + + + 0 + 0 + + 0 + + + 1 + + 0 + 0 + 0 + + + 0 + 0 + + 15 + + + 2 + + .200 + 0 + -100 + + + .200 + -.100 + + 30 + + + + + + + 0.2 + Wing_Flap + + trackType1 + + + + 0.5 + Wing_Flap + + trackType1 + + + + 0.8 + Wing_Flap + + trackType1 + + + + + mainWingSpar3 + + + mainWingSpar3 + + + FlapRibs + 1 + + + FlapRibs + 2 + + + + + + + 1 + + 0 + 1 + 0 + + sandwich + + + + + + + 1 + + 0 + 1 + 0 + + sandwich + + + + + + + + 0.1 + Wing_Flap + + + 0.9 + Wing_Flap + + 10 + + 90 + globalY + + leadingEdge + leadingEdge + trailingEdge + end + + + + 1e-3 + aluminium 7075 + + + 1e-4 + + aluminium 7075 + + + + 1e-4 + + aluminium 7075 + + + + 0 + + + name + description + + + + + + + 0 + 0.33 + Wing_Flap + + + + + 1 + 0.33 + Wing_Flap + + + + + + + FlapFS_P1 + FlapFS_P2 + + + + 1.5e-4 + + aluminium 7075 + + + + 1.5e-4 + + aluminium 7075 + + + + + 1.5e-3 + aluminium 7075 + + 0 + + 90 + + name + description + + + + + Outboard flap + Flap + mainWingCS14 + + + + + + 0.71 + Wing_Aileron + + + 0.71 + Wing_Aileron + + + 0.76 + Wing_Aileron + + + + + 0.94 + Wing_Aileron + + + 0.94 + Wing_Aileron + + + 0.74 + Wing_Aileron + + + + + + 0.74 + 0.5 + + + 0.72 + 0.5 + + + + 0 + + 0 + 0 + 0 + + + 0 + 0 + + 0 + + + 1 + + 0 + 0 + 0 + + + 0 + 0 + + 15 + + + -1 + + 0 + 0 + 0 + + + 0 + 0 + + -15 + + + + + + + 0.2 + Wing_Aileron + + trackType1 + + + + 0.8 + Wing_Aileron + + trackType1 + + + + + mainWingSpar3 + + + mainWingSpar3 + + + AilRibs + 1 + + + AilRibs + 2 + + + + + + + 1 + + 0 + 1 + 0 + + sandwich + + + + + + + 1 + + 0 + 1 + 0 + + sandwich + + + + + + + + 0.1 + Wing_Aileron + + + 0.9 + Wing_Aileron + + 8 + + 90 + globalY + + leadingEdge + leadingEdge + trailingEdge + end + + + + 6e-4 + aluminium 7075 + + + 6e-5 + + aluminium 7075 + + + + 6e-5 + + aluminium 7075 + + + + 0 + + + name + description + + + + + + + 0 + 0.33 + Wing_Aileron + + + + + 1 + 0.33 + Wing_Aileron + + + + + + + AilFS_P1 + AilFS_P2 + + + + 1e-4 + + aluminium 7075 + + + + 1e-4 + + aluminium 7075 + + + + + 1e-3 + aluminium 7075 + + 0 + + 90 + + name + description + + + + + Outboard flap + Flap + mainWingCS14 + + + + + + + + 1.6e-3 + aluminium 7075 + + + + + + + 1 + + 0 + 1 + 0 + + composite_skin_Cell + + + + mainWingSpar1 + + + mainWingSpar3 + + + + 0 + mainWingCS14 + + + 0 + mainWingCS14 + + + + + 1 + mainWingCS14 + + + 1 + mainWingCS14 + + + + + 0.15 + 0.85 + 5 + WingStringer1 + 0 + mainWingSpar2 + + + + + + + + + 1.6e-3 + aluminium 7075 + + + + + + + 1 + + 0 + 1 + 0 + + composite_skin_Cell + + + + mainWingSpar1 + + + mainWingSpar3 + + + + 0 + mainWingCS14 + + + 0 + mainWingCS14 + + + + + 1 + mainWingCS14 + + + 1 + mainWingCS14 + + + + + 0.15 + 0.85 + 0 + mainWingSpar2 + 5 + WingStringer1 + + + + + + + + + + 0 + 0.2 + mainWingCS14 + + + + + 1 + OptimaleBL3_Wing_Seg_2_3 + 0.2 + + + + + 1 + 0.2 + mainWingCS14 + + + + + 0 + 0.4 + mainWingCS14 + + + + + 1 + OptimaleBL3_Wing_Seg_2_3 + 0.4 + + + + + 0 + 0.7 + mainWingCS14 + + + + + 1 + 0.7 + mainWingCS14 + + + + + + + mainWingSpar1P1 + mainWingSpar1P2 + mainWingSpar1P3 + + + + 3e-4 + + 0 + aluminium 7075 + + + + 3e-4 + + 0 + aluminium 7075 + + + + + 2e-3 + aluminium 7075 + + 0 + + 90 + + spar1 + + description + + + + + mainWingSpar2P1 + mainWingSpar2P2 + + + + 3e-4 + + 0 + aluminium 7075 + + + + 3e-4 + + 0 + aluminium 7075 + + + + + 2e-3 + aluminium 7075 + + 0 + + 90 + + spar4 + + description + + + + + mainWingSpar3P1 + mainWingSpar3P2 + + + + 3e-4 + + 0 + aluminium 7075 + + + + 3e-4 + + 0 + aluminium 7075 + + + + + 2e-3 + aluminium 7075 + + 0 + + 90 + + spar3 + + description + + + + + + + + + 0.025 + mainWingCS14 + + + 0.075 + mainWingCS14 + + 3 + + 90 + globalY + + mainWingSpar1 + mainWingSpar1 + mainWingSpar3 + cross + + + + 2e-3 + aluminium 7075 + + + 0 + + + 3e-4 + + 0 + aluminium 7075 + + + + 3e-4 + + 0 + aluminium 7075 + + + + mainWingRib1 + + + + + 0.1 + mainWingCS14 + + + 1 + OptimaleBL3_Wing_Seg_1_2 + + 5 + + 90 + globalY + + mainWingSpar1 + leadingEdge + trailingEdge + cross + + + + 2e-3 + aluminium 7075 + + + 0 + + + 3e-4 + + 0 + aluminium 7075 + + + + 3e-4 + + 0 + aluminium 7075 + + + + mainWingRib1 + + + + + 0.325 + mainWingCS14 + + + 1 + OptimaleBL3_Wing_Seg_2_3 + + 6 + + 90 + globalY + + mainWingSpar1 + leadingEdge + mainWingSpar3 + cross + + + + 1.5e-3 + aluminium 7075 + + + 0 + + + 2e-4 + + 0 + aluminium 7075 + + + + 2e-4 + + 0 + aluminium 7075 + + + + mainWingRib1 + + + + + 0.725 + mainWingCS14 + + + 1 + OptimaleBL3_Wing_Seg_3_4 + + 5 + + 90 + globalY + + mainWingSpar1 + leadingEdge + mainWingSpar3 + cross + + + + 1e-3 + aluminium 7075 + + + 0 + + + 1e-4 + + 0 + aluminium 7075 + + + + 1e-4 + + 0 + aluminium 7075 + + + + mainWingRib3 + + + + + 0.3 + mainWingCS14 + + + 0.65 + mainWingCS14 + + 2 + + 90 + globalY + + mainWingSpar3 + mainWingSpar3 + trailingEdge + cross + + + + 1.5e-3 + aluminium 7075 + + + 0 + + + 2e-4 + + 0 + aluminium 7075 + + + + 2e-4 + + 0 + aluminium 7075 + + + + mainWingRib1 + + + + + 0.7 + mainWingCS14 + + + 0.95 + mainWingCS14 + + 2 + + 90 + globalY + + mainWingSpar3 + mainWingSpar3 + trailingEdge + cross + + + + 1.5e-3 + aluminium 7075 + + + 0 + + + 2e-4 + + 0 + aluminium 7075 + + + + 2e-4 + + 0 + aluminium 7075 + + + + mainWingRib1 + + + + + + + 0 + 0.95 + 1.0 + + + + 1 + innerRibs + + + innerRibs + 5 + + + mainWingSpar1 + + + mainWingSpar2 + + + fuelTankDescription + fuelTankName + + + + 0 + 0.95 + 1.0 + + + + 6 + midRibs + + + innerRibs + 5 + + + mainWingSpar1 + + + mainWingSpar3 + + + fuelTankDescription + fuelTankName + + + + 0 + 0.95 + 1.0 + + + + 6 + midRibs + + + outerRibs + 5 + + + mainWingSpar1 + + + mainWingSpar3 + + + fuelTankDescription + fuelTankName + + + + + 123 + mainWingSpar2 + innerRibs + 3 + 0 + + + 123 + mainWingSpar2 + innerRibs + 5 + 0 + + + 123 + mainWingSpar3 + innerRibs + 3 + 0 + + + 123 + mainWingSpar3 + innerRibs + 5 + 0 + + + 1 + 1 + mainWingSpar1 + fuselageRibs + 2 + + + 1 + 1 + mainWingSpar3 + fuselageRibs + 3 + + + 1236 + 1 + mainWingSpar1 + innerRibs + 5 + + + 1236 + 1 + mainWingSpar2 + innerRibs + 5 + + + 1236 + 1 + mainWingSpar3 + innerRibs + 5 + + + + + wing_front + fa_1u + fa_1l + + + wing_rear + fa_3u + fa_3l + + + wing structure + OptimaleBL3_Wing_Sec1_El1 + OptimaleBL3_Wing_Sec4_El1 + + + + + + + 1 + + 0 + 1 + 0 + + sandwich + + + + + + + 1 + + 0 + 1 + 0 + + sandwich + + + + + + + + VTP_R1 + 1 + + + + + + name + OptimaleBL3_Wing_Sec4_El1 + OptimaleBL3_Wing_Sec5_El1 + + + Wing + This wing has been generated using CATIA2CPACS. + OptimaleBL3 +
+ + + + .001 + .001 + .001 + + + 0 + 0 + 0 + + + 14.9158 + 0 + 5.3425 + + + +
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.0378402 + 0 + -0.92856 + + + + + + + 1734.33 + 1734.33 + 1734.33 + + + 0 + -2.9871 + 0 + + + 0 + 0 + 0 + + + OptimaleBL3 - HTP Section 1 Main Element + OptimaleBL3 - HTP Section 1 Main Element + OptimaleBL3_HTP_Sec1_El1_Pro + + + OptimaleBL3 - HTP Section 1 + OptimaleBL3 - HTP Section 1 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 872.142 + 2397.6 + 29.9904 + + + + + + + 868.031 + 868.031 + 868.031 + + + 0 + -2.9871 + 0 + + + 0 + 0 + 0 + + + OptimaleBL3 - HTP Section 2 Main Element + OptimaleBL3 - HTP Section 2 Main Element + OptimaleBL3_HTP_Sec2_El1_Pro + + + OptimaleBL3 - HTP Section 2 + OptimaleBL3 - HTP Section 2 +
+
+ + + + + + + Segment from OptimaleBL3 - HTP Section 1 Main Element to OptimaleBL3 - HTP Section 2 Main Element + Segment from OptimaleBL3 - HTP Section 1 Main Element to OptimaleBL3 - HTP Section 2 Main Element + OptimaleBL3_HTP_Sec1_El1 + OptimaleBL3_HTP_Sec2_El1 + + + + + + + + + 1 + + 0 + 1 + 0 + + composite_skin + + + + + + + 1 + + 0 + 1 + 0 + + composite_skin_Cell + + + + HTP_Spar1 + + + HTP_Spar2 + + + + 0 + HTPCS12 + + + 0 + HTPCS12 + + + + + 1 + HTPCS12 + + + 1 + HTPCS12 + + + + + 0.2 + 0.8 + 0.2 + 0.8 + 4 + WingStringer1 + + + + + + + + + 1 + + 0 + 1 + 0 + + composite_skin + + + + + + + 1 + + 0 + 1 + 0 + + composite_skin_Cell + + + + HTP_Spar1 + + + HTP_Spar2 + + + + 0 + HTPCS12 + + + 0 + HTPCS12 + + + + + 1 + HTPCS12 + + + 1 + HTPCS12 + + + + + 0.2 + 0.8 + 0.2 + 0.8 + 4 + WingStringer1 + + + + + + + + + + 0 + 0.156 + HTPCS12 + + + + + 1 + 0.156 + HTPCS12 + + + + + 0 + 0.6 + HTPCS12 + + + + + 1 + 0.5 + HTPCS12 + + + + + + + HTPCS12Spar1P1 + HTPCS12Spar1P2 + + + + 2e-4 + + 0 + aluminium 7075 + + + + 2e-4 + + 0 + aluminium 7075 + + + + + 1e-3 + aluminium 7075 + + 0 + + 90 + + spar1 + + description + + + + + HTPCS12Spar2P1 + HTPCS12Spar2P2 + + + + 2e-4 + + 0 + aluminium 7075 + + + + 2e-4 + + 0 + aluminium 7075 + + + + + 1e-3 + aluminium 7075 + + 0 + + 90 + + spar2 + + description + + + + + + + + + 1 + OptimaleBL3_HTP_Seg_1_2 + + 7 + + 90 + globalY + + leadingEdge + leadingEdge + HTP_Spar2 + cross + + 0.05 + HTPCS12 + + + + + 8e-4 + aluminium 7075 + + + 6e-5 + + 0 + aluminium 7075 + + + + 6e-5 + + 0 + aluminium 7075 + + + + 0 + + + HTPRibs + + + + + 0.1 + HTPCS12 + + 1 + + 90 + globalY + + leadingEdge + HTP_Spar2 + trailingEdge + cross + + 0.1 + HTPCS12 + + + + + 6e-4 + aluminium 7075 + + + 0 + + + HTPRibs + + + + + 0.9 + HTPCS12 + + + 1 + OptimaleBL3_HTP_Seg_1_2 + + 2 + + 90 + globalY + + leadingEdge + HTP_Spar2 + trailingEdge + cross + + + + 6e-4 + aluminium 7075 + + + 0 + + + 6e-5 + + 0 + aluminium 7075 + + + + 6e-5 + + 0 + aluminium 7075 + + + + HTPRibs + + + + + + + + + + 0.12 + HTP_Elevator + + + 0.12 + HTP_Elevator + + + 0.65 + HTP_Elevator + + + + + 0.88 + HTP_Elevator + + + 0.88 + HTP_Elevator + + + 0.55 + HTP_Elevator + + + + + + 0.625 + 0.5 + + + 0.525 + 0.5 + + + + 0 + + 0 + 0 + 0 + + + 0 + 0 + + 0 + + + -1 + + 0 + 0 + 0 + + + 0 + 0 + + -30 + + + 1 + + 0 + 0 + 0 + + + 0 + 0 + + 30 + + + + + + HTP_Spar2 + + + HTP_Spar2 + + + HTPCS12Ribs_TE1 + 1 + + + HTPCS12Ribs_TE2 + 1 + + + + + + 0.3 + HTP_Elevator + + trackType1 + + + + 0.7 + HTP_Elevator + + trackType1 + + + + + + + 1 + + 0 + 1 + 0 + + sandwich + + + + + + + 1 + + 0 + 1 + 0 + + sandwich + + + + + + + + 0.15 + HTP_Elevator + + + 0.85 + HTP_Elevator + + 5 + + 90 + globalY + + leadingEdge + leadingEdge + trailingEdge + end + + + + 6e-4 + aluminium 7075 + + + 6e-5 + + aluminium 7075 + + + + 6e-5 + + aluminium 7075 + + + + 0 + + + name + description + + + + + + + 0 + 0.33 + HTP_Elevator + + + + + 1 + 0.33 + HTP_Elevator + + + + + + + t5FS_P1 + t5FS_P2 + + + + 1e-4 + + aluminium 7075 + + + + 1e-4 + + aluminium 7075 + + + + + 1e-3 + aluminium 7075 + + 0 + + 90 + + name + description + + + + + The Elevator + Elevator + HTP + + + + + + HTPStructure + OptimaleBL3_HTP_Sec1_El1 + OptimaleBL3_HTP_Sec2_El1 + + + HTP + This wing has been generated using CATIA2CPACS. + OptimaleBL3 +
+ + + + .001 + .001 + .001 + + + 90 + 0 + 0 + + + 13.3532 + 0 + 3.000 + + + +
+ + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 2180.19 + 2180.19 + 2180.19 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + OptimaleBL3 - VTP Section 1 Main Element + OptimaleBL3 - VTP Section 1 Main Element + OptimaleBL3_VTP_Sec1_El1_Pro + + + OptimaleBL3 - VTP Section 1 + OptimaleBL3 - VTP Section 1 +
+
+ + + 1 + 1 + 1 + + + 0 + 0 + 1 + + + 1651.9 + 2359.16 + 0 + + + + + + + 1309.86 + 1309.86 + 1309.86 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + OptimaleBL3 - VTP Section 2 Main Element + OptimaleBL3 - VTP Section 2 Main Element + OptimaleBL3_VTP_Sec2_El1_Pro + + + OptimaleBL3 - VTP Section 2 + OptimaleBL3 - VTP Section 2 +
+
+ + + + + + Segment from OptimaleBL3 - VTP Section 1 Main Element to OptimaleBL3 - VTP Section 2 Main Element + Segment from OptimaleBL3 - VTP Section 1 Main Element to OptimaleBL3 - VTP Section 2 Main Element + OptimaleBL3_VTP_Sec1_El1 + OptimaleBL3_VTP_Sec2_El1 + + + + + + + + + 1 + + 0 + 0 + 1 + + composite_skin + + + + + + + 1 + + 0 + 0 + 1 + + composite_skin_Cell + + + + VTP_Spar1 + + + VTP_Spar2 + + + VTP_Ribs + 1 + + + + 1 + VTPCS12 + + + 1 + VTPCS12 + + + + + 0.2 + 0.8 + 0.2 + 0.8 + 4 + WingStringer1 + + + + + + + + + 1 + + 0 + 0 + 1 + + composite_skin + + + + + + + 1 + + 0 + 0 + 1 + + composite_skin_Cell + + + + VTP_Spar1 + + + VTP_Spar2 + + + VTP_Ribs + 1 + + + + 1 + VTPCS12 + + + 1 + VTPCS12 + + + + + 0.2 + 0.8 + 0.2 + 0.8 + 4 + WingStringer1 + + + + + + + + + + 0.2 + 0.18 + VTPCS12 + + + + + 1 + 0.18 + VTPCS12 + + + + + 0.2 + 0.7 + VTPCS12 + + + + + 1 + 0.72 + VTPCS12 + + + + + + + VTPCS12Spar1P1 + VTPCS12Spar1P2 + + + + 2e-4 + + aluminium 7075 + + + + 2e-4 + + aluminium 7075 + + + + + .002 + aluminium 7075 + + 0 + + 90 + + spar1 + + description + + + + + VTPCS12Spar2P1 + VTPCS12Spar2P2 + + + + 2e-4 + + aluminium 7075 + + + + 2e-4 + + aluminium 7075 + + + + + .002 + aluminium 7075 + + 0 + + 90 + + spar2 + + description + + + + + + + + VTP_Spar1 + VTPCS12Spar1P1 + + 1 + VTPCS12 + + 7 + + 90 + globalY + + leadingEdge + VTP_Spar2 + cross + + + + 1e-3 + aluminium 7075 + + + 0 + + + 1e-4 + + aluminium 7075 + + + + 1e-4 + + aluminium 7075 + + + + VTPRibs + + + + + 0.3 + VTPCS12 + + + 0.9 + VTPCS12 + + 2 + + 90 + globalY + + leadingEdge + VTP_Spar2 + trailingEdge + cross + + + + 0.0006 + aluminium 7075 + + + 0 + + + 6e-5 + + 0 + aluminium 7075 + + + + 6e-5 + + 0 + aluminium 7075 + + + + VTPRibs + + + + + + + + + + 0.32 + VTP_Rudder + + + 0.32 + VTP_Rudder + + + 0.74 + VTP_Rudder + + + + + 0.88 + VTP_Rudder + + + 0.88 + VTP_Rudder + + + 0.76 + VTP_Rudder + + + + + + 0.72 + 0.5 + + + 0.74 + 0.5 + + + + 0 + + 0 + 0 + 0 + + + 0 + 0 + + 0 + + + -1 + + 0 + 0 + 0 + + + 0 + 0 + + -30 + + + 1 + + 0 + 0 + 0 + + + 0 + 0 + + 30 + + + + + + VTP_Spar2 + + + VTP_Spar2 + + + Rudder_ribs + 1 + + + Rudder_ribs + 2 + + + + + + 0.3 + VTP_Rudder + + trackType1 + + + + 0.6 + VTP_Rudder + + trackType1 + + + + + + + 1 + + 0 + 0 + 1 + + sandwich + + + + + + + 1 + + 0 + 0 + 1 + + sandwich + + + + + + + + 0.2 + VTP_Rudder + + + 0.8 + VTP_Rudder + + 5 + + 90 + globalY + + leadingEdge + leadingEdge + trailingEdge + end + + + + 0.0006 + aluminium 7075 + + + 6e-5 + + aluminium 7075 + + + + 6e-5 + + aluminium 7075 + + + + 0 + + + name + description + + + + + + + 0 + 0.33 + VTP_Rudder + + + + + 1 + 0.33 + VTP_Rudder + + + + + + + t4FS_P1 + t4FS_P2 + + + + 1e-4 + + aluminium 7075 + + + + 1e-4 + + aluminium 7075 + + + + + 1e-3 + aluminium 7075 + + 0 + + 90 + + name + description + + + + + The rudder + Rudder + VTP + + + + + + + 0 + 0.9 + 1.0 + + + + 2 + VTP_Ribs + + + VTP_Ribs + 6 + + + VTP_Spar1 + + + VTP_Spar2 + + + fuelTankDescription + fuelTankName + + + + + 1 + 1 + VTP_Spar1 + VTP_Ribs + 2 + + + 1 + 1 + VTP_Spar2 + VTP_Ribs + 2 + + + + + vtp_front + fa_4u + fa_4l + + + vtp_rear + fa_5u + fa_5l + + + wing structure + OptimaleBL3_VTP_Sec1_El1 + OptimaleBL3_VTP_Sec2_El1 + + + VTP + This wing has been generated using CATIA2CPACS. + OptimaleBL3 +
+
+ + + + aeromap_empty + Common default aeroMap + + ISA + + + 0 + 0.3 + 0.0 + 0.0 + + + + + + + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + 0 + Maximum Take Off Weight + + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + 0 + + + innerTank + fuel_1 + 1.0 + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + 0 + + + midTank + fuel_1 + 1.0 + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + 0 + + + outerTank + fuel_1 + 1.0 + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + 0 + + + tailTank + fuel_1 + 1.0 + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + 0 + + + + + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + 0 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + 0 + Payload + fuselageFuel + ext_WingFuelTankR + ext_WingFuelR + ext_WingFuelTankL + ext_WingFuelL + + + + + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + 0 + Basic Flight Design Mass + + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + 0 + + + innerTank + fuel_1 + 0.5 + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + 0 + + + midTank + fuel_1 + 0.5 + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + 0 + + + outerTank + fuel_1 + 0.5 + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + 0 + + + tailTank + fuel_1 + 0.5 + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + 0 + + + + + 0 + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + 0 + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + Payload + half_FuselageFuel + ext_WingFuelTankR + ext_WingFuelTankL + + + + + + + + 0 + 0 + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 9500 + 0 + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + 0 + 0 + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + 10000 + 0 + + 10.124 + 0 + 2.732 + + + 0 + 0 + 0 + 0 + 0 + 3648697 + + + 0 + 0 + 0 + + + + + + 0 + 0 + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + + + + 2468.1 + 565.367 + + 10.1103 + 0 + 2.91083 + + + 0 + 0 + 0 + + + 3.36878e+06 + 277600 + 3.34755e+06 + 3.38455 + -10739.1 + 13.7527 + + + + + + + 2468.1 + 565.367 + + 10.1103 + 0 + 2.91083 + + + 0 + 0 + 0 + + + 3.36878e+06 + 277600 + 3.34755e+06 + 3.38455 + -10739.1 + 13.7527 + + + + + + + 2468.1 + 565.367 + + 10.1103 + 0 + 2.91083 + + + 0 + 0 + 0 + + + 3.36878e+06 + 277600 + 3.34755e+06 + 3.38455 + -10739.1 + 13.7527 + + + + + 1261.93 + 351.679 + + 11.1189 + 0 + 2.91472 + + + 3.12404e+06 + 128755 + 3.20093e+06 + -0.030892 + -10686.1 + -0.00302241 + + + + + 1093.83 + 303.539 + + 10.4253 + 0 + 2.58682 + + + 3.01321e+06 + 79581.9 + 3.08885e+06 + -3.73447e-12 + 115.528 + 9.18079e-13 + + + + + 1093.83 + 303.539 + + 10.4253 + 0 + 2.58682 + + + 3.01321e+06 + 79581.9 + 3.08885e+06 + -3.73447e-12 + 115.528 + 9.18079e-13 + + + + + 1083.41 + 300.099 + + 10.419 + 0 + 2.58277 + + + 3.00938e+06 + 78496.8 + 3.08513e+06 + -3.72764e-12 + 396.641 + 9.13388e-13 + + + + + 1016.62 + 279.49 + + 10.3698 + 0 + 2.58481 + + + 2.80725e+06 + 76660.3 + 2.88129e+06 + -2.72567e-12 + 251.543 + 8.61557e-13 + + + + + 646.081 + 198.412 + + 10.3905 + 0 + 2.58593 + + + 1.76068e+06 + 2887.71 + 1.76323e+06 + -1.16783e-12 + 79.6424 + 9.55666e-13 + + + + + 325.892 + 100.137 + + 10.3881 + 0 + 2.70379 + + + 883407 + 1530.97 + 884647 + -1.47482e-12 + 157.317 + 5.72487e-13 + + + + + 43.3854 + 14.3172 + + 10.2202 + 0 + 2.61603 + + + 4231.14 + 628.312 + 4712.26 + 5.32907e-15 + -33.0986 + -6.66134e-16 + + + + + + 134.364 + 44.3402 + + 10.4117 + 0 + 2.71722 + + + 11549.4 + 123.974 + 11668.4 + -2.22045e-15 + 5.17971 + 4.71845e-15 + + + + + + 148.143 + 41.4799 + + 10.4169 + 0 + 2.71785 + + + 867626 + 776.877 + 868265 + -1.47793e-12 + 184.494 + 5.68434e-13 + + + + + + + 320.189 + 98.2744 + + 10.393 + 0 + 2.46593 + + + 877259 + 1347.6 + 878578 + 3.06991e-13 + -77.4857 + 3.8318e-13 + + + + + 39.5944 + 13.0662 + + 10.2601 + 0 + 2.48097 + + + 3725.93 + 509.862 + 4228.62 + -2.9754e-14 + 1.80443 + 2.77556e-17 + + + + + + 132.837 + 43.8361 + + 10.4093 + 0 + 2.46362 + + + 11459 + 120.464 + 11578.9 + -4.31599e-15 + -3.22392 + -5.41234e-16 + + + + + + 147.758 + 41.3722 + + 10.4148 + 0 + 2.4639 + + + 862074 + 716.462 + 862770 + 3.41061e-13 + -75.9756 + 3.83693e-13 + + + + + + + + 236.761 + 50.7101 + + 10.3412 + 0 + 2.58314 + + + 1.0411e+06 + 2317.83 + 1.04281e+06 + 2.70839e-13 + 87.006 + -1.03351e-13 + + + + + 90.5677 + 19.3357 + + 9.95691 + 0 + 2.57908 + + + 386905 + 1709.96 + 388373 + -1.24212e-12 + 73.9642 + -7.74936e-14 + + + + + + mainWingSpar1 + + 40.0085 + 7.20153 + + 9.93085 + 0 + 2.58025 + + + 3909.49 + 111.082 + 3813.66 + -1.24212e-12 + 0.147077 + -7.74936e-14 + + + + + + + mainWingSpar1 + + 25.3213 + 6.07711 + + 9.97743 + 0 + 2.69666 + + + 192357 + 814.749 + 193141 + -4.54747e-13 + 110.502 + 0 + + + + + + + mainWingSpar1 + + 25.238 + 6.05711 + + 9.97563 + 0 + 2.45934 + + + 190638 + 783.37 + 191418 + 4.54747e-13 + -36.6878 + 0 + + + + + + + 68.0308 + 14.277 + + 10.2187 + 0 + 2.60198 + + + 269294 + 354.971 + 269373 + 1.39894e-12 + 8.75974 + 9.66241e-15 + + + + + + mainWingSpar2 + + 34.1729 + 6.15112 + + 10.2157 + 0 + 2.60211 + + + 2226.54 + 133.618 + 2095.03 + 1.39894e-12 + 0.0222044 + 9.66241e-15 + + + + + + + mainWingSpar2 + + 16.9292 + 4.06301 + + 10.2216 + 0 + 2.75325 + + + 133541 + 111.447 + 133646 + 0 + 19.0868 + 0 + + + + + + + mainWingSpar2 + + 16.9287 + 4.06288 + + 10.2216 + 0 + 2.45045 + + + 133525 + 109.129 + 133632 + 0 + -10.3493 + 0 + + + + + + + 78.1626 + 17.0973 + + 10.8904 + 0 + 2.57153 + + + 384904 + 214.89 + 385028 + 1.1402e-13 + 4.79599 + -3.55202e-14 + + + + + + mainWingSpar3 + + 27.6948 + 4.98507 + + 10.8769 + 0 + 2.57177 + + + 2439.91 + 36.5521 + 2404.45 + 3.33067e-16 + 0.00392582 + 6.93889e-18 + + + + + + + mainWingSpar3 + + 25.2638 + 6.06332 + + 10.8977 + 0 + 2.65362 + + + 191849 + 89.9982 + 191929 + 0 + 19.6018 + -2.84217e-14 + + + + + + + mainWingSpar3 + + 25.2039 + 6.04894 + + 10.8973 + 0 + 2.48901 + + + 190614 + 87.9898 + 190695 + 1.13687e-13 + -14.8104 + -7.10543e-15 + + + + + + + + 133.782 + 30.3682 + + 10.3133 + 0 + 2.582 + + + 5470.17 + 71453.8 + 75257 + -1.82868e-12 + 84.8467 + 9.24258e-15 + + + + + 22.1619 + 4.98504 + + 10.2007 + 0 + 2.60028 + + + 70.7358 + 3852.73 + 3811.01 + 6.60582e-13 + 58.6355 + -2.42864e-15 + + + + + 11.1273 + 2.33673 + + 10.1894 + 0 + 2.60041 + + + 51.7531 + 192.429 + 155.218 + 6.60583e-13 + 4.17267 + -2.42861e-15 + + + + + + + fuselageRibs + + 5.54382 + 1.33052 + + 10.2129 + 0 + 2.75136 + + + 14.2517 + 1850.24 + 1843.26 + -8.67362e-19 + 86.9103 + 0 + + + + + + + fuselageRibs + + 5.49079 + 1.31779 + + 10.2106 + 0 + 2.44748 + + + 4.47631 + 1809.8 + 1812.53 + 0 + -32.4494 + -2.71051e-20 + + + + + + + 61.5733 + 14.0197 + + 10.3003 + 0 + 2.57866 + + + 1017.36 + 46787.8 + 46805.2 + -7.78017e-13 + 879.15 + 9.65547e-15 + + + + + 25.2624 + 5.3051 + + 10.2183 + 0 + 2.58642 + + + 289.091 + 363.287 + 496.322 + -7.78044e-13 + 5.91329 + 9.65547e-15 + + + + + + + innerRibs + + 18.5408 + 4.44979 + + 10.3471 + 0 + 2.67654 + + + 551.929 + 24362 + 24122.9 + -5.55112e-17 + 1322.82 + 0 + + + + + + + innerRibs + + 17.7702 + 4.26484 + + 10.365 + 0 + 2.46577 + + + 175.934 + 22061.8 + 22185.7 + 8.32667e-17 + -449.524 + 0 + + + + + + + 34.6982 + 7.84855 + + 10.2254 + 0 + 2.58436 + + + 2190.29 + 15285.8 + 17078.7 + -3.11007e-12 + -619.472 + -3.46945e-17 + + + + + 15.9668 + 3.35303 + + 10.2505 + 0 + 2.5868 + + + 960.776 + 265.143 + 1111.54 + -3.11007e-12 + 0.904602 + -4.16334e-17 + + + + + + + midRibs + + 9.58625 + 2.3007 + + 10.1944 + 0 + 2.69403 + + + 692.299 + 7948.85 + 8370.43 + 0 + -578.745 + 1.38778e-17 + + + + + + + midRibs + + 9.1451 + 2.19482 + + 10.2152 + 0 + 2.46524 + + + 536.972 + 7071.56 + 7596.72 + 0 + -41.6116 + -6.93889e-18 + + + + + + + 10.1546 + 2.29992 + + 10.5093 + 0 + 2.56934 + + + 1702.24 + 5096.17 + 6670.22 + 1.39883e-12 + -270.014 + 2.05044e-15 + + + + + 4.5729 + 0.960309 + + 10.5204 + 0 + 2.57194 + + + 737.8 + 169.888 + 881.025 + 1.39894e-12 + -2.35527 + 1.93595e-15 + + + + + + + outerRibs + + 2.85868 + 0.686082 + + 10.4924 + 0 + 2.64698 + + + 516.587 + 2612.28 + 3032.76 + 0 + -217.581 + 1.11022e-16 + + + + + + + outerRibs + + 2.72302 + 0.653525 + + 10.509 + 0 + 2.48358 + + + 447.817 + 2313.96 + 2756.43 + -1.11022e-16 + -50.0744 + 3.46945e-18 + + + + + + + 3.08054 + 0.718617 + + 11.1258 + 0 + 2.55017 + + + 169.25 + 307.502 + 454.845 + 0 + 28.338 + 0 + + + + + 0.690442 + 0.144993 + + 11.0465 + 0 + 2.55575 + + + 33.249 + 8.15961 + 40.1325 + 0 + 0.696072 + 0 + + + + + + + FlapRibs + + 1.21341 + 0.291219 + + 11.148 + 0 + 2.5873 + + + 73.2971 + 156.802 + 210.941 + 0 + 37.4234 + 0 + + + + + + + FlapRibs + + 1.17669 + 0.282406 + + 11.1483 + 0 + 2.50869 + + + 62.7003 + 142.53 + 203.767 + 0 + -9.78105 + 0 + + + + + + + 2.11325 + 0.496347 + + 11.1782 + 0 + 2.55714 + + + 320.278 + 119.258 + 432.453 + 0 + 8.40984 + 0 + + + + + 0.361108 + 0.0758328 + + 11.1169 + 0 + 2.56147 + + + 52.4855 + 2.27331 + 54.4423 + 0 + 0.143701 + 0 + + + + + + + AilRibs + + 0.88648 + 0.212755 + + 11.1905 + 0 + 2.58387 + + + 136.7 + 60.611 + 191.397 + 0 + 13.0285 + 0 + + + + + + + AilRibs + + 0.865663 + 0.207759 + + 11.1905 + 0 + 2.528 + + + 131.092 + 56.3707 + 186.612 + 0 + -4.76222 + 0 + + + + + + + + + 66.7828 + 20.6088 + + 11.1487 + 0 + 2.55243 + + + 202134 + 1798.47 + 203799 + -1.00198e-12 + 146.679 + 5.18305e-14 + + + + + 66.7828 + 20.6088 + + 11.1487 + 0 + 2.55243 + + + 202134 + 1798.47 + 203799 + -1.00198e-12 + 146.679 + 5.18305e-14 + + + + + 66.7828 + 20.6088 + + 11.1487 + 0 + 2.55243 + + + 202134 + 1798.47 + 203799 + -1.00198e-12 + 146.679 + 5.18305e-14 + + + + + 45.675 + 13.983 + + 11.1345 + 0 + 2.55049 + + + 151567 + 1364.17 + 152826 + -1.00371e-12 + 115.671 + 5.06123e-14 + + + + + 7.16421 + 1.80897 + + 11.1559 + 0 + 2.54861 + + + 400.682 + 1049.09 + 1380.6 + -1.01084e-12 + 93.2426 + 5.20417e-18 + + + + + 7.16421 + 1.80897 + + 11.1559 + 0 + 2.54861 + + + 400.682 + 1049.09 + 1380.6 + -1.01084e-12 + 93.2426 + 5.20417e-18 + + + + + 1.79092 + 0.411912 + + 11.0915 + 0 + 2.55369 + + + 91.6333 + 8.06693 + 96.4935 + -1.01082e-12 + 0.564945 + -6.93889e-18 + + + + + + + Flap_Rib + + 2.72649 + 0.708888 + + 11.1769 + 0 + 2.58042 + + + 170.681 + 543.865 + 653.241 + -2.08167e-17 + 125.195 + 8.67362e-18 + + + + + + + Flap_Rib + + 2.6468 + 0.688167 + + 11.1769 + 0 + 2.51248 + + + 138.361 + 497.139 + 630.852 + 8.67362e-19 + -32.5161 + 3.46945e-18 + + + + + + + + 26.4841 + 9.26943 + + 11.1448 + 0 + 2.5497 + + + 37103.2 + 303.429 + 37377.5 + 7.10543e-15 + 25.6676 + 5.06262e-14 + + + + + 11.5749 + 4.05122 + + 11.1768 + 0 + 2.58039 + + + 16287.2 + 154.824 + 16424.4 + 0 + 35.3908 + 0 + + + + + 11.5749 + 4.05122 + + 11.1768 + 0 + 2.58039 + + + 16287.2 + 154.824 + 16424.4 + 0 + 35.3908 + 0 + + + + + + + 14.9092 + 5.21821 + + 11.1199 + 0 + 2.52588 + + + 20816 + 148.565 + 20953.1 + 7.10543e-15 + -9.74337 + 5.06262e-14 + + + + + 14.9092 + 5.21821 + + 11.1199 + 0 + 2.52588 + + + 20816 + 148.565 + 20953.1 + 7.10543e-15 + -9.74337 + 5.06262e-14 + + + + + + + + 12.0267 + 2.90461 + + 11.0972 + 0 + 2.55349 + + + 114063 + 11.6268 + 114068 + 2.08167e-17 + -3.23741 + -1.9082e-17 + + + + + 12.0267 + 2.90461 + + 11.0972 + 0 + 2.55349 + + + 114063 + 11.6268 + 114068 + 2.08167e-17 + -3.23741 + -1.9082e-17 + + + + + + Flap_FrontSpar + + 3.7055 + 0.741101 + + 11.0965 + 0 + 2.55324 + + + 234.109 + 1.66211 + 232.454 + 2.08167e-17 + -0.000932384 + -1.9082e-17 + + + + + + + Flap_FrontSpar + + 4.16057 + 1.08175 + + 11.0974 + 0 + 2.59812 + + + 56913.3 + 4.11913 + 56917.3 + 0 + -0.549889 + 0 + + + + + + + Flap_FrontSpar + + 4.16064 + 1.08177 + + 11.0974 + 0 + 2.50906 + + + 56915.9 + 5.82904 + 56918.1 + 0 + -2.68659 + 0 + + + + + + + + + 21.1078 + 6.62582 + + 11.1792 + 0 + 2.55662 + + + 50566.5 + 434.277 + 50972.6 + 1.73646e-15 + 31.0037 + 1.2182e-15 + + + + + 2.3721 + 0.602891 + + 11.1974 + 0 + 2.55546 + + + 371.001 + 341.145 + 692.935 + -2.60209e-17 + 23.8044 + 1.21647e-15 + + + + + 2.3721 + 0.602891 + + 11.1974 + 0 + 2.55546 + + + 371.001 + 341.145 + 692.935 + -2.60209e-17 + 23.8044 + 1.21647e-15 + + + + + 0.461835 + 0.106222 + + 11.146 + 0 + 2.55886 + + + 70.1269 + 1.89496 + 71.3091 + -2.86229e-17 + 0.104257 + 1.2173e-15 + + + + + + + Ail_Rib + + 0.966187 + 0.251209 + + 11.2096 + 0 + 2.57894 + + + 155.622 + 175.551 + 314.914 + 3.46945e-18 + 36.8333 + -8.67362e-19 + + + + + + + Ail_Rib + + 0.944076 + 0.24546 + + 11.2095 + 0 + 2.52979 + + + 145.25 + 163.696 + 306.71 + -8.67362e-19 + -13.1331 + 3.38813e-20 + + + + + + + + 13.6253 + 4.76885 + + 11.1862 + 0 + 2.55623 + + + 11001.7 + 86.4051 + 11081 + 1.77636e-15 + 6.07078 + 0 + + + + + 5.95583 + 2.08454 + + 11.2095 + 0 + 2.57899 + + + 4826.36 + 43.714 + 4865.94 + 0 + 9.23029 + 0 + + + + + 5.95583 + 2.08454 + + 11.2095 + 0 + 2.57899 + + + 4826.36 + 43.714 + 4865.94 + 0 + 9.23029 + 0 + + + + + + + 7.66944 + 2.68431 + + 11.1681 + 0 + 2.53856 + + + 6175.3 + 42.6799 + 6215.02 + 1.77636e-15 + -3.16512 + 0 + + + + + 7.66944 + 2.68431 + + 11.1681 + 0 + 2.53856 + + + 6175.3 + 42.6799 + 6215.02 + 1.77636e-15 + -3.16512 + 0 + + + + + + + + 5.11044 + 1.25408 + + 11.1505 + 0 + 2.55827 + + + 39193.8 + 6.72136 + 39198.7 + -1.38778e-17 + 1.12882 + 1.73472e-18 + + + + + 5.11044 + 1.25408 + + 11.1505 + 0 + 2.55827 + + + 39193.8 + 6.72136 + 39198.7 + -1.38778e-17 + 1.12882 + 1.73472e-18 + + + + + + Ail_FrontSpar + + 1.24391 + 0.248782 + + 11.1498 + 0 + 2.55841 + + + 205.341 + 0.439636 + 204.906 + -1.38778e-17 + 0.00041315 + 1.73472e-18 + + + + + + + Ail_FrontSpar + + 1.93328 + 0.502652 + + 11.1508 + 0 + 2.5904 + + + 19494.6 + 3.37058 + 19497 + 0 + 1.16108 + 0 + + + + + + + Ail_FrontSpar + + 1.93325 + 0.502646 + + 11.1508 + 0 + 2.52606 + + + 19493.9 + 2.90714 + 19496.8 + 0 + -0.0326721 + 0 + + + + + + + + + + + + + 10.4251 + 3.44029 + + 11.0561 + 0 + 2.99167 + + + 3830.59 + 1079.18 + 3716.89 + -6.82787e-15 + -283.803 + 4.69069e-15 + + + + + 10.4251 + 3.44029 + + 11.0561 + 0 + 2.99167 + + + 3830.59 + 1079.18 + 3716.89 + -6.82787e-15 + -283.803 + 4.69069e-15 + + + + + 10.4251 + 3.44029 + + 11.0561 + 0 + 2.99167 + + + 3830.59 + 1079.18 + 3716.89 + -6.82787e-15 + -283.803 + 4.69069e-15 + + + + + 5.04333 + 1.6643 + + 11.0651 + 0 + 3.02711 + + + 1828.3 + 499.749 + 1785.32 + 0 + -122.33 + 0 + + + + + 5.04333 + 1.6643 + + 11.0651 + 0 + 3.02711 + + + 1828.3 + 499.749 + 1785.32 + 0 + -122.33 + 0 + + + + + + + 5.38181 + 1.776 + + 11.0477 + 0 + 2.95845 + + + 2002.28 + 579.418 + 1931.57 + -6.82787e-15 + -161.476 + 4.69069e-15 + + + + + 5.38181 + 1.776 + + 11.0477 + 0 + 2.95845 + + + 2002.28 + 579.418 + 1931.57 + -6.82787e-15 + -161.476 + 4.69069e-15 + + + + + + + + + + + + 109.52 + 31.7257 + + 15.8777 + 0 + 5.37899 + + + 86882.8 + 8113.07 + 94861.3 + 3.86336e-13 + -322.945 + 4.9926e-14 + + + + + 109.52 + 31.7257 + + 15.8777 + 0 + 5.37899 + + + 86882.8 + 8113.07 + 94861.3 + 3.86336e-13 + -322.945 + 4.9926e-14 + + + + + 109.52 + 31.7257 + + 15.8777 + 0 + 5.37899 + + + 86882.8 + 8113.07 + 94861.3 + 3.86336e-13 + -322.945 + 4.9926e-14 + + + + + 94.8736 + 27.085 + + 15.8006 + 0 + 5.37492 + + + 79395.6 + 7340.99 + 86625.1 + 4.4858e-13 + -275.861 + 5.05258e-14 + + + + + 74.0031 + 22.3384 + + 15.8007 + 0 + 5.37478 + + + 52893.2 + 2519.9 + 55372.5 + 4.53644e-13 + -82.8366 + 5.06934e-14 + + + + + 36.9456 + 11.1507 + + 15.7967 + 0 + 5.43521 + + + 26441.5 + 1263.55 + 27698 + 1.68456e-13 + 56.0138 + 7.16528e-15 + + + + + 3.80298 + 1.25498 + + 15.7282 + 0 + 5.40792 + + + 30.1274 + 36.0501 + 65.2561 + -1.11022e-16 + -0.713892 + 0 + + + + + + 12.3148 + 4.06388 + + 15.7841 + 0 + 5.43876 + + + 64.4206 + 7.4159 + 71.7829 + -1.96371e-15 + -0.123196 + 5.9848e-17 + + + + + + 20.8278 + 5.83179 + + 15.8175 + 0 + 5.4382 + + + 26346.9 + 1220.05 + 27560.9 + 1.7053e-13 + 56.843 + 7.10543e-15 + + + + + + + 37.0575 + 11.1877 + + 15.8046 + 0 + 5.31453 + + + 26451.4 + 1256.08 + 27674.6 + 2.85188e-13 + -138.833 + 4.35281e-14 + + + + + 3.91401 + 1.29162 + + 15.7683 + 0 + 5.34579 + + + 31.2759 + 35.5762 + 64.9501 + 1.19306e-15 + -2.99088 + 2.22804e-14 + + + + + + 12.3183 + 4.06505 + + 15.7848 + 0 + 5.30931 + + + 64.099 + 7.43225 + 71.4217 + -2.22045e-16 + -0.383013 + -6.85216e-17 + + + + + + 20.8252 + 5.83106 + + 15.8239 + 0 + 5.31164 + + + 26356.1 + 1213.05 + 27538.2 + 2.84217e-13 + -135.455 + 2.13163e-14 + + + + + + + + 13.9752 + 3.17695 + + 15.8123 + 0 + 5.37604 + + + 26463.3 + 1444.08 + 27888.9 + -2.02963e-16 + -47.3337 + -1.51788e-18 + + + + + 7.08654 + 1.61275 + + 15.5465 + 0 + 5.36389 + + + 13492.9 + 1279.88 + 14760.9 + -1.66533e-16 + -45.2003 + -1.73472e-18 + + + + + + HTP_Spar1 + + 1.46697 + 0.264054 + + 15.5137 + 0 + 5.36274 + + + 20.3688 + 3.11042 + 20.5138 + -1.66533e-16 + -0.0478734 + -1.73472e-18 + + + + + + + HTP_Spar1 + + 2.80938 + 0.674251 + + 15.5546 + 0 + 5.4164 + + + 6733.16 + 636.157 + 7369.14 + 0 + 7.42958 + 0 + + + + + + + HTP_Spar1 + + 2.81019 + 0.674446 + + 15.5546 + 0 + 5.31197 + + + 6739.36 + 640.6 + 7371.27 + 0 + -52.5821 + 0 + + + + + + + 6.88865 + 1.5642 + + 16.0859 + 0 + 5.38853 + + + 12970.4 + 163.181 + 13127 + -3.64292e-17 + -2.17977 + 2.1684e-19 + + + + + + HTP_Spar2 + + 1.48463 + 0.267234 + + 16.0773 + 0 + 5.38842 + + + 17.1763 + 1.75465 + 15.7621 + -3.64292e-17 + 3.4017e-05 + 2.1684e-19 + + + + + + + HTP_Spar2 + + 2.70196 + 0.64847 + + 16.0882 + 0 + 5.44351 + + + 6476.25 + 80.4823 + 6555.5 + 0 + 7.01565 + 0 + + + + + + + HTP_Spar2 + + 2.70205 + 0.648492 + + 16.0882 + 0 + 5.33362 + + + 6476.92 + 80.9275 + 6555.73 + 0 + -9.19546 + 0 + + + + + + + + 6.8953 + 1.56972 + + 15.7755 + 0 + 5.37431 + + + 39.1478 + 3377 + 3363.62 + -4.86026e-15 + -145.691 + -1.66085e-16 + + + + + 6.01902 + 1.36758 + + 15.6868 + 0 + 5.3703 + + + 32.7858 + 3198.42 + 3183.8 + -4.86156e-15 + -134.826 + -1.66371e-16 + + + + + 2.56611 + 0.538883 + + 15.6948 + 0 + 5.37067 + + + 7.98464 + 82.8838 + 81.6373 + -4.88238e-15 + -3.61319 + -1.64853e-16 + + + + + + + HTPCS12RibsA + + 1.73105 + 0.415452 + + 15.6799 + 0 + 5.42591 + + + 18.2622 + 1570.47 + 1557.94 + 2.08167e-17 + -141.45 + -2.38524e-18 + + + + + + + HTPCS12RibsA + + 1.72186 + 0.413246 + + 15.6823 + 0 + 5.31385 + + + 6.52819 + 1545.05 + 1544.22 + 0 + 10.2378 + 8.67362e-19 + + + + + + + 0.143607 + 0.0301576 + + 16.2001 + 0 + 5.39963 + + + 0.200258 + 6.01705 + 5.83327 + 0 + -0.351718 + 0 + + + + + 0.143607 + 0.0301576 + + 16.2001 + 0 + 5.39963 + + + 0.200258 + 6.01705 + 5.83327 + 0 + -0.351718 + 0 + + + + + + + 0.732666 + 0.171978 + + 16.4178 + 0 + 5.40221 + + + 6.16096 + 172.183 + 173.618 + 1.30104e-18 + -10.5304 + 2.85768e-19 + + + + + 0.128728 + 0.027033 + + 16.3537 + 0 + 5.39837 + + + 0.741729 + 2.38012 + 2.9697 + 0 + -0.133056 + 1.47172e-20 + + + + + + + HTPCS12Ribs_TE2 + + 0.300193 + 0.0720464 + + 16.431 + 0 + 5.42463 + + + 1.67548 + 83.4046 + 84.842 + -6.50521e-19 + 3.11145 + 0 + + + + + + + HTPCS12Ribs_TE2 + + 0.303744 + 0.0728986 + + 16.4313 + 0 + 5.38164 + + + 3.74347 + 86.3977 + 85.8052 + 1.95156e-18 + -13.5088 + 2.71051e-19 + + + + + + + + + 14.646 + 4.64061 + + 16.3655 + 0 + 5.40476 + + + 7487.22 + 768.026 + 8232.12 + -6.22443e-14 + -47.2977 + -5.99781e-16 + + + + + 14.646 + 4.64061 + + 16.3655 + 0 + 5.40476 + + + 7487.22 + 768.026 + 8232.12 + -6.22443e-14 + -47.2977 + -5.99781e-16 + + + + + 14.646 + 4.64061 + + 16.3655 + 0 + 5.40476 + + + 7487.22 + 768.026 + 8232.12 + -6.22443e-14 + -47.2977 + -5.99781e-16 + + + + + 14.646 + 4.64061 + + 16.3655 + 0 + 5.40476 + + + 7487.22 + 768.026 + 8232.12 + -6.22443e-14 + -47.2977 + -5.99781e-16 + + + + + 2.11196 + 0.536846 + + 16.3816 + 0 + 5.40581 + + + 12.1556 + 618.735 + 613.155 + -6.31394e-14 + -39.7295 + -6.0737e-16 + + + + + 2.11196 + 0.536846 + + 16.3816 + 0 + 5.40581 + + + 12.1556 + 618.735 + 613.155 + -6.31394e-14 + -39.7295 + -6.0737e-16 + + + + + 0.408809 + 0.0940261 + + 16.3095 + 0 + 5.40141 + + + 0.906844 + 3.07933 + 3.40158 + -6.31507e-14 + -0.17642 + -6.0737e-16 + + + + + + + TED5_R3 + + 0.846163 + 0.220002 + + 16.3984 + 0 + 5.43116 + + + 1.70848 + 301.932 + 302.88 + -2.60209e-18 + 10.4787 + 0 + + + + + + + TED5_R3 + + 0.856991 + 0.222818 + + 16.3986 + 0 + 5.38283 + + + 9.53932 + 313.72 + 306.87 + 1.38778e-17 + -50.0319 + 0 + + + + + + + + 9.82847 + 3.43996 + + 16.3753 + 0 + 5.40548 + + + 1803.25 + 133.509 + 1932.09 + 8.88178e-16 + -8.12233 + 6.93889e-18 + + + + + 4.40766 + 1.54268 + + 16.398 + 0 + 5.43123 + + + 815.073 + 64.4938 + 879.344 + 0 + 2.3883 + 0 + + + + + 4.40766 + 1.54268 + + 16.398 + 0 + 5.43123 + + + 815.073 + 64.4938 + 879.344 + 0 + 2.3883 + 0 + + + + + + + 5.42081 + 1.89728 + + 16.3569 + 0 + 5.38454 + + + 988.17 + 69.0063 + 1052.74 + 8.88178e-16 + -10.5153 + 6.93889e-18 + + + + + 5.42081 + 1.89728 + + 16.3569 + 0 + 5.38454 + + + 988.17 + 69.0063 + 1052.74 + 8.88178e-16 + -10.5153 + 6.93889e-18 + + + + + + + + 2.70562 + 0.663797 + + 16.3139 + 0 + 5.40108 + + + 5671.82 + 15.7726 + 5686.87 + 6.93889e-18 + 0.553467 + 6.50521e-19 + + + + + 2.70562 + 0.663797 + + 16.3139 + 0 + 5.40108 + + + 5671.82 + 15.7726 + 5686.87 + 6.93889e-18 + 0.553467 + 6.50521e-19 + + + + + + TED5_FrontSpar + + 0.661058 + 0.132212 + + 16.3124 + 0 + 5.40113 + + + 6.46223 + 0.248307 + 6.24295 + 6.93889e-18 + 0.000424163 + 6.50521e-19 + + + + + + + TED5_FrontSpar + + 1.02229 + 0.265795 + + 16.3143 + 0 + 5.43339 + + + 2832.75 + 7.80697 + 2840.34 + 0 + 0.91462 + 0 + + + + + + + TED5_FrontSpar + + 1.02227 + 0.26579 + + 16.3143 + 0 + 5.36873 + + + 2832.61 + 7.71516 + 2840.29 + 0 + -0.361577 + 0 + + + + + + + + + + + + + + + 58.5811 + 16.4147 + + 15.0806 + 0 + 4.38311 + + + 23038.2 + 36225 + 13286.2 + -0.030892 + -12352.5 + -0.00302241 + + + + + 58.5811 + 16.4147 + + 15.0806 + 0 + 4.38311 + + + 23038.2 + 36225 + 13286.2 + -0.030892 + -12352.5 + -0.00302241 + + + + + 58.5811 + 16.4147 + + 15.0806 + 0 + 4.38311 + + + 23038.2 + 36225 + 13286.2 + -0.030892 + -12352.5 + -0.00302241 + + + + + 53.5367 + 14.8471 + + 15.0163 + 0 + 4.38397 + + + 21580.5 + 34321.8 + 12833.9 + 0.0350423 + -11757.2 + -0.00302008 + + + + + 36.0755 + 10.9916 + + 15.0454 + 0 + 4.40495 + + + 14360.8 + 18689.6 + 4344.71 + 0.0350995 + -7825.65 + -0.00302016 + + + + + 18.05 + 5.49984 + + 15.0451 + -0.0874337 + 4.40559 + + + 7180.26 + 9344.87 + 2172.26 + -81.9631 + -3912.83 + -151.276 + + + + + 1.79221 + 0.591431 + + 14.7914 + -0.0542642 + 4.42806 + + + 8.4317 + 24.7887 + 17.5197 + 1.09528 + -4.26129 + -0.109416 + + + + + + 7.12469 + 2.35115 + + 15.0694 + -0.0895425 + 4.38771 + + + 18.7228 + 30.8566 + 12.2156 + -0.383037 + -8.36118 + -0.314611 + + + + + + 9.13307 + 2.55726 + + 15.0771 + -0.0924877 + 4.4155 + + + 7153.1 + 9289.09 + 2142.39 + -82.6584 + -3900.2 + -150.853 + + + + + + + 18.0255 + 5.49176 + + 15.0458 + 0.0874677 + 4.40431 + + + 7180.23 + 9344.77 + 2172.17 + 81.9971 + -3912.82 + 151.275 + + + + + 1.76774 + 0.583354 + + 14.7947 + 0.0541452 + 4.41565 + + + 8.39675 + 24.6927 + 17.4433 + -1.06091 + -4.26141 + 0.107656 + + + + + + 7.12469 + 2.35115 + + 15.0694 + 0.0895425 + 4.38771 + + + 18.7228 + 30.8566 + 12.2156 + 0.383037 + -8.36118 + 0.314611 + + + + + + 9.13307 + 2.55726 + + 15.0771 + 0.0924877 + 4.4155 + + + 7153.1 + 9289.09 + 2142.39 + 82.6584 + -3900.2 + 150.853 + + + + + + + + 8.40842 + 1.80309 + + 15.0095 + 0 + 4.38663 + + + 7183.88 + 9393.08 + 2221.52 + 4.04405e-08 + -3933.6 + 8.87126e-08 + + + + + 4.74018 + 1.00341 + + 14.6235 + 0 + 4.38514 + + + 3729.29 + 5220.91 + 1500.83 + 1.09068e-12 + -2359.9 + 1.40687e-12 + + + + + + VTP_Spar1 + + 2.23722 + 0.402699 + + 14.6009 + 0 + 4.34945 + + + 12.9666 + 13.8144 + 7.07014 + 2.21667e-15 + -5.44034 + 3.61037e-15 + + + + + + + VTP_Spar1 + + 1.25148 + 0.300356 + + 14.6428 + -0.0893953 + 4.4155 + + + 1858.15 + 2603.55 + 746.867 + -23.4164 + -1177.23 + -36.946 + + + + + + + VTP_Spar1 + + 1.25148 + 0.300356 + + 14.6428 + 0.0893953 + 4.4155 + + + 1858.15 + 2603.55 + 746.867 + 23.4164 + -1177.23 + 36.946 + + + + + + + 3.66823 + 0.799679 + + 15.5058 + 0 + 4.38855 + + + 3454.59 + 4170.56 + 719.085 + 4.04394e-08 + -1573.7 + 8.87112e-08 + + + + + + VTP_Spar2 + + 1.34495 + 0.242092 + + 15.4835 + 0 + 4.33964 + + + 5.68047 + 5.90059 + 1.81022 + 2.43572e-10 + -1.87831 + 5.34315e-10 + + + + + + + VTP_Spar2 + + 1.16164 + 0.278794 + + 15.518 + -0.0578955 + 4.4155 + + + 1724.45 + 2082.33 + 358.633 + -11.6273 + -785.912 + -25.507 + + + + + + + VTP_Spar2 + + 1.16164 + 0.278794 + + 15.518 + 0.0578955 + 4.4155 + + + 1724.45 + 2082.33 + 358.633 + 11.6273 + -785.912 + 25.507 + + + + + + + + 9.05285 + 2.05238 + + 14.8989 + 0 + 4.29262 + + + 35.7438 + 6238.82 + 6267.54 + -5.71745e-05 + 1.97434 + -1.14823e-08 + + + + + 8.62561 + 1.95282 + + 14.86 + 0 + 4.29428 + + + 33.8048 + 6118.25 + 6145.44 + 1.89661e-06 + 1.9043 + -1.41856e-10 + + + + + 3.91082 + 0.821272 + + 14.846 + 0 + 4.24645 + + + 12.6183 + 205.091 + 214.794 + 4.64348e-06 + 0.834664 + -8.3507e-16 + + + + + + + VTP_Ribs + + 2.3574 + 0.565775 + + 14.8714 + -0.0836593 + 4.33299 + + + 10.5688 + 2956.57 + 2965.31 + 42.7651 + 0.532469 + 0.0170694 + + + + + + + VTP_Ribs + + 2.3574 + 0.565775 + + 14.8714 + 0.0836593 + 4.33299 + + + 10.5688 + 2956.57 + 2965.31 + -42.7651 + 0.532469 + -0.0170694 + + + + + + + 0.427237 + 0.0995538 + + 15.6799 + 0 + 4.25927 + + + 1.93855 + 120.295 + 121.827 + -5.90711e-05 + 0.0817246 + -1.13404e-08 + + + + + 0.0994393 + 0.0208822 + + 15.5795 + 0 + 4.16667 + + + 0.15179 + 2.6418 + 2.70628 + -5.07742e-05 + 0.0180551 + 0 + + + + + + + Rudder_ribs + + 0.163899 + 0.0393358 + + 15.7096 + -0.0305425 + 4.28668 + + + 0.892677 + 58.8254 + 59.5593 + -6.91105 + 0.0312391 + 0.000600185 + + + + + + + Rudder_ribs + + 0.163899 + 0.0393358 + + 15.7096 + 0.0305425 + 4.28668 + + + 0.892675 + 58.8254 + 59.5593 + 6.91105 + 0.0312391 + -0.000600197 + + + + + + + + + 5.04436 + 1.56763 + + 15.7454 + 0 + 4.37414 + + + 1457.7 + 1900.75 + 449.826 + -0.0659343 + -595.341 + -2.32209e-06 + + + + + 5.04436 + 1.56763 + + 15.7454 + 0 + 4.37414 + + + 1457.7 + 1900.75 + 449.826 + -0.0659343 + -595.341 + -2.32209e-06 + + + + + 5.04436 + 1.56763 + + 15.7454 + 0 + 4.37414 + + + 1457.7 + 1900.75 + 449.826 + -0.0659343 + -595.341 + -2.32209e-06 + + + + + 5.04436 + 1.56763 + + 15.7454 + 0 + 4.37414 + + + 1457.7 + 1900.75 + 449.826 + -0.0659343 + -595.341 + -2.32209e-06 + + + + + 0.887625 + 0.225366 + + 15.7705 + 0 + 4.38937 + + + 2.62276 + 175.21 + 177.695 + -0.0659351 + 0.0274942 + -1.88894e-06 + + + + + 0.887625 + 0.225366 + + 15.7705 + 0 + 4.38937 + + + 2.62276 + 175.21 + 177.695 + -0.0659351 + 0.0274942 + -1.88894e-06 + + + + + 0.180563 + 0.0415294 + + 15.7092 + 0 + 4.37154 + + + 0.144263 + 0.923178 + 1.03967 + -1.62354e-05 + 0.00567372 + -8.6854e-22 + + + + + + + TED4_R3 + + 0.354274 + 0.0921113 + + 15.7863 + -0.0256967 + 4.39422 + + + 1.24293 + 87.4234 + 88.611 + -10.3051 + 0.0108374 + 0.000202418 + + + + + + + TED4_R3 + + 0.352789 + 0.091725 + + 15.7853 + 0.0257768 + 4.3934 + + + 1.23503 + 86.8628 + 88.0427 + 10.2392 + 0.0107374 + -0.00019673 + + + + + + + + 3.08594 + 1.08008 + + 15.7467 + 0 + 4.36014 + + + 289.528 + 361.83 + 73.5327 + 8.13692e-07 + -114.594 + -4.31848e-07 + + + + + 1.3327 + 0.466445 + + 15.778 + -0.0259101 + 4.37457 + + + 127.93 + 160.487 + 32.9403 + -1.92725 + -49.8092 + -0.912539 + + + + + 1.3327 + 0.466445 + + 15.778 + -0.0259101 + 4.37457 + + + 127.93 + 160.487 + 32.9403 + -1.92725 + -49.8092 + -0.912539 + + + + + + + 1.75324 + 0.613634 + + 15.7229 + 0.0196952 + 4.34917 + + + 161.596 + 201.341 + 40.5884 + 1.92915 + -64.7855 + 0.913415 + + + + + 1.75324 + 0.613634 + + 15.7229 + 0.0196952 + 4.34917 + + + 161.596 + 201.341 + 40.5884 + 1.92915 + -64.7855 + 0.913415 + + + + + + + + 1.0708 + 0.262181 + + 15.7205 + 0 + 4.4052 + + + 1165.54 + 1363.7 + 198.598 + -5.40229e-10 + -480.774 + -1.30914e-09 + + + + + 1.0708 + 0.262181 + + 15.7205 + 0 + 4.4052 + + + 1165.54 + 1363.7 + 198.598 + -5.40229e-10 + -480.774 + -1.30914e-09 + + + + + + TED4_FrontSpar + + 0.27043 + 0.054086 + + 15.7073 + 0 + 4.37321 + + + 1.30429 + 1.40144 + 0.310584 + 5.84218e-10 + -0.463008 + 1.41596e-09 + + + + + + + TED4_FrontSpar + + 0.400183 + 0.104048 + + 15.7248 + -0.0337897 + 4.4155 + + + 582.119 + 681.15 + 99.143 + -2.35937 + -240.156 + -5.71839 + + + + + + + TED4_FrontSpar + + 0.400183 + 0.104048 + + 15.7248 + 0.0337897 + 4.4155 + + + 582.119 + 681.15 + 99.143 + 2.35937 + -240.156 + 5.71839 + + + + + + + + + + + + + + + + 706.17 + 213.688 + + 8.94458 + 0.0010002 + 3.06211 + + + 241080 + 142801 + 137042 + 4.23883 + -44.9011 + 13.6489 + + + + + 706.17 + 213.688 + + 8.94458 + 0.0010002 + 3.06211 + + + 241080 + 142801 + 137042 + 4.23883 + -44.9011 + 13.6489 + + + + + 297.254 + 98.0939 + + 8.80866 + 0 + 3.12161 + + + 1847.53 + 5252.15 + 5213.02 + 0.18521 + -13.5921 + 11.913 + + + + + 297.254 + 98.0939 + + 8.80866 + 0 + 3.12161 + + + 1847.53 + 5252.15 + 5213.02 + 0.18521 + -13.5921 + 11.913 + + + + + + + 21.9494 + 7.24332 + + 8.61297 + 0 + 3.11629 + + + 4540.4 + 2627.8 + 2464.53 + 0 + -2.36616 + 1.33238 + + + + + 2.39564 + 0.790561 + + 3.345 + 0 + 3.13106 + + + 258.765 + 149.329 + 109.437 + 0 + 0 + 0.0546966 + + + + + + 5.94106 + 1.96055 + + 5.015 + 0 + 3.21076 + + + 1604.91 + 940.83 + 664.075 + 0 + 0 + 0.427104 + + + + + + 5.39486 + 1.7803 + + 9.405 + 0 + 3.02862 + + + 1313.9 + 615.325 + 698.578 + 0 + 0 + 0.588759 + + + + + + 4.75646 + 1.56963 + + 10.975 + 0 + 3.06368 + + + 1016.58 + 481.653 + 534.925 + 0 + 0 + 0.184135 + + + + + + 2.66746 + 0.880263 + + 13.375 + 0 + 3.13363 + + + 318.296 + 150.766 + 167.53 + 0 + 0 + 0.0776191 + + + + + + 0.793966 + 0.262009 + + 15.9 + 0 + 3.21739 + + + 27.8341 + 13.8151 + 14.0191 + 0 + 0 + 6.90539e-05 + + + + + + + 232.345 + 65.0565 + + 9.31198 + 0.00309359 + 2.93801 + + + 187.002 + 12411.5 + 12396.8 + 3.7914 + -14.1749 + 0.491968 + + + + + 12.9476 + 3.62533 + + 9.25285 + 0.367939 + 3.74596 + + + 8.97948 + 1016.54 + 1012.43 + 9.61722 + 6.15953 + -3.46872 + + + + + + 12.8364 + 3.5942 + + 9.31198 + 0.637795 + 3.47791 + + + 5.06192 + 1005.66 + 1008.29 + 11.5497 + -3.87135 + -1.63602 + + + + + + 12.8072 + 3.58602 + + 9.3223 + 0.657829 + 3.18343 + + + 3.98893 + 989.074 + 992.351 + 9.79505 + -4.7111 + -0.560931 + + + + + + 12.8092 + 3.58659 + + 9.32555 + 0.656466 + 2.94453 + + + 4.11327 + 989.255 + 992.559 + 10.3452 + -8.46822 + 0.567345 + + + + + + 58.2849 + 16.3198 + + 9.32837 + 0.404137 + 2.48346 + + + 9.07453 + 1685.35 + 1681.52 + 2.13934 + -0.924354 + 1.49162 + + + + + + 58.2849 + 16.3198 + + 9.32837 + -0.404137 + 2.48346 + + + 9.07453 + 1685.35 + 1681.52 + -2.13934 + -0.924354 + -1.49162 + + + + + + 12.8092 + 3.58659 + + 9.32555 + -0.656466 + 2.94453 + + + 4.11327 + 989.255 + 992.559 + -10.3452 + -8.46822 + -0.567345 + + + + + + 12.8072 + 3.58601 + + 9.32232 + -0.657829 + 3.1831 + + + 3.98703 + 989.07 + 992.348 + -9.79537 + -4.73644 + 0.557598 + + + + + + 12.8553 + 3.59948 + + 9.30322 + -0.618956 + 3.54033 + + + 5.77576 + 993.431 + 994.717 + -11.132 + 1.70907 + 2.26947 + + + + + + 12.9532 + 3.6269 + + 9.25004 + -0.33006 + 3.75348 + + + 9.36971 + 1003.5 + 998.055 + -6.29581 + 6.20388 + 3.33748 + + + + + + 12.9493 + 3.62581 + + 9.24696 + 0 + 3.77525 + + + 8.81615 + 1004.63 + 995.81 + -1.03346e-13 + 6.70349 + 4.28792e-15 + + + + + + + 154.622 + 43.2942 + + 8.71292 + 0 + 3.12172 + + + 234499 + 122457 + 116920 + -6.18453e-11 + 0.758952 + -6.506e-05 + + + + + 1.69264 + 0.473938 + + 2.63 + 0 + 3.00048 + + + 308.414 + 140.298 + 168.116 + -5.12024e-13 + 9.9476e-12 + 2.01594e-07 + + + + + + 2.14816 + 0.601486 + + 2.75 + 0 + 3.02573 + + + 631.728 + 310.348 + 321.381 + 1.16668e-12 + -1.98952e-11 + 1.16514e-06 + + + + + + 2.60695 + 0.729946 + + 2.91 + 0 + 3.05817 + + + 1127.73 + 584.552 + 543.176 + -1.80384e-13 + 0 + -6.74023e-07 + + + + + + 3.14125 + 0.879551 + + 3.11 + 0 + 3.09448 + + + 1965.43 + 1059.49 + 905.932 + 1.59004e-12 + -1.09424e-10 + 2.20579e-07 + + + + + + 3.7165 + 1.04062 + + 3.345 + 0 + 3.13079 + + + 3238.28 + 1794.32 + 1443.96 + -6.16792e-13 + 0 + 5.52929e-07 + + + + + + 4.30047 + 1.20413 + + 3.615 + 0 + 3.16406 + + + 4989.43 + 2815.19 + 2174.23 + 4.33232e-12 + 0 + 6.3807e-07 + + + + + + 4.83774 + 1.35457 + + 3.91 + 0 + 3.1904 + + + 7069.73 + 4028.82 + 3040.91 + -4.52973e-13 + 1.98952e-11 + 2.17597e-05 + + + + + + 5.32139 + 1.48999 + + 4.25 + 0 + 3.2087 + + + 9382.16 + 5362.42 + 4019.74 + -2.65812e-12 + -1.59162e-10 + -6.91487e-07 + + + + + + 5.68336 + 1.59134 + + 4.62 + 0 + 3.21563 + + + 11432.9 + 6505.1 + 4927.8 + 1.39769e-11 + 7.95808e-11 + -3.97264e-06 + + + + + + 5.89755 + 1.65131 + + 5.015 + 0 + 3.2108 + + + 12816.9 + 7206.42 + 5610.46 + 1.00513e-12 + -1.19371e-10 + -4.2873e-05 + + + + + + 5.98364 + 1.67542 + + 5.435 + 0 + 3.19471 + + + 13430.7 + 7416.44 + 6014.22 + 2.20982e-12 + 7.95808e-11 + 8.22247e-06 + + + + + + 5.97902 + 1.67413 + + 5.88 + 0 + 3.16886 + + + 13410.8 + 7238.45 + 6172.34 + 5.00671e-13 + -3.18323e-10 + -7.71957e-07 + + + + + + 5.91789 + 1.65701 + + 6.345 + 0 + 3.13676 + + + 12980.4 + 6822.84 + 6157.52 + 7.75329e-12 + 2.78533e-10 + 8.40341e-06 + + + + + + 5.84118 + 1.63553 + + 6.825 + 0 + 3.10277 + + + 12427.9 + 6350.22 + 6077.71 + -1.56948e-11 + 0 + 9.17622e-06 + + + + + + 5.78263 + 1.61914 + + 7.325 + 0 + 3.07077 + + + 11978.6 + 5955.12 + 6023.52 + -6.51381e-12 + -1.98952e-10 + -3.49211e-05 + + + + + + 5.75148 + 1.61041 + + 7.835 + 0 + 3.04623 + + + 11709.1 + 5695.59 + 6013.49 + -1.9529e-11 + 0 + -1.29469e-05 + + + + + + 5.73487 + 1.60576 + + 8.35231 + 0 + 3.032 + + + 11563 + 5549.25 + 6013.79 + 2.38503e-11 + 1.59162e-10 + 1.41088e-06 + + + + + + 5.71472 + 1.60012 + + 8.875 + 0 + 3.02777 + + + 11438 + 5458.35 + 5979.67 + -1.65481e-11 + 2.38742e-10 + -4.18904e-06 + + + + + + 5.65746 + 1.58409 + + 9.405 + 0 + 3.03301 + + + 11133 + 5314.44 + 5818.53 + 1.25819e-11 + -7.95808e-11 + 6.74315e-06 + + + + + + 5.55614 + 1.55572 + + 10.025 + 0 + 3.04472 + + + 10603.1 + 5078.19 + 5524.89 + 1.42246e-11 + 0 + 1.24909e-05 + + + + + + 5.45008 + 1.52602 + + 10.46 + 0 + 3.05469 + + + 10043.5 + 4821.49 + 5222 + -1.49958e-11 + 4.77485e-10 + -3.14368e-06 + + + + + + 5.27138 + 1.47599 + + 10.975 + 0 + 3.06835 + + + 9123.18 + 4389.97 + 4733.21 + -2.66307e-11 + 2.38742e-10 + -3.8924e-06 + + + + + + 5.04672 + 1.41308 + + 11.485 + 0 + 3.08249 + + + 8032.9 + 3870.34 + 4162.57 + -2.74429e-11 + -5.57066e-10 + 3.276e-06 + + + + + + 4.78574 + 1.34001 + + 11.985 + 0 + 3.09669 + + + 6869.57 + 3310.66 + 3558.91 + -1.42729e-11 + -3.18323e-10 + -7.05073e-07 + + + + + + 4.50486 + 1.26136 + + 12.465 + 0 + 3.11062 + + + 5742.79 + 2766.26 + 2976.53 + -2.10911e-11 + -7.95808e-11 + 2.98223e-06 + + + + + + 4.21238 + 1.17947 + + 12.93 + 0 + 3.12452 + + + 4703.85 + 2263.98 + 2439.87 + -3.157e-12 + 2.38742e-10 + -3.73414e-06 + + + + + + 3.91875 + 1.09725 + + 13.375 + 0 + 3.13811 + + + 3793.63 + 1824.66 + 1968.96 + 3.29874e-12 + 0 + -3.81209e-07 + + + + + + 3.62868 + 1.01603 + + 13.795 + 0 + 3.15067 + + + 3020.06 + 1452.5 + 1567.56 + 1.5132e-11 + 7.95808e-11 + -1.52471e-05 + + + + + + 3.34479 + 0.936541 + + 14.19 + 0 + 3.16209 + + + 2375.24 + 1143.48 + 1231.76 + 1.21364e-11 + 3.97904e-10 + -1.11746e-05 + + + + + + 3.07689 + 0.861529 + + 14.555 + 0 + 3.17269 + + + 1858.69 + 896.813 + 961.876 + -9.29781e-12 + -1.59162e-10 + -3.01671e-06 + + + + + + 2.82561 + 0.791172 + + 14.895 + 0 + 3.18292 + + + 1447.65 + 701.079 + 746.571 + 5.86651e-12 + 2.38742e-10 + 4.33529e-07 + + + + + + 2.60461 + 0.72929 + + 15.195 + 0 + 3.19241 + + + 1139.71 + 554.701 + 585.01 + -1.00056e-13 + -1.59162e-10 + -9.18196e-08 + + + + + + 2.4077 + 0.674157 + + 15.465 + 0 + 3.20148 + + + 904.143 + 442.803 + 461.34 + -1.25572e-12 + -7.95808e-11 + -5.49222e-07 + + + + + + 2.2388 + 0.626864 + + 15.7 + 0 + 3.20987 + + + 729.063 + 359.613 + 369.45 + -2.57102e-12 + -1.98952e-10 + 2.89697e-07 + + + + + + 2.09745 + 0.587286 + + 15.9 + 0 + 3.21743 + + + 600.445 + 298.432 + 302.013 + -2.20142e-12 + -3.58114e-10 + -9.68966e-09 + + + + + + 1.94257 + 0.543921 + + 16.06 + 0 + 3.22497 + + + 477.125 + 235.146 + 241.979 + 4.2518e-12 + 2.38742e-10 + -4.06724e-08 + + + + + + + + + + + 500 + 0 + + 9 + 0 + 2.62 + + + 0 + 0 + 0 + + + 3600.8 + 3125.8 + 6725 + 0 + -50 + 0 + + + + + + + 81.7 + 0 + + 4 + 0 + 2.7 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + + + + + fuseMount_F10_S3 + fuseMount_F10_S6 + fuseMount_F10_S9 + fuseMount_F10_S12 + fuseMount_F5_S3 + fuseMount_F5_S6 + fuseMount_F5_S9 + fuseMount_F5_S12 + + 81.7 + 0 + + 4 + 0 + 2.7 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + + + + + + + 300 + 0 + + 10.25 + 0 + 2.6 + + + 0 + 0 + 0 + + + 3600 + 0 + 3600 + 0 + 0 + 0 + + + + + + + MLG_Mount1 + MLG_Mount2 + MLG_Mount3 + MLG_Mount4 + + 150 + 0 + + 10.25 + 3 + 2.6 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + + + + + + MLG_Mount1 + MLG_Mount2 + MLG_Mount3 + MLG_Mount4 + + 150 + 0 + + 10.25 + -3 + 2.6 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + + + + + + + 0 + 0 + + + + + + 163.40 + + 0 + + 7.600 + 0 + 3.000 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + 0 + 0 + 0 + + + sys_22_2 + sys_22_5 + sys_22_7 + sys_22_10 + sys_19_2 + sys_19_5 + sys_19_7 + sys_19_10 + + + + 400 + + 0 + + 12.650 + 1.500 + 3.550 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + 0 + 0 + 0 + + + Engine_1 + Engine_2 + Engine_3 + + + + 400 + + 0 + + 12.650 + -1.500 + 3.550 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + 0 + 0 + 0 + + + Engine_4 + Engine_5 + Engine_6 + + + + + + + + + + + 0 + 0 + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + + + 35.0 + + 0 + + 12.400 + 0. + 3.000 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + 0 + 0 + 0 + + + sys_35_2 + sys_35_5 + sys_35_7 + sys_35_10 + sys_27_2 + sys_27_5 + sys_27_7 + sys_27_10 + + + + + + 25.0 + + 0 + + 10.000 + 0. + 3.000 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + 0 + 0 + 0 + + + sys_22_2 + sys_22_5 + sys_22_7 + sys_22_10 + sys_27_2 + sys_27_5 + sys_27_7 + sys_27_10 + + + + + + 24.20 + + 0 + + 7.700 + 0 + 3.000 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + 0 + 0 + 0 + + + sys_22_2 + sys_22_5 + sys_22_7 + sys_22_10 + sys_19_2 + sys_19_5 + sys_19_7 + sys_19_10 + + + + + + + 69 + + 0 + + 7.30 + 0 + 3.000 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + 0 + 0 + 0 + + + fuseMount_F2_S3 + fuseMount_F2_S6 + fuseMount_F2_S9 + fuseMount_F2_S12 + fuseMount_F5_S3 + fuseMount_F5_S6 + fuseMount_F5_S9 + fuseMount_F5_S12 + + + + + + + + + 257.5 + + 0 + + 3.300 + 0 + 3.000 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + 0 + 0 + 0 + + + fuseMount_F2_S3 + fuseMount_F2_S6 + fuseMount_F2_S9 + fuseMount_F2_S12 + fuseMount_F5_S3 + fuseMount_F5_S6 + fuseMount_F5_S9 + fuseMount_F5_S12 + + + + + + + 75.0 + + 0 + + 10.000 + 0.3 + 3.100 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + 0 + 0 + 0 + + + sys_22_2 + sys_22_5 + sys_22_7 + sys_22_10 + sys_27_2 + sys_27_5 + sys_27_7 + sys_27_10 + + + + 75.0 + + 0 + + 10.000 + -0.3 + 3.100 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + 0 + 0 + 0 + + + sys_22_2 + sys_22_5 + sys_22_7 + sys_22_10 + sys_27_2 + sys_27_5 + sys_27_7 + sys_27_10 + + + + + + 269.00 + + 0 + + 7.500 + 0 + 3.000 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + 0 + 0 + 0 + + + sys_22_2 + sys_22_5 + sys_22_7 + sys_22_10 + sys_19_2 + sys_19_5 + sys_19_7 + sys_19_10 + + + + + + 649.60 + + 0 + + 4.300 + 0 + 3.200 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + 0 + 0 + 0 + + + fuseMount_F2_S3 + fuseMount_F2_S6 + fuseMount_F2_S9 + fuseMount_F2_S12 + fuseMount_F5_S3 + fuseMount_F5_S6 + fuseMount_F5_S9 + fuseMount_F5_S12 + + + + + + + + + 0 + 0 + + + + + + 0 + 0 + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + + + + + + 0 + 0 + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + + + + + + 0 + 0 + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + + + + + + 0 + 0 + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + + + + + + 0 + 0 + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + + + + + + 0 + 0 + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + + + + + + 0 + 0 + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + + + + + + 0 + 0 + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + + + + + + 0 + 0 + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + + + + + + 0 + 0 + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + + + + + + 0 + 0 + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + + + + + + 0 + 0 + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + + + + + + 0 + 0 + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + + + + + + 0 + 0 + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + + + + + + 0 + 0 + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + + + + + + 0 + 0 + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + + + + + + + + 0 + 0 + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + + + 0 + 0 + + + + + 0 + 0 + + + + + 0 + 0 + + + + + 0 + 0 + + + + + 0 + 0 + + + + + 0 + 0 + + + + + 0 + 0 + + + + + + + 3960 + 0 + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + + + + + 800 + + 0 + + 6.500 + 0 + 3.000 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + 0 + 0 + 0 + + + fuseMount_F10_S3 + fuseMount_F10_S6 + fuseMount_F10_S9 + fuseMount_F10_S12 + fuseMount_F15_S3 + fuseMount_F15_S6 + fuseMount_F15_S9 + fuseMount_F15_S12 + + + + + + 700 + + 0 + + 11.000 + 0 + 3.000 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + 0 + 0 + 0 + + + fuseMount_F26_S3 + fuseMount_F26_S6 + fuseMount_F26_S9 + fuseMount_F26_S12 + fuseMount_F28_S3 + fuseMount_F28_S6 + fuseMount_F28_S9 + fuseMount_F28_S12 + + + + + + 350 + + 0 + + 11.000 + 0 + 3.000 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + 0 + 0 + 0 + + + fuseMount_F26_S3 + fuseMount_F26_S6 + fuseMount_F26_S9 + fuseMount_F26_S12 + fuseMount_F28_S3 + fuseMount_F28_S6 + fuseMount_F28_S9 + fuseMount_F28_S12 + + + + + + 350 + + 0 + + 9.700 + 4.05 + 1.950 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + 0 + 0 + 0 + + + wing_extFuel1 + wing_extFuel2 + wing_extFuel3 + + + + + + 350 + + 0 + + 9.700 + -4.05 + 1.950 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + 0 + 0 + 0 + + + wing_extFuel1 + wing_extFuel2 + wing_extFuel3 + + + + + + 50 + + 0 + + 9.700 + 4.05 + 1.950 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + 0 + 0 + 0 + + + wing_extFuel1 + wing_extFuel2 + wing_extFuel3 + + + + + + 50 + + 0 + + 9.700 + -4.05 + 1.950 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + 0 + 0 + 0 + + + wing_extFuel1 + wing_extFuel2 + wing_extFuel3 + + + + + 0 + 0 + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + + 0 + 0 + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + + 0 + 0 + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 0 + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + + + 0 + 0 + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + + 0 + 0 + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 0 + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + 0 + 0 + + 0 + 0 + 0 + + + 0 + 0 + 0 + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + + + + + + + name + + + 3.75 + + + + + + + name + + + 1.75 + + + + + + + + OptimaleBL3 + + + + 0.0 + 0.45 + + + 0.0 + 60 + + + + + 0.0 + 2500 + + + +
+
+ + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.060438;0.120858;0.181227;0.24096;0.298618;0.352498;0.400466;0.440563;0.47116;0.491299;0.499835;0.498936;0.497497;0.4969;0.496334;0.495759;0.495016;0.494429;0.493951;0.497326;0.498017;0.487315;0.465782;0.434558;0.394952;0.348037;0.296828;0.240936;0.181329;0.120889;0.0604441;0;-0.0604441;-0.120889;-0.181329;-0.240936;-0.296828;-0.348037;-0.394952;-0.434558;-0.465782;-0.487315;-0.498017;-0.497326;-0.493951;-0.494429;-0.495016;-0.495759;-0.496334;-0.4969;-0.497497;-0.498936;-0.499835;-0.491299;-0.47116;-0.440563;-0.400466;-0.352498;-0.298618;-0.24096;-0.181227;-0.120858;-0.060438;0 + -0.499827;-0.499098;-0.497679;-0.495444;-0.487997;-0.473451;-0.451312;-0.421535;-0.384867;-0.34258;-0.296327;-0.24776;-0.198633;-0.149509;-0.100373;-0.0512362;-0.0020997;0.0470353;0.0961716;0.145303;0.194359;0.243421;0.291709;0.33755;0.379554;0.416586;0.447486;0.473546;0.492006;0.49945;0.500032;0.500121;0.499827;0.500121;0.500032;0.49945;0.492006;0.473546;0.447486;0.416586;0.379554;0.33755;0.291709;0.243421;0.194359;0.145303;0.0961716;0.0470353;-0.0020997;-0.0512362;-0.100373;-0.149509;-0.198633;-0.24776;-0.296327;-0.34258;-0.384867;-0.421535;-0.451312;-0.473451;-0.487997;-0.495444;-0.497679;-0.499098;-0.499827 + + Profile for OptimaleBL3 - Fuselage Section 10 Main Element + Profile for OptimaleBL3 - Fuselage Section 10 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.0604682;0.120933;0.181382;0.241288;0.29909;0.352944;0.400748;0.440579;0.470913;0.490857;0.499591;0.498986;0.497784;0.497239;0.496717;0.496117;0.495319;0.49455;0.493647;0.495764;0.496594;0.486575;0.465874;0.435351;0.39616;0.349349;0.297568;0.241161;0.181399;0.120931;0.0604647;0;-0.0604647;-0.120931;-0.181399;-0.241161;-0.297568;-0.349349;-0.39616;-0.435351;-0.465874;-0.486575;-0.496594;-0.495764;-0.493647;-0.49455;-0.495319;-0.496117;-0.496717;-0.497239;-0.497784;-0.498986;-0.499591;-0.490857;-0.470913;-0.440579;-0.400748;-0.352944;-0.29909;-0.241288;-0.181382;-0.120933;-0.0604682;0 + -0.499295;-0.498972;-0.498387;-0.497391;-0.490817;-0.476542;-0.454222;-0.424101;-0.387042;-0.344405;-0.297854;-0.24906;-0.199686;-0.150306;-0.100918;-0.0515298;-0.0021422;0.0472435;0.0966295;0.146013;0.195367;0.244697;0.293333;0.339666;0.382228;0.419751;0.450921;0.476369;0.493933;0.500642;0.500397;0.49992;0.499295;0.49992;0.500397;0.500642;0.493933;0.476369;0.450921;0.419751;0.382228;0.339666;0.293333;0.244697;0.195367;0.146013;0.0966295;0.0472435;-0.0021422;-0.0515298;-0.100918;-0.150306;-0.199686;-0.24906;-0.297854;-0.344405;-0.387042;-0.424101;-0.454222;-0.476542;-0.490817;-0.497391;-0.498387;-0.498972;-0.499295 + + Profile for OptimaleBL3 - Fuselage Section 11 Main Element + Profile for OptimaleBL3 - Fuselage Section 11 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.0600974;0.120195;0.180287;0.23985;0.2972;0.350468;0.39779;0.437475;0.468159;0.488885;0.498987;0.499616;0.49909;0.498835;0.498619;0.498347;0.497976;0.497565;0.497057;0.497624;0.49716;0.486706;0.465816;0.435195;0.395879;0.349028;0.296566;0.239787;0.180287;0.120192;0.0600958;0;-0.0600958;-0.120192;-0.180287;-0.239787;-0.296566;-0.349028;-0.395879;-0.435195;-0.465816;-0.486706;-0.49716;-0.497624;-0.497057;-0.497565;-0.497976;-0.498347;-0.498619;-0.498835;-0.49909;-0.499616;-0.498987;-0.488885;-0.468159;-0.437475;-0.39779;-0.350468;-0.2972;-0.23985;-0.180287;-0.120195;-0.0600974;0 + -0.499504;-0.499446;-0.499359;-0.499062;-0.492808;-0.478188;-0.455327;-0.424817;-0.3876;-0.34496;-0.298395;-0.24949;-0.199828;-0.150143;-0.100457;-0.0507714;-0.00108576;0.0485995;0.0982845;0.147969;0.197652;0.247303;0.296163;0.342679;0.385355;0.422844;0.453858;0.477994;0.494029;0.500397;0.500212;0.499867;0.499504;0.499867;0.500212;0.500397;0.494029;0.477994;0.453858;0.422844;0.385355;0.342679;0.296163;0.247303;0.197652;0.147969;0.0982845;0.0485995;-0.00108576;-0.0507714;-0.100457;-0.150143;-0.199828;-0.24949;-0.298395;-0.34496;-0.3876;-0.424817;-0.455327;-0.478188;-0.492808;-0.499062;-0.499359;-0.499446;-0.499504 + + Profile for OptimaleBL3 - Fuselage Section 12 Main Element + Profile for OptimaleBL3 - Fuselage Section 12 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.0589445;0.117889;0.176832;0.235178;0.291093;0.342868;0.389003;0.428241;0.459404;0.48152;0.493775;0.496618;0.497326;0.497696;0.497952;0.498284;0.498715;0.499274;0.499877;0.499562;0.496566;0.48462;0.462614;0.431236;0.391452;0.344625;0.291938;0.235268;0.176838;0.117883;0.0589417;0;-0.0589417;-0.117883;-0.176838;-0.235268;-0.291938;-0.344625;-0.391452;-0.431236;-0.462614;-0.48462;-0.496566;-0.499562;-0.499877;-0.499274;-0.498715;-0.498284;-0.497952;-0.497696;-0.497326;-0.496618;-0.493775;-0.48152;-0.459404;-0.428241;-0.389003;-0.342868;-0.291093;-0.235178;-0.176832;-0.117889;-0.0589445;0 + -0.499918;-0.499968;-0.500017;-0.499837;-0.4934;-0.477794;-0.454032;-0.423004;-0.385771;-0.343397;-0.297113;-0.248264;-0.198348;-0.148346;-0.0983414;-0.0483361;0.00166916;0.0516734;0.101677;0.15168;0.201683;0.251606;0.300506;0.346824;0.389077;0.425884;0.456147;0.478353;0.491933;0.498161;0.49893;0.499424;0.499918;0.499424;0.49893;0.498161;0.491933;0.478353;0.456147;0.425884;0.389077;0.346824;0.300506;0.251606;0.201683;0.15168;0.101677;0.0516734;0.00166916;-0.0483361;-0.0983414;-0.148346;-0.198348;-0.248264;-0.297113;-0.343397;-0.385771;-0.423004;-0.454032;-0.477794;-0.4934;-0.499837;-0.500017;-0.499968;-0.499918 + + Profile for OptimaleBL3 - Fuselage Section 13 Main Element + Profile for OptimaleBL3 - Fuselage Section 13 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.0575395;0.115079;0.172618;0.229603;0.284093;0.334563;0.379673;0.418558;0.450126;0.473511;0.487628;0.492565;0.494274;0.495245;0.495756;0.496404;0.497195;0.498267;0.499432;0.499422;0.494546;0.481245;0.45811;0.425876;0.385512;0.338507;0.286073;0.229774;0.172568;0.115053;0.0575267;0;-0.0575267;-0.115053;-0.172568;-0.229774;-0.286073;-0.338507;-0.385512;-0.425876;-0.45811;-0.481245;-0.494546;-0.499422;-0.499432;-0.498267;-0.497195;-0.496404;-0.495756;-0.495245;-0.494274;-0.492565;-0.487628;-0.473511;-0.450126;-0.418558;-0.379673;-0.334563;-0.284093;-0.229603;-0.172618;-0.115079;-0.0575395;0 + -0.49981;-0.499925;-0.500038;-0.499898;-0.49393;-0.477848;-0.453686;-0.422357;-0.385131;-0.342884;-0.296711;-0.247713;-0.197341;-0.146757;-0.0961581;-0.0455529;0.00505056;0.0556525;0.10625;0.156847;0.207442;0.257846;0.307012;0.353272;0.395108;0.431075;0.460149;0.480704;0.491015;0.49627;0.497665;0.498738;0.49981;0.498738;0.497665;0.49627;0.491015;0.480704;0.460149;0.431075;0.395108;0.353272;0.307012;0.257846;0.207442;0.156847;0.10625;0.0556525;0.00505056;-0.0455529;-0.0961581;-0.146757;-0.197341;-0.247713;-0.296711;-0.342884;-0.385131;-0.422357;-0.453686;-0.477848;-0.49393;-0.499898;-0.500038;-0.499925;-0.49981 + + Profile for OptimaleBL3 - Fuselage Section 14 Main Element + Profile for OptimaleBL3 - Fuselage Section 14 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.0563921;0.112784;0.169176;0.225177;0.278831;0.328764;0.373578;0.412586;0.44471;0.469194;0.484825;0.491429;0.493626;0.494966;0.495564;0.496191;0.496945;0.497954;0.499107;0.499749;0.494222;0.479915;0.455742;0.422503;0.381293;0.333674;0.281205;0.225376;0.169125;0.112774;0.0563775;0;-0.0563775;-0.112774;-0.169125;-0.225376;-0.281205;-0.333674;-0.381293;-0.422503;-0.455742;-0.479915;-0.494222;-0.499749;-0.499107;-0.497954;-0.496945;-0.496191;-0.495564;-0.494966;-0.493626;-0.491429;-0.484825;-0.469194;-0.44471;-0.412586;-0.373578;-0.328764;-0.278831;-0.225177;-0.169176;-0.112784;-0.0563921;0 + -0.499774;-0.499911;-0.500046;-0.499946;-0.495065;-0.479354;-0.455526;-0.424298;-0.387113;-0.344774;-0.298361;-0.248854;-0.197678;-0.146125;-0.0945475;-0.0429583;0.0086311;0.0602189;0.111803;0.163385;0.214965;0.266269;0.316097;0.362625;0.404209;0.439311;0.466817;0.485431;0.49242;0.495985;0.49741;0.498592;0.499774;0.498592;0.49741;0.495985;0.49242;0.485431;0.466817;0.439311;0.404209;0.362625;0.316097;0.266269;0.214965;0.163385;0.111803;0.0602189;0.0086311;-0.0429583;-0.0945475;-0.146125;-0.197678;-0.248854;-0.298361;-0.344774;-0.387113;-0.424298;-0.455526;-0.479354;-0.495065;-0.499946;-0.500046;-0.499911;-0.499774 + + Profile for OptimaleBL3 - Fuselage Section 15 Main Element + Profile for OptimaleBL3 - Fuselage Section 15 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.0555436;0.111087;0.166631;0.221963;0.275387;0.325533;0.370855;0.410525;0.443441;0.46881;0.485568;0.493305;0.495257;0.49649;0.49705;0.497434;0.497915;0.498506;0.49924;0.499995;0.495194;0.480387;0.455387;0.421104;0.378846;0.330323;0.27746;0.222125;0.166609;0.111074;0.0555369;0;-0.0555369;-0.111074;-0.166609;-0.222125;-0.27746;-0.330323;-0.378846;-0.421104;-0.455387;-0.480387;-0.495194;-0.499995;-0.49924;-0.498506;-0.497915;-0.497434;-0.49705;-0.49649;-0.495257;-0.493305;-0.485568;-0.46881;-0.443441;-0.410525;-0.370855;-0.325533;-0.275387;-0.221963;-0.166631;-0.111087;-0.0555436;0 + -0.499821;-0.499932;-0.500041;-0.499986;-0.496488;-0.482267;-0.459632;-0.429135;-0.392167;-0.349602;-0.302579;-0.252183;-0.199828;-0.14693;-0.0940124;-0.0410841;0.0118459;0.0647752;0.117704;0.17063;0.223557;0.276222;0.327152;0.374322;0.415856;0.450069;0.475656;0.491569;0.495568;0.497228;0.498158;0.49899;0.499821;0.49899;0.498158;0.497228;0.495568;0.491569;0.475656;0.450069;0.415856;0.374322;0.327152;0.276222;0.223557;0.17063;0.117704;0.0647752;0.0118459;-0.0410841;-0.0940124;-0.14693;-0.199828;-0.252183;-0.302579;-0.349602;-0.392167;-0.429135;-0.459632;-0.482267;-0.496488;-0.499986;-0.500041;-0.499932;-0.499821 + + Profile for OptimaleBL3 - Fuselage Section 16 Main Element + Profile for OptimaleBL3 - Fuselage Section 16 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.0550293;0.110059;0.165089;0.220037;0.273781;0.324721;0.37129;0.412189;0.446199;0.472326;0.489732;0.497853;0.498822;0.4992;0.49939;0.499468;0.499565;0.499675;0.499819;0.499962;0.496692;0.482215;0.456787;0.421562;0.378154;0.328565;0.275087;0.220117;0.165088;0.110059;0.0550293;0;-0.0550293;-0.110059;-0.165088;-0.220117;-0.275087;-0.328565;-0.378154;-0.421562;-0.456787;-0.482215;-0.496692;-0.499962;-0.499819;-0.499675;-0.499565;-0.499468;-0.49939;-0.4992;-0.498822;-0.497853;-0.489732;-0.472326;-0.446199;-0.412189;-0.37129;-0.324721;-0.273781;-0.220037;-0.165089;-0.110059;-0.0550293;0 + -0.499954;-0.499984;-0.500013;-0.500003;-0.497954;-0.486555;-0.466114;-0.437193;-0.400812;-0.358032;-0.310121;-0.258469;-0.204609;-0.150098;-0.0955743;-0.0410496;0.0134754;0.0680002;0.122525;0.17705;0.231575;0.285926;0.338422;0.386658;0.428413;0.461754;0.485151;0.497544;0.499193;0.499409;0.499594;0.499774;0.499954;0.499774;0.499594;0.499409;0.499193;0.497544;0.485151;0.461754;0.428413;0.386658;0.338422;0.285926;0.231575;0.17705;0.122525;0.0680002;0.0134754;-0.0410496;-0.0955743;-0.150098;-0.204609;-0.258469;-0.310121;-0.358032;-0.400812;-0.437193;-0.466114;-0.486555;-0.497954;-0.500003;-0.500013;-0.499984;-0.499954 + + Profile for OptimaleBL3 - Fuselage Section 17 Main Element + Profile for OptimaleBL3 - Fuselage Section 17 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.0543578;0.108716;0.163073;0.217415;0.271168;0.322678;0.370331;0.412339;0.447281;0.473931;0.491486;0.499552;0.499117;0.498062;0.497485;0.497287;0.497092;0.496863;0.496586;0.496262;0.494111;0.48063;0.455366;0.419696;0.375569;0.32537;0.271773;0.217425;0.163069;0.108713;0.0543563;0;-0.0543563;-0.108713;-0.163069;-0.217425;-0.271773;-0.32537;-0.375569;-0.419696;-0.455366;-0.48063;-0.494111;-0.496262;-0.496586;-0.496863;-0.497092;-0.497287;-0.497485;-0.498062;-0.499117;-0.499552;-0.491486;-0.473931;-0.447281;-0.412339;-0.370331;-0.322678;-0.271168;-0.217415;-0.163073;-0.108716;-0.0543578;0 + -0.498916;-0.498858;-0.498799;-0.498849;-0.498193;-0.490429;-0.472777;-0.446006;-0.410613;-0.367836;-0.319144;-0.266247;-0.21097;-0.155013;-0.0990482;-0.0430755;0.0128999;0.0688758;0.124851;0.180827;0.236802;0.292686;0.346782;0.396202;0.438273;0.470746;0.49188;0.500456;0.500637;0.500207;0.499777;0.499347;0.498916;0.499347;0.499777;0.500207;0.500637;0.500456;0.49188;0.470746;0.438273;0.396202;0.346782;0.292686;0.236802;0.180827;0.124851;0.0688758;0.0128999;-0.0430755;-0.0990482;-0.155013;-0.21097;-0.266247;-0.319144;-0.367836;-0.410613;-0.446006;-0.472777;-0.490429;-0.498193;-0.498849;-0.498799;-0.498858;-0.498916 + + Profile for OptimaleBL3 - Fuselage Section 18 Main Element + Profile for OptimaleBL3 - Fuselage Section 18 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.0538578;0.107716;0.161573;0.215429;0.268973;0.320665;0.368813;0.411411;0.446887;0.473898;0.491562;0.499605;0.498497;0.496656;0.495621;0.49528;0.49499;0.494646;0.494234;0.493753;0.492057;0.479117;0.453867;0.417845;0.37324;0.322729;0.269267;0.215416;0.161562;0.107708;0.053854;0;-0.053854;-0.107708;-0.161562;-0.215416;-0.269267;-0.322729;-0.37324;-0.417845;-0.453867;-0.479117;-0.492057;-0.493753;-0.494234;-0.494646;-0.49499;-0.49528;-0.495621;-0.496656;-0.498497;-0.499605;-0.491562;-0.473898;-0.446887;-0.411411;-0.368813;-0.320665;-0.268973;-0.215429;-0.161573;-0.107716;-0.0538578;0 + -0.498051;-0.497963;-0.497874;-0.497978;-0.498296;-0.493088;-0.477361;-0.452014;-0.417298;-0.374539;-0.325346;-0.2716;-0.21534;-0.158397;-0.101446;-0.0444733;0.0125094;0.0694926;0.126476;0.183458;0.24044;0.297365;0.352531;0.402702;0.444872;0.476558;0.495906;0.501612;0.500794;0.500109;0.499423;0.498737;0.498051;0.498737;0.499423;0.500109;0.500794;0.501612;0.495906;0.476558;0.444872;0.402702;0.352531;0.297365;0.24044;0.183458;0.126476;0.0694926;0.0125094;-0.0444733;-0.101446;-0.158397;-0.21534;-0.2716;-0.325346;-0.374539;-0.417298;-0.452014;-0.477361;-0.493088;-0.498296;-0.497978;-0.497874;-0.497963;-0.498051 + + Profile for OptimaleBL3 - Fuselage Section 19 Main Element + Profile for OptimaleBL3 - Fuselage Section 19 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.0403542;0.0806293;0.120737;0.160571;0.200003;0.23887;0.276972;0.314029;0.349689;0.383478;0.414773;0.442762;0.466432;0.484608;0.496102;0.5;0.49596;0.484355;0.466113;0.442419;0.414443;0.383178;0.349429;0.31381;0.276798;0.238741;0.199909;0.160508;0.1207;0.0806123;0.0403499;0;-0.0403499;-0.0806123;-0.1207;-0.160508;-0.199909;-0.238741;-0.276798;-0.31381;-0.349429;-0.383178;-0.414443;-0.442419;-0.466113;-0.484355;-0.49596;-0.5;-0.496102;-0.484608;-0.466432;-0.442762;-0.414773;-0.383478;-0.349689;-0.314029;-0.276972;-0.23887;-0.200003;-0.160571;-0.120737;-0.0806293;-0.0403542;0 + -0.49999;-0.498545;-0.494193;-0.486801;-0.476197;-0.46217;-0.444461;-0.42276;-0.396718;-0.365938;-0.330003;-0.288516;-0.241191;-0.187993;-0.129358;-0.0664143;-0.00106156;0.0642686;0.127161;0.185745;0.238922;0.286258;0.327805;0.363841;0.394758;0.420963;0.44285;0.460773;0.475036;0.485897;0.49357;0.498223;0.49999;0.498223;0.49357;0.485897;0.475036;0.460773;0.44285;0.420963;0.394758;0.363841;0.327805;0.286258;0.238922;0.185745;0.127161;0.0642686;-0.00106156;-0.0664143;-0.129358;-0.187993;-0.241191;-0.288516;-0.330003;-0.365938;-0.396718;-0.42276;-0.444461;-0.46217;-0.476197;-0.486801;-0.494193;-0.498545;-0.49999 + + Profile for OptimaleBL3 - Fuselage Section 1 Main Element + Profile for OptimaleBL3 - Fuselage Section 1 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.0536967;0.107393;0.16109;0.214782;0.268258;0.320054;0.368393;0.411219;0.446905;0.47405;0.491746;0.499664;0.498509;0.496809;0.495884;0.495618;0.4954;0.49514;0.494833;0.494478;0.492858;0.479772;0.454192;0.417733;0.372702;0.321915;0.268481;0.214778;0.161084;0.107389;0.0536945;0;-0.0536945;-0.107389;-0.161084;-0.214778;-0.268481;-0.321915;-0.372702;-0.417733;-0.454192;-0.479772;-0.492858;-0.494478;-0.494833;-0.49514;-0.4954;-0.495618;-0.495884;-0.496809;-0.498509;-0.499664;-0.491746;-0.47405;-0.446905;-0.411219;-0.368393;-0.320054;-0.268258;-0.214782;-0.16109;-0.107393;-0.0536967;0 + -0.497984;-0.497911;-0.497839;-0.497954;-0.498665;-0.494662;-0.479813;-0.454991;-0.420486;-0.377667;-0.328196;-0.274029;-0.21728;-0.159852;-0.102414;-0.0449568;0.012509;0.069975;0.127441;0.184907;0.242372;0.299778;0.355356;0.405711;0.447696;0.478728;0.496905;0.501025;0.500047;0.499532;0.499016;0.4985;0.497984;0.4985;0.499016;0.499532;0.500047;0.501025;0.496905;0.478728;0.447696;0.405711;0.355356;0.299778;0.242372;0.184907;0.127441;0.069975;0.012509;-0.0449568;-0.102414;-0.159852;-0.21728;-0.274029;-0.328196;-0.377667;-0.420486;-0.454991;-0.479813;-0.494662;-0.498665;-0.497954;-0.497839;-0.497911;-0.497984 + + Profile for OptimaleBL3 - Fuselage Section 20 Main Element + Profile for OptimaleBL3 - Fuselage Section 20 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.0537691;0.107538;0.161307;0.215075;0.268615;0.320425;0.36865;0.411371;0.446987;0.47413;0.491876;0.499688;0.499285;0.498571;0.498221;0.498146;0.498079;0.498;0.497908;0.497805;0.495808;0.481938;0.45572;0.418774;0.373393;0.322376;0.26884;0.215076;0.161307;0.107538;0.0537689;0;-0.0537689;-0.107538;-0.161307;-0.215076;-0.26884;-0.322376;-0.373393;-0.418774;-0.45572;-0.481938;-0.495808;-0.497805;-0.497908;-0.498;-0.498079;-0.498146;-0.498221;-0.498571;-0.499285;-0.499688;-0.491876;-0.47413;-0.446987;-0.411371;-0.36865;-0.320425;-0.268615;-0.215075;-0.161307;-0.107538;-0.0537691;0 + -0.499185;-0.499158;-0.49913;-0.499186;-0.499599;-0.495399;-0.480332;-0.45509;-0.420307;-0.377326;-0.32777;-0.273554;-0.216723;-0.159204;-0.101677;-0.0441462;0.0133855;0.0709175;0.128449;0.185981;0.243513;0.30095;0.356381;0.406439;0.448033;0.478615;0.496301;0.500181;0.499768;0.499623;0.499477;0.499331;0.499185;0.499331;0.499477;0.499623;0.499768;0.500181;0.496301;0.478615;0.448033;0.406439;0.356381;0.30095;0.243513;0.185981;0.128449;0.0709175;0.0133855;-0.0441462;-0.101677;-0.159204;-0.216723;-0.273554;-0.32777;-0.377326;-0.420307;-0.45509;-0.480332;-0.495399;-0.499599;-0.499186;-0.49913;-0.499158;-0.499185 + + Profile for OptimaleBL3 - Fuselage Section 21 Main Element + Profile for OptimaleBL3 - Fuselage Section 21 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.0536765;0.107353;0.161029;0.214704;0.268029;0.3194;0.367001;0.409151;0.444364;0.471395;0.489289;0.497402;0.498682;0.499385;0.499671;0.499713;0.499763;0.499822;0.499892;0.499974;0.497029;0.482069;0.455208;0.418009;0.372647;0.321778;0.26838;0.214705;0.161029;0.107353;0.0536764;0;-0.0536764;-0.107353;-0.161029;-0.214705;-0.26838;-0.321778;-0.372647;-0.418009;-0.455208;-0.482069;-0.497029;-0.499974;-0.499892;-0.499822;-0.499763;-0.499713;-0.499671;-0.499385;-0.498682;-0.497402;-0.489289;-0.471395;-0.444364;-0.409151;-0.367001;-0.3194;-0.268029;-0.214704;-0.161029;-0.107353;-0.0536765;0 + -0.499976;-0.499991;-0.500006;-0.499924;-0.499423;-0.493675;-0.477391;-0.451149;-0.41588;-0.372834;-0.32353;-0.269708;-0.213269;-0.156106;-0.0989386;-0.0417574;0.0154242;0.0726061;0.129788;0.18697;0.244152;0.301164;0.355935;0.40528;0.446309;0.476615;0.494423;0.499146;0.499535;0.499645;0.499756;0.499866;0.499976;0.499866;0.499756;0.499645;0.499535;0.499146;0.494423;0.476615;0.446309;0.40528;0.355935;0.301164;0.244152;0.18697;0.129788;0.0726061;0.0154242;-0.0417574;-0.0989386;-0.156106;-0.213269;-0.269708;-0.32353;-0.372834;-0.41588;-0.451149;-0.477391;-0.493675;-0.499423;-0.499924;-0.500006;-0.499991;-0.499976 + + Profile for OptimaleBL3 - Fuselage Section 22 Main Element + Profile for OptimaleBL3 - Fuselage Section 22 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.0533775;0.106755;0.160131;0.213486;0.266305;0.316946;0.363739;0.405147;0.439813;0.466599;0.484617;0.493254;0.496398;0.498272;0.498886;0.49903;0.499208;0.499424;0.499679;0.499972;0.4959;0.479976;0.452659;0.415437;0.370354;0.319897;0.26687;0.213505;0.160129;0.106753;0.0533763;0;-0.0533763;-0.106753;-0.160129;-0.213505;-0.26687;-0.319897;-0.370354;-0.415437;-0.452659;-0.479976;-0.4959;-0.499972;-0.499679;-0.499424;-0.499208;-0.49903;-0.498886;-0.498272;-0.496398;-0.493254;-0.484617;-0.466599;-0.439813;-0.405147;-0.363739;-0.316946;-0.266305;-0.213486;-0.160131;-0.106755;-0.0533775;0 + -0.499921;-0.49997;-0.500018;-0.499741;-0.498151;-0.490541;-0.472877;-0.445774;-0.410139;-0.36715;-0.318224;-0.264965;-0.209123;-0.152554;-0.0959223;-0.039259;0.017409;0.0740769;0.130745;0.187412;0.24408;0.300484;0.354435;0.402968;0.443403;0.473497;0.491576;0.497313;0.49838;0.498765;0.499151;0.499536;0.499921;0.499536;0.499151;0.498765;0.49838;0.497313;0.491576;0.473497;0.443403;0.402968;0.354435;0.300484;0.24408;0.187412;0.130745;0.0740769;0.017409;-0.039259;-0.0959223;-0.152554;-0.209123;-0.264965;-0.318224;-0.36715;-0.410139;-0.445774;-0.472877;-0.490541;-0.498151;-0.499741;-0.500018;-0.49997;-0.499921 + + Profile for OptimaleBL3 - Fuselage Section 23 Main Element + Profile for OptimaleBL3 - Fuselage Section 23 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.0531151;0.10623;0.159341;0.212386;0.264681;0.314613;0.360656;0.401413;0.435647;0.46232;0.480611;0.490041;0.494887;0.497583;0.498255;0.498497;0.498794;0.499151;0.499568;0.499994;0.494763;0.477994;0.450294;0.41308;0.368274;0.318208;0.265537;0.212448;0.159336;0.106224;0.0531121;0;-0.0531121;-0.106224;-0.159336;-0.212448;-0.265537;-0.318208;-0.368274;-0.41308;-0.450294;-0.477994;-0.494763;-0.499994;-0.499568;-0.499151;-0.498794;-0.498497;-0.498255;-0.497583;-0.494887;-0.490041;-0.480611;-0.46232;-0.435647;-0.401413;-0.360656;-0.314613;-0.264681;-0.212386;-0.159341;-0.10623;-0.0531151;0 + -0.499875;-0.499953;-0.50003;-0.499508;-0.496725;-0.487312;-0.468359;-0.440483;-0.404553;-0.361675;-0.313154;-0.260464;-0.205218;-0.149253;-0.0931255;-0.0369283;0.0192749;0.0754779;0.13168;0.187882;0.244084;0.299914;0.353115;0.400928;0.44086;0.470814;0.489208;0.495931;0.497442;0.49805;0.498659;0.499267;0.499875;0.499267;0.498659;0.49805;0.497442;0.495931;0.489208;0.470814;0.44086;0.400928;0.353115;0.299914;0.244084;0.187882;0.13168;0.0754779;0.0192749;-0.0369283;-0.0931255;-0.149253;-0.205218;-0.260464;-0.313154;-0.361675;-0.404553;-0.440483;-0.468359;-0.487312;-0.496725;-0.499508;-0.50003;-0.499953;-0.499875 + + Profile for OptimaleBL3 - Fuselage Section 24 Main Element + Profile for OptimaleBL3 - Fuselage Section 24 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.0528833;0.105766;0.158639;0.211385;0.263132;0.312391;0.357767;0.397991;0.431945;0.458681;0.477443;0.487996;0.494225;0.497399;0.497972;0.498274;0.49864;0.499077;0.499581;0.499877;0.493654;0.476154;0.448133;0.410943;0.366401;0.3167;0.264365;0.211516;0.158637;0.105758;0.0528791;0;-0.0528791;-0.105758;-0.158637;-0.211516;-0.264365;-0.3167;-0.366401;-0.410943;-0.448133;-0.476154;-0.493654;-0.499877;-0.499581;-0.499077;-0.49864;-0.498274;-0.497972;-0.497399;-0.494225;-0.487996;-0.477443;-0.458681;-0.431945;-0.397991;-0.357767;-0.312391;-0.263132;-0.211385;-0.158639;-0.105766;-0.0528833;0 + -0.499846;-0.499945;-0.500044;-0.499221;-0.495152;-0.48404;-0.46391;-0.435365;-0.399222;-0.356507;-0.308416;-0.25629;-0.201633;-0.146203;-0.0904839;-0.0346617;0.0211646;0.0769906;0.132816;0.188641;0.244465;0.299798;0.352359;0.39957;0.439098;0.468977;0.487709;0.495302;0.497008;0.497717;0.498427;0.499137;0.499846;0.499137;0.498427;0.497717;0.497008;0.495302;0.487709;0.468977;0.439098;0.39957;0.352359;0.299798;0.244465;0.188641;0.132816;0.0769906;0.0211646;-0.0346617;-0.0904839;-0.146203;-0.201633;-0.25629;-0.308416;-0.356507;-0.399222;-0.435365;-0.46391;-0.48404;-0.495152;-0.499221;-0.500044;-0.499945;-0.499846 + + Profile for OptimaleBL3 - Fuselage Section 25 Main Element + Profile for OptimaleBL3 - Fuselage Section 25 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.052678;0.105356;0.158012;0.210423;0.261647;0.310279;0.355075;0.394892;0.428721;0.455699;0.47513;0.486993;0.494309;0.49765;0.498061;0.49837;0.498742;0.499179;0.499676;0.499729;0.492594;0.474467;0.446176;0.409021;0.364727;0.315366;0.263338;0.210697;0.158023;0.105348;0.0526742;0;-0.0526742;-0.105348;-0.158023;-0.210697;-0.263338;-0.315366;-0.364727;-0.409021;-0.446176;-0.474467;-0.492594;-0.499729;-0.499676;-0.499179;-0.498742;-0.49837;-0.498061;-0.49765;-0.494309;-0.486993;-0.47513;-0.455699;-0.428721;-0.394892;-0.355075;-0.310279;-0.261647;-0.210423;-0.158012;-0.105356;-0.052678;0 + -0.499837;-0.499947;-0.500057;-0.498879;-0.49346;-0.480761;-0.459569;-0.430454;-0.394179;-0.351678;-0.304039;-0.252475;-0.198393;-0.143401;-0.0879812;-0.0324391;0.0231045;0.0786477;0.13419;0.189732;0.245273;0.300197;0.352235;0.398961;0.438182;0.468045;0.487128;0.495439;0.497124;0.497802;0.498481;0.499159;0.499837;0.499159;0.498481;0.497802;0.497124;0.495439;0.487128;0.468045;0.438182;0.398961;0.352235;0.300197;0.245273;0.189732;0.13419;0.0786477;0.0231045;-0.0324391;-0.0879812;-0.143401;-0.198393;-0.252475;-0.304039;-0.351678;-0.394179;-0.430454;-0.459569;-0.480761;-0.49346;-0.498879;-0.500057;-0.499947;-0.499837 + + Profile for OptimaleBL3 - Fuselage Section 26 Main Element + Profile for OptimaleBL3 - Fuselage Section 26 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.0524989;0.104998;0.157459;0.209536;0.260231;0.308286;0.352589;0.392116;0.425958;0.453332;0.473601;0.486828;0.494968;0.498205;0.498462;0.498724;0.499036;0.499396;0.4998;0.499583;0.491598;0.472938;0.444426;0.407316;0.363255;0.31421;0.262452;0.209986;0.15749;0.104993;0.0524965;0;-0.0524965;-0.104993;-0.15749;-0.209986;-0.262452;-0.31421;-0.363255;-0.407316;-0.444426;-0.472938;-0.491598;-0.499583;-0.4998;-0.499396;-0.499036;-0.498724;-0.498462;-0.498205;-0.494968;-0.486828;-0.473601;-0.453332;-0.425958;-0.392116;-0.352589;-0.308286;-0.260231;-0.209536;-0.157459;-0.104998;-0.0524989;0 + -0.499853;-0.499957;-0.500063;-0.498477;-0.491668;-0.477494;-0.455344;-0.425751;-0.389411;-0.34717;-0.300009;-0.249015;-0.19549;-0.140837;-0.0856197;-0.0302776;0.0250645;0.0804064;0.135748;0.191089;0.246425;0.30102;0.352639;0.398986;0.437987;0.467887;0.487333;0.496207;0.497709;0.498244;0.498781;0.499317;0.499853;0.499317;0.498781;0.498244;0.497709;0.496207;0.487333;0.467887;0.437987;0.398986;0.352639;0.30102;0.246425;0.191089;0.135748;0.0804064;0.0250645;-0.0302776;-0.0856197;-0.140837;-0.19549;-0.249015;-0.300009;-0.34717;-0.389411;-0.425751;-0.455344;-0.477494;-0.491668;-0.498477;-0.500063;-0.499957;-0.499853 + + Profile for OptimaleBL3 - Fuselage Section 27 Main Element + Profile for OptimaleBL3 - Fuselage Section 27 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.052349;0.104698;0.156987;0.208723;0.258905;0.306435;0.350325;0.389661;0.423626;0.451515;0.472745;0.487286;0.496023;0.498937;0.499078;0.499247;0.499443;0.499666;0.499912;0.499397;0.490681;0.471576;0.44289;0.405838;0.361998;0.313244;0.261715;0.209393;0.157045;0.104696;0.0523482;0;-0.0523482;-0.104696;-0.157045;-0.209393;-0.261715;-0.313244;-0.361998;-0.405838;-0.44289;-0.471576;-0.490681;-0.499397;-0.499912;-0.499666;-0.499443;-0.499247;-0.499078;-0.498937;-0.496023;-0.487286;-0.472745;-0.451515;-0.423626;-0.389661;-0.350325;-0.306435;-0.258905;-0.208723;-0.156987;-0.104698;-0.052349;0 + -0.499896;-0.499973;-0.500053;-0.498005;-0.489791;-0.474242;-0.451225;-0.421227;-0.384878;-0.342938;-0.296281;-0.245878;-0.192885;-0.13849;-0.0834053;-0.0282066;0.026992;0.0821905;0.137389;0.192587;0.247774;0.302103;0.353388;0.399444;0.438299;0.468285;0.488112;0.497411;0.498625;0.498942;0.499261;0.499578;0.499896;0.499578;0.499261;0.498942;0.498625;0.497411;0.488112;0.468285;0.438299;0.399444;0.353388;0.302103;0.247774;0.192587;0.137389;0.0821905;0.026992;-0.0282066;-0.0834053;-0.13849;-0.192885;-0.245878;-0.296281;-0.342938;-0.384878;-0.421227;-0.451225;-0.474242;-0.489791;-0.498005;-0.500053;-0.499973;-0.499896 + + Profile for OptimaleBL3 - Fuselage Section 28 Main Element + Profile for OptimaleBL3 - Fuselage Section 28 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.0522339;0.104468;0.156612;0.208005;0.257698;0.304755;0.3483;0.387523;0.421694;0.450177;0.472442;0.48818;0.497313;0.49978;0.49981;0.499847;0.499889;0.499936;0.499987;0.49919;0.489866;0.470399;0.441588;0.40461;0.360983;0.312495;0.261149;0.208935;0.156702;0.104468;0.0522338;0;-0.0522338;-0.104468;-0.156702;-0.208935;-0.261149;-0.312495;-0.360983;-0.40461;-0.441588;-0.470399;-0.489866;-0.49919;-0.499987;-0.499936;-0.499889;-0.499847;-0.49981;-0.49978;-0.497313;-0.48818;-0.472442;-0.450177;-0.421694;-0.387523;-0.3483;-0.304755;-0.257698;-0.208005;-0.156612;-0.104468;-0.0522339;0 + -0.499972;-0.499992;-0.500016;-0.497452;-0.487831;-0.470998;-0.447187;-0.416843;-0.380529;-0.338923;-0.292798;-0.243015;-0.19053;-0.136333;-0.081343;-0.0262574;0.0288282;0.0839138;0.138999;0.194085;0.249149;0.303254;0.354269;0.400104;0.438877;0.468995;0.489225;0.49884;0.499716;0.49978;0.499844;0.499908;0.499972;0.499908;0.499844;0.49978;0.499716;0.49884;0.489225;0.468995;0.438877;0.400104;0.354269;0.303254;0.249149;0.194085;0.138999;0.0839138;0.0288282;-0.0262574;-0.081343;-0.136333;-0.19053;-0.243015;-0.292798;-0.338923;-0.380529;-0.416843;-0.447187;-0.470998;-0.487831;-0.497452;-0.500016;-0.499992;-0.499972 + + Profile for OptimaleBL3 - Fuselage Section 29 Main Element + Profile for OptimaleBL3 - Fuselage Section 29 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.0439151;0.0877686;0.131479;0.174937;0.217998;0.260445;0.301959;0.342033;0.379847;0.413936;0.442182;0.464196;0.480684;0.491899;0.498233;0.499971;0.49723;0.48999;0.478125;0.461339;0.439303;0.411892;0.379493;0.342892;0.30314;0.261435;0.218652;0.175294;0.131633;0.0878148;0.0439235;0;-0.0439235;-0.0878148;-0.131633;-0.175294;-0.218652;-0.261435;-0.30314;-0.342892;-0.379493;-0.411892;-0.439303;-0.461339;-0.478125;-0.48999;-0.49723;-0.499971;-0.498233;-0.491899;-0.480684;-0.464196;-0.442182;-0.413936;-0.379847;-0.342033;-0.301959;-0.260445;-0.217998;-0.174937;-0.131479;-0.0877686;-0.0439151;0 + -0.499997;-0.498936;-0.49552;-0.489505;-0.480611;-0.468491;-0.452692;-0.432617;-0.407462;-0.376195;-0.337472;-0.290421;-0.237182;-0.180133;-0.12061;-0.0596811;0.00184668;0.063303;0.124035;0.183314;0.240198;0.293428;0.341486;0.382988;0.416936;0.443034;0.462267;0.476152;0.48596;0.492633;0.496872;0.4992;0.499997;0.4992;0.496872;0.492633;0.48596;0.476152;0.462267;0.443034;0.416936;0.382988;0.341486;0.293428;0.240198;0.183314;0.124035;0.063303;0.00184668;-0.0596811;-0.12061;-0.180133;-0.237182;-0.290421;-0.337472;-0.376195;-0.407462;-0.432617;-0.452692;-0.468491;-0.480611;-0.489505;-0.49552;-0.498936;-0.499997 + + Profile for OptimaleBL3 - Fuselage Section 2 Main Element + Profile for OptimaleBL3 - Fuselage Section 2 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.0520532;0.104107;0.156033;0.206999;0.25614;0.302687;0.345864;0.384963;0.419331;0.448413;0.471713;0.488438;0.49784;0.499965;0.5;0.499958;0.499842;0.499651;0.499392;0.498184;0.488214;0.468394;0.439514;0.40271;0.359421;0.311325;0.260248;0.208213;0.156159;0.104106;0.052053;0;-0.052053;-0.104106;-0.156159;-0.208213;-0.260248;-0.311325;-0.359421;-0.40271;-0.439514;-0.468394;-0.488214;-0.498184;-0.499392;-0.499651;-0.499842;-0.499958;-0.5;-0.499965;-0.49784;-0.488438;-0.471713;-0.448413;-0.419331;-0.384963;-0.345864;-0.302687;-0.25614;-0.206999;-0.156033;-0.104107;-0.0520532;0 + -0.499917;-0.499872;-0.499764;-0.496639;-0.485709;-0.467716;-0.443226;-0.412631;-0.376446;-0.335263;-0.289776;-0.240725;-0.188786;-0.134838;-0.0800184;-0.0251179;0.0297816;0.0846816;0.139582;0.194482;0.249345;0.303136;0.353803;0.399372;0.43807;0.468395;0.489159;0.49918;0.49999;0.500065;0.50008;0.50003;0.499917;0.50003;0.50008;0.500065;0.49999;0.49918;0.489159;0.468395;0.43807;0.399372;0.353803;0.303136;0.249345;0.194482;0.139582;0.0846816;0.0297816;-0.0251179;-0.0800184;-0.134838;-0.188786;-0.240725;-0.289776;-0.335263;-0.376446;-0.412631;-0.443226;-0.467716;-0.485709;-0.496639;-0.499764;-0.499872;-0.499917 + + Profile for OptimaleBL3 - Fuselage Section 30 Main Element + Profile for OptimaleBL3 - Fuselage Section 30 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.0517368;0.103472;0.155034;0.205447;0.253929;0.299873;0.342602;0.381506;0.416007;0.445618;0.469841;0.487415;0.497279;0.499618;0.499959;0.499956;0.49962;0.498963;0.497996;0.495853;0.484926;0.464603;0.435686;0.399246;0.356588;0.309204;0.258643;0.20694;0.155208;0.103474;0.0517369;0;-0.0517369;-0.103474;-0.155208;-0.20694;-0.258643;-0.309204;-0.356588;-0.399246;-0.435686;-0.464603;-0.484926;-0.495853;-0.497996;-0.498963;-0.49962;-0.499956;-0.499959;-0.499618;-0.497279;-0.487415;-0.469841;-0.445618;-0.416007;-0.381506;-0.342602;-0.299873;-0.253929;-0.205447;-0.155034;-0.103472;-0.0517368;0 + -0.499936;-0.499795;-0.49933;-0.495511;-0.483486;-0.46455;-0.439556;-0.408873;-0.372982;-0.332398;-0.28773;-0.239594;-0.188371;-0.134905;-0.080472;-0.0259517;0.02857;0.0830904;0.137608;0.19212;0.246566;0.299771;0.349821;0.394933;0.433524;0.46423;0.485915;0.49693;0.498556;0.499367;0.499871;0.500061;0.499936;0.500061;0.499871;0.499367;0.498556;0.49693;0.485915;0.46423;0.433524;0.394933;0.349821;0.299771;0.246566;0.19212;0.137608;0.0830904;0.02857;-0.0259517;-0.080472;-0.134905;-0.188371;-0.239594;-0.28773;-0.332398;-0.372982;-0.408873;-0.439556;-0.46455;-0.483486;-0.495511;-0.49933;-0.499795;-0.499936 + + Profile for OptimaleBL3 - Fuselage Section 31 Main Element + Profile for OptimaleBL3 - Fuselage Section 31 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.0513301;0.102652;0.153736;0.203513;0.251287;0.296584;0.338813;0.377449;0.41198;0.44197;0.466918;0.485296;0.495922;0.498988;0.499847;0.499952;0.499328;0.497998;0.495981;0.492453;0.480312;0.459367;0.430432;0.394498;0.352694;0.306283;0.256489;0.205261;0.15397;0.102657;0.0513309;0;-0.0513309;-0.102657;-0.15397;-0.205261;-0.256489;-0.306283;-0.352694;-0.394498;-0.430432;-0.459367;-0.480312;-0.492453;-0.495981;-0.497998;-0.499328;-0.499952;-0.499847;-0.498988;-0.495922;-0.485296;-0.466918;-0.44197;-0.41198;-0.377449;-0.338813;-0.296584;-0.251287;-0.203513;-0.153736;-0.102652;-0.0513301;0 + -0.499953;-0.499662;-0.498631;-0.493929;-0.480965;-0.461313;-0.435995;-0.40537;-0.369889;-0.330005;-0.28625;-0.23913;-0.188809;-0.136076;-0.0822471;-0.0282967;0.0256611;0.0796152;0.133555;0.187472;0.241269;0.293618;0.342801;0.387284;0.425717;0.456908;0.47979;0.492428;0.495677;0.497811;0.499239;0.499954;0.499953;0.499954;0.499239;0.497811;0.495677;0.492428;0.47979;0.456908;0.425717;0.387284;0.342801;0.293618;0.241269;0.187472;0.133555;0.0796152;0.0256611;-0.0282967;-0.0822471;-0.136076;-0.188809;-0.23913;-0.28625;-0.330005;-0.369889;-0.40537;-0.435995;-0.461313;-0.480965;-0.493929;-0.498631;-0.499662;-0.499953 + + Profile for OptimaleBL3 - Fuselage Section 32 Main Element + Profile for OptimaleBL3 - Fuselage Section 32 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.0508756;0.101725;0.152253;0.201349;0.248411;0.293055;0.334758;0.373061;0.407505;0.43769;0.463133;0.482282;0.493917;0.498115;0.499671;0.499951;0.498996;0.496838;0.493502;0.48822;0.474674;0.453027;0.424081;0.388727;0.347914;0.302663;0.253877;0.203288;0.152548;0.101736;0.0508774;0;-0.0508774;-0.101736;-0.152548;-0.203288;-0.253877;-0.302663;-0.347914;-0.388727;-0.424081;-0.453027;-0.474674;-0.48822;-0.493502;-0.496838;-0.498996;-0.499951;-0.499671;-0.498115;-0.493917;-0.482282;-0.463133;-0.43769;-0.407505;-0.373061;-0.334758;-0.293055;-0.248411;-0.201349;-0.152253;-0.101725;-0.0508756;0 + -0.499967;-0.499463;-0.497687;-0.491921;-0.478134;-0.457972;-0.432487;-0.402028;-0.367018;-0.327862;-0.28503;-0.238953;-0.189668;-0.137892;-0.0848583;-0.0316353;0.0216118;0.0748504;0.128051;0.181184;0.23411;0.285369;0.333489;0.377208;0.41542;0.447116;0.471323;0.486078;0.491629;0.495558;0.498262;0.499733;0.499967;0.499733;0.498262;0.495558;0.491629;0.486078;0.471323;0.447116;0.41542;0.377208;0.333489;0.285369;0.23411;0.181184;0.128051;0.0748504;0.0216118;-0.0316353;-0.0848583;-0.137892;-0.189668;-0.238953;-0.28503;-0.327862;-0.367018;-0.402028;-0.432487;-0.457972;-0.478134;-0.491921;-0.497687;-0.499463;-0.499967 + + Profile for OptimaleBL3 - Fuselage Section 33 Main Element + Profile for OptimaleBL3 - Fuselage Section 33 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.0504138;0.100768;0.150695;0.199103;0.245486;0.289502;0.33068;0.368604;0.402852;0.433057;0.458773;0.478604;0.491382;0.497004;0.499424;0.499957;0.498657;0.495566;0.490708;0.483391;0.468327;0.445934;0.416969;0.382209;0.342432;0.298441;0.250871;0.201114;0.151036;0.100783;0.0504167;0;-0.0504167;-0.100783;-0.151036;-0.201114;-0.250871;-0.298441;-0.342432;-0.382209;-0.416969;-0.445934;-0.468327;-0.483391;-0.490708;-0.495566;-0.498657;-0.499957;-0.499424;-0.497004;-0.491382;-0.478604;-0.458773;-0.433057;-0.402852;-0.368604;-0.33068;-0.289502;-0.245486;-0.199103;-0.150695;-0.100768;-0.0504138;0 + -0.499979;-0.499196;-0.496521;-0.489557;-0.475044;-0.454541;-0.429012;-0.398789;-0.364264;-0.325809;-0.283849;-0.238771;-0.190607;-0.139927;-0.0878485;-0.0354703;0.0169656;0.0693873;0.121728;0.173923;0.225773;0.275761;0.32269;0.365556;0.403478;0.435627;0.461149;0.478279;0.486655;0.492752;0.497008;0.499417;0.499979;0.499417;0.497008;0.492752;0.486655;0.478279;0.461149;0.435627;0.403478;0.365556;0.32269;0.275761;0.225773;0.173923;0.121728;0.0693873;0.0169656;-0.0354703;-0.0878485;-0.139927;-0.190607;-0.238771;-0.283849;-0.325809;-0.364264;-0.398789;-0.429012;-0.454541;-0.475044;-0.489557;-0.496521;-0.499196;-0.499979 + + Profile for OptimaleBL3 - Fuselage Section 34 Main Element + Profile for OptimaleBL3 - Fuselage Section 34 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.0499798;0.0998433;0.149156;0.196912;0.242675;0.286116;0.326792;0.364313;0.398288;0.428369;0.454157;0.474532;0.488448;0.495662;0.499096;0.499969;0.498341;0.494257;0.487741;0.478205;0.461588;0.438445;0.409444;0.37524;0.336464;0.293741;0.247527;0.198816;0.149512;0.0998609;0.0499832;0;-0.0499832;-0.0998609;-0.149512;-0.198816;-0.247527;-0.293741;-0.336464;-0.37524;-0.409444;-0.438445;-0.461588;-0.478205;-0.487741;-0.494257;-0.498341;-0.499969;-0.499096;-0.495662;-0.488448;-0.474532;-0.454157;-0.428369;-0.398288;-0.364313;-0.326792;-0.286116;-0.242675;-0.196912;-0.149156;-0.0998433;-0.0499798;0 + -0.499988;-0.498867;-0.495175;-0.486943;-0.471799;-0.451082;-0.425589;-0.395632;-0.36157;-0.323753;-0.282575;-0.238412;-0.191345;-0.141839;-0.0908269;-0.0393663;0.0122086;0.0637642;0.115175;0.166318;0.216925;0.265532;0.311213;0.353187;0.390761;0.423264;0.44998;0.469488;0.481011;0.489539;0.495546;0.49903;0.499988;0.49903;0.495546;0.489539;0.481011;0.469488;0.44998;0.423264;0.390761;0.353187;0.311213;0.265532;0.216925;0.166318;0.115175;0.0637642;0.0122086;-0.0393663;-0.0908269;-0.141839;-0.191345;-0.238412;-0.282575;-0.323753;-0.36157;-0.395632;-0.425589;-0.451082;-0.471799;-0.486943;-0.495175;-0.498867;-0.499988 + + Profile for OptimaleBL3 - Fuselage Section 35 Main Element + Profile for OptimaleBL3 - Fuselage Section 35 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.0495997;0.0990003;0.147718;0.194888;0.240112;0.283044;0.323262;0.360385;0.394041;0.423899;0.449607;0.47035;0.485288;0.494122;0.498687;0.499983;0.498063;0.492969;0.484728;0.472905;0.454782;0.430917;0.40186;0.368143;0.330271;0.288741;0.24392;0.196458;0.148037;0.0990166;0.0496029;0;-0.0496029;-0.0990166;-0.148037;-0.196458;-0.24392;-0.288741;-0.330271;-0.368143;-0.40186;-0.430917;-0.454782;-0.472905;-0.484728;-0.492969;-0.498063;-0.499983;-0.498687;-0.494122;-0.485288;-0.47035;-0.449607;-0.423899;-0.394041;-0.360385;-0.323262;-0.283044;-0.240112;-0.194888;-0.147718;-0.0990003;-0.0495997;0 + -0.499995;-0.49849;-0.493706;-0.484213;-0.468535;-0.447689;-0.422276;-0.392581;-0.358936;-0.321674;-0.281171;-0.237794;-0.191734;-0.143383;-0.0934869;-0.0429715;0.00774223;0.0584349;0.108898;0.158925;0.208172;0.255369;0.299821;0.340916;0.378107;0.410851;0.438572;0.460247;0.474989;0.486082;0.493955;0.498595;0.499995;0.498595;0.493955;0.486082;0.474989;0.460247;0.438572;0.410851;0.378107;0.340916;0.299821;0.255369;0.208172;0.158925;0.108898;0.0584349;0.00774223;-0.0429715;-0.0934869;-0.143383;-0.191734;-0.237794;-0.281171;-0.321674;-0.358936;-0.392581;-0.422276;-0.447689;-0.468535;-0.484213;-0.493706;-0.49849;-0.499995 + + Profile for OptimaleBL3 - Fuselage Section 36 Main Element + Profile for OptimaleBL3 - Fuselage Section 36 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.0492898;0.098271;0.146443;0.193116;0.237895;0.280398;0.320214;0.356966;0.390295;0.419878;0.445399;0.466334;0.48211;0.492459;0.498214;0.499995;0.497827;0.491749;0.481798;0.46775;0.448239;0.423714;0.394586;0.361266;0.324163;0.283689;0.24019;0.194109;0.146659;0.0982823;0.049292;0;-0.049292;-0.0982823;-0.146659;-0.194109;-0.24019;-0.283689;-0.324163;-0.361266;-0.394586;-0.423714;-0.448239;-0.46775;-0.481798;-0.491749;-0.497827;-0.499995;-0.498214;-0.492459;-0.48211;-0.466334;-0.445399;-0.419878;-0.390295;-0.356966;-0.320214;-0.280398;-0.237895;-0.193116;-0.146443;-0.098271;-0.0492898;0 + -0.499999;-0.498087;-0.492192;-0.481522;-0.465406;-0.444484;-0.419161;-0.3897;-0.356409;-0.319609;-0.279663;-0.236944;-0.191747;-0.144453;-0.0956481;-0.0460587;0.0038395;0.0537222;0.103273;0.152177;0.200027;0.24587;0.289177;0.329457;0.366259;0.399142;0.427659;0.451159;0.468936;0.482574;0.492323;0.49814;0.499999;0.49814;0.492323;0.482574;0.468936;0.451159;0.427659;0.399142;0.366259;0.329457;0.289177;0.24587;0.200027;0.152177;0.103273;0.0537222;0.0038395;-0.0460587;-0.0956481;-0.144453;-0.191747;-0.236944;-0.279663;-0.319609;-0.356409;-0.3897;-0.419161;-0.444484;-0.465406;-0.481522;-0.492192;-0.498087;-0.499999 + + Profile for OptimaleBL3 - Fuselage Section 37 Main Element + Profile for OptimaleBL3 - Fuselage Section 37 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.0490547;0.0976716;0.145371;0.191651;0.236079;0.278238;0.31772;0.354148;0.387169;0.416466;0.441751;0.462735;0.479142;0.490788;0.497714;0.5;0.497634;0.490642;0.479086;0.463008;0.442292;0.417192;0.387982;0.354969;0.318484;0.278887;0.236548;0.191863;0.14542;0.0976741;0.0490555;0;-0.0490555;-0.0976741;-0.14542;-0.191863;-0.236548;-0.278887;-0.318484;-0.354969;-0.387982;-0.417192;-0.442292;-0.463008;-0.479086;-0.490642;-0.497634;-0.5;-0.497714;-0.490788;-0.479142;-0.462735;-0.441751;-0.416466;-0.387169;-0.354148;-0.31772;-0.278238;-0.236079;-0.191651;-0.145371;-0.0976716;-0.0490547;0 + -0.5;-0.497686;-0.490731;-0.479032;-0.462572;-0.441602;-0.41636;-0.38709;-0.354081;-0.317648;-0.278145;-0.23595;-0.191449;-0.145056;-0.0972395;-0.0485086;0.00066153;0.0498276;0.0985495;0.146391;0.192899;0.237525;0.27983;0.319397;0.355836;0.388781;0.417892;0.442826;0.463238;0.479236;0.490755;0.497696;0.5;0.497696;0.490755;0.479236;0.463238;0.442826;0.417892;0.388781;0.355836;0.319397;0.27983;0.237525;0.192899;0.146391;0.0985495;0.0498276;0.00066153;-0.0485086;-0.0972395;-0.145056;-0.191449;-0.23595;-0.278145;-0.317648;-0.354081;-0.38709;-0.41636;-0.441602;-0.462572;-0.479032;-0.490731;-0.497686;-0.5 + + Profile for OptimaleBL3 - Fuselage Section 38 Main Element + Profile for OptimaleBL3 - Fuselage Section 38 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.0478437;0.0949482;0.141176;0.186387;0.230255;0.272333;0.312126;0.349131;0.382887;0.412983;0.43906;0.460811;0.477977;0.49034;0.497722;0.49999;0.497093;0.489088;0.476127;0.458431;0.436274;0.409972;0.379865;0.346324;0.309735;0.270496;0.229013;0.185683;0.140862;0.0948494;0.0478256;0;-0.0478256;-0.0948494;-0.140862;-0.185683;-0.229013;-0.270496;-0.309735;-0.346324;-0.379865;-0.409972;-0.436274;-0.458431;-0.476127;-0.489088;-0.497093;-0.49999;-0.497722;-0.49034;-0.477977;-0.460811;-0.43906;-0.412983;-0.382887;-0.349131;-0.312126;-0.272333;-0.230255;-0.186387;-0.141176;-0.0949482;-0.0478437;0 + -0.499999;-0.496989;-0.487708;-0.474491;-0.457947;-0.437909;-0.414131;-0.386469;-0.354947;-0.319746;-0.281159;-0.239566;-0.195397;-0.149119;-0.101233;-0.0522622;-0.00275602;0.0467138;0.0955799;0.143297;0.189361;0.233317;0.27476;0.31334;0.348766;0.380807;0.409304;0.43418;0.455427;0.473069;0.48705;0.496748;0.499999;0.496748;0.48705;0.473069;0.455427;0.43418;0.409304;0.380807;0.348766;0.31334;0.27476;0.233317;0.189361;0.143297;0.0955799;0.0467138;-0.00275602;-0.0522622;-0.101233;-0.149119;-0.195397;-0.239566;-0.281159;-0.319746;-0.354947;-0.386469;-0.414131;-0.437909;-0.457947;-0.474491;-0.487708;-0.496989;-0.499999 + + Profile for OptimaleBL3 - Fuselage Section 39 Main Element + Profile for OptimaleBL3 - Fuselage Section 39 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.0482673;0.09629;0.143859;0.190862;0.237205;0.282722;0.327083;0.369659;0.409356;0.444411;0.472247;0.489637;0.495667;0.498625;0.499911;0.499681;0.49796;0.494784;0.490034;0.483564;0.473688;0.451797;0.417988;0.377189;0.332847;0.286784;0.239841;0.192388;0.144588;0.0965286;0.0482989;0;-0.0482989;-0.0965286;-0.144588;-0.192388;-0.239841;-0.286784;-0.332847;-0.377189;-0.417988;-0.451797;-0.473688;-0.483564;-0.490034;-0.494784;-0.49796;-0.499681;-0.499911;-0.498625;-0.495667;-0.489637;-0.472247;-0.444411;-0.409356;-0.369659;-0.327083;-0.282722;-0.237205;-0.190862;-0.143859;-0.09629;-0.0482673;0 + -0.5;-0.498026;-0.491956;-0.482088;-0.468962;-0.452896;-0.433822;-0.411283;-0.384392;-0.351972;-0.312843;-0.266381;-0.213372;-0.156846;-0.0999326;-0.042932;0.0140883;0.071076;0.127974;0.184717;0.241224;0.296975;0.347525;0.388009;0.41838;0.440909;0.458032;0.471454;0.482099;0.490303;0.496016;0.499142;0.5;0.499142;0.496016;0.490303;0.482099;0.471454;0.458032;0.440909;0.41838;0.388009;0.347525;0.296975;0.241224;0.184717;0.127974;0.071076;0.0140883;-0.042932;-0.0999326;-0.156846;-0.213372;-0.266381;-0.312843;-0.351972;-0.384392;-0.411283;-0.433822;-0.452896;-0.468962;-0.482088;-0.491956;-0.498026;-0.5 + + Profile for OptimaleBL3 - Fuselage Section 3 Main Element + Profile for OptimaleBL3 - Fuselage Section 3 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.0456495;0.0910857;0.135971;0.17996;0.22277;0.264126;0.303702;0.341098;0.375839;0.407392;0.43519;0.458667;0.477281;0.490566;0.498162;0.499868;0.495712;0.485931;0.470913;0.451143;0.42714;0.399416;0.368454;0.334694;0.298523;0.260267;0.220189;0.178491;0.135333;0.0909176;0.0456343;0;-0.0456343;-0.0909176;-0.135333;-0.178491;-0.220189;-0.260267;-0.298523;-0.334694;-0.368454;-0.399416;-0.42714;-0.451143;-0.470913;-0.485931;-0.495712;-0.499868;-0.498162;-0.490566;-0.477281;-0.458667;-0.43519;-0.407392;-0.375839;-0.341098;-0.303702;-0.264126;-0.22277;-0.17996;-0.135971;-0.0910857;-0.0456495;0 + -0.499999;-0.498502;-0.493252;-0.483558;-0.469397;-0.451024;-0.428635;-0.402295;-0.371993;-0.337728;-0.299563;-0.257679;-0.212396;-0.164189;-0.113679;-0.061622;-0.00886557;0.04371;0.0952809;0.145143;0.192739;0.237658;0.279617;0.318433;0.353995;0.38623;0.415069;0.440382;0.461905;0.479141;0.49136;0.498077;0.499999;0.498077;0.49136;0.479141;0.461905;0.440382;0.415069;0.38623;0.353995;0.318433;0.279617;0.237658;0.192739;0.145143;0.0952809;0.04371;-0.00886557;-0.061622;-0.113679;-0.164189;-0.212396;-0.257679;-0.299563;-0.337728;-0.371993;-0.402295;-0.428635;-0.451024;-0.469397;-0.483558;-0.493252;-0.498502;-0.499999 + + Profile for OptimaleBL3 - Fuselage Section 40 Main Element + Profile for OptimaleBL3 - Fuselage Section 40 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.0434842;0.0868589;0.129977;0.172641;0.214609;0.255575;0.295186;0.33303;0.368617;0.401381;0.430662;0.455721;0.475784;0.490126;0.498204;0.499788;0.494995;0.484242;0.468124;0.447297;0.42239;0.393963;0.362497;0.328391;0.291992;0.253613;0.213569;0.17219;0.129828;0.0868271;0.043481;0;-0.043481;-0.0868271;-0.129828;-0.17219;-0.213569;-0.253613;-0.291992;-0.328391;-0.362497;-0.393963;-0.42239;-0.447297;-0.468124;-0.484242;-0.494995;-0.499788;-0.498204;-0.490126;-0.475784;-0.455721;-0.430662;-0.401381;-0.368617;-0.33303;-0.295186;-0.255575;-0.214609;-0.172641;-0.129977;-0.0868589;-0.0434842;0 + -0.499998;-0.498632;-0.49435;-0.4868;-0.475632;-0.460528;-0.441213;-0.417469;-0.389126;-0.356068;-0.31825;-0.27573;-0.22873;-0.177712;-0.123427;-0.0669249;-0.00945839;0.0476997;0.103427;0.156849;0.207345;0.254501;0.298039;0.33775;0.373446;0.404929;0.431985;0.454421;0.472118;0.48513;0.493746;0.498483;0.499998;0.498483;0.493746;0.48513;0.472118;0.454421;0.431985;0.404929;0.373446;0.33775;0.298039;0.254501;0.207345;0.156849;0.103427;0.0476997;-0.00945839;-0.0669249;-0.123427;-0.177712;-0.22873;-0.27573;-0.31825;-0.356068;-0.389126;-0.417469;-0.441213;-0.460528;-0.475632;-0.4868;-0.49435;-0.498632;-0.499998 + + Profile for OptimaleBL3 - Fuselage Section 41 Main Element + Profile for OptimaleBL3 - Fuselage Section 41 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.0420632;0.0840274;0.125774;0.167157;0.207997;0.248068;0.287085;0.324694;0.360449;0.393794;0.424049;0.450409;0.47198;0.487868;0.497333;0.499948;0.495703;0.484977;0.468412;0.44676;0.420776;0.391158;0.358527;0.323427;0.286339;0.247687;0.207838;0.167111;0.12577;0.084031;0.0420645;0;-0.0420645;-0.084031;-0.12577;-0.167111;-0.207838;-0.247687;-0.286339;-0.323427;-0.358527;-0.391158;-0.420776;-0.44676;-0.468412;-0.484977;-0.495703;-0.499948;-0.497333;-0.487868;-0.47198;-0.450409;-0.424049;-0.393794;-0.360449;-0.324694;-0.287085;-0.248068;-0.207997;-0.167157;-0.125774;-0.0840274;-0.0420632;0 + -0.5;-0.498574;-0.494163;-0.486569;-0.475567;-0.460907;-0.442313;-0.419496;-0.392159;-0.360017;-0.32283;-0.280455;-0.23293;-0.180578;-0.12412;-0.0647093;-0.00384932;0.0568163;0.115784;0.171844;0.224137;0.272107;0.315425;0.353924;0.387551;0.416346;0.440429;0.459992;0.475287;0.486613;0.494292;0.498651;0.5;0.498651;0.494292;0.486613;0.475287;0.459992;0.440429;0.416346;0.387551;0.353924;0.315425;0.272107;0.224137;0.171844;0.115784;0.0568163;-0.00384932;-0.0647093;-0.12412;-0.180578;-0.23293;-0.280455;-0.32283;-0.360017;-0.392159;-0.419496;-0.442313;-0.460907;-0.475567;-0.486569;-0.494163;-0.498574;-0.5 + + Profile for OptimaleBL3 - Fuselage Section 42 Main Element + Profile for OptimaleBL3 - Fuselage Section 42 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.0512583;0.102024;0.152084;0.201268;0.249394;0.296213;0.341317;0.384016;0.423189;0.456972;0.482625;0.49717;0.499867;0.499991;0.499974;0.49982;0.499533;0.499123;0.498594;0.496814;0.48696;0.465168;0.432672;0.392946;0.348858;0.302111;0.253637;0.203991;0.153561;0.102611;0.0513628;0;-0.0513628;-0.102611;-0.153561;-0.203991;-0.253637;-0.302111;-0.348858;-0.392946;-0.432672;-0.465168;-0.48696;-0.496814;-0.498594;-0.499123;-0.499533;-0.49982;-0.499974;-0.499991;-0.499867;-0.49717;-0.482625;-0.456972;-0.423189;-0.384016;-0.341317;-0.296213;-0.249394;-0.201268;-0.152084;-0.102024;-0.0512583;0 + -0.5;-0.496878;-0.488848;-0.477019;-0.461788;-0.443332;-0.421614;-0.396361;-0.367035;-0.332925;-0.293227;-0.247596;-0.197096;-0.144431;-0.091626;-0.0388208;0.013984;0.0667882;0.119592;0.172394;0.225152;0.276867;0.324523;0.365276;0.398659;0.425702;0.447558;0.46501;0.478566;0.488588;0.495334;0.498958;0.5;0.498958;0.495334;0.488588;0.478566;0.46501;0.447558;0.425702;0.398659;0.365276;0.324523;0.276867;0.225152;0.172394;0.119592;0.0667882;0.013984;-0.0388208;-0.091626;-0.144431;-0.197096;-0.247596;-0.293227;-0.332925;-0.367035;-0.396361;-0.421614;-0.443332;-0.461788;-0.477019;-0.488848;-0.496878;-0.5 + + Profile for OptimaleBL3 - Fuselage Section 4 Main Element + Profile for OptimaleBL3 - Fuselage Section 4 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.0533912;0.106353;0.158627;0.209885;0.259801;0.307942;0.353695;0.396174;0.434046;0.465298;0.487093;0.496889;0.497322;0.497294;0.497463;0.497815;0.498309;0.498979;0.499759;0.499063;0.490552;0.470235;0.439479;0.401263;0.358063;0.31142;0.262535;0.211863;0.159734;0.10678;0.0534571;0;-0.0534571;-0.10678;-0.159734;-0.211863;-0.262535;-0.31142;-0.358063;-0.401263;-0.439479;-0.470235;-0.490552;-0.499063;-0.499759;-0.498979;-0.498309;-0.497815;-0.497463;-0.497294;-0.497322;-0.496889;-0.487093;-0.465298;-0.434046;-0.396174;-0.353695;-0.307942;-0.259801;-0.209885;-0.158627;-0.106353;-0.0533912;0 + -0.499928;-0.497207;-0.490208;-0.479519;-0.465051;-0.446859;-0.424782;-0.398538;-0.367749;-0.331978;-0.290881;-0.244659;-0.194893;-0.144165;-0.0934146;-0.0426683;0.00807612;0.05882;0.109562;0.160303;0.211029;0.261031;0.307845;0.349247;0.384674;0.414533;0.439322;0.45988;0.47606;0.487328;0.494408;0.498297;0.499928;0.498297;0.494408;0.487328;0.47606;0.45988;0.439322;0.414533;0.384674;0.349247;0.307845;0.261031;0.211029;0.160303;0.109562;0.05882;0.00807612;-0.0426683;-0.0934146;-0.144165;-0.194893;-0.244659;-0.290881;-0.331978;-0.367749;-0.398538;-0.424782;-0.446859;-0.465051;-0.479519;-0.490208;-0.497207;-0.499928 + + Profile for OptimaleBL3 - Fuselage Section 5 Main Element + Profile for OptimaleBL3 - Fuselage Section 5 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.0553006;0.110264;0.164666;0.218048;0.269853;0.319386;0.365767;0.40781;0.443995;0.472303;0.490015;0.495557;0.494997;0.494948;0.495213;0.495798;0.496583;0.497705;0.499054;0.499872;0.493366;0.474955;0.446048;0.40927;0.366842;0.320196;0.270984;0.219298;0.165415;0.11053;0.0553319;0;-0.0553319;-0.11053;-0.165415;-0.219298;-0.270984;-0.320196;-0.366842;-0.40927;-0.446048;-0.474955;-0.493366;-0.499872;-0.499054;-0.497705;-0.496583;-0.495798;-0.495213;-0.494948;-0.494997;-0.495557;-0.490015;-0.472303;-0.443995;-0.40781;-0.365767;-0.319386;-0.269853;-0.218048;-0.164666;-0.110264;-0.0553006;0 + -0.499882;-0.497336;-0.491287;-0.482103;-0.468919;-0.451415;-0.429332;-0.402289;-0.370104;-0.332675;-0.290186;-0.243364;-0.194158;-0.144628;-0.0950934;-0.0455606;0.00397026;0.0534985;0.103022;0.15254;0.202062;0.251156;0.297764;0.339925;0.376892;0.408671;0.435329;0.458034;0.475736;0.48704;0.493656;0.497689;0.499882;0.497689;0.493656;0.48704;0.475736;0.458034;0.435329;0.408671;0.376892;0.339925;0.297764;0.251156;0.202062;0.15254;0.103022;0.0534985;0.00397026;-0.0455606;-0.0950934;-0.144628;-0.194158;-0.243364;-0.290186;-0.332675;-0.370104;-0.402289;-0.429332;-0.451415;-0.468919;-0.482103;-0.491287;-0.497336;-0.499882 + + Profile for OptimaleBL3 - Fuselage Section 6 Main Element + Profile for OptimaleBL3 - Fuselage Section 6 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.0570384;0.113848;0.170266;0.225704;0.279318;0.330229;0.377104;0.418547;0.4529;0.478338;0.492412;0.494965;0.494006;0.493859;0.494018;0.494494;0.495127;0.496141;0.497558;0.499871;0.495471;0.479196;0.452314;0.417077;0.375448;0.32877;0.27922;0.226446;0.170776;0.114022;0.0570582;0;-0.0570582;-0.114022;-0.170776;-0.226446;-0.27922;-0.32877;-0.375448;-0.417077;-0.452314;-0.479196;-0.495471;-0.499871;-0.497558;-0.496141;-0.495127;-0.494494;-0.494018;-0.493859;-0.494006;-0.494965;-0.492412;-0.478338;-0.4529;-0.418547;-0.377104;-0.330229;-0.279318;-0.225704;-0.170266;-0.113848;-0.0570384;0 + -0.499888;-0.497695;-0.492786;-0.485318;-0.473609;-0.456877;-0.434762;-0.406886;-0.373292;-0.334279;-0.290551;-0.243225;-0.194374;-0.145443;-0.0965047;-0.0475663;0.00137059;0.0503062;0.099237;0.148157;0.197054;0.245756;0.292569;0.335663;0.374108;0.407539;0.435675;0.459978;0.478528;0.489162;0.494541;0.497933;0.499888;0.497933;0.494541;0.489162;0.478528;0.459978;0.435675;0.407539;0.374108;0.335663;0.292569;0.245756;0.197054;0.148157;0.099237;0.0503062;0.00137059;-0.0475663;-0.0965047;-0.145443;-0.194374;-0.243225;-0.290551;-0.334279;-0.373292;-0.406886;-0.434762;-0.456877;-0.473609;-0.485318;-0.492786;-0.497695;-0.499888 + + Profile for OptimaleBL3 - Fuselage Section 7 Main Element + Profile for OptimaleBL3 - Fuselage Section 7 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.0585528;0.116976;0.175158;0.232457;0.287788;0.339958;0.387296;0.428153;0.460832;0.48382;0.49503;0.495733;0.494521;0.494201;0.494102;0.494232;0.494415;0.494945;0.495983;0.499423;0.497098;0.482989;0.458142;0.424425;0.383554;0.336775;0.28679;0.232876;0.175528;0.117101;0.0585742;0;-0.0585742;-0.117101;-0.175528;-0.232876;-0.28679;-0.336775;-0.383554;-0.424425;-0.458142;-0.482989;-0.497098;-0.499423;-0.495983;-0.494945;-0.494415;-0.494232;-0.494102;-0.494201;-0.494521;-0.495733;-0.49503;-0.48382;-0.460832;-0.428153;-0.387296;-0.339958;-0.287788;-0.232457;-0.175158;-0.116976;-0.0585528;0 + -0.499922;-0.498196;-0.494512;-0.488873;-0.47871;-0.462781;-0.440669;-0.412018;-0.377147;-0.336745;-0.291964;-0.244184;-0.195427;-0.146661;-0.0978841;-0.0491067;-0.000329368;0.0484478;0.0972231;0.145985;0.194678;0.243331;0.290587;0.334684;0.374511;0.409387;0.438722;0.464122;0.483034;0.492628;0.496354;0.498664;0.499922;0.498664;0.496354;0.492628;0.483034;0.464122;0.438722;0.409387;0.374511;0.334684;0.290587;0.243331;0.194678;0.145985;0.0972231;0.0484478;-0.000329368;-0.0491067;-0.0978841;-0.146661;-0.195427;-0.244184;-0.291964;-0.336745;-0.377147;-0.412018;-0.440669;-0.462781;-0.47871;-0.488873;-0.494512;-0.498196;-0.499922 + + Profile for OptimaleBL3 - Fuselage Section 8 Main Element + Profile for OptimaleBL3 - Fuselage Section 8 Main Element + + + + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;0.0597604;0.119463;0.179041;0.237859;0.29463;0.347881;0.395641;0.436063;0.467457;0.488641;0.497991;0.497583;0.496185;0.495687;0.4953;0.495018;0.494669;0.494586;0.494904;0.498759;0.498248;0.486083;0.46308;0.430731;0.39053;0.343642;0.293047;0.238025;0.179267;0.119543;0.0597785;0;-0.0597785;-0.119543;-0.179267;-0.238025;-0.293047;-0.343642;-0.39053;-0.430731;-0.46308;-0.486083;-0.498248;-0.498759;-0.494904;-0.494586;-0.494669;-0.495018;-0.4953;-0.495687;-0.496185;-0.497583;-0.497991;-0.488641;-0.467457;-0.436063;-0.395641;-0.347881;-0.29463;-0.237859;-0.179041;-0.119463;-0.0597604;0 + -0.499967;-0.49875;-0.496265;-0.492424;-0.483731;-0.468574;-0.44647;-0.417175;-0.381249;-0.339729;-0.294091;-0.245887;-0.197001;-0.148122;-0.0992307;-0.0503384;-0.00144574;0.0474467;0.0963398;0.145224;0.194012;0.24282;0.290612;0.335666;0.376714;0.412818;0.443076;0.469093;0.487972;0.496429;0.498442;0.499551;0.499967;0.499551;0.498442;0.496429;0.487972;0.469093;0.443076;0.412818;0.376714;0.335666;0.290612;0.24282;0.194012;0.145224;0.0963398;0.0474467;-0.00144574;-0.0503384;-0.0992307;-0.148122;-0.197001;-0.245887;-0.294091;-0.339729;-0.381249;-0.417175;-0.44647;-0.468574;-0.483731;-0.492424;-0.496265;-0.49875;-0.499967 + + Profile for OptimaleBL3 - Fuselage Section 9 Main Element + Profile for OptimaleBL3 - Fuselage Section 9 Main Element + + + + + + 0.999942;0.989876;0.97981;0.969743;0.959677;0.94961;0.939543;0.929476;0.919409;0.909342;0.899274;0.889207;0.879139;0.869071;0.859004;0.848936;0.838868;0.8288;0.818732;0.808664;0.798596;0.788528;0.778461;0.768393;0.758325;0.748257;0.738189;0.728121;0.718053;0.707984;0.697915;0.687846;0.677776;0.667706;0.657634;0.647562;0.637488;0.627414;0.617337;0.607259;0.597179;0.587096;0.577011;0.566924;0.556834;0.546741;0.536645;0.526546;0.516443;0.506338;0.49623;0.486118;0.476004;0.465887;0.455768;0.445646;0.435523;0.425398;0.415272;0.405145;0.395017;0.384889;0.374761;0.364634;0.354506;0.34438;0.334254;0.32413;0.314007;0.303885;0.293766;0.283648;0.273532;0.263419;0.253309;0.243202;0.233099;0.223;0.212906;0.202817;0.192735;0.18266;0.172593;0.162534;0.152486;0.14245;0.132425;0.122414;0.112417;0.102435;0.0924701;0.0825225;0.0725934;0.0626837;0.0527943;0.0429261;0.0330858;0.0234347;0.0141201;0.00538349;0;0.00504207;0.0139154;0.0233653;0.0331458;0.0430457;0.0529657;0.0629048;0.0728619;0.082836;0.0928259;0.102831;0.112849;0.12288;0.132922;0.142974;0.153035;0.163103;0.173178;0.183259;0.193345;0.203434;0.213527;0.223622;0.23372;0.24382;0.253921;0.264023;0.274126;0.28423;0.294335;0.30444;0.314546;0.324652;0.334759;0.344866;0.354974;0.365081;0.375189;0.385297;0.395404;0.405512;0.415618;0.425725;0.43583;0.445934;0.456036;0.466137;0.476236;0.486332;0.496426;0.506518;0.516606;0.526692;0.536775;0.546856;0.556933;0.567007;0.577079;0.587148;0.597215;0.607279;0.617342;0.627402;0.637461;0.647519;0.657576;0.667632;0.677688;0.687743;0.697798;0.707853;0.717909;0.727965;0.738022;0.748079;0.758138;0.768199;0.77826;0.788323;0.798388;0.808454;0.818523;0.828593;0.838664;0.848738;0.858814;0.868891;0.878971;0.889052;0.899136;0.909221;0.919307;0.929396;0.939486;0.949578;0.959671;0.969766;0.979862;0.989959;1.00006 + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + -0.000910259;-0.00202814;-0.0031447;-0.00425994;-0.00537385;-0.00648645;-0.00759777;-0.00870782;-0.00981664;-0.0109243;-0.0120308;-0.0131363;-0.0142409;-0.0153447;-0.0164478;-0.0175504;-0.0186526;-0.0197546;-0.0208566;-0.0219586;-0.0230607;-0.0241629;-0.0252653;-0.0263678;-0.0274701;-0.0285721;-0.0296734;-0.0307737;-0.0318722;-0.0329685;-0.0340616;-0.0351507;-0.0362347;-0.0373124;-0.0383822;-0.0394427;-0.040492;-0.0415283;-0.0425492;-0.0435525;-0.0445356;-0.0454958;-0.0464304;-0.0473367;-0.0482116;-0.0490524;-0.0498562;-0.0506204;-0.0513421;-0.0520189;-0.0526484;-0.0532284;-0.053757;-0.0542324;-0.0546534;-0.0550188;-0.0553279;-0.0555804;-0.0557766;-0.0559167;-0.0560016;-0.0560321;-0.0560095;-0.0559349;-0.0558097;-0.0556349;-0.0554118;-0.0551413;-0.0548241;-0.0544609;-0.0540516;-0.0535961;-0.0530937;-0.0525431;-0.0519425;-0.0512896;-0.0505816;-0.0498157;-0.0489883;-0.0480959;-0.0471351;-0.046102;-0.0449933;-0.0438053;-0.042535;-0.0411796;-0.0397365;-0.0382037;-0.0365798;-0.0348635;-0.0330539;-0.0311506;-0.0291533;-0.0270619;-0.0248766;-0.0225976;-0.0202016;-0.0171427;-0.0131767;-0.00807885;0;0.00814737;0.0129571;0.0165301;0.019063;0.0211021;0.0230413;0.0248802;0.0266187;0.0282569;0.0297952;0.0312343;0.0325755;0.0338204;0.0349715;0.0360317;0.0370047;0.0378947;0.0387063;0.0394445;0.0401145;0.0407217;0.0412714;0.0417688;0.0422191;0.0426269;0.0429966;0.0433321;0.0436365;0.0439124;0.0441615;0.0443848;0.0445825;0.0447543;0.0448994;0.0450164;0.0451035;0.0451589;0.0451802;0.0451652;0.0451115;0.0450168;0.0448788;0.0446954;0.0444651;0.0441864;0.0438583;0.0434804;0.0430527;0.0425756;0.0420498;0.0414763;0.0408568;0.0401927;0.0394862;0.0387394;0.0379545;0.0371343;0.0362813;0.0353982;0.034488;0.0335534;0.0325973;0.0316226;0.0306321;0.0296286;0.0286146;0.0275927;0.0265655;0.0255352;0.0245042;0.0234747;0.0224487;0.0214284;0.0204155;0.019412;0.0184197;0.0174401;0.0164748;0.0155254;0.0145931;0.0136794;0.0127854;0.0119122;0.0110609;0.0102324;0.00942754;0.00864703;0.00789156;0.00716167;0.00645786;0.00578052;0.00512996;0.00450645;0.00391018;0.0033413;0.00279992;0.0022861;0.00179987;0.00134126;0.000910259 + + Profile for OptimaleBL3 - HTP Section 1 Main Element + Profile for OptimaleBL3 - HTP Section 1 Main Element + + + + 0.999942;0.989876;0.97981;0.969743;0.959677;0.94961;0.939543;0.929476;0.919409;0.909342;0.899274;0.889207;0.879139;0.869071;0.859004;0.848936;0.838868;0.8288;0.818732;0.808664;0.798596;0.788528;0.778461;0.768393;0.758325;0.748257;0.738189;0.728121;0.718053;0.707984;0.697915;0.687846;0.677776;0.667706;0.657634;0.647562;0.637488;0.627414;0.617337;0.607259;0.597179;0.587096;0.577012;0.566924;0.556834;0.546741;0.536645;0.526546;0.516443;0.506338;0.49623;0.486118;0.476004;0.465887;0.455768;0.445646;0.435523;0.425398;0.415272;0.405145;0.395018;0.38489;0.374762;0.364634;0.354507;0.34438;0.334255;0.32413;0.314007;0.303886;0.293766;0.283648;0.273532;0.263419;0.253309;0.243202;0.233099;0.223;0.212906;0.202817;0.192735;0.18266;0.172593;0.162535;0.152487;0.14245;0.132425;0.122414;0.112417;0.102435;0.0924702;0.0825227;0.0725936;0.0626839;0.0527945;0.0429262;0.0330859;0.023435;0.0141202;0.00538361;0;0.00504196;0.0139153;0.0233652;0.0331457;0.0430456;0.0529656;0.0629046;0.0728617;0.0828358;0.0928258;0.102831;0.112849;0.12288;0.132922;0.142974;0.153035;0.163103;0.173178;0.183259;0.193344;0.203434;0.213527;0.223622;0.23372;0.24382;0.253921;0.264023;0.274126;0.28423;0.294335;0.30444;0.314546;0.324652;0.334759;0.344866;0.354973;0.365081;0.375189;0.385297;0.395404;0.405512;0.415618;0.425724;0.43583;0.445934;0.456036;0.466137;0.476235;0.486332;0.496426;0.506517;0.516606;0.526692;0.536775;0.546855;0.556933;0.567007;0.577079;0.587148;0.597215;0.607279;0.617342;0.627402;0.637461;0.647519;0.657576;0.667632;0.677687;0.687743;0.697798;0.707853;0.717909;0.727965;0.738022;0.748079;0.758138;0.768198;0.77826;0.788323;0.798388;0.808454;0.818522;0.828592;0.838664;0.848738;0.858814;0.868891;0.878971;0.889052;0.899136;0.909221;0.919307;0.929396;0.939486;0.949578;0.959671;0.969766;0.979862;0.989959;1.00006 + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + -0.000910259;-0.00202813;-0.00314469;-0.00425992;-0.00537384;-0.00648644;-0.00759776;-0.0087078;-0.00981663;-0.0109243;-0.0120308;-0.0131363;-0.0142409;-0.0153447;-0.0164478;-0.0175504;-0.0186526;-0.0197546;-0.0208565;-0.0219585;-0.0230606;-0.0241629;-0.0252653;-0.0263677;-0.0274701;-0.0285721;-0.0296734;-0.0307736;-0.0318722;-0.0329684;-0.0340616;-0.0351507;-0.0362347;-0.0373123;-0.0383821;-0.0394426;-0.040492;-0.0415282;-0.0425492;-0.0435524;-0.0445355;-0.0454958;-0.0464304;-0.0473366;-0.0482115;-0.0490523;-0.0498562;-0.0506203;-0.051342;-0.0520188;-0.0526483;-0.0532283;-0.0537569;-0.0542324;-0.0546533;-0.0550187;-0.0553278;-0.0555804;-0.0557765;-0.0559166;-0.0560015;-0.056032;-0.0560094;-0.0559349;-0.0558096;-0.0556348;-0.0554117;-0.0551412;-0.054824;-0.0544608;-0.0540515;-0.0535961;-0.0530936;-0.052543;-0.0519424;-0.0512895;-0.0505815;-0.0498156;-0.0489882;-0.0480958;-0.047135;-0.0461019;-0.0449932;-0.0438052;-0.0425349;-0.0411795;-0.0397364;-0.0382036;-0.0365797;-0.0348634;-0.0330538;-0.0311505;-0.0291532;-0.0270618;-0.0248765;-0.0225975;-0.0202015;-0.0171427;-0.0131766;-0.00807879;0;0.00814743;0.0129572;0.0165302;0.0190631;0.0211022;0.0230414;0.0248803;0.0266188;0.028257;0.0297953;0.0312344;0.0325756;0.0338205;0.0349716;0.0360318;0.0370048;0.0378948;0.0387064;0.0394446;0.0401146;0.0407218;0.0412715;0.0417689;0.0422192;0.042627;0.0429967;0.0433322;0.0436366;0.0439125;0.0441616;0.0443849;0.0445826;0.0447544;0.0448995;0.0450164;0.0451036;0.0451589;0.0451803;0.0451653;0.0451116;0.0450168;0.0448788;0.0446955;0.0444652;0.0441865;0.0438584;0.0434805;0.0430528;0.0425757;0.0420498;0.0414764;0.0408568;0.0401928;0.0394863;0.0387394;0.0379546;0.0371344;0.0362814;0.0353983;0.0344881;0.0335534;0.0325974;0.0316227;0.0306322;0.0296286;0.0286146;0.0275928;0.0265655;0.0255353;0.0245043;0.0234747;0.0224487;0.0214284;0.0204156;0.0194121;0.0184197;0.0174401;0.0164748;0.0155254;0.0145932;0.0136794;0.0127854;0.0119123;0.011061;0.0102324;0.00942756;0.00864705;0.00789158;0.00716169;0.00645788;0.00578054;0.00512998;0.00450646;0.0039102;0.00334131;0.00279993;0.0022861;0.00179988;0.00134126;0.000910259 + + Profile for OptimaleBL3 - HTP Section 2 Main Element + Profile for OptimaleBL3 - HTP Section 2 Main Element + + + + 1;0.990555;0.980422;0.970289;0.960156;0.950023;0.93989;0.929758;0.919625;0.909493;0.899361;0.889229;0.879097;0.868965;0.858833;0.848701;0.838569;0.828437;0.818305;0.808172;0.79804;0.787908;0.777775;0.767642;0.757508;0.747374;0.73724;0.727105;0.716969;0.706832;0.696695;0.686557;0.676417;0.666277;0.656135;0.645992;0.635847;0.625701;0.615553;0.605403;0.595252;0.585098;0.574942;0.564784;0.554624;0.544461;0.534296;0.524128;0.513958;0.503785;0.493609;0.483431;0.47325;0.463066;0.45288;0.442691;0.4325;0.422306;0.412111;0.401914;0.391715;0.381515;0.371314;0.361112;0.35091;0.340708;0.330506;0.320304;0.310104;0.299904;0.289707;0.279511;0.269317;0.259126;0.248936;0.23875;0.228565;0.218383;0.208204;0.198027;0.187853;0.177682;0.167514;0.157351;0.147194;0.137043;0.126903;0.116775;0.106666;0.0965814;0.08653;0.0765219;0.066569;0.0566835;0.0468772;0.0371605;0.0275429;0.0182239;0.00975967;0.00291446;0;0.00291446;0.00975967;0.0182239;0.0275429;0.0371605;0.0468772;0.0566835;0.066569;0.0765219;0.08653;0.0965814;0.106666;0.116775;0.126903;0.137043;0.147194;0.157351;0.167514;0.177682;0.187853;0.198027;0.208204;0.218383;0.228565;0.23875;0.248936;0.259126;0.269317;0.279511;0.289707;0.299904;0.310104;0.320304;0.330506;0.340708;0.35091;0.361112;0.371314;0.381515;0.391715;0.401914;0.412111;0.422306;0.4325;0.442691;0.45288;0.463066;0.47325;0.483431;0.493609;0.503785;0.513958;0.524128;0.534296;0.544461;0.554624;0.564784;0.574942;0.585098;0.595252;0.605403;0.615553;0.625701;0.635847;0.645992;0.656135;0.666277;0.676417;0.686557;0.696695;0.706832;0.716969;0.727105;0.73724;0.747374;0.757508;0.767642;0.777775;0.787908;0.79804;0.808172;0.818305;0.828437;0.838569;0.848701;0.858833;0.868965;0.879097;0.889229;0.899361;0.909493;0.919625;0.929758;0.93989;0.950023;0.960156;0.970289;0.980422;0.990555;1 + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;-0.00179682;-0.00298188;-0.00416808;-0.0053554;-0.00654385;-0.0077334;-0.00892401;-0.0101156;-0.0113082;-0.0125017;-0.013696;-0.0148909;-0.0160864;-0.0172822;-0.0184782;-0.0196741;-0.0208697;-0.0220646;-0.0232586;-0.0244513;-0.0256422;-0.0268309;-0.0280168;-0.0291996;-0.0303784;-0.0315528;-0.0327219;-0.0338852;-0.0350417;-0.0361907;-0.0373312;-0.0384623;-0.0395831;-0.0406924;-0.0417892;-0.0428724;-0.0439406;-0.0449926;-0.0460271;-0.0470426;-0.0480378;-0.0490111;-0.0499609;-0.0508856;-0.0517834;-0.0526525;-0.0534911;-0.0542972;-0.0550689;-0.0558042;-0.0565012;-0.0571579;-0.0577723;-0.0583424;-0.0588665;-0.0593427;-0.0597692;-0.0601445;-0.060467;-0.0607354;-0.0609483;-0.0611047;-0.0612038;-0.0612448;-0.0612273;-0.0611512;-0.0610164;-0.0608233;-0.0605726;-0.0602654;-0.0599029;-0.0594869;-0.0590194;-0.0585031;-0.0579409;-0.0573357;-0.0566903;-0.056007;-0.0552869;-0.0545294;-0.0537325;-0.0528917;-0.0519998;-0.0510468;-0.0500191;-0.0488993;-0.0476658;-0.0462922;-0.0447481;-0.0430015;-0.0410212;-0.0387803;-0.036259;-0.0334458;-0.0303369;-0.0269339;-0.0228092;-0.0171399;-0.00963297;0;0.00963297;0.0171399;0.0228092;0.0269339;0.0303369;0.0334458;0.036259;0.0387803;0.0410212;0.0430015;0.0447481;0.0462922;0.0476658;0.0488993;0.0500191;0.0510468;0.0519998;0.0528917;0.0537325;0.0545294;0.0552869;0.056007;0.0566903;0.0573357;0.0579409;0.0585031;0.0590194;0.0594869;0.0599029;0.0602654;0.0605726;0.0608233;0.0610164;0.0611512;0.0612273;0.0612448;0.0612038;0.0611047;0.0609483;0.0607354;0.060467;0.0601445;0.0597692;0.0593427;0.0588665;0.0583424;0.0577723;0.0571579;0.0565012;0.0558042;0.0550689;0.0542972;0.0534911;0.0526525;0.0517834;0.0508856;0.0499609;0.0490111;0.0480378;0.0470426;0.0460271;0.0449926;0.0439406;0.0428724;0.0417892;0.0406924;0.0395831;0.0384623;0.0373312;0.0361907;0.0350417;0.0338852;0.0327219;0.0315528;0.0303784;0.0291996;0.0280168;0.0268309;0.0256422;0.0244513;0.0232586;0.0220646;0.0208697;0.0196741;0.0184782;0.0172822;0.0160864;0.0148909;0.013696;0.0125017;0.0113082;0.0101156;0.00892401;0.0077334;0.00654385;0.0053554;0.00416808;0.00298188;0.00179682;0 + + Profile for OptimaleBL3 - VTP Section 1 Main Element + Profile for OptimaleBL3 - VTP Section 1 Main Element + + + + 1;0.990555;0.980422;0.970289;0.960156;0.950023;0.93989;0.929758;0.919625;0.909493;0.899361;0.889229;0.879097;0.868965;0.858833;0.848701;0.838569;0.828437;0.818305;0.808173;0.79804;0.787908;0.777775;0.767642;0.757508;0.747374;0.73724;0.727105;0.716969;0.706832;0.696695;0.686557;0.676417;0.666277;0.656135;0.645992;0.635847;0.625701;0.615553;0.605403;0.595252;0.585098;0.574942;0.564784;0.554624;0.544461;0.534296;0.524128;0.513958;0.503785;0.493609;0.483431;0.47325;0.463066;0.452879;0.442691;0.4325;0.422306;0.412111;0.401914;0.391715;0.381515;0.371314;0.361112;0.35091;0.340707;0.330505;0.320304;0.310104;0.299904;0.289707;0.279511;0.269317;0.259126;0.248936;0.23875;0.228565;0.218383;0.208204;0.198028;0.187853;0.177682;0.167514;0.157351;0.147194;0.137043;0.126903;0.116775;0.106666;0.0965814;0.0865299;0.076522;0.0665691;0.0566836;0.0468772;0.0371601;0.0275429;0.0182238;0.00975967;0.00291445;0;0.00291445;0.00975967;0.0182238;0.0275429;0.0371601;0.0468772;0.0566836;0.0665691;0.076522;0.0865299;0.0965814;0.106666;0.116775;0.126903;0.137043;0.147194;0.157351;0.167514;0.177682;0.187853;0.198028;0.208204;0.218383;0.228565;0.23875;0.248936;0.259126;0.269317;0.279511;0.289707;0.299904;0.310104;0.320304;0.330505;0.340707;0.35091;0.361112;0.371314;0.381515;0.391715;0.401914;0.412111;0.422306;0.4325;0.442691;0.452879;0.463066;0.47325;0.483431;0.493609;0.503785;0.513958;0.524128;0.534296;0.544461;0.554624;0.564784;0.574942;0.585098;0.595252;0.605403;0.615553;0.625701;0.635847;0.645992;0.656135;0.666277;0.676417;0.686557;0.696695;0.706832;0.716969;0.727105;0.73724;0.747374;0.757508;0.767642;0.777775;0.787908;0.79804;0.808173;0.818305;0.828437;0.838569;0.848701;0.858833;0.868965;0.879097;0.889229;0.899361;0.909493;0.919625;0.929758;0.93989;0.950023;0.960156;0.970289;0.980422;0.990555;1 + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + 0;-0.00179682;-0.00298188;-0.00416808;-0.0053554;-0.00654385;-0.0077334;-0.00892401;-0.0101156;-0.0113082;-0.0125017;-0.013696;-0.0148909;-0.0160864;-0.0172822;-0.0184782;-0.0196741;-0.0208697;-0.0220646;-0.0232586;-0.0244513;-0.0256422;-0.0268309;-0.0280168;-0.0291996;-0.0303784;-0.0315528;-0.0327219;-0.0338852;-0.0350417;-0.0361907;-0.0373312;-0.0384623;-0.0395831;-0.0406924;-0.0417892;-0.0428724;-0.0439405;-0.0449926;-0.0460271;-0.0470426;-0.0480378;-0.0490111;-0.0499609;-0.0508856;-0.0517834;-0.0526525;-0.0534911;-0.0542972;-0.0550689;-0.0558042;-0.0565012;-0.0571579;-0.0577723;-0.0583424;-0.0588665;-0.0593427;-0.0597692;-0.0601445;-0.060467;-0.0607354;-0.0609483;-0.0611047;-0.0612038;-0.0612448;-0.0612273;-0.0611511;-0.0610164;-0.0608233;-0.0605726;-0.0602654;-0.0599029;-0.0594869;-0.0590194;-0.0585031;-0.0579409;-0.0573357;-0.0566903;-0.056007;-0.055287;-0.0545294;-0.0537325;-0.0528917;-0.0519998;-0.0510468;-0.0500191;-0.0488993;-0.0476658;-0.0462922;-0.0447481;-0.0430015;-0.0410212;-0.0387804;-0.036259;-0.0334458;-0.0303367;-0.0269339;-0.0228092;-0.0171399;-0.00963297;0;0.00963297;0.0171399;0.0228092;0.0269339;0.0303367;0.0334458;0.036259;0.0387804;0.0410212;0.0430015;0.0447481;0.0462922;0.0476658;0.0488993;0.0500191;0.0510468;0.0519998;0.0528917;0.0537325;0.0545294;0.055287;0.056007;0.0566903;0.0573357;0.0579409;0.0585031;0.0590194;0.0594869;0.0599029;0.0602654;0.0605726;0.0608233;0.0610164;0.0611511;0.0612273;0.0612448;0.0612038;0.0611047;0.0609483;0.0607354;0.060467;0.0601445;0.0597692;0.0593427;0.0588665;0.0583424;0.0577723;0.0571579;0.0565012;0.0558042;0.0550689;0.0542972;0.0534911;0.0526525;0.0517834;0.0508856;0.0499609;0.0490111;0.0480378;0.0470426;0.0460271;0.0449926;0.0439405;0.0428724;0.0417892;0.0406924;0.0395831;0.0384623;0.0373312;0.0361907;0.0350417;0.0338852;0.0327219;0.0315528;0.0303784;0.0291996;0.0280168;0.0268309;0.0256422;0.0244513;0.0232586;0.0220646;0.0208697;0.0196741;0.0184782;0.0172822;0.0160864;0.0148909;0.013696;0.0125017;0.0113082;0.0101156;0.00892401;0.0077334;0.00654385;0.0053554;0.00416808;0.00298188;0.00179682;0 + + Profile for OptimaleBL3 - VTP Section 2 Main Element + Profile for OptimaleBL3 - VTP Section 2 Main Element + + + + 0.999702;0.989636;0.979562;0.969484;0.959402;0.949318;0.939234;0.92915;0.919069;0.908989;0.898913;0.888841;0.878774;0.86871;0.858651;0.848596;0.838546;0.8285;0.818457;0.808418;0.798381;0.788346;0.778313;0.76828;0.758246;0.748211;0.738172;0.728131;0.718087;0.70804;0.697989;0.687935;0.677879;0.66782;0.657758;0.647695;0.63763;0.627563;0.617495;0.607426;0.597355;0.587284;0.577211;0.567138;0.557064;0.546989;0.536913;0.526836;0.516759;0.506681;0.496602;0.486523;0.476443;0.466362;0.456281;0.4462;0.436118;0.426036;0.415953;0.40587;0.395787;0.385703;0.37562;0.365536;0.355452;0.345368;0.335283;0.325199;0.315115;0.305031;0.294947;0.284863;0.274779;0.264695;0.254612;0.24453;0.234448;0.224366;0.214285;0.204205;0.194126;0.184049;0.173972;0.163898;0.153825;0.143754;0.133686;0.12362;0.113559;0.103502;0.0934511;0.0834062;0.0733686;0.0633416;0.0533328;0.043348;0.033393;0.0234847;0.0136721;0.00438585;0;0.00244965;0.00713434;0.0133725;0.0205442;0.0283937;0.0368614;0.0457648;0.0549685;0.0643848;0.0739655;0.0836856;0.0935212;0.10345;0.113454;0.123524;0.13365;0.143824;0.15404;0.16429;0.174572;0.184882;0.195217;0.205575;0.215952;0.226347;0.236758;0.247183;0.257621;0.268071;0.278531;0.289001;0.299479;0.309965;0.320457;0.330956;0.34146;0.351969;0.362481;0.372997;0.383516;0.394036;0.404558;0.41508;0.425602;0.436124;0.446643;0.457159;0.467672;0.47818;0.488683;0.499178;0.509665;0.520142;0.530609;0.541062;0.551501;0.561925;0.57233;0.582717;0.593083;0.603427;0.613748;0.624045;0.634318;0.644566;0.654788;0.664984;0.675155;0.685301;0.695422;0.705522;0.715603;0.725668;0.735723;0.745771;0.755819;0.765872;0.775936;0.786015;0.796114;0.806233;0.816371;0.826527;0.8367;0.846885;0.857081;0.867292;0.877522;0.887776;0.898055;0.908358;0.918677;0.928998;0.939311;0.949604;0.959864;0.970079;0.980235;0.990314;1.0003 + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + -0.00145355;-0.000852764;-0.000387073;-4.49727e-05;0.000175262;0.000267205;0.000244653;0.000121778;-0.000100947;-0.00042092;-0.000832032;-0.00132787;-0.0019024;-0.00254963;-0.00326318;-0.00403636;-0.0048626;-0.00573584;-0.00665042;-0.00760051;-0.00857902;-0.00957847;-0.0105911;-0.0116072;-0.0126159;-0.0136058;-0.0145684;-0.0154997;-0.016397;-0.0172577;-0.0180807;-0.0188665;-0.0196154;-0.0203284;-0.0210076;-0.0216559;-0.0222762;-0.0228708;-0.0234416;-0.0239903;-0.0245185;-0.0250272;-0.0255167;-0.025987;-0.026438;-0.0268698;-0.0272821;-0.0276747;-0.0280476;-0.0284007;-0.0287342;-0.0290482;-0.0293431;-0.0296191;-0.0298764;-0.0301154;-0.0303363;-0.0305392;-0.0307238;-0.0308899;-0.0310371;-0.0311652;-0.0312741;-0.0313637;-0.0314337;-0.0314839;-0.0315135;-0.0315222;-0.0315093;-0.031474;-0.0314156;-0.0313332;-0.0312263;-0.0310946;-0.0309383;-0.030757;-0.0305498;-0.0303151;-0.0300513;-0.0297566;-0.0294288;-0.0290657;-0.0286654;-0.0282265;-0.0277476;-0.0272263;-0.026658;-0.0260372;-0.0253579;-0.0246136;-0.0237979;-0.0229077;-0.0219396;-0.0208659;-0.0196361;-0.0182237;-0.0166159;-0.0147417;-0.012424;-0.00860387;0;0.0101691;0.0195775;0.0280386;0.0357336;0.0427351;0.0489762;0.054581;0.0596789;0.0643738;0.0687233;0.0727521;0.0764903;0.0799743;0.0832343;0.086287;0.0891475;0.0918313;0.0943538;0.096729;0.0989652;0.101068;0.103045;0.104901;0.106642;0.108273;0.1098;0.111226;0.112555;0.113789;0.114931;0.115983;0.116947;0.117824;0.118615;0.11932;0.119942;0.120478;0.120931;0.121299;0.121581;0.121777;0.121884;0.121904;0.121833;0.12167;0.121415;0.121064;0.120617;0.12007;0.119421;0.118667;0.117806;0.116834;0.115749;0.114548;0.113229;0.111788;0.110226;0.108541;0.106734;0.104806;0.102758;0.100593;0.0983146;0.095926;0.0934309;0.090833;0.088136;0.0853444;0.082467;0.0795149;0.076499;0.0734319;0.0703293;0.067208;0.0640845;0.0609766;0.0579027;0.0548814;0.0519262;0.0490397;0.0462222;0.0434722;0.0407811;0.0381377;0.0355381;0.0329965;0.0305363;0.0281741;0.0259228;0.0237875;0.0217276;0.0196811;0.017591;0.0154037;0.01307;0.0105465;0.00779427;0.00477463;0.00145355 + + Profile for OptimaleBL3 - Wing Section 1 Main Element + Profile for OptimaleBL3 - Wing Section 1 Main Element + + + + 0.999702;0.989636;0.979562;0.969484;0.959402;0.949318;0.939234;0.92915;0.919069;0.908989;0.898914;0.888841;0.878774;0.86871;0.858651;0.848597;0.838546;0.8285;0.818457;0.808418;0.798381;0.788346;0.778313;0.76828;0.758246;0.748211;0.738173;0.728131;0.718087;0.70804;0.697989;0.687935;0.677879;0.66782;0.657759;0.647695;0.63763;0.627563;0.617495;0.607426;0.597355;0.587284;0.577211;0.567138;0.557064;0.546989;0.536913;0.526836;0.516759;0.506681;0.496602;0.486523;0.476443;0.466362;0.456281;0.4462;0.436118;0.426036;0.415953;0.40587;0.395787;0.385704;0.37562;0.365536;0.355452;0.345368;0.335284;0.325199;0.315115;0.305031;0.294947;0.284863;0.274779;0.264696;0.254613;0.24453;0.234448;0.224366;0.214285;0.204205;0.194127;0.184049;0.173972;0.163898;0.153825;0.143754;0.133686;0.123621;0.113559;0.103502;0.0934514;0.0834065;0.0733688;0.0633419;0.053333;0.0433483;0.0333932;0.023485;0.0136724;0.00438609;0;0.00244958;0.00713423;0.0133723;0.0205441;0.0283935;0.0368612;0.0457646;0.0549683;0.0643846;0.0739653;0.0836854;0.093521;0.10345;0.113454;0.123524;0.13365;0.143824;0.154039;0.16429;0.174572;0.184882;0.195217;0.205574;0.215952;0.226347;0.236758;0.247183;0.257621;0.268071;0.278531;0.289001;0.299479;0.309965;0.320457;0.330956;0.34146;0.351968;0.362481;0.372997;0.383516;0.394036;0.404558;0.41508;0.425602;0.436123;0.446643;0.457159;0.467672;0.47818;0.488682;0.499178;0.509665;0.520142;0.530608;0.541062;0.551501;0.561925;0.57233;0.582717;0.593083;0.603427;0.613748;0.624045;0.634318;0.644566;0.654788;0.664984;0.675155;0.685301;0.695422;0.705522;0.715603;0.725668;0.735723;0.745771;0.755819;0.765872;0.775936;0.786015;0.796114;0.806233;0.816371;0.826527;0.8367;0.846885;0.857081;0.867292;0.877522;0.887776;0.898055;0.908358;0.918677;0.928998;0.939311;0.949604;0.959864;0.970079;0.980235;0.990314;1.0003 + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + -0.00145355;-0.000852761;-0.000387067;-4.49649e-05;0.000175272;0.000267219;0.000244669;0.000121797;-0.000100926;-0.000420895;-0.000832004;-0.00132784;-0.00190237;-0.00254959;-0.00326314;-0.00403631;-0.00486256;-0.00573579;-0.00665037;-0.00760045;-0.00857897;-0.00957841;-0.010591;-0.0116072;-0.0126158;-0.0136058;-0.0145683;-0.0154996;-0.0163969;-0.0172576;-0.0180806;-0.0188664;-0.0196153;-0.0203283;-0.0210075;-0.0216558;-0.0222761;-0.0228707;-0.0234415;-0.0239902;-0.0245183;-0.0250271;-0.0255166;-0.0259869;-0.0264379;-0.0268696;-0.0272819;-0.0276746;-0.0280475;-0.0284006;-0.028734;-0.0290481;-0.029343;-0.0296189;-0.0298763;-0.0301153;-0.0303362;-0.0305391;-0.0307237;-0.0308897;-0.0310369;-0.031165;-0.031274;-0.0313635;-0.0314336;-0.0314837;-0.0315134;-0.031522;-0.0315091;-0.0314738;-0.0314154;-0.031333;-0.0312261;-0.0310944;-0.0309381;-0.0307568;-0.0305496;-0.0303149;-0.0300511;-0.0297564;-0.0294286;-0.0290655;-0.0286652;-0.0282262;-0.0277474;-0.0272261;-0.0266578;-0.026037;-0.0253577;-0.0246134;-0.0237976;-0.0229075;-0.0219393;-0.0208657;-0.0196359;-0.0182235;-0.0166157;-0.0147415;-0.0124238;-0.00860376;0;0.0101691;0.0195776;0.0280386;0.0357337;0.0427352;0.0489763;0.0545811;0.0596791;0.0643739;0.0687235;0.0727523;0.0764905;0.0799744;0.0832345;0.0862871;0.0891477;0.0918315;0.0943539;0.0967292;0.0989654;0.101069;0.103045;0.104901;0.106642;0.108273;0.1098;0.111226;0.112555;0.113789;0.114931;0.115984;0.116947;0.117824;0.118615;0.119321;0.119942;0.120479;0.120931;0.121299;0.121581;0.121777;0.121885;0.121904;0.121833;0.12167;0.121415;0.121064;0.120617;0.12007;0.119421;0.118668;0.117806;0.116835;0.115749;0.114548;0.113229;0.111788;0.110226;0.108541;0.106734;0.104806;0.102758;0.100593;0.0983147;0.0959261;0.093431;0.0908331;0.0881361;0.0853445;0.0824671;0.079515;0.0764991;0.073432;0.0703294;0.067208;0.0640846;0.0609767;0.0579028;0.0548814;0.0519262;0.0490397;0.0462222;0.0434722;0.0407811;0.0381377;0.0355381;0.0329966;0.0305364;0.0281742;0.0259228;0.0237875;0.0217276;0.0196811;0.017591;0.0154038;0.0130701;0.0105465;0.00779427;0.00477463;0.00145355 + + Profile for OptimaleBL3 - Wing Section 2 Main Element + Profile for OptimaleBL3 - Wing Section 2 Main Element + + + + 0.999702;0.989635;0.979562;0.969484;0.959402;0.949318;0.939234;0.92915;0.919068;0.908989;0.898913;0.888841;0.878774;0.86871;0.858651;0.848596;0.838546;0.8285;0.818457;0.808418;0.798381;0.788346;0.778313;0.76828;0.758246;0.748211;0.738172;0.728131;0.718087;0.708039;0.697989;0.687935;0.677879;0.66782;0.657758;0.647695;0.63763;0.627563;0.617495;0.607426;0.597355;0.587284;0.577211;0.567138;0.557064;0.546989;0.536913;0.526836;0.516759;0.506681;0.496602;0.486523;0.476443;0.466362;0.456281;0.4462;0.436118;0.426036;0.415953;0.40587;0.395787;0.385703;0.37562;0.365536;0.355452;0.345368;0.335283;0.325199;0.315115;0.305031;0.294946;0.284862;0.274779;0.264695;0.254612;0.24453;0.234447;0.224366;0.214285;0.204205;0.194126;0.184048;0.173972;0.163897;0.153825;0.143754;0.133685;0.12362;0.113559;0.103502;0.093451;0.083406;0.0733683;0.0633414;0.0533325;0.0433479;0.0333928;0.0234846;0.013672;0.0043857;0;0.00244973;0.00713445;0.0133726;0.0205444;0.0283938;0.0368616;0.0457649;0.0549687;0.0643849;0.0739657;0.0836858;0.0935214;0.10345;0.113454;0.123524;0.13365;0.143824;0.15404;0.16429;0.174572;0.184882;0.195217;0.205575;0.215952;0.226347;0.236758;0.247183;0.257621;0.268071;0.278531;0.289001;0.299479;0.309965;0.320457;0.330956;0.34146;0.351969;0.362481;0.372997;0.383516;0.394036;0.404558;0.41508;0.425603;0.436124;0.446643;0.457159;0.467672;0.47818;0.488683;0.499178;0.509665;0.520142;0.530609;0.541062;0.551501;0.561925;0.57233;0.582717;0.593083;0.603427;0.613748;0.624045;0.634318;0.644566;0.654788;0.664985;0.675155;0.685301;0.695422;0.705522;0.715603;0.725668;0.735723;0.745771;0.755819;0.765872;0.775936;0.786015;0.796114;0.806233;0.816371;0.826527;0.8367;0.846885;0.857081;0.867292;0.877522;0.887776;0.898055;0.908358;0.918677;0.928998;0.939311;0.949604;0.959864;0.970079;0.980235;0.990314;1.0003 + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + -0.00145355;-0.000852764;-0.000387077;-4.49787e-05;0.000175253;0.000267195;0.00024464;0.000121764;-0.000100965;-0.000420939;-0.000832054;-0.00132789;-0.00190243;-0.00254966;-0.00326321;-0.00403639;-0.00486264;-0.00573588;-0.00665046;-0.00760055;-0.00857907;-0.00957851;-0.0105911;-0.0116073;-0.0126159;-0.0136059;-0.0145684;-0.0154997;-0.0163971;-0.0172577;-0.0180808;-0.0188666;-0.0196155;-0.0203284;-0.0210077;-0.021656;-0.0222762;-0.0228709;-0.0234417;-0.0239904;-0.0245185;-0.0250273;-0.0255168;-0.0259871;-0.0264381;-0.0268699;-0.0272822;-0.0276748;-0.0280477;-0.0284008;-0.0287343;-0.0290483;-0.0293432;-0.0296192;-0.0298765;-0.0301155;-0.0303365;-0.0305393;-0.030724;-0.03089;-0.0310372;-0.0311653;-0.0312743;-0.0313638;-0.0314339;-0.031484;-0.0315137;-0.0315223;-0.0315094;-0.0314741;-0.0314157;-0.0313334;-0.0312264;-0.0310948;-0.0309385;-0.0307572;-0.03055;-0.0303153;-0.0300515;-0.0297567;-0.029429;-0.0290659;-0.0286656;-0.0282266;-0.0277477;-0.0272264;-0.0266582;-0.0260373;-0.0253581;-0.0246138;-0.023798;-0.0229079;-0.0219397;-0.020866;-0.0196363;-0.0182238;-0.0166161;-0.0147419;-0.0124241;-0.00860396;0;0.0101691;0.0195775;0.0280385;0.0357336;0.042735;0.0489761;0.0545809;0.0596788;0.0643736;0.0687232;0.072752;0.0764902;0.0799741;0.0832342;0.0862868;0.0891474;0.0918312;0.0943536;0.0967289;0.0989651;0.101068;0.103045;0.104901;0.106642;0.108273;0.1098;0.111226;0.112554;0.113789;0.114931;0.115983;0.116947;0.117824;0.118615;0.11932;0.119942;0.120478;0.120931;0.121298;0.121581;0.121776;0.121884;0.121903;0.121832;0.12167;0.121414;0.121064;0.120617;0.12007;0.119421;0.118667;0.117806;0.116834;0.115749;0.114548;0.113228;0.111788;0.110226;0.108541;0.106734;0.104806;0.102758;0.100593;0.0983145;0.0959259;0.0934308;0.0908329;0.0881359;0.0853443;0.0824669;0.0795148;0.076499;0.0734319;0.0703292;0.0672079;0.0640845;0.0609765;0.0579026;0.0548813;0.0519261;0.0490396;0.0462221;0.0434721;0.040781;0.0381376;0.0355381;0.0329965;0.0305363;0.0281741;0.0259228;0.0237875;0.0217276;0.0196811;0.017591;0.0154037;0.01307;0.0105465;0.00779426;0.00477462;0.00145355 + + Profile for OptimaleBL3 - Wing Section 3 Main Element + Profile for OptimaleBL3 - Wing Section 3 Main Element + + + + 0.999702;0.989635;0.979562;0.969484;0.959402;0.949318;0.939234;0.92915;0.919068;0.908989;0.898913;0.888841;0.878774;0.86871;0.858651;0.848596;0.838546;0.8285;0.818457;0.808418;0.798381;0.788346;0.778313;0.76828;0.758246;0.748211;0.738172;0.728131;0.718087;0.708039;0.697989;0.687935;0.677879;0.66782;0.657758;0.647695;0.63763;0.627563;0.617495;0.607425;0.597355;0.587284;0.577211;0.567138;0.557064;0.546989;0.536913;0.526836;0.516759;0.506681;0.496602;0.486522;0.476443;0.466362;0.456281;0.4462;0.436118;0.426035;0.415953;0.40587;0.395787;0.385703;0.37562;0.365536;0.355452;0.345367;0.335283;0.325199;0.315115;0.30503;0.294946;0.284862;0.274779;0.264695;0.254612;0.244529;0.234447;0.224366;0.214285;0.204205;0.194126;0.184048;0.173972;0.163897;0.153824;0.143753;0.133685;0.12362;0.113559;0.103502;0.0934507;0.0834058;0.0733682;0.0633413;0.0533324;0.0433475;0.0333925;0.0234844;0.0136717;0.00438551;0;0.00244981;0.00713456;0.0133727;0.0205445;0.028394;0.0368617;0.0457651;0.0549689;0.0643851;0.0739658;0.0836859;0.0935215;0.10345;0.113455;0.123524;0.13365;0.143824;0.15404;0.164291;0.174573;0.184882;0.195217;0.205575;0.215952;0.226347;0.236758;0.247183;0.257622;0.268071;0.278531;0.289001;0.299479;0.309965;0.320458;0.330956;0.34146;0.351969;0.362482;0.372997;0.383516;0.394036;0.404559;0.415081;0.425603;0.436124;0.446643;0.457159;0.467672;0.47818;0.488683;0.499178;0.509665;0.520143;0.530609;0.541062;0.551501;0.561925;0.57233;0.582717;0.593083;0.603427;0.613748;0.624045;0.634318;0.644566;0.654788;0.664985;0.675155;0.685301;0.695422;0.705522;0.715603;0.725668;0.735723;0.745771;0.75582;0.765872;0.775936;0.786015;0.796114;0.806233;0.816371;0.826527;0.8367;0.846885;0.857081;0.867292;0.877522;0.887776;0.898055;0.908358;0.918677;0.928998;0.939311;0.949604;0.959864;0.970079;0.980235;0.990314;1.0003 + 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 + -0.00145355;-0.000852766;-0.000387081;-4.49954e-05;0.000175248;0.000267183;0.000244636;0.000121745;-0.000100983;-0.000420958;-0.000832078;-0.00132792;-0.00190246;-0.00254969;-0.00326325;-0.00403643;-0.00486268;-0.00573592;-0.00665051;-0.0076006;-0.0085791;-0.00957858;-0.0105912;-0.0116074;-0.012616;-0.013606;-0.0145685;-0.0154998;-0.0163971;-0.0172578;-0.0180808;-0.0188666;-0.0196156;-0.0203285;-0.0210077;-0.0216561;-0.0222763;-0.022871;-0.0234418;-0.0239905;-0.0245186;-0.0250274;-0.0255169;-0.0259872;-0.0264382;-0.0268699;-0.0272823;-0.027675;-0.0280478;-0.0284009;-0.0287344;-0.0290485;-0.0293434;-0.0296193;-0.0298767;-0.0301157;-0.0303366;-0.0305395;-0.0307241;-0.0308901;-0.0310373;-0.0311655;-0.0312744;-0.031364;-0.031434;-0.0314842;-0.0315138;-0.0315225;-0.0315096;-0.0314743;-0.0314159;-0.0313335;-0.0312266;-0.031095;-0.0309386;-0.0307573;-0.0305501;-0.0303155;-0.0300516;-0.0297569;-0.0294291;-0.0290661;-0.0286658;-0.0282268;-0.0277479;-0.0272266;-0.0266584;-0.0260375;-0.0253583;-0.0246139;-0.0237982;-0.0229081;-0.0219399;-0.0208662;-0.0196365;-0.018224;-0.0166162;-0.0147421;-0.0124243;-0.00860406;0;0.010169;0.0195775;0.0280385;0.0357335;0.0427349;0.048976;0.0545808;0.0596787;0.0643735;0.0687231;0.0727519;0.07649;0.079974;0.083234;0.0862867;0.0891472;0.091831;0.0943535;0.0967287;0.098965;0.101068;0.103045;0.1049;0.106641;0.108273;0.1098;0.111226;0.112554;0.113789;0.114931;0.115983;0.116947;0.117824;0.118614;0.11932;0.119941;0.120478;0.120931;0.121298;0.121581;0.121776;0.121884;0.121903;0.121832;0.12167;0.121414;0.121064;0.120617;0.12007;0.119421;0.118667;0.117806;0.116834;0.115749;0.114548;0.113228;0.111788;0.110226;0.108541;0.106734;0.104806;0.102758;0.100593;0.0983144;0.0959258;0.0934307;0.0908328;0.0881358;0.0853442;0.0824668;0.0795148;0.0764989;0.0734318;0.0703292;0.0672078;0.0640844;0.0609765;0.0579025;0.0548812;0.0519261;0.0490396;0.0462221;0.0434721;0.040781;0.0381376;0.035538;0.0329965;0.0305363;0.0281741;0.0259227;0.0237875;0.0217275;0.0196811;0.017591;0.0154037;0.01307;0.0105465;0.00779423;0.00477462;0.00145355 + + Profile for OptimaleBL3 - Wing Section 4 Main Element + Profile for OptimaleBL3 - Wing Section 4 Main Element + + + + + C-Profil vom Spant + + + 0.008 + 0 + + + -.008 + 0 + + + -.008 + .03 + + + .008 + .030 + + + + + P1_1 + P1_2 + + + P1_2 + P1_3 + + + P1_3 + P1_4 + + + Spanten + + + Lambda-Profil vom Stringer + + + -25 + 0 + + + 0 + 0 + + + 0.025 + 0 + + + 0 + 0.075 + + + 0.020 + 0.075 + + + 0.020 + 0.070 + + + + + LP1_1 + LP1_2 + + + LP1_2 + LP1_3 + + + LP1_2 + LP1_4 + + + LP1_4 + LP1_5 + + + LP1_5 + LP1_6 + + + Stringer + + + L-Profil vom Spant + + + 0 + 0 + + + 0 + 0.050 + + + 0 + 0.110 + + + 0.015 + 0.110 + + + 0.015 + 0.105 + + + + + L_1 + L_2 + + + L_2 + L_3 + + + L_3 + L_4 + + + L_4 + L_5 + + + Spanten2 + + + + + + 2800 + 3.31e8 + 572e8 + 572e8 + 7.2e10 + 0.33 + MAT1 Alu material + aluminium7075 + + + 15 + 5.5e4 + 3e4 + 5.5e4 + 3e4 + 3e4 + 6.5e6 + 6.5e6 + 6.5e6 + 0.5 + https://www2.basf.de/basf2/img/produkte/kunststoffe/styrodur/downloads2/de/styrodur_technische_daten.pdf + 5000 CS + + + 1600 + 0.0000055 + 0.000003 + 0.0000055 + 0.000003 + 0.000003 + 1.6e11 + 8.4e9 + 0.35 + 4.2e9 + MAT8 Karte + CFK_Tenax 5631 RTM6 + + + + + 0.000125 + 45 + CFRP skin + + + + 0.000125 + -45 + CFRP skin + + + + 0.00025 + 90 + CFRP skin + + + + 0.00025 + 0 + CFRP skin + + + + 0.00025 + 0 + CFRP skin + + + + 0.00025 + 90 + CFRP skin + + + + 0.000125 + -45 + CFRP skin + + + + 0.000125 + 45 + CFRP skin + + + 0 + + + + + 0.000125 + 45 + CFRP skin + + + + 0.000125 + -45 + CFRP skin + + + + 0.00025 + 90 + CFRP skin + + + + 0.00025 + 0 + CFRP skin + + + + 0.00025 + 0 + CFRP skin + + + + 0.00025 + 90 + CFRP skin + + + + 0.000125 + -45 + CFRP skin + + + + 0.000125 + 45 + CFRP skin + + + 0 + + + + + 0.00025 + 45 + CFRP skin + + + + 0.00025 + -45 + CFRP skin + + + + 0.0005 + 90 + CFRP skin + + + + 0.0005 + 0 + CFRP skin + + + + 0.0005 + 0 + CFRP skin + + + + 0.0005 + 90 + CFRP skin + + + + 0.00025 + -45 + CFRP skin + + + + 0.00025 + 45 + CFRP skin + + + 0 + + + + + 8e-10 + 210000 + 210000 + 0.3 + 8100 + 500 + 500 + 500 + 500 + 500 + + + + + + + sandwich + + 1. + 0. + 0. + + 2. + + + + + sandwich + + 1. + 0. + 0. + + 3. + + + + + sandwich + + 0. + 0. + 1. + + 1. + + + + + + + + 0.001580 + 0 + 0.120 + 0 + 0 + + + 0.224224e + 0.00203371 + 1.106e+08 + 0 + 0 + 0 + 0 + + + 0 + 0 + + + 0 + 0 + + 0 + + aluminium 7075 + + + + 0 + 0 + + + 0 + + + 0 + 0 + + + + + T Profile: 50 / 60 / 70 / 3 / 4 [mm] + + + + + 0.000378 + 0 + 0.060 + 0 + 0 + + + 2.20878e-3 + 1.28933e-2 + 2.646e+07 + 0 + 0 + 0 + 0 + + + 0 + 0 + + + 0 + 0 + + 0 + + aluminium 7075 + + + + 0 + 0 + + + 0 + + + 0 + 0 + + + + + L Profile: 40 / 60 / 3 / 4 [mm] + + + + + 0.000348 + 0 + .068 + 0 + 0 + + + 6.31232e-3 + 1.1186e-2 + 2.436e+07 + 0 + 0 + 0 + 0 + + + 0 + 0 + + + 0 + 0 + + 0 + + aluminium 7075 + + + + 0 + 0 + + + 0 + + + 0 + 0 + + + + + Z Profile with 40 / 6 / 60 / 68 [mm] + + + + + 0.000390 + 0 + 0.060 + 0 + 0 + + + 1.37242e-2 + 3.8444e-3 + 2.73e+07 + 0 + 0 + 0 + 0 + + + 0 + 0 + + + 0 + 0 + + 0 + + aluminium 7075 + + + + 0 + 0 + + + 0 + + + 0 + 0 + + + + + Z Profile with 30 / 4 / 55 / 60 + + + + + pressure bulkhead element + bulkhead description + pBulkSheet + + + + + + 0 + 0 + 0 + 800 + 0 + 0 + 1.3e6 + 0 + name + fuel + + +
+ + + + + Start + + 0 + + + + T_LndGear_UP + + 15 + + + + T_Flaps_UP + + 50 + + + + T_Climb + + 0;16500 + + + + T_Cruise + + 16500 + + + + T_Descent + + 16500;0 + + + + T_Flaps_DOWN + + 150 + + + + T_LndGear_DOWN + + 50 + + + + T_Landing + + 0 + + + + + + + + Start + + 0 + + + + S_LndGear_UP + + 15 + + + + S_Flaps_UP + + 50 + + + + S_Climb + + 0;16500 + + + + S_Cruise1 + + 16500 + + + + S_Loiter + + 8000;15000 + + + + S_Cruise2 + + 16500 + + + + S_Descent + + 16500;0 + + + + S_Flaps_DOWN + + 150 + + + + S_LndGear_DOWN + + 50 + + + + S_Landing + + 0 + + + + + + + + + + 186.517 + + + + +
diff --git a/test_files/CPACSfiles/busjet0903mod.xml b/test_files/CPACSfiles/busjet0903mod.xml new file mode 100644 index 000000000..4dddaa07e --- /dev/null +++ b/test_files/CPACSfiles/busjet0903mod.xml @@ -0,0 +1,2975 @@ + + +
+ busjet0903mod + Simple Wing for unit testing + Martin Siggel + 2012-10-09T15:12:47 + 0.2 + 3.0 + + + Converted to cpacs 3.0 using cpacs2to3 - does not include structure update + cpacs2to3 + 2018-01-15T09:22:57 + 0.2 + 3.0 + + + Add this update + Aidan + 2018-10-03T09:00:01 + 0.3 + 3.0 + + +
+ + + + busjv0 + + 16.5 + 1.4907 + + 6.4047 + 0 + -0.9 + + + + +Fuselage +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + +
+FuselageFrameX0 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + -0.4 + + + + + ... + fuseprof_1_1 + + + 1 + 0.015 + 0.015 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFrameX64 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.44555 + 0 + -0.37941 + + + + + ... + fuseprof_1_2 + + + 1 + 0.4 + 0.26253 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFrameX61 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 1.4169 + 0 + -0.31804 + + + + + ... + fuseprof_1_3 + + + 1 + 0.69132 + 0.48198 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFrameX238 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 2.3832 + 0 + -0.052979 + + + + + ... + fuseprof_1_4 + + + 1 + 0.8061 + 0.77088 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFrameX184 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 2.94 + 0 + 0 + + + + + ... + fuseprof_1_5 + + + 1 + 0.825 + 0.825 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFrameX383 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 5.5 + 0 + 0 + + + + + ... + fuseprof_1_6 + + + 1 + 0.825 + 0.825 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFrameX845 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 8.03 + 0 + 0 + + + + + ... + fuseprof_1_7 + + + 1 + 0.825 + 0.825 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFrameX815 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 9.65 + 0 + 0.117 + + + + + ... + fuseprof_1_8 + + + 1 + 0.665 + 0.675 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFrameX938 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 11.3 + 0 + 0.354 + + + + + ... + fuseprof_1_9 + + + 1 + 0.34776 + 0.387 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFrameX1000 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 12.4 + 0 + 0.5732 + + + + + ... + fuseprof_1_10 + + + 1 + 0.034906 + 0.090805 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + FuselageFrameX0 + 0 + + + + ... + description + 0 + 0 + FuselageFrameX64 + 0 + + + + ... + description + 0 + 0 + FuselageFrameX61 + 0 + + + + ... + description + 0 + 0 + FuselageFrameX238 + 0 + + + + ... + description + 0 + 0 + FuselageFrameX184 + 0 + + + + ... + description + 0 + 0 + FuselageFrameX383 + 0 + + + + ... + description + 0 + 0 + FuselageFrameX845 + 0 + + + + ... + description + 0 + 0 + FuselageFrameX815 + 0 + + + + ... + description + 0 + 0 + FuselageFrameX938 + 0 + + + + ... + description + 0 + 0 + FuselageFrameX1000 + 0 + + + + + + ... + FuselageFrameX0elem1 + FuselageFrameX64elem1 + + + + ... + FuselageFrameX64elem1 + FuselageFrameX61elem1 + + + + ... + FuselageFrameX61elem1 + FuselageFrameX238elem1 + + + + ... + FuselageFrameX238elem1 + FuselageFrameX184elem1 + + + + ... + FuselageFrameX184elem1 + FuselageFrameX383elem1 + + + + ... + FuselageFrameX383elem1 + FuselageFrameX845elem1 + + + + ... + FuselageFrameX845elem1 + FuselageFrameX815elem1 + + + + ... + FuselageFrameX815elem1 + FuselageFrameX938elem1 + + + + ... + FuselageFrameX938elem1 + FuselageFrameX1000elem1 + + + +
+ +Fairing +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 4 + 0 + -0.84 + + + +
+FairingFrameX0 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.00537 + 0 + 0.182 + + + + + ... + fuseprof_2_1 + + + 1 + 0.2875 + 0.096528 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FairingFrameX61 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.312 + 0 + 0.178 + + + + + ... + fuseprof_2_2 + + + 1 + 0.51 + 0.2185 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FairingFrameX184 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.93 + 0 + 0.137 + + + + + ... + fuseprof_2_3 + + + 1 + 0.64 + 0.371 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FairingFrameX383 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 1.93 + 0 + 0.149 + + + + + ... + fuseprof_2_4 + + + 1 + 0.735 + 0.4495 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FairingFrameX616 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 2.95 + 0 + 0.158 + + + + + ... + fuseprof_2_5 + + + 1 + 0.68 + 0.4335 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FairingFrameX815 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 3.88 + 0 + 0.222 + + + + + ... + fuseprof_2_6 + + + 1 + 0.4525 + 0.3025 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FairingFrameX1000 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 4.7297 + 0 + 0.33627 + + + + + ... + fuseprof_2_7 + + + 1 + 0.189 + 0.022006 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + FairingFrameX0 + 0 + + + + ... + description + 0 + 0 + FairingFrameX61 + 0 + + + + ... + description + 0 + 0 + FairingFrameX184 + 0 + + + + ... + description + 0 + 0 + FairingFrameX383 + 0 + + + + ... + description + 0 + 0 + FairingFrameX616 + 0 + + + + ... + description + 0 + 0 + FairingFrameX815 + 0 + + + + ... + description + 0 + 0 + FairingFrameX1000 + 0 + + + + + + ... + FairingFrameX0elem1 + FairingFrameX61elem1 + + + + ... + FairingFrameX61elem1 + FairingFrameX184elem1 + + + + ... + FairingFrameX184elem1 + FairingFrameX383elem1 + + + + ... + FairingFrameX383elem1 + FairingFrameX616elem1 + + + + ... + FairingFrameX616elem1 + FairingFrameX815elem1 + + + + ... + FairingFrameX815elem1 + FairingFrameX1000elem1 + + + +
+ +LeftNacelle +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 7.4 + -1.3 + 0.45 + + + +
+LeftNacelleFrameX0 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + ... + fuseprof_3_1 + + + 1 + 0.305 + 0.305 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+LeftNacelleFrameX184 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.242 + -0 + 0 + + + + + ... + fuseprof_3_2 + + + 1 + 0.3695 + 0.3695 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+LeftNacelleFrameX53 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.6 + -0 + 0 + + + + + ... + fuseprof_3_3 + + + 1 + 0.42 + 0.42 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+LeftNacelleFrameX383 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 1.03 + -0 + 0 + + + + + ... + fuseprof_3_4 + + + 1 + 0.42 + 0.42 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+LeftNacelleFrameX616 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 1.39 + -0 + 0 + + + + + ... + fuseprof_3_5 + + + 1 + 0.372 + 0.372 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+LeftNacelleFrameX1000 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 2.25 + -0 + 0 + + + + + ... + fuseprof_3_6 + + + 1 + 0.21 + 0.21 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + LeftNacelleFrameX0 + 0 + + + + ... + description + 0 + 0 + LeftNacelleFrameX184 + 0 + + + + ... + description + 0 + 0 + LeftNacelleFrameX53 + 0 + + + + ... + description + 0 + 0 + LeftNacelleFrameX383 + 0 + + + + ... + description + 0 + 0 + LeftNacelleFrameX616 + 0 + + + + ... + description + 0 + 0 + LeftNacelleFrameX1000 + 0 + + + + + + ... + LeftNacelleFrameX0elem1 + LeftNacelleFrameX184elem1 + + + + ... + LeftNacelleFrameX184elem1 + LeftNacelleFrameX53elem1 + + + + ... + LeftNacelleFrameX53elem1 + LeftNacelleFrameX383elem1 + + + + ... + LeftNacelleFrameX383elem1 + LeftNacelleFrameX616elem1 + + + + ... + LeftNacelleFrameX616elem1 + LeftNacelleFrameX1000elem1 + + + +
+ +RightNacelle +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 7.4 + 1.3 + 0.45 + + + +
+RightNacelleFrameX0 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + -0 + 0 + + + + + ... + fuseprof_4_1 + + + 1 + 0.305 + 0.305 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+RightNacelleFrameX184 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.242 + 0 + 0 + + + + + ... + fuseprof_4_2 + + + 1 + 0.3695 + 0.3695 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+RightNacelleFrameX53 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.6 + 0 + 0 + + + + + ... + fuseprof_4_3 + + + 1 + 0.42 + 0.42 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+RightNacelleFrameX383 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 1.03 + 0 + 0 + + + + + ... + fuseprof_4_4 + + + 1 + 0.42 + 0.42 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+RightNacelleFrameX616 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 1.39 + 0 + 0 + + + + + ... + fuseprof_4_5 + + + 1 + 0.372 + 0.372 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+RightNacelleFrameX1000 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 2.25 + 0 + 0 + + + + + ... + fuseprof_4_6 + + + 1 + 0.21 + 0.21 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + RightNacelleFrameX0 + 0 + + + + ... + description + 0 + 0 + RightNacelleFrameX184 + 0 + + + + ... + description + 0 + 0 + RightNacelleFrameX53 + 0 + + + + ... + description + 0 + 0 + RightNacelleFrameX383 + 0 + + + + ... + description + 0 + 0 + RightNacelleFrameX616 + 0 + + + + ... + description + 0 + 0 + RightNacelleFrameX1000 + 0 + + + + + + ... + RightNacelleFrameX0elem1 + RightNacelleFrameX184elem1 + + + + ... + RightNacelleFrameX184elem1 + RightNacelleFrameX53elem1 + + + + ... + RightNacelleFrameX53elem1 + RightNacelleFrameX383elem1 + + + + ... + RightNacelleFrameX383elem1 + RightNacelleFrameX616elem1 + + + + ... + RightNacelleFrameX616elem1 + RightNacelleFrameX1000elem1 + + + +
+
+ + + Wing + Fuselage + description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 4.8 + 0 + -0.9 + + + +
+WingCenterline +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 0 + 0 + -0.06 + + + + + ... + foil_1_4 + + + + 2.2 + 2.2 + 2.2 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingRightWingTip +description + + + 1 + 1 + 1 + + + -0 + 1 + -0 + + + 2.2 + 6.1 + 0.5 + + + + + ... + foil_1_3 + + + + 0.9 + 0.9 + 0.9 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingRightWLRoot +description + + + 1 + 1 + 1 + + + 85 + 0 + -0 + + + 2.75 + 6.5 + 0.8 + + + + + ... + foil_1_2 + + + + 0.52 + 0.52 + 0.52 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingRightWLTip +description + + + 1 + 1 + 1 + + + 85 + 0 + -0 + + + 3.3 + 6.6 + 1.5 + + + + + ... + foil_1_1 + + + + 0.3 + 0.3 + 0.3 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + WingRightWLTip + 0 + + + + ... + description + 0 + 0 + WingRightWLRoot + 0 + + + + ... + description + 0 + 0 + WingRightWingTip + 0 + + + + ... + description + 0 + 0 + WingCenterline + 0 + + + + + + ... + WingRightWLTipelem1 + WingRightWLRootelem1 + + + + ... + WingRightWLRootelem1 + WingRightWingTipelem1 + + + + ... + WingRightWingTipelem1 + WingCenterlineelem1 + + + +
+ + Fin + Fuselage + description + + + 1 + 1 + 1 + + + 90.0002 + 0 + -0 + + + 7.3 + 0 + 0.6 + + + +
+FinFinRoot +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + -0.4 + 0 + 0 + + + + + ... + foil_2_3 + + + + 5.4 + 5.4 + 5.4 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FinFinKink +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 3.1 + 0.8 + 0 + + + + + ... + foil_2_2 + + + + 2.27 + 2.27 + 2.27 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FinFinTip +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 4.9 + 2.7 + 0 + + + + + ... + foil_2_1 + + + + 1.4 + 1.4 + 1.4 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + FinFinTip + 0 + + + + ... + description + 0 + 0 + FinFinKink + 0 + + + + ... + description + 0 + 0 + FinFinRoot + 0 + + + + + + ... + FinFinTipelem1 + FinFinKinkelem1 + + + + ... + FinFinKinkelem1 + FinFinRootelem1 + + + +
+ + WingStabilizer + Fuselage + description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 12.2 + 0 + 3.2 + + + +
+WingStabilizerStabRoot +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 0 + 0 + 0 + + + + + ... + foil_3_2 + + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingStabilizerStabTip +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 0.837 + 2.3 + 0 + + + + + ... + foil_3_1 + + + + 0.45 + 0.45 + 0.45 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + WingStabilizerStabTip + 0 + + + + ... + description + 0 + 0 + WingStabilizerStabRoot + 0 + + + + + + ... + WingStabilizerStabTipelem1 + WingStabilizerStabRootelem1 + + + +
+ + WingPylon + Fuselage + description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 7.6 + 0 + 0.1 + + + +
+WingPylonCentralSection +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 0 + 0 + 0 + + + + + ... + foil_4_2 + + + + 2.1 + 2.1 + 2.1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingPylonPylonTip +description + + + 1 + 1 + 1 + + + 15 + 0 + -0 + + + 0 + 1.3 + 0.35 + + + + + ... + foil_4_1 + + + + 1.9 + 1.9 + 1.9 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + WingPylonPylonTip + 0 + + + + ... + description + 0 + 0 + WingPylonCentralSection + 0 + + + + + + ... + WingPylonPylonTipelem1 + WingPylonCentralSectionelem1 + + + +
+
+ + + + aeromap_empty + Common default aeroMap + + ISA + + + 0.0 + 0.3 + 0.0 + 0.0 + + + + + + +
+
+ + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.849871 ;0.520193 ;0.000000 ;-0.520193 ;-0.849871 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.487693 ;0.884485 ;1.000000 ;0.884485 ;0.487693 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.642919 ;0.000000 ;-0.642919 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.461956 ;0.826095 ;1.000000 ;0.912369 ;0.549315 ;0.000000 ;-0.549315 ;-0.912369 ;-1.000000 ;-0.826095 ;-0.461956 ;-0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.433053 ;0.793116 ;1.000000 ;0.963624 ;0.612259 ;0.000000 ;-0.612259 ;-0.963624 ;-1.000000 ;-0.793116 ;-0.433053 ;-0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.457076 ;0.701691 ;0.868237 ;0.967099 ;1.000000 ;0.967099 ;0.868237 ;0.701691 ;0.457076 ;0.000000 ;-0.457076 ;-0.701691 ;-0.868237 ;-0.967099 ;-1.000000 ;-0.967099 ;-0.868237 ;-0.701691 ;-0.457076 ;0.000000 + -1.000000 ;-0.967099 ;-0.868237 ;-0.701691 ;-0.457076 ;-0.000000 ;0.457076 ;0.701691 ;0.868237 ;0.967099 ;1.000000 ;0.967099 ;0.868237 ;0.701691 ;0.457076 ;-0.000000 ;-0.457076 ;-0.701691 ;-0.868237 ;-0.967099 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.367210 ;0.573124 ;0.729826 ;0.848676 ;0.932839 ;0.983215 ;1.000000 ;0.983215 ;0.932839 ;0.848676 ;0.729826 ;0.573124 ;0.367210 ;0.000000 ;-0.367210 ;-0.573124 ;-0.729826 ;-0.848676 ;-0.932839 ;-0.983215 ;-1.000000 ;-0.983215 ;-0.932839 ;-0.848676 ;-0.729826 ;-0.573124 ;-0.367210 ;0.000000 + -1.000000 ;-0.983215 ;-0.932839 ;-0.848676 ;-0.729826 ;-0.573124 ;-0.367210 ;-0.000000 ;0.367210 ;0.573124 ;0.729826 ;0.848676 ;0.932839 ;0.983215 ;1.000000 ;0.983215 ;0.932839 ;0.848676 ;0.729826 ;0.573124 ;0.367210 ;-0.000000 ;-0.367210 ;-0.573124 ;-0.729826 ;-0.848676 ;-0.932839 ;-0.983215 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.512794 ;0.689974 ;0.810612 ;0.896385 ;0.954709 ;0.988778 ;1.000000 ;0.988778 ;0.954709 ;0.896385 ;0.810612 ;0.689974 ;0.512794 ;0.000000 ;-0.512794 ;-0.689974 ;-0.810612 ;-0.896385 ;-0.954709 ;-0.988778 ;-1.000000 ;-0.988778 ;-0.954709 ;-0.896385 ;-0.810612 ;-0.689974 ;-0.512794 ;0.000000 + -1.000000 ;-0.988778 ;-0.954709 ;-0.896385 ;-0.810612 ;-0.689974 ;-0.512794 ;-0.000000 ;0.512794 ;0.689974 ;0.810612 ;0.896385 ;0.954709 ;0.988778 ;1.000000 ;0.988778 ;0.954709 ;0.896385 ;0.810612 ;0.689974 ;0.512794 ;-0.000000 ;-0.512794 ;-0.689974 ;-0.810612 ;-0.896385 ;-0.954709 ;-0.988778 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.512794 ;0.689974 ;0.810612 ;0.896385 ;0.954709 ;0.988778 ;1.000000 ;0.988778 ;0.954709 ;0.896385 ;0.810612 ;0.689974 ;0.512794 ;0.000000 ;-0.512794 ;-0.689974 ;-0.810612 ;-0.896385 ;-0.954709 ;-0.988778 ;-1.000000 ;-0.988778 ;-0.954709 ;-0.896385 ;-0.810612 ;-0.689974 ;-0.512794 ;0.000000 + -1.000000 ;-0.988778 ;-0.954709 ;-0.896385 ;-0.810612 ;-0.689974 ;-0.512794 ;-0.000000 ;0.512794 ;0.689974 ;0.810612 ;0.896385 ;0.954709 ;0.988778 ;1.000000 ;0.988778 ;0.954709 ;0.896385 ;0.810612 ;0.689974 ;0.512794 ;-0.000000 ;-0.512794 ;-0.689974 ;-0.810612 ;-0.896385 ;-0.954709 ;-0.988778 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.512794 ;0.689974 ;0.810612 ;0.896385 ;0.954709 ;0.988778 ;1.000000 ;0.988778 ;0.954709 ;0.896385 ;0.810612 ;0.689974 ;0.512794 ;0.000000 ;-0.512794 ;-0.689974 ;-0.810612 ;-0.896385 ;-0.954709 ;-0.988778 ;-1.000000 ;-0.988778 ;-0.954709 ;-0.896385 ;-0.810612 ;-0.689974 ;-0.512794 ;0.000000 + -1.000000 ;-0.988778 ;-0.954709 ;-0.896385 ;-0.810612 ;-0.689974 ;-0.512794 ;-0.000000 ;0.512794 ;0.689974 ;0.810612 ;0.896385 ;0.954709 ;0.988778 ;1.000000 ;0.988778 ;0.954709 ;0.896385 ;0.810612 ;0.689974 ;0.512794 ;-0.000000 ;-0.512794 ;-0.689974 ;-0.810612 ;-0.896385 ;-0.954709 ;-0.988778 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.418995 ;0.674607 ;0.854713 ;0.963511 ;1.000000 ;0.963511 ;0.854713 ;0.674607 ;0.418995 ;0.000000 ;-0.418995 ;-0.674607 ;-0.854713 ;-0.963511 ;-1.000000 ;-0.963511 ;-0.854713 ;-0.674607 ;-0.418995 ;0.000000 + -1.000000 ;-0.963511 ;-0.854713 ;-0.674607 ;-0.418995 ;-0.000000 ;0.418995 ;0.674607 ;0.854713 ;0.963511 ;1.000000 ;0.963511 ;0.854713 ;0.674607 ;0.418995 ;-0.000000 ;-0.418995 ;-0.674607 ;-0.854713 ;-0.963511 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.367210 ;0.573124 ;0.729826 ;0.848676 ;0.932839 ;0.983215 ;1.000000 ;0.983215 ;0.932839 ;0.848676 ;0.729826 ;0.573124 ;0.367210 ;0.000000 ;-0.367210 ;-0.573124 ;-0.729826 ;-0.848676 ;-0.932839 ;-0.983215 ;-1.000000 ;-0.983215 ;-0.932839 ;-0.848676 ;-0.729826 ;-0.573124 ;-0.367210 ;0.000000 + -1.000000 ;-0.983215 ;-0.932839 ;-0.848676 ;-0.729826 ;-0.573124 ;-0.367210 ;-0.000000 ;0.367210 ;0.573124 ;0.729826 ;0.848676 ;0.932839 ;0.983215 ;1.000000 ;0.983215 ;0.932839 ;0.848676 ;0.729826 ;0.573124 ;0.367210 ;-0.000000 ;-0.367210 ;-0.573124 ;-0.729826 ;-0.848676 ;-0.932839 ;-0.983215 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + + + ... + ... + + 0.999750 ;0.984920 ;0.968867 ;0.951505 ;0.932730 ;0.912425 ;0.890462 ;0.866719 ;0.841015 ;0.813216 ;0.783161 ;0.750652 ;0.715463 ;0.677360 ;0.636067 ;0.591289 ;0.542778 ;0.490257 ;0.433409 ;0.374254 ;0.319166 ;0.271452 ;0.230128 ;0.194344 ;0.163361 ;0.136538 ;0.113323 ;0.093231 ;0.075846 ;0.060809 ;0.047813 ;0.036585 ;0.026888 ;0.018532 ;0.011422 ;0.005623 ;0.001458 ;-0.000069 ;0.001194 ;0.004752 ;0.010054 ;0.016735 ;0.024716 ;0.034070 ;0.044985 ;0.057707 ;0.072513 ;0.089715 ;0.109673 ;0.132816 ;0.159639 ;0.190710 ;0.226679 ;0.268301 ;0.316443 ;0.372100 ;0.431925 ;0.489444 ;0.542585 ;0.591644 ;0.636875 ;0.678499 ;0.716817 ;0.752113 ;0.784621 ;0.814549 ;0.842110 ;0.867540 ;0.891079 ;0.912813 ;0.932930 ;0.951562 ;0.968834 ;0.984859 ;0.999750 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000016 ;0.000342 ;0.000060 ;-0.000645 ;-0.001712 ;-0.003097 ;-0.004773 ;-0.006884 ;-0.009091 ;-0.011680 ;-0.014791 ;-0.018326 ;-0.022084 ;-0.025950 ;-0.029517 ;-0.032119 ;-0.033813 ;-0.034889 ;-0.035343 ;-0.035088 ;-0.034201 ;-0.032910 ;-0.031350 ;-0.029633 ;-0.027828 ;-0.025959 ;-0.024069 ;-0.022209 ;-0.020394 ;-0.018610 ;-0.016837 ;-0.015098 ;-0.013414 ;-0.011727 ;-0.009744 ;-0.007072 ;-0.003474 ;0.000999 ;0.005634 ;0.009929 ;0.013623 ;0.016962 ;0.020234 ;0.023651 ;0.027257 ;0.031036 ;0.034971 ;0.039083 ;0.043379 ;0.047832 ;0.052371 ;0.056921 ;0.061405 ;0.065680 ;0.069522 ;0.072634 ;0.074465 ;0.074746 ;0.073669 ;0.071371 ;0.067672 ;0.062579 ;0.056804 ;0.050783 ;0.044625 ;0.038381 ;0.032181 ;0.026290 ;0.021035 ;0.016103 ;0.011702 ;0.007846 ;0.004561 ;0.001895 ;0.000021 + + + + ... + ... + + 0.999750 ;0.984890 ;0.968819 ;0.951447 ;0.932667 ;0.912362 ;0.890404 ;0.866652 ;0.840955 ;0.813149 ;0.783055 ;0.750470 ;0.715178 ;0.676957 ;0.635546 ;0.590660 ;0.542051 ;0.489433 ;0.432485 ;0.373226 ;0.318042 ;0.270243 ;0.228846 ;0.192997 ;0.161957 ;0.135086 ;0.111829 ;0.091702 ;0.074287 ;0.059229 ;0.046218 ;0.034980 ;0.025280 ;0.016944 ;0.009950 ;0.004431 ;0.000853 ;-0.000219 ;0.000780 ;0.003787 ;0.008638 ;0.014960 ;0.022643 ;0.031722 ;0.042385 ;0.054880 ;0.069495 ;0.086541 ;0.106385 ;0.129460 ;0.156273 ;0.187403 ;0.223508 ;0.265355 ;0.313823 ;0.369918 ;0.430255 ;0.488279 ;0.541867 ;0.591287 ;0.636715 ;0.678351 ;0.716575 ;0.751738 ;0.784108 ;0.813941 ;0.841481 ;0.866933 ;0.890474 ;0.912265 ;0.932457 ;0.951182 ;0.968565 ;0.984718 ;0.999750 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000011 ;0.000035 ;-0.000595 ;-0.001686 ;-0.003173 ;-0.005014 ;-0.007184 ;-0.009649 ;-0.012396 ;-0.015412 ;-0.018654 ;-0.022012 ;-0.025376 ;-0.028704 ;-0.031690 ;-0.033731 ;-0.035043 ;-0.035856 ;-0.036145 ;-0.035806 ;-0.034905 ;-0.033638 ;-0.032114 ;-0.030438 ;-0.028667 ;-0.026817 ;-0.024935 ;-0.023074 ;-0.021244 ;-0.019422 ;-0.017586 ;-0.015781 ;-0.014019 ;-0.012165 ;-0.009779 ;-0.006550 ;-0.002368 ;0.002278 ;0.007040 ;0.011798 ;0.016152 ;0.020250 ;0.024333 ;0.028631 ;0.033191 ;0.037997 ;0.043022 ;0.048286 ;0.053797 ;0.059520 ;0.065368 ;0.071236 ;0.077020 ;0.082527 ;0.087456 ;0.091396 ;0.093608 ;0.093726 ;0.091975 ;0.088480 ;0.082849 ;0.075372 ;0.067185 ;0.058922 ;0.050783 ;0.042965 ;0.035637 ;0.028886 ;0.022735 ;0.017204 ;0.012319 ;0.008101 ;0.004582 ;0.001820 ;0.000017 + + + + ... + ... + + 0.999750 ;0.984963 ;0.968912 ;0.951526 ;0.932708 ;0.912343 ;0.890309 ;0.866484 ;0.840689 ;0.812791 ;0.782648 ;0.750076 ;0.714844 ;0.676716 ;0.635410 ;0.590613 ;0.542072 ;0.489519 ;0.432635 ;0.373438 ;0.318304 ;0.270541 ;0.229167 ;0.193329 ;0.162290 ;0.135410 ;0.112134 ;0.091981 ;0.074535 ;0.059437 ;0.046379 ;0.035088 ;0.025328 ;0.016927 ;0.009856 ;0.004225 ;0.000616 ;-0.000388 ;0.000641 ;0.003615 ;0.008374 ;0.014575 ;0.022129 ;0.031082 ;0.041626 ;0.054013 ;0.068534 ;0.085504 ;0.105292 ;0.128336 ;0.155149 ;0.186317 ;0.222504 ;0.264484 ;0.313146 ;0.369503 ;0.430153 ;0.488502 ;0.542407 ;0.592138 ;0.637903 ;0.679894 ;0.718442 ;0.753851 ;0.786353 ;0.816146 ;0.843443 ;0.868561 ;0.891872 ;0.913344 ;0.933247 ;0.951714 ;0.968873 ;0.984842 ;0.999750 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000034 ;0.001343 ;0.002042 ;0.002338 ;0.002299 ;0.001981 ;0.001411 ;0.000297 ;-0.000751 ;-0.002268 ;-0.004641 ;-0.007783 ;-0.011367 ;-0.015256 ;-0.019016 ;-0.021811 ;-0.023639 ;-0.024937 ;-0.025772 ;-0.026084 ;-0.025899 ;-0.025359 ;-0.024563 ;-0.023603 ;-0.022528 ;-0.021345 ;-0.020101 ;-0.018844 ;-0.017584 ;-0.016295 ;-0.014958 ;-0.013622 ;-0.012300 ;-0.010820 ;-0.008704 ;-0.005689 ;-0.001553 ;0.003104 ;0.007893 ;0.012708 ;0.017218 ;0.021572 ;0.025988 ;0.030667 ;0.035652 ;0.040926 ;0.046466 ;0.052290 ;0.058406 ;0.064778 ;0.071313 ;0.077905 ;0.084439 ;0.090711 ;0.096406 ;0.101093 ;0.103972 ;0.104634 ;0.103342 ;0.100304 ;0.095306 ;0.088490 ;0.080778 ;0.072671 ;0.064289 ;0.055673 ;0.046941 ;0.038553 ;0.031124 ;0.024044 ;0.017694 ;0.012074 ;0.007206 ;0.003133 ;0.000040 + + + + ... + ... + + 0.999750 ;0.984901 ;0.968817 ;0.951416 ;0.932594 ;0.912236 ;0.890215 ;0.866393 ;0.840618 ;0.812729 ;0.782549 ;0.749882 ;0.714515 ;0.676226 ;0.634766 ;0.589856 ;0.541236 ;0.488613 ;0.431662 ;0.372399 ;0.317204 ;0.269387 ;0.227965 ;0.192083 ;0.161003 ;0.134087 ;0.110777 ;0.090594 ;0.073120 ;0.057999 ;0.044920 ;0.033610 ;0.023836 ;0.015463 ;0.008546 ;0.003170 ;0.000037 ;-0.000847 ;-0.000139 ;0.002333 ;0.006607 ;0.012362 ;0.019509 ;0.028067 ;0.038232 ;0.050266 ;0.064476 ;0.081182 ;0.100758 ;0.123655 ;0.150403 ;0.181605 ;0.217942 ;0.260206 ;0.309305 ;0.366267 ;0.427639 ;0.486700 ;0.541228 ;0.591436 ;0.637398 ;0.679261 ;0.717513 ;0.752585 ;0.784784 ;0.814413 ;0.841747 ;0.867013 ;0.890399 ;0.912075 ;0.932198 ;0.950904 ;0.968322 ;0.984564 ;0.999750 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000022 ;0.000622 ;0.000586 ;0.000126 ;-0.000696 ;-0.001829 ;-0.003246 ;-0.004916 ;-0.006821 ;-0.008959 ;-0.011304 ;-0.013763 ;-0.016231 ;-0.018699 ;-0.020971 ;-0.022468 ;-0.023433 ;-0.024125 ;-0.024576 ;-0.024705 ;-0.024512 ;-0.024069 ;-0.023420 ;-0.022636 ;-0.021737 ;-0.020718 ;-0.019629 ;-0.018514 ;-0.017372 ;-0.016164 ;-0.014887 ;-0.013606 ;-0.012309 ;-0.010644 ;-0.008058 ;-0.004625 ;-0.000094 ;0.004614 ;0.009533 ;0.014700 ;0.019777 ;0.024846 ;0.030077 ;0.035672 ;0.041674 ;0.048068 ;0.054817 ;0.061939 ;0.069438 ;0.077271 ;0.085327 ;0.093462 ;0.101521 ;0.109242 ;0.116204 ;0.121829 ;0.125078 ;0.125414 ;0.123135 ;0.118424 ;0.110793 ;0.100720 ;0.089762 ;0.078721 ;0.067879 ;0.057502 ;0.047786 ;0.038836 ;0.030680 ;0.023341 ;0.016841 ;0.011200 ;0.006451 ;0.002651 ;0.000028 + + + + ... + ... + + 0.999750 ;0.989750 ;0.979750 ;0.969750 ;0.959750 ;0.949750 ;0.939750 ;0.929750 ;0.919750 ;0.909750 ;0.899750 ;0.889750 ;0.879750 ;0.869750 ;0.859750 ;0.849750 ;0.839750 ;0.829750 ;0.819750 ;0.809750 ;0.799750 ;0.789750 ;0.779750 ;0.769750 ;0.759750 ;0.749750 ;0.739750 ;0.729750 ;0.719750 ;0.709750 ;0.699750 ;0.689750 ;0.679750 ;0.669750 ;0.659750 ;0.649750 ;0.639750 ;0.629750 ;0.619750 ;0.609750 ;0.599750 ;0.589750 ;0.579750 ;0.569750 ;0.559750 ;0.549750 ;0.539750 ;0.529750 ;0.519750 ;0.509750 ;0.499750 ;0.489750 ;0.479750 ;0.469750 ;0.459750 ;0.449750 ;0.439750 ;0.429750 ;0.419750 ;0.409750 ;0.399750 ;0.389750 ;0.379750 ;0.369750 ;0.359750 ;0.349750 ;0.339750 ;0.329750 ;0.319750 ;0.309750 ;0.299750 ;0.289750 ;0.279750 ;0.269750 ;0.259750 ;0.249750 ;0.239750 ;0.229750 ;0.219750 ;0.209750 ;0.199750 ;0.189750 ;0.179750 ;0.169750 ;0.159750 ;0.149750 ;0.139750 ;0.129750 ;0.119750 ;0.109750 ;0.099750 ;0.097250 ;0.094750 ;0.092250 ;0.089750 ;0.087250 ;0.084750 ;0.082250 ;0.079750 ;0.077250 ;0.074750 ;0.072250 ;0.069750 ;0.067250 ;0.064750 ;0.062250 ;0.059750 ;0.057250 ;0.054750 ;0.052250 ;0.049750 ;0.047250 ;0.044750 ;0.042250 ;0.039750 ;0.037250 ;0.034750 ;0.032250 ;0.029750 ;0.027250 ;0.024750 ;0.022250 ;0.019750 ;0.017250 ;0.014750 ;0.012250 ;0.012000 ;0.011750 ;0.011500 ;0.011250 ;0.011000 ;0.010750 ;0.010500 ;0.010250 ;0.010000 ;0.009750 ;0.009500 ;0.009250 ;0.009000 ;0.008750 ;0.008500 ;0.008250 ;0.008000 ;0.007750 ;0.007500 ;0.007250 ;0.007000 ;0.006750 ;0.006500 ;0.006250 ;0.006000 ;0.005750 ;0.005500 ;0.005250 ;0.005000 ;0.004750 ;0.004500 ;0.004250 ;0.004000 ;0.003750 ;0.003500 ;0.003250 ;0.003000 ;0.002750 ;0.002500 ;0.002250 ;0.002000 ;0.001750 ;0.001500 ;0.001250 ;0.001000 ;0.000750 ;0.000500 ;0.000250 ;0.000000 ;0.000250 ;0.000500 ;0.000750 ;0.001000 ;0.001250 ;0.001500 ;0.001750 ;0.002000 ;0.002250 ;0.002500 ;0.002750 ;0.003000 ;0.003250 ;0.003500 ;0.003750 ;0.004000 ;0.004250 ;0.004500 ;0.004750 ;0.005000 ;0.005250 ;0.005500 ;0.005750 ;0.006000 ;0.006250 ;0.006500 ;0.006750 ;0.007000 ;0.007250 ;0.007500 ;0.007750 ;0.008000 ;0.008250 ;0.008500 ;0.008750 ;0.009000 ;0.009250 ;0.009500 ;0.009750 ;0.010000 ;0.010250 ;0.010500 ;0.010750 ;0.011000 ;0.011250 ;0.011500 ;0.011750 ;0.012000 ;0.012250 ;0.014750 ;0.017250 ;0.019750 ;0.022250 ;0.024750 ;0.027250 ;0.029750 ;0.032250 ;0.034750 ;0.037250 ;0.039750 ;0.042250 ;0.044750 ;0.047250 ;0.049750 ;0.052250 ;0.054750 ;0.057250 ;0.059750 ;0.062250 ;0.064750 ;0.067250 ;0.069750 ;0.072250 ;0.074750 ;0.077250 ;0.079750 ;0.082250 ;0.084750 ;0.087250 ;0.089750 ;0.092250 ;0.094750 ;0.097250 ;0.099750 ;0.109750 ;0.119750 ;0.129750 ;0.139750 ;0.149750 ;0.159750 ;0.169750 ;0.179750 ;0.189750 ;0.199750 ;0.209750 ;0.219750 ;0.229750 ;0.239750 ;0.249750 ;0.259750 ;0.269750 ;0.279750 ;0.289750 ;0.299750 ;0.309750 ;0.319750 ;0.329750 ;0.339750 ;0.349750 ;0.359750 ;0.369750 ;0.379750 ;0.389750 ;0.399750 ;0.409750 ;0.419750 ;0.429750 ;0.439750 ;0.449750 ;0.459750 ;0.469750 ;0.479750 ;0.489750 ;0.499750 ;0.509750 ;0.519750 ;0.529750 ;0.539750 ;0.549750 ;0.559750 ;0.569750 ;0.579750 ;0.589750 ;0.599750 ;0.609750 ;0.619750 ;0.629750 ;0.639750 ;0.649750 ;0.659750 ;0.669750 ;0.679750 ;0.689750 ;0.699750 ;0.709750 ;0.719750 ;0.729750 ;0.739750 ;0.749750 ;0.759750 ;0.769750 ;0.779750 ;0.789750 ;0.799750 ;0.809750 ;0.819750 ;0.829750 ;0.839750 ;0.849750 ;0.859750 ;0.869750 ;0.879750 ;0.889750 ;0.899750 ;0.909750 ;0.919750 ;0.929750 ;0.939750 ;0.949750 ;0.959750 ;0.969750 ;0.979750 ;0.989750 ;0.999750 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.000026 ;-0.001078 ;-0.002130 ;-0.003182 ;-0.004234 ;-0.005286 ;-0.006338 ;-0.007390 ;-0.008442 ;-0.009494 ;-0.010546 ;-0.011598 ;-0.012650 ;-0.013702 ;-0.014754 ;-0.015806 ;-0.016858 ;-0.017910 ;-0.018962 ;-0.020003 ;-0.021045 ;-0.022086 ;-0.023125 ;-0.024164 ;-0.025198 ;-0.026228 ;-0.027250 ;-0.028267 ;-0.029276 ;-0.030276 ;-0.031265 ;-0.032239 ;-0.033203 ;-0.034149 ;-0.035077 ;-0.035987 ;-0.036879 ;-0.037750 ;-0.038596 ;-0.039425 ;-0.040228 ;-0.041010 ;-0.041767 ;-0.042498 ;-0.043203 ;-0.043883 ;-0.044535 ;-0.045160 ;-0.045756 ;-0.046316 ;-0.046846 ;-0.047340 ;-0.047794 ;-0.048216 ;-0.048596 ;-0.048940 ;-0.049240 ;-0.049495 ;-0.049703 ;-0.049857 ;-0.049957 ;-0.049998 ;-0.049988 ;-0.049929 ;-0.049824 ;-0.049678 ;-0.049493 ;-0.049269 ;-0.049005 ;-0.048705 ;-0.048362 ;-0.047983 ;-0.047562 ;-0.047103 ;-0.046607 ;-0.046066 ;-0.045486 ;-0.044861 ;-0.044195 ;-0.043481 ;-0.042719 ;-0.041908 ;-0.041044 ;-0.040128 ;-0.039158 ;-0.038131 ;-0.037047 ;-0.035896 ;-0.034674 ;-0.033370 ;-0.031979 ;-0.031614 ;-0.031243 ;-0.030866 ;-0.030483 ;-0.030093 ;-0.029696 ;-0.029291 ;-0.028880 ;-0.028462 ;-0.028036 ;-0.027603 ;-0.027160 ;-0.026708 ;-0.026248 ;-0.025779 ;-0.025300 ;-0.024807 ;-0.024303 ;-0.023787 ;-0.023257 ;-0.022710 ;-0.022148 ;-0.021569 ;-0.020971 ;-0.020352 ;-0.019711 ;-0.019045 ;-0.018350 ;-0.017624 ;-0.016862 ;-0.016060 ;-0.015207 ;-0.014297 ;-0.013314 ;-0.012240 ;-0.012127 ;-0.012012 ;-0.011896 ;-0.011778 ;-0.011659 ;-0.011538 ;-0.011416 ;-0.011292 ;-0.011167 ;-0.011040 ;-0.010911 ;-0.010780 ;-0.010648 ;-0.010513 ;-0.010376 ;-0.010237 ;-0.010095 ;-0.009951 ;-0.009804 ;-0.009654 ;-0.009502 ;-0.009346 ;-0.009187 ;-0.009025 ;-0.008859 ;-0.008689 ;-0.008514 ;-0.008334 ;-0.008148 ;-0.007957 ;-0.007760 ;-0.007556 ;-0.007344 ;-0.007125 ;-0.006897 ;-0.006659 ;-0.006411 ;-0.006150 ;-0.005874 ;-0.005584 ;-0.005278 ;-0.004951 ;-0.004592 ;-0.004190 ;-0.003756 ;-0.003297 ;-0.002665 ;-0.001873 ;0.000000 ;0.001873 ;0.002665 ;0.003297 ;0.003756 ;0.004190 ;0.004592 ;0.004951 ;0.005278 ;0.005584 ;0.005874 ;0.006150 ;0.006411 ;0.006659 ;0.006897 ;0.007125 ;0.007344 ;0.007556 ;0.007760 ;0.007957 ;0.008148 ;0.008334 ;0.008514 ;0.008689 ;0.008859 ;0.009025 ;0.009187 ;0.009346 ;0.009502 ;0.009654 ;0.009804 ;0.009951 ;0.010095 ;0.010237 ;0.010376 ;0.010513 ;0.010648 ;0.010780 ;0.010911 ;0.011040 ;0.011167 ;0.011292 ;0.011416 ;0.011538 ;0.011659 ;0.011778 ;0.011896 ;0.012012 ;0.012127 ;0.012240 ;0.013314 ;0.014297 ;0.015207 ;0.016060 ;0.016862 ;0.017624 ;0.018350 ;0.019045 ;0.019711 ;0.020352 ;0.020971 ;0.021569 ;0.022148 ;0.022710 ;0.023257 ;0.023787 ;0.024303 ;0.024807 ;0.025300 ;0.025779 ;0.026248 ;0.026708 ;0.027160 ;0.027603 ;0.028036 ;0.028462 ;0.028880 ;0.029291 ;0.029696 ;0.030093 ;0.030483 ;0.030866 ;0.031243 ;0.031614 ;0.031979 ;0.033370 ;0.034674 ;0.035896 ;0.037047 ;0.038131 ;0.039158 ;0.040128 ;0.041044 ;0.041908 ;0.042719 ;0.043481 ;0.044195 ;0.044861 ;0.045486 ;0.046066 ;0.046607 ;0.047103 ;0.047562 ;0.047983 ;0.048362 ;0.048705 ;0.049005 ;0.049269 ;0.049493 ;0.049678 ;0.049824 ;0.049929 ;0.049988 ;0.049998 ;0.049957 ;0.049857 ;0.049703 ;0.049495 ;0.049240 ;0.048940 ;0.048596 ;0.048216 ;0.047794 ;0.047340 ;0.046846 ;0.046316 ;0.045756 ;0.045160 ;0.044535 ;0.043883 ;0.043203 ;0.042498 ;0.041767 ;0.041010 ;0.040228 ;0.039425 ;0.038596 ;0.037750 ;0.036879 ;0.035987 ;0.035077 ;0.034149 ;0.033203 ;0.032239 ;0.031265 ;0.030276 ;0.029276 ;0.028267 ;0.027250 ;0.026228 ;0.025198 ;0.024164 ;0.023125 ;0.022086 ;0.021045 ;0.020003 ;0.018962 ;0.017910 ;0.016858 ;0.015806 ;0.014754 ;0.013702 ;0.012650 ;0.011598 ;0.010546 ;0.009494 ;0.008442 ;0.007390 ;0.006338 ;0.005286 ;0.004234 ;0.003182 ;0.002130 ;0.001078 ;0.000026 + + + + ... + ... + + 0.999750 ;0.989750 ;0.979750 ;0.969750 ;0.959750 ;0.949750 ;0.939750 ;0.929750 ;0.919750 ;0.909750 ;0.899750 ;0.889750 ;0.879750 ;0.869750 ;0.859750 ;0.849750 ;0.839750 ;0.829750 ;0.819750 ;0.809750 ;0.799750 ;0.789750 ;0.779750 ;0.769750 ;0.759750 ;0.749750 ;0.739750 ;0.729750 ;0.719750 ;0.709750 ;0.699750 ;0.689750 ;0.679750 ;0.669750 ;0.659750 ;0.649750 ;0.639750 ;0.629750 ;0.619750 ;0.609750 ;0.599750 ;0.589750 ;0.579750 ;0.569750 ;0.559750 ;0.549750 ;0.539750 ;0.529750 ;0.519750 ;0.509750 ;0.499750 ;0.489750 ;0.479750 ;0.469750 ;0.459750 ;0.449750 ;0.439750 ;0.429750 ;0.419750 ;0.409750 ;0.399750 ;0.389750 ;0.379750 ;0.369750 ;0.359750 ;0.349750 ;0.339750 ;0.329750 ;0.319750 ;0.309750 ;0.299750 ;0.289750 ;0.279750 ;0.269750 ;0.259750 ;0.249750 ;0.239750 ;0.229750 ;0.219750 ;0.209750 ;0.199750 ;0.189750 ;0.179750 ;0.169750 ;0.159750 ;0.149750 ;0.139750 ;0.129750 ;0.119750 ;0.109750 ;0.099750 ;0.097250 ;0.094750 ;0.092250 ;0.089750 ;0.087250 ;0.084750 ;0.082250 ;0.079750 ;0.077250 ;0.074750 ;0.072250 ;0.069750 ;0.067250 ;0.064750 ;0.062250 ;0.059750 ;0.057250 ;0.054750 ;0.052250 ;0.049750 ;0.047250 ;0.044750 ;0.042250 ;0.039750 ;0.037250 ;0.034750 ;0.032250 ;0.029750 ;0.027250 ;0.024750 ;0.022250 ;0.019750 ;0.017250 ;0.014750 ;0.012250 ;0.012000 ;0.011750 ;0.011500 ;0.011250 ;0.011000 ;0.010750 ;0.010500 ;0.010250 ;0.010000 ;0.009750 ;0.009500 ;0.009250 ;0.009000 ;0.008750 ;0.008500 ;0.008250 ;0.008000 ;0.007750 ;0.007500 ;0.007250 ;0.007000 ;0.006750 ;0.006500 ;0.006250 ;0.006000 ;0.005750 ;0.005500 ;0.005250 ;0.005000 ;0.004750 ;0.004500 ;0.004250 ;0.004000 ;0.003750 ;0.003500 ;0.003250 ;0.003000 ;0.002750 ;0.002500 ;0.002250 ;0.002000 ;0.001750 ;0.001500 ;0.001250 ;0.001000 ;0.000750 ;0.000500 ;0.000250 ;0.000000 ;0.000250 ;0.000500 ;0.000750 ;0.001000 ;0.001250 ;0.001500 ;0.001750 ;0.002000 ;0.002250 ;0.002500 ;0.002750 ;0.003000 ;0.003250 ;0.003500 ;0.003750 ;0.004000 ;0.004250 ;0.004500 ;0.004750 ;0.005000 ;0.005250 ;0.005500 ;0.005750 ;0.006000 ;0.006250 ;0.006500 ;0.006750 ;0.007000 ;0.007250 ;0.007500 ;0.007750 ;0.008000 ;0.008250 ;0.008500 ;0.008750 ;0.009000 ;0.009250 ;0.009500 ;0.009750 ;0.010000 ;0.010250 ;0.010500 ;0.010750 ;0.011000 ;0.011250 ;0.011500 ;0.011750 ;0.012000 ;0.012250 ;0.014750 ;0.017250 ;0.019750 ;0.022250 ;0.024750 ;0.027250 ;0.029750 ;0.032250 ;0.034750 ;0.037250 ;0.039750 ;0.042250 ;0.044750 ;0.047250 ;0.049750 ;0.052250 ;0.054750 ;0.057250 ;0.059750 ;0.062250 ;0.064750 ;0.067250 ;0.069750 ;0.072250 ;0.074750 ;0.077250 ;0.079750 ;0.082250 ;0.084750 ;0.087250 ;0.089750 ;0.092250 ;0.094750 ;0.097250 ;0.099750 ;0.109750 ;0.119750 ;0.129750 ;0.139750 ;0.149750 ;0.159750 ;0.169750 ;0.179750 ;0.189750 ;0.199750 ;0.209750 ;0.219750 ;0.229750 ;0.239750 ;0.249750 ;0.259750 ;0.269750 ;0.279750 ;0.289750 ;0.299750 ;0.309750 ;0.319750 ;0.329750 ;0.339750 ;0.349750 ;0.359750 ;0.369750 ;0.379750 ;0.389750 ;0.399750 ;0.409750 ;0.419750 ;0.429750 ;0.439750 ;0.449750 ;0.459750 ;0.469750 ;0.479750 ;0.489750 ;0.499750 ;0.509750 ;0.519750 ;0.529750 ;0.539750 ;0.549750 ;0.559750 ;0.569750 ;0.579750 ;0.589750 ;0.599750 ;0.609750 ;0.619750 ;0.629750 ;0.639750 ;0.649750 ;0.659750 ;0.669750 ;0.679750 ;0.689750 ;0.699750 ;0.709750 ;0.719750 ;0.729750 ;0.739750 ;0.749750 ;0.759750 ;0.769750 ;0.779750 ;0.789750 ;0.799750 ;0.809750 ;0.819750 ;0.829750 ;0.839750 ;0.849750 ;0.859750 ;0.869750 ;0.879750 ;0.889750 ;0.899750 ;0.909750 ;0.919750 ;0.929750 ;0.939750 ;0.949750 ;0.959750 ;0.969750 ;0.979750 ;0.989750 ;0.999750 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.000026 ;-0.001078 ;-0.002130 ;-0.003182 ;-0.004234 ;-0.005286 ;-0.006338 ;-0.007390 ;-0.008442 ;-0.009494 ;-0.010546 ;-0.011598 ;-0.012650 ;-0.013702 ;-0.014754 ;-0.015806 ;-0.016858 ;-0.017910 ;-0.018962 ;-0.020003 ;-0.021045 ;-0.022086 ;-0.023125 ;-0.024164 ;-0.025198 ;-0.026228 ;-0.027250 ;-0.028267 ;-0.029276 ;-0.030276 ;-0.031265 ;-0.032239 ;-0.033203 ;-0.034149 ;-0.035077 ;-0.035987 ;-0.036879 ;-0.037750 ;-0.038596 ;-0.039425 ;-0.040228 ;-0.041010 ;-0.041767 ;-0.042498 ;-0.043203 ;-0.043883 ;-0.044535 ;-0.045160 ;-0.045756 ;-0.046316 ;-0.046846 ;-0.047340 ;-0.047794 ;-0.048216 ;-0.048596 ;-0.048940 ;-0.049240 ;-0.049495 ;-0.049703 ;-0.049857 ;-0.049957 ;-0.049998 ;-0.049988 ;-0.049929 ;-0.049824 ;-0.049678 ;-0.049493 ;-0.049269 ;-0.049005 ;-0.048705 ;-0.048362 ;-0.047983 ;-0.047562 ;-0.047103 ;-0.046607 ;-0.046066 ;-0.045486 ;-0.044861 ;-0.044195 ;-0.043481 ;-0.042719 ;-0.041908 ;-0.041044 ;-0.040128 ;-0.039158 ;-0.038131 ;-0.037047 ;-0.035896 ;-0.034674 ;-0.033370 ;-0.031979 ;-0.031614 ;-0.031243 ;-0.030866 ;-0.030483 ;-0.030093 ;-0.029696 ;-0.029291 ;-0.028880 ;-0.028462 ;-0.028036 ;-0.027603 ;-0.027160 ;-0.026708 ;-0.026248 ;-0.025779 ;-0.025300 ;-0.024807 ;-0.024303 ;-0.023787 ;-0.023257 ;-0.022710 ;-0.022148 ;-0.021569 ;-0.020971 ;-0.020352 ;-0.019711 ;-0.019045 ;-0.018350 ;-0.017624 ;-0.016862 ;-0.016060 ;-0.015207 ;-0.014297 ;-0.013314 ;-0.012240 ;-0.012127 ;-0.012012 ;-0.011896 ;-0.011778 ;-0.011659 ;-0.011538 ;-0.011416 ;-0.011292 ;-0.011167 ;-0.011040 ;-0.010911 ;-0.010780 ;-0.010648 ;-0.010513 ;-0.010376 ;-0.010237 ;-0.010095 ;-0.009951 ;-0.009804 ;-0.009654 ;-0.009502 ;-0.009346 ;-0.009187 ;-0.009025 ;-0.008859 ;-0.008689 ;-0.008514 ;-0.008334 ;-0.008148 ;-0.007957 ;-0.007760 ;-0.007556 ;-0.007344 ;-0.007125 ;-0.006897 ;-0.006659 ;-0.006411 ;-0.006150 ;-0.005874 ;-0.005584 ;-0.005278 ;-0.004951 ;-0.004592 ;-0.004190 ;-0.003756 ;-0.003297 ;-0.002665 ;-0.001873 ;0.000000 ;0.001873 ;0.002665 ;0.003297 ;0.003756 ;0.004190 ;0.004592 ;0.004951 ;0.005278 ;0.005584 ;0.005874 ;0.006150 ;0.006411 ;0.006659 ;0.006897 ;0.007125 ;0.007344 ;0.007556 ;0.007760 ;0.007957 ;0.008148 ;0.008334 ;0.008514 ;0.008689 ;0.008859 ;0.009025 ;0.009187 ;0.009346 ;0.009502 ;0.009654 ;0.009804 ;0.009951 ;0.010095 ;0.010237 ;0.010376 ;0.010513 ;0.010648 ;0.010780 ;0.010911 ;0.011040 ;0.011167 ;0.011292 ;0.011416 ;0.011538 ;0.011659 ;0.011778 ;0.011896 ;0.012012 ;0.012127 ;0.012240 ;0.013314 ;0.014297 ;0.015207 ;0.016060 ;0.016862 ;0.017624 ;0.018350 ;0.019045 ;0.019711 ;0.020352 ;0.020971 ;0.021569 ;0.022148 ;0.022710 ;0.023257 ;0.023787 ;0.024303 ;0.024807 ;0.025300 ;0.025779 ;0.026248 ;0.026708 ;0.027160 ;0.027603 ;0.028036 ;0.028462 ;0.028880 ;0.029291 ;0.029696 ;0.030093 ;0.030483 ;0.030866 ;0.031243 ;0.031614 ;0.031979 ;0.033370 ;0.034674 ;0.035896 ;0.037047 ;0.038131 ;0.039158 ;0.040128 ;0.041044 ;0.041908 ;0.042719 ;0.043481 ;0.044195 ;0.044861 ;0.045486 ;0.046066 ;0.046607 ;0.047103 ;0.047562 ;0.047983 ;0.048362 ;0.048705 ;0.049005 ;0.049269 ;0.049493 ;0.049678 ;0.049824 ;0.049929 ;0.049988 ;0.049998 ;0.049957 ;0.049857 ;0.049703 ;0.049495 ;0.049240 ;0.048940 ;0.048596 ;0.048216 ;0.047794 ;0.047340 ;0.046846 ;0.046316 ;0.045756 ;0.045160 ;0.044535 ;0.043883 ;0.043203 ;0.042498 ;0.041767 ;0.041010 ;0.040228 ;0.039425 ;0.038596 ;0.037750 ;0.036879 ;0.035987 ;0.035077 ;0.034149 ;0.033203 ;0.032239 ;0.031265 ;0.030276 ;0.029276 ;0.028267 ;0.027250 ;0.026228 ;0.025198 ;0.024164 ;0.023125 ;0.022086 ;0.021045 ;0.020003 ;0.018962 ;0.017910 ;0.016858 ;0.015806 ;0.014754 ;0.013702 ;0.012650 ;0.011598 ;0.010546 ;0.009494 ;0.008442 ;0.007390 ;0.006338 ;0.005286 ;0.004234 ;0.003182 ;0.002130 ;0.001078 ;0.000026 + + + + ... + ... + + 0.999750 ;0.984959 ;0.968971 ;0.951687 ;0.932996 ;0.912781 ;0.890912 ;0.867250 ;0.841645 ;0.813933 ;0.783934 ;0.751451 ;0.716275 ;0.678179 ;0.636908 ;0.592195 ;0.543779 ;0.491371 ;0.434651 ;0.375633 ;0.320677 ;0.273079 ;0.231860 ;0.196168 ;0.165264 ;0.138511 ;0.115355 ;0.095314 ;0.077971 ;0.062967 ;0.049993 ;0.038779 ;0.029087 ;0.020719 ;0.013525 ;0.007431 ;0.002540 ;0.000000 ;0.002537 ;0.007428 ;0.013522 ;0.020716 ;0.029084 ;0.038776 ;0.049990 ;0.062964 ;0.077968 ;0.095311 ;0.115352 ;0.138509 ;0.165262 ;0.196165 ;0.231858 ;0.273077 ;0.320675 ;0.375631 ;0.434649 ;0.491370 ;0.543778 ;0.592194 ;0.636907 ;0.678178 ;0.716274 ;0.751450 ;0.783933 ;0.813933 ;0.841645 ;0.867250 ;0.890912 ;0.912781 ;0.932996 ;0.951687 ;0.968971 ;0.984959 ;0.999750 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.000002 ;-0.000529 ;-0.001530 ;-0.002875 ;-0.004519 ;-0.006439 ;-0.008610 ;-0.011017 ;-0.013646 ;-0.016478 ;-0.019460 ;-0.022510 ;-0.025567 ;-0.028545 ;-0.031142 ;-0.033008 ;-0.034219 ;-0.034886 ;-0.034946 ;-0.034311 ;-0.033083 ;-0.031501 ;-0.029701 ;-0.027784 ;-0.025819 ;-0.023838 ;-0.021874 ;-0.019965 ;-0.018129 ;-0.016360 ;-0.014646 ;-0.012990 ;-0.011407 ;-0.009881 ;-0.008295 ;-0.006412 ;-0.003870 ;-0.000002 ;0.003868 ;0.006411 ;0.008295 ;0.009880 ;0.011407 ;0.012989 ;0.014645 ;0.016360 ;0.018128 ;0.019965 ;0.021874 ;0.023838 ;0.025819 ;0.027784 ;0.029701 ;0.031501 ;0.033083 ;0.034311 ;0.034946 ;0.034886 ;0.034220 ;0.033008 ;0.031142 ;0.028545 ;0.025567 ;0.022510 ;0.019460 ;0.016478 ;0.013646 ;0.011017 ;0.008610 ;0.006439 ;0.004519 ;0.002875 ;0.001530 ;0.000529 ;0.000002 + + + + ... + ... + + 0.999750 ;0.989750 ;0.979750 ;0.969750 ;0.959750 ;0.949750 ;0.939750 ;0.929750 ;0.919750 ;0.909750 ;0.899750 ;0.889750 ;0.879750 ;0.869750 ;0.859750 ;0.849750 ;0.839750 ;0.829750 ;0.819750 ;0.809750 ;0.799750 ;0.789750 ;0.779750 ;0.769750 ;0.759750 ;0.749750 ;0.739750 ;0.729750 ;0.719750 ;0.709750 ;0.699750 ;0.689750 ;0.679750 ;0.669750 ;0.659750 ;0.649750 ;0.639750 ;0.629750 ;0.619750 ;0.609750 ;0.599750 ;0.589750 ;0.579750 ;0.569750 ;0.559750 ;0.549750 ;0.539750 ;0.529750 ;0.519750 ;0.509750 ;0.499750 ;0.489750 ;0.479750 ;0.469750 ;0.459750 ;0.449750 ;0.439750 ;0.429750 ;0.419750 ;0.409750 ;0.399750 ;0.389750 ;0.379750 ;0.369750 ;0.359750 ;0.349750 ;0.339750 ;0.329750 ;0.319750 ;0.309750 ;0.299750 ;0.289750 ;0.279750 ;0.269750 ;0.259750 ;0.249750 ;0.239750 ;0.229750 ;0.219750 ;0.209750 ;0.199750 ;0.189750 ;0.179750 ;0.169750 ;0.159750 ;0.149750 ;0.139750 ;0.129750 ;0.119750 ;0.109750 ;0.099750 ;0.097250 ;0.094750 ;0.092250 ;0.089750 ;0.087250 ;0.084750 ;0.082250 ;0.079750 ;0.077250 ;0.074750 ;0.072250 ;0.069750 ;0.067250 ;0.064750 ;0.062250 ;0.059750 ;0.057250 ;0.054750 ;0.052250 ;0.049750 ;0.047250 ;0.044750 ;0.042250 ;0.039750 ;0.037250 ;0.034750 ;0.032250 ;0.029750 ;0.027250 ;0.024750 ;0.022250 ;0.019750 ;0.017250 ;0.014750 ;0.012250 ;0.012000 ;0.011750 ;0.011500 ;0.011250 ;0.011000 ;0.010750 ;0.010500 ;0.010250 ;0.010000 ;0.009750 ;0.009500 ;0.009250 ;0.009000 ;0.008750 ;0.008500 ;0.008250 ;0.008000 ;0.007750 ;0.007500 ;0.007250 ;0.007000 ;0.006750 ;0.006500 ;0.006250 ;0.006000 ;0.005750 ;0.005500 ;0.005250 ;0.005000 ;0.004750 ;0.004500 ;0.004250 ;0.004000 ;0.003750 ;0.003500 ;0.003250 ;0.003000 ;0.002750 ;0.002500 ;0.002250 ;0.002000 ;0.001750 ;0.001500 ;0.001250 ;0.001000 ;0.000750 ;0.000500 ;0.000250 ;0.000000 ;0.000250 ;0.000500 ;0.000750 ;0.001000 ;0.001250 ;0.001500 ;0.001750 ;0.002000 ;0.002250 ;0.002500 ;0.002750 ;0.003000 ;0.003250 ;0.003500 ;0.003750 ;0.004000 ;0.004250 ;0.004500 ;0.004750 ;0.005000 ;0.005250 ;0.005500 ;0.005750 ;0.006000 ;0.006250 ;0.006500 ;0.006750 ;0.007000 ;0.007250 ;0.007500 ;0.007750 ;0.008000 ;0.008250 ;0.008500 ;0.008750 ;0.009000 ;0.009250 ;0.009500 ;0.009750 ;0.010000 ;0.010250 ;0.010500 ;0.010750 ;0.011000 ;0.011250 ;0.011500 ;0.011750 ;0.012000 ;0.012250 ;0.014750 ;0.017250 ;0.019750 ;0.022250 ;0.024750 ;0.027250 ;0.029750 ;0.032250 ;0.034750 ;0.037250 ;0.039750 ;0.042250 ;0.044750 ;0.047250 ;0.049750 ;0.052250 ;0.054750 ;0.057250 ;0.059750 ;0.062250 ;0.064750 ;0.067250 ;0.069750 ;0.072250 ;0.074750 ;0.077250 ;0.079750 ;0.082250 ;0.084750 ;0.087250 ;0.089750 ;0.092250 ;0.094750 ;0.097250 ;0.099750 ;0.109750 ;0.119750 ;0.129750 ;0.139750 ;0.149750 ;0.159750 ;0.169750 ;0.179750 ;0.189750 ;0.199750 ;0.209750 ;0.219750 ;0.229750 ;0.239750 ;0.249750 ;0.259750 ;0.269750 ;0.279750 ;0.289750 ;0.299750 ;0.309750 ;0.319750 ;0.329750 ;0.339750 ;0.349750 ;0.359750 ;0.369750 ;0.379750 ;0.389750 ;0.399750 ;0.409750 ;0.419750 ;0.429750 ;0.439750 ;0.449750 ;0.459750 ;0.469750 ;0.479750 ;0.489750 ;0.499750 ;0.509750 ;0.519750 ;0.529750 ;0.539750 ;0.549750 ;0.559750 ;0.569750 ;0.579750 ;0.589750 ;0.599750 ;0.609750 ;0.619750 ;0.629750 ;0.639750 ;0.649750 ;0.659750 ;0.669750 ;0.679750 ;0.689750 ;0.699750 ;0.709750 ;0.719750 ;0.729750 ;0.739750 ;0.749750 ;0.759750 ;0.769750 ;0.779750 ;0.789750 ;0.799750 ;0.809750 ;0.819750 ;0.829750 ;0.839750 ;0.849750 ;0.859750 ;0.869750 ;0.879750 ;0.889750 ;0.899750 ;0.909750 ;0.919750 ;0.929750 ;0.939750 ;0.949750 ;0.959750 ;0.969750 ;0.979750 ;0.989750 ;0.999750 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.000026 ;-0.001078 ;-0.002130 ;-0.003182 ;-0.004234 ;-0.005286 ;-0.006338 ;-0.007390 ;-0.008442 ;-0.009494 ;-0.010546 ;-0.011598 ;-0.012650 ;-0.013702 ;-0.014754 ;-0.015806 ;-0.016858 ;-0.017910 ;-0.018962 ;-0.020003 ;-0.021045 ;-0.022086 ;-0.023125 ;-0.024164 ;-0.025198 ;-0.026228 ;-0.027250 ;-0.028267 ;-0.029276 ;-0.030276 ;-0.031265 ;-0.032239 ;-0.033203 ;-0.034149 ;-0.035077 ;-0.035987 ;-0.036879 ;-0.037750 ;-0.038596 ;-0.039425 ;-0.040228 ;-0.041010 ;-0.041767 ;-0.042498 ;-0.043203 ;-0.043883 ;-0.044535 ;-0.045160 ;-0.045756 ;-0.046316 ;-0.046846 ;-0.047340 ;-0.047794 ;-0.048216 ;-0.048596 ;-0.048940 ;-0.049240 ;-0.049495 ;-0.049703 ;-0.049857 ;-0.049957 ;-0.049998 ;-0.049988 ;-0.049929 ;-0.049824 ;-0.049678 ;-0.049493 ;-0.049269 ;-0.049005 ;-0.048705 ;-0.048362 ;-0.047983 ;-0.047562 ;-0.047103 ;-0.046607 ;-0.046066 ;-0.045486 ;-0.044861 ;-0.044195 ;-0.043481 ;-0.042719 ;-0.041908 ;-0.041044 ;-0.040128 ;-0.039158 ;-0.038131 ;-0.037047 ;-0.035896 ;-0.034674 ;-0.033370 ;-0.031979 ;-0.031614 ;-0.031243 ;-0.030866 ;-0.030483 ;-0.030093 ;-0.029696 ;-0.029291 ;-0.028880 ;-0.028462 ;-0.028036 ;-0.027603 ;-0.027160 ;-0.026708 ;-0.026248 ;-0.025779 ;-0.025300 ;-0.024807 ;-0.024303 ;-0.023787 ;-0.023257 ;-0.022710 ;-0.022148 ;-0.021569 ;-0.020971 ;-0.020352 ;-0.019711 ;-0.019045 ;-0.018350 ;-0.017624 ;-0.016862 ;-0.016060 ;-0.015207 ;-0.014297 ;-0.013314 ;-0.012240 ;-0.012127 ;-0.012012 ;-0.011896 ;-0.011778 ;-0.011659 ;-0.011538 ;-0.011416 ;-0.011292 ;-0.011167 ;-0.011040 ;-0.010911 ;-0.010780 ;-0.010648 ;-0.010513 ;-0.010376 ;-0.010237 ;-0.010095 ;-0.009951 ;-0.009804 ;-0.009654 ;-0.009502 ;-0.009346 ;-0.009187 ;-0.009025 ;-0.008859 ;-0.008689 ;-0.008514 ;-0.008334 ;-0.008148 ;-0.007957 ;-0.007760 ;-0.007556 ;-0.007344 ;-0.007125 ;-0.006897 ;-0.006659 ;-0.006411 ;-0.006150 ;-0.005874 ;-0.005584 ;-0.005278 ;-0.004951 ;-0.004592 ;-0.004190 ;-0.003756 ;-0.003297 ;-0.002665 ;-0.001873 ;0.000000 ;0.001873 ;0.002665 ;0.003297 ;0.003756 ;0.004190 ;0.004592 ;0.004951 ;0.005278 ;0.005584 ;0.005874 ;0.006150 ;0.006411 ;0.006659 ;0.006897 ;0.007125 ;0.007344 ;0.007556 ;0.007760 ;0.007957 ;0.008148 ;0.008334 ;0.008514 ;0.008689 ;0.008859 ;0.009025 ;0.009187 ;0.009346 ;0.009502 ;0.009654 ;0.009804 ;0.009951 ;0.010095 ;0.010237 ;0.010376 ;0.010513 ;0.010648 ;0.010780 ;0.010911 ;0.011040 ;0.011167 ;0.011292 ;0.011416 ;0.011538 ;0.011659 ;0.011778 ;0.011896 ;0.012012 ;0.012127 ;0.012240 ;0.013314 ;0.014297 ;0.015207 ;0.016060 ;0.016862 ;0.017624 ;0.018350 ;0.019045 ;0.019711 ;0.020352 ;0.020971 ;0.021569 ;0.022148 ;0.022710 ;0.023257 ;0.023787 ;0.024303 ;0.024807 ;0.025300 ;0.025779 ;0.026248 ;0.026708 ;0.027160 ;0.027603 ;0.028036 ;0.028462 ;0.028880 ;0.029291 ;0.029696 ;0.030093 ;0.030483 ;0.030866 ;0.031243 ;0.031614 ;0.031979 ;0.033370 ;0.034674 ;0.035896 ;0.037047 ;0.038131 ;0.039158 ;0.040128 ;0.041044 ;0.041908 ;0.042719 ;0.043481 ;0.044195 ;0.044861 ;0.045486 ;0.046066 ;0.046607 ;0.047103 ;0.047562 ;0.047983 ;0.048362 ;0.048705 ;0.049005 ;0.049269 ;0.049493 ;0.049678 ;0.049824 ;0.049929 ;0.049988 ;0.049998 ;0.049957 ;0.049857 ;0.049703 ;0.049495 ;0.049240 ;0.048940 ;0.048596 ;0.048216 ;0.047794 ;0.047340 ;0.046846 ;0.046316 ;0.045756 ;0.045160 ;0.044535 ;0.043883 ;0.043203 ;0.042498 ;0.041767 ;0.041010 ;0.040228 ;0.039425 ;0.038596 ;0.037750 ;0.036879 ;0.035987 ;0.035077 ;0.034149 ;0.033203 ;0.032239 ;0.031265 ;0.030276 ;0.029276 ;0.028267 ;0.027250 ;0.026228 ;0.025198 ;0.024164 ;0.023125 ;0.022086 ;0.021045 ;0.020003 ;0.018962 ;0.017910 ;0.016858 ;0.015806 ;0.014754 ;0.013702 ;0.012650 ;0.011598 ;0.010546 ;0.009494 ;0.008442 ;0.007390 ;0.006338 ;0.005286 ;0.004234 ;0.003182 ;0.002130 ;0.001078 ;0.000026 + + + + ... + ... + + 0.999750 ;0.989750 ;0.979750 ;0.969750 ;0.959750 ;0.949750 ;0.939750 ;0.929750 ;0.919750 ;0.909750 ;0.899750 ;0.889750 ;0.879750 ;0.869750 ;0.859750 ;0.849750 ;0.839750 ;0.829750 ;0.819750 ;0.809750 ;0.799750 ;0.789750 ;0.779750 ;0.769750 ;0.759750 ;0.749750 ;0.739750 ;0.729750 ;0.719750 ;0.709750 ;0.699750 ;0.689750 ;0.679750 ;0.669750 ;0.659750 ;0.649750 ;0.639750 ;0.629750 ;0.619750 ;0.609750 ;0.599750 ;0.589750 ;0.579750 ;0.569750 ;0.559750 ;0.549750 ;0.539750 ;0.529750 ;0.519750 ;0.509750 ;0.499750 ;0.489750 ;0.479750 ;0.469750 ;0.459750 ;0.449750 ;0.439750 ;0.429750 ;0.419750 ;0.409750 ;0.399750 ;0.389750 ;0.379750 ;0.369750 ;0.359750 ;0.349750 ;0.339750 ;0.329750 ;0.319750 ;0.309750 ;0.299750 ;0.289750 ;0.279750 ;0.269750 ;0.259750 ;0.249750 ;0.239750 ;0.229750 ;0.219750 ;0.209750 ;0.199750 ;0.189750 ;0.179750 ;0.169750 ;0.159750 ;0.149750 ;0.139750 ;0.129750 ;0.119750 ;0.109750 ;0.099750 ;0.097250 ;0.094750 ;0.092250 ;0.089750 ;0.087250 ;0.084750 ;0.082250 ;0.079750 ;0.077250 ;0.074750 ;0.072250 ;0.069750 ;0.067250 ;0.064750 ;0.062250 ;0.059750 ;0.057250 ;0.054750 ;0.052250 ;0.049750 ;0.047250 ;0.044750 ;0.042250 ;0.039750 ;0.037250 ;0.034750 ;0.032250 ;0.029750 ;0.027250 ;0.024750 ;0.022250 ;0.019750 ;0.017250 ;0.014750 ;0.012250 ;0.012000 ;0.011750 ;0.011500 ;0.011250 ;0.011000 ;0.010750 ;0.010500 ;0.010250 ;0.010000 ;0.009750 ;0.009500 ;0.009250 ;0.009000 ;0.008750 ;0.008500 ;0.008250 ;0.008000 ;0.007750 ;0.007500 ;0.007250 ;0.007000 ;0.006750 ;0.006500 ;0.006250 ;0.006000 ;0.005750 ;0.005500 ;0.005250 ;0.005000 ;0.004750 ;0.004500 ;0.004250 ;0.004000 ;0.003750 ;0.003500 ;0.003250 ;0.003000 ;0.002750 ;0.002500 ;0.002250 ;0.002000 ;0.001750 ;0.001500 ;0.001250 ;0.001000 ;0.000750 ;0.000500 ;0.000250 ;0.000000 ;0.000250 ;0.000500 ;0.000750 ;0.001000 ;0.001250 ;0.001500 ;0.001750 ;0.002000 ;0.002250 ;0.002500 ;0.002750 ;0.003000 ;0.003250 ;0.003500 ;0.003750 ;0.004000 ;0.004250 ;0.004500 ;0.004750 ;0.005000 ;0.005250 ;0.005500 ;0.005750 ;0.006000 ;0.006250 ;0.006500 ;0.006750 ;0.007000 ;0.007250 ;0.007500 ;0.007750 ;0.008000 ;0.008250 ;0.008500 ;0.008750 ;0.009000 ;0.009250 ;0.009500 ;0.009750 ;0.010000 ;0.010250 ;0.010500 ;0.010750 ;0.011000 ;0.011250 ;0.011500 ;0.011750 ;0.012000 ;0.012250 ;0.014750 ;0.017250 ;0.019750 ;0.022250 ;0.024750 ;0.027250 ;0.029750 ;0.032250 ;0.034750 ;0.037250 ;0.039750 ;0.042250 ;0.044750 ;0.047250 ;0.049750 ;0.052250 ;0.054750 ;0.057250 ;0.059750 ;0.062250 ;0.064750 ;0.067250 ;0.069750 ;0.072250 ;0.074750 ;0.077250 ;0.079750 ;0.082250 ;0.084750 ;0.087250 ;0.089750 ;0.092250 ;0.094750 ;0.097250 ;0.099750 ;0.109750 ;0.119750 ;0.129750 ;0.139750 ;0.149750 ;0.159750 ;0.169750 ;0.179750 ;0.189750 ;0.199750 ;0.209750 ;0.219750 ;0.229750 ;0.239750 ;0.249750 ;0.259750 ;0.269750 ;0.279750 ;0.289750 ;0.299750 ;0.309750 ;0.319750 ;0.329750 ;0.339750 ;0.349750 ;0.359750 ;0.369750 ;0.379750 ;0.389750 ;0.399750 ;0.409750 ;0.419750 ;0.429750 ;0.439750 ;0.449750 ;0.459750 ;0.469750 ;0.479750 ;0.489750 ;0.499750 ;0.509750 ;0.519750 ;0.529750 ;0.539750 ;0.549750 ;0.559750 ;0.569750 ;0.579750 ;0.589750 ;0.599750 ;0.609750 ;0.619750 ;0.629750 ;0.639750 ;0.649750 ;0.659750 ;0.669750 ;0.679750 ;0.689750 ;0.699750 ;0.709750 ;0.719750 ;0.729750 ;0.739750 ;0.749750 ;0.759750 ;0.769750 ;0.779750 ;0.789750 ;0.799750 ;0.809750 ;0.819750 ;0.829750 ;0.839750 ;0.849750 ;0.859750 ;0.869750 ;0.879750 ;0.889750 ;0.899750 ;0.909750 ;0.919750 ;0.929750 ;0.939750 ;0.949750 ;0.959750 ;0.969750 ;0.979750 ;0.989750 ;0.999750 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.000026 ;-0.001078 ;-0.002130 ;-0.003182 ;-0.004234 ;-0.005286 ;-0.006338 ;-0.007390 ;-0.008442 ;-0.009494 ;-0.010546 ;-0.011598 ;-0.012650 ;-0.013702 ;-0.014754 ;-0.015806 ;-0.016858 ;-0.017910 ;-0.018962 ;-0.020003 ;-0.021045 ;-0.022086 ;-0.023125 ;-0.024164 ;-0.025198 ;-0.026228 ;-0.027250 ;-0.028267 ;-0.029276 ;-0.030276 ;-0.031265 ;-0.032239 ;-0.033203 ;-0.034149 ;-0.035077 ;-0.035987 ;-0.036879 ;-0.037750 ;-0.038596 ;-0.039425 ;-0.040228 ;-0.041010 ;-0.041767 ;-0.042498 ;-0.043203 ;-0.043883 ;-0.044535 ;-0.045160 ;-0.045756 ;-0.046316 ;-0.046846 ;-0.047340 ;-0.047794 ;-0.048216 ;-0.048596 ;-0.048940 ;-0.049240 ;-0.049495 ;-0.049703 ;-0.049857 ;-0.049957 ;-0.049998 ;-0.049988 ;-0.049929 ;-0.049824 ;-0.049678 ;-0.049493 ;-0.049269 ;-0.049005 ;-0.048705 ;-0.048362 ;-0.047983 ;-0.047562 ;-0.047103 ;-0.046607 ;-0.046066 ;-0.045486 ;-0.044861 ;-0.044195 ;-0.043481 ;-0.042719 ;-0.041908 ;-0.041044 ;-0.040128 ;-0.039158 ;-0.038131 ;-0.037047 ;-0.035896 ;-0.034674 ;-0.033370 ;-0.031979 ;-0.031614 ;-0.031243 ;-0.030866 ;-0.030483 ;-0.030093 ;-0.029696 ;-0.029291 ;-0.028880 ;-0.028462 ;-0.028036 ;-0.027603 ;-0.027160 ;-0.026708 ;-0.026248 ;-0.025779 ;-0.025300 ;-0.024807 ;-0.024303 ;-0.023787 ;-0.023257 ;-0.022710 ;-0.022148 ;-0.021569 ;-0.020971 ;-0.020352 ;-0.019711 ;-0.019045 ;-0.018350 ;-0.017624 ;-0.016862 ;-0.016060 ;-0.015207 ;-0.014297 ;-0.013314 ;-0.012240 ;-0.012127 ;-0.012012 ;-0.011896 ;-0.011778 ;-0.011659 ;-0.011538 ;-0.011416 ;-0.011292 ;-0.011167 ;-0.011040 ;-0.010911 ;-0.010780 ;-0.010648 ;-0.010513 ;-0.010376 ;-0.010237 ;-0.010095 ;-0.009951 ;-0.009804 ;-0.009654 ;-0.009502 ;-0.009346 ;-0.009187 ;-0.009025 ;-0.008859 ;-0.008689 ;-0.008514 ;-0.008334 ;-0.008148 ;-0.007957 ;-0.007760 ;-0.007556 ;-0.007344 ;-0.007125 ;-0.006897 ;-0.006659 ;-0.006411 ;-0.006150 ;-0.005874 ;-0.005584 ;-0.005278 ;-0.004951 ;-0.004592 ;-0.004190 ;-0.003756 ;-0.003297 ;-0.002665 ;-0.001873 ;0.000000 ;0.001873 ;0.002665 ;0.003297 ;0.003756 ;0.004190 ;0.004592 ;0.004951 ;0.005278 ;0.005584 ;0.005874 ;0.006150 ;0.006411 ;0.006659 ;0.006897 ;0.007125 ;0.007344 ;0.007556 ;0.007760 ;0.007957 ;0.008148 ;0.008334 ;0.008514 ;0.008689 ;0.008859 ;0.009025 ;0.009187 ;0.009346 ;0.009502 ;0.009654 ;0.009804 ;0.009951 ;0.010095 ;0.010237 ;0.010376 ;0.010513 ;0.010648 ;0.010780 ;0.010911 ;0.011040 ;0.011167 ;0.011292 ;0.011416 ;0.011538 ;0.011659 ;0.011778 ;0.011896 ;0.012012 ;0.012127 ;0.012240 ;0.013314 ;0.014297 ;0.015207 ;0.016060 ;0.016862 ;0.017624 ;0.018350 ;0.019045 ;0.019711 ;0.020352 ;0.020971 ;0.021569 ;0.022148 ;0.022710 ;0.023257 ;0.023787 ;0.024303 ;0.024807 ;0.025300 ;0.025779 ;0.026248 ;0.026708 ;0.027160 ;0.027603 ;0.028036 ;0.028462 ;0.028880 ;0.029291 ;0.029696 ;0.030093 ;0.030483 ;0.030866 ;0.031243 ;0.031614 ;0.031979 ;0.033370 ;0.034674 ;0.035896 ;0.037047 ;0.038131 ;0.039158 ;0.040128 ;0.041044 ;0.041908 ;0.042719 ;0.043481 ;0.044195 ;0.044861 ;0.045486 ;0.046066 ;0.046607 ;0.047103 ;0.047562 ;0.047983 ;0.048362 ;0.048705 ;0.049005 ;0.049269 ;0.049493 ;0.049678 ;0.049824 ;0.049929 ;0.049988 ;0.049998 ;0.049957 ;0.049857 ;0.049703 ;0.049495 ;0.049240 ;0.048940 ;0.048596 ;0.048216 ;0.047794 ;0.047340 ;0.046846 ;0.046316 ;0.045756 ;0.045160 ;0.044535 ;0.043883 ;0.043203 ;0.042498 ;0.041767 ;0.041010 ;0.040228 ;0.039425 ;0.038596 ;0.037750 ;0.036879 ;0.035987 ;0.035077 ;0.034149 ;0.033203 ;0.032239 ;0.031265 ;0.030276 ;0.029276 ;0.028267 ;0.027250 ;0.026228 ;0.025198 ;0.024164 ;0.023125 ;0.022086 ;0.021045 ;0.020003 ;0.018962 ;0.017910 ;0.016858 ;0.015806 ;0.014754 ;0.013702 ;0.012650 ;0.011598 ;0.010546 ;0.009494 ;0.008442 ;0.007390 ;0.006338 ;0.005286 ;0.004234 ;0.003182 ;0.002130 ;0.001078 ;0.000026 + + + + ... + ... + + 0.999750 ;0.989750 ;0.979750 ;0.969750 ;0.959750 ;0.949750 ;0.939750 ;0.929750 ;0.919750 ;0.909750 ;0.899750 ;0.889750 ;0.879750 ;0.869750 ;0.859750 ;0.849750 ;0.839750 ;0.829750 ;0.819750 ;0.809750 ;0.799750 ;0.789750 ;0.779750 ;0.769750 ;0.759750 ;0.749750 ;0.739750 ;0.729750 ;0.719750 ;0.709750 ;0.699750 ;0.689750 ;0.679750 ;0.669750 ;0.659750 ;0.649750 ;0.639750 ;0.629750 ;0.619750 ;0.609750 ;0.599750 ;0.589750 ;0.579750 ;0.569750 ;0.559750 ;0.549750 ;0.539750 ;0.529750 ;0.519750 ;0.509750 ;0.499750 ;0.489750 ;0.479750 ;0.469750 ;0.459750 ;0.449750 ;0.439750 ;0.429750 ;0.419750 ;0.409750 ;0.399750 ;0.389750 ;0.379750 ;0.369750 ;0.359750 ;0.349750 ;0.339750 ;0.329750 ;0.319750 ;0.309750 ;0.299750 ;0.289750 ;0.279750 ;0.269750 ;0.259750 ;0.249750 ;0.239750 ;0.229750 ;0.219750 ;0.209750 ;0.199750 ;0.189750 ;0.179750 ;0.169750 ;0.159750 ;0.149750 ;0.139750 ;0.129750 ;0.119750 ;0.109750 ;0.099750 ;0.097250 ;0.094750 ;0.092250 ;0.089750 ;0.087250 ;0.084750 ;0.082250 ;0.079750 ;0.077250 ;0.074750 ;0.072250 ;0.069750 ;0.067250 ;0.064750 ;0.062250 ;0.059750 ;0.057250 ;0.054750 ;0.052250 ;0.049750 ;0.047250 ;0.044750 ;0.042250 ;0.039750 ;0.037250 ;0.034750 ;0.032250 ;0.029750 ;0.027250 ;0.024750 ;0.022250 ;0.019750 ;0.017250 ;0.014750 ;0.012250 ;0.012000 ;0.011750 ;0.011500 ;0.011250 ;0.011000 ;0.010750 ;0.010500 ;0.010250 ;0.010000 ;0.009750 ;0.009500 ;0.009250 ;0.009000 ;0.008750 ;0.008500 ;0.008250 ;0.008000 ;0.007750 ;0.007500 ;0.007250 ;0.007000 ;0.006750 ;0.006500 ;0.006250 ;0.006000 ;0.005750 ;0.005500 ;0.005250 ;0.005000 ;0.004750 ;0.004500 ;0.004250 ;0.004000 ;0.003750 ;0.003500 ;0.003250 ;0.003000 ;0.002750 ;0.002500 ;0.002250 ;0.002000 ;0.001750 ;0.001500 ;0.001250 ;0.001000 ;0.000750 ;0.000500 ;0.000250 ;0.000000 ;0.000250 ;0.000500 ;0.000750 ;0.001000 ;0.001250 ;0.001500 ;0.001750 ;0.002000 ;0.002250 ;0.002500 ;0.002750 ;0.003000 ;0.003250 ;0.003500 ;0.003750 ;0.004000 ;0.004250 ;0.004500 ;0.004750 ;0.005000 ;0.005250 ;0.005500 ;0.005750 ;0.006000 ;0.006250 ;0.006500 ;0.006750 ;0.007000 ;0.007250 ;0.007500 ;0.007750 ;0.008000 ;0.008250 ;0.008500 ;0.008750 ;0.009000 ;0.009250 ;0.009500 ;0.009750 ;0.010000 ;0.010250 ;0.010500 ;0.010750 ;0.011000 ;0.011250 ;0.011500 ;0.011750 ;0.012000 ;0.012250 ;0.014750 ;0.017250 ;0.019750 ;0.022250 ;0.024750 ;0.027250 ;0.029750 ;0.032250 ;0.034750 ;0.037250 ;0.039750 ;0.042250 ;0.044750 ;0.047250 ;0.049750 ;0.052250 ;0.054750 ;0.057250 ;0.059750 ;0.062250 ;0.064750 ;0.067250 ;0.069750 ;0.072250 ;0.074750 ;0.077250 ;0.079750 ;0.082250 ;0.084750 ;0.087250 ;0.089750 ;0.092250 ;0.094750 ;0.097250 ;0.099750 ;0.109750 ;0.119750 ;0.129750 ;0.139750 ;0.149750 ;0.159750 ;0.169750 ;0.179750 ;0.189750 ;0.199750 ;0.209750 ;0.219750 ;0.229750 ;0.239750 ;0.249750 ;0.259750 ;0.269750 ;0.279750 ;0.289750 ;0.299750 ;0.309750 ;0.319750 ;0.329750 ;0.339750 ;0.349750 ;0.359750 ;0.369750 ;0.379750 ;0.389750 ;0.399750 ;0.409750 ;0.419750 ;0.429750 ;0.439750 ;0.449750 ;0.459750 ;0.469750 ;0.479750 ;0.489750 ;0.499750 ;0.509750 ;0.519750 ;0.529750 ;0.539750 ;0.549750 ;0.559750 ;0.569750 ;0.579750 ;0.589750 ;0.599750 ;0.609750 ;0.619750 ;0.629750 ;0.639750 ;0.649750 ;0.659750 ;0.669750 ;0.679750 ;0.689750 ;0.699750 ;0.709750 ;0.719750 ;0.729750 ;0.739750 ;0.749750 ;0.759750 ;0.769750 ;0.779750 ;0.789750 ;0.799750 ;0.809750 ;0.819750 ;0.829750 ;0.839750 ;0.849750 ;0.859750 ;0.869750 ;0.879750 ;0.889750 ;0.899750 ;0.909750 ;0.919750 ;0.929750 ;0.939750 ;0.949750 ;0.959750 ;0.969750 ;0.979750 ;0.989750 ;0.999750 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.000024 ;-0.000976 ;-0.001928 ;-0.002881 ;-0.003833 ;-0.004785 ;-0.005737 ;-0.006690 ;-0.007642 ;-0.008594 ;-0.009546 ;-0.010499 ;-0.011451 ;-0.012403 ;-0.013355 ;-0.014308 ;-0.015260 ;-0.016212 ;-0.017165 ;-0.018098 ;-0.019023 ;-0.019939 ;-0.020846 ;-0.021741 ;-0.022627 ;-0.023497 ;-0.024357 ;-0.025201 ;-0.026032 ;-0.026844 ;-0.027644 ;-0.028423 ;-0.029184 ;-0.029929 ;-0.030651 ;-0.031355 ;-0.032040 ;-0.032702 ;-0.033342 ;-0.033962 ;-0.034558 ;-0.035131 ;-0.035680 ;-0.036199 ;-0.036690 ;-0.037152 ;-0.037578 ;-0.037974 ;-0.038335 ;-0.038660 ;-0.038948 ;-0.039203 ;-0.039421 ;-0.039604 ;-0.039750 ;-0.039863 ;-0.039941 ;-0.039987 ;-0.040000 ;-0.039983 ;-0.039935 ;-0.039857 ;-0.039750 ;-0.039615 ;-0.039453 ;-0.039262 ;-0.039043 ;-0.038796 ;-0.038523 ;-0.038223 ;-0.037895 ;-0.037539 ;-0.037159 ;-0.036745 ;-0.036306 ;-0.035833 ;-0.035333 ;-0.034797 ;-0.034232 ;-0.033634 ;-0.033000 ;-0.032332 ;-0.031626 ;-0.030881 ;-0.030094 ;-0.029262 ;-0.028386 ;-0.027457 ;-0.026475 ;-0.025436 ;-0.024333 ;-0.024046 ;-0.023754 ;-0.023457 ;-0.023155 ;-0.022847 ;-0.022534 ;-0.022215 ;-0.021889 ;-0.021557 ;-0.021218 ;-0.020870 ;-0.020516 ;-0.020157 ;-0.019791 ;-0.019421 ;-0.019047 ;-0.018668 ;-0.018286 ;-0.017901 ;-0.017514 ;-0.017125 ;-0.016730 ;-0.016329 ;-0.015919 ;-0.015496 ;-0.015057 ;-0.014601 ;-0.014119 ;-0.013610 ;-0.013065 ;-0.012479 ;-0.011844 ;-0.011152 ;-0.010391 ;-0.009541 ;-0.009451 ;-0.009359 ;-0.009266 ;-0.009172 ;-0.009077 ;-0.008980 ;-0.008882 ;-0.008783 ;-0.008683 ;-0.008581 ;-0.008478 ;-0.008373 ;-0.008267 ;-0.008159 ;-0.008050 ;-0.007939 ;-0.007826 ;-0.007712 ;-0.007596 ;-0.007478 ;-0.007358 ;-0.007236 ;-0.007111 ;-0.006984 ;-0.006854 ;-0.006721 ;-0.006584 ;-0.006444 ;-0.006299 ;-0.006150 ;-0.005996 ;-0.005837 ;-0.005672 ;-0.005501 ;-0.005323 ;-0.005138 ;-0.004945 ;-0.004741 ;-0.004527 ;-0.004301 ;-0.004064 ;-0.003809 ;-0.003530 ;-0.003218 ;-0.002884 ;-0.002529 ;-0.002037 ;-0.001436 ;0.000000 ;0.001436 ;0.002037 ;0.002529 ;0.002884 ;0.003218 ;0.003530 ;0.003809 ;0.004064 ;0.004301 ;0.004527 ;0.004741 ;0.004945 ;0.005138 ;0.005323 ;0.005501 ;0.005672 ;0.005837 ;0.005996 ;0.006150 ;0.006299 ;0.006444 ;0.006584 ;0.006721 ;0.006854 ;0.006984 ;0.007111 ;0.007236 ;0.007358 ;0.007478 ;0.007596 ;0.007712 ;0.007826 ;0.007939 ;0.008050 ;0.008159 ;0.008267 ;0.008373 ;0.008478 ;0.008581 ;0.008683 ;0.008783 ;0.008882 ;0.008980 ;0.009077 ;0.009172 ;0.009266 ;0.009359 ;0.009451 ;0.009541 ;0.010391 ;0.011152 ;0.011844 ;0.012479 ;0.013065 ;0.013610 ;0.014119 ;0.014601 ;0.015057 ;0.015496 ;0.015919 ;0.016329 ;0.016730 ;0.017125 ;0.017514 ;0.017901 ;0.018286 ;0.018668 ;0.019047 ;0.019421 ;0.019791 ;0.020157 ;0.020516 ;0.020870 ;0.021218 ;0.021557 ;0.021889 ;0.022215 ;0.022534 ;0.022847 ;0.023155 ;0.023457 ;0.023754 ;0.024046 ;0.024333 ;0.025436 ;0.026475 ;0.027457 ;0.028386 ;0.029262 ;0.030094 ;0.030881 ;0.031626 ;0.032332 ;0.033000 ;0.033634 ;0.034232 ;0.034797 ;0.035333 ;0.035833 ;0.036306 ;0.036745 ;0.037159 ;0.037539 ;0.037895 ;0.038223 ;0.038523 ;0.038796 ;0.039043 ;0.039262 ;0.039453 ;0.039615 ;0.039750 ;0.039857 ;0.039935 ;0.039983 ;0.040000 ;0.039987 ;0.039941 ;0.039863 ;0.039750 ;0.039604 ;0.039421 ;0.039203 ;0.038948 ;0.038660 ;0.038335 ;0.037974 ;0.037578 ;0.037152 ;0.036690 ;0.036199 ;0.035680 ;0.035131 ;0.034558 ;0.033962 ;0.033342 ;0.032702 ;0.032040 ;0.031355 ;0.030651 ;0.029929 ;0.029184 ;0.028423 ;0.027644 ;0.026844 ;0.026032 ;0.025201 ;0.024357 ;0.023497 ;0.022627 ;0.021741 ;0.020846 ;0.019939 ;0.019023 ;0.018098 ;0.017165 ;0.016212 ;0.015260 ;0.014308 ;0.013355 ;0.012403 ;0.011451 ;0.010499 ;0.009546 ;0.008594 ;0.007642 ;0.006690 ;0.005737 ;0.004785 ;0.003833 ;0.002881 ;0.001928 ;0.000976 ;0.000024 + + + + ... + ... + + 0.999750 ;0.989750 ;0.979750 ;0.969750 ;0.959750 ;0.949750 ;0.939750 ;0.929750 ;0.919750 ;0.909750 ;0.899750 ;0.889750 ;0.879750 ;0.869750 ;0.859750 ;0.849750 ;0.839750 ;0.829750 ;0.819750 ;0.809750 ;0.799750 ;0.789750 ;0.779750 ;0.769750 ;0.759750 ;0.749750 ;0.739750 ;0.729750 ;0.719750 ;0.709750 ;0.699750 ;0.689750 ;0.679750 ;0.669750 ;0.659750 ;0.649750 ;0.639750 ;0.629750 ;0.619750 ;0.609750 ;0.599750 ;0.589750 ;0.579750 ;0.569750 ;0.559750 ;0.549750 ;0.539750 ;0.529750 ;0.519750 ;0.509750 ;0.499750 ;0.489750 ;0.479750 ;0.469750 ;0.459750 ;0.449750 ;0.439750 ;0.429750 ;0.419750 ;0.409750 ;0.399750 ;0.389750 ;0.379750 ;0.369750 ;0.359750 ;0.349750 ;0.339750 ;0.329750 ;0.319750 ;0.309750 ;0.299750 ;0.289750 ;0.279750 ;0.269750 ;0.259750 ;0.249750 ;0.239750 ;0.229750 ;0.219750 ;0.209750 ;0.199750 ;0.189750 ;0.179750 ;0.169750 ;0.159750 ;0.149750 ;0.139750 ;0.129750 ;0.119750 ;0.109750 ;0.099750 ;0.097250 ;0.094750 ;0.092250 ;0.089750 ;0.087250 ;0.084750 ;0.082250 ;0.079750 ;0.077250 ;0.074750 ;0.072250 ;0.069750 ;0.067250 ;0.064750 ;0.062250 ;0.059750 ;0.057250 ;0.054750 ;0.052250 ;0.049750 ;0.047250 ;0.044750 ;0.042250 ;0.039750 ;0.037250 ;0.034750 ;0.032250 ;0.029750 ;0.027250 ;0.024750 ;0.022250 ;0.019750 ;0.017250 ;0.014750 ;0.012250 ;0.012000 ;0.011750 ;0.011500 ;0.011250 ;0.011000 ;0.010750 ;0.010500 ;0.010250 ;0.010000 ;0.009750 ;0.009500 ;0.009250 ;0.009000 ;0.008750 ;0.008500 ;0.008250 ;0.008000 ;0.007750 ;0.007500 ;0.007250 ;0.007000 ;0.006750 ;0.006500 ;0.006250 ;0.006000 ;0.005750 ;0.005500 ;0.005250 ;0.005000 ;0.004750 ;0.004500 ;0.004250 ;0.004000 ;0.003750 ;0.003500 ;0.003250 ;0.003000 ;0.002750 ;0.002500 ;0.002250 ;0.002000 ;0.001750 ;0.001500 ;0.001250 ;0.001000 ;0.000750 ;0.000500 ;0.000250 ;0.000000 ;0.000250 ;0.000500 ;0.000750 ;0.001000 ;0.001250 ;0.001500 ;0.001750 ;0.002000 ;0.002250 ;0.002500 ;0.002750 ;0.003000 ;0.003250 ;0.003500 ;0.003750 ;0.004000 ;0.004250 ;0.004500 ;0.004750 ;0.005000 ;0.005250 ;0.005500 ;0.005750 ;0.006000 ;0.006250 ;0.006500 ;0.006750 ;0.007000 ;0.007250 ;0.007500 ;0.007750 ;0.008000 ;0.008250 ;0.008500 ;0.008750 ;0.009000 ;0.009250 ;0.009500 ;0.009750 ;0.010000 ;0.010250 ;0.010500 ;0.010750 ;0.011000 ;0.011250 ;0.011500 ;0.011750 ;0.012000 ;0.012250 ;0.014750 ;0.017250 ;0.019750 ;0.022250 ;0.024750 ;0.027250 ;0.029750 ;0.032250 ;0.034750 ;0.037250 ;0.039750 ;0.042250 ;0.044750 ;0.047250 ;0.049750 ;0.052250 ;0.054750 ;0.057250 ;0.059750 ;0.062250 ;0.064750 ;0.067250 ;0.069750 ;0.072250 ;0.074750 ;0.077250 ;0.079750 ;0.082250 ;0.084750 ;0.087250 ;0.089750 ;0.092250 ;0.094750 ;0.097250 ;0.099750 ;0.109750 ;0.119750 ;0.129750 ;0.139750 ;0.149750 ;0.159750 ;0.169750 ;0.179750 ;0.189750 ;0.199750 ;0.209750 ;0.219750 ;0.229750 ;0.239750 ;0.249750 ;0.259750 ;0.269750 ;0.279750 ;0.289750 ;0.299750 ;0.309750 ;0.319750 ;0.329750 ;0.339750 ;0.349750 ;0.359750 ;0.369750 ;0.379750 ;0.389750 ;0.399750 ;0.409750 ;0.419750 ;0.429750 ;0.439750 ;0.449750 ;0.459750 ;0.469750 ;0.479750 ;0.489750 ;0.499750 ;0.509750 ;0.519750 ;0.529750 ;0.539750 ;0.549750 ;0.559750 ;0.569750 ;0.579750 ;0.589750 ;0.599750 ;0.609750 ;0.619750 ;0.629750 ;0.639750 ;0.649750 ;0.659750 ;0.669750 ;0.679750 ;0.689750 ;0.699750 ;0.709750 ;0.719750 ;0.729750 ;0.739750 ;0.749750 ;0.759750 ;0.769750 ;0.779750 ;0.789750 ;0.799750 ;0.809750 ;0.819750 ;0.829750 ;0.839750 ;0.849750 ;0.859750 ;0.869750 ;0.879750 ;0.889750 ;0.899750 ;0.909750 ;0.919750 ;0.929750 ;0.939750 ;0.949750 ;0.959750 ;0.969750 ;0.979750 ;0.989750 ;0.999750 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.000024 ;-0.000976 ;-0.001928 ;-0.002881 ;-0.003833 ;-0.004785 ;-0.005737 ;-0.006690 ;-0.007642 ;-0.008594 ;-0.009546 ;-0.010499 ;-0.011451 ;-0.012403 ;-0.013355 ;-0.014308 ;-0.015260 ;-0.016212 ;-0.017165 ;-0.018098 ;-0.019023 ;-0.019939 ;-0.020846 ;-0.021741 ;-0.022627 ;-0.023497 ;-0.024357 ;-0.025201 ;-0.026032 ;-0.026844 ;-0.027644 ;-0.028423 ;-0.029184 ;-0.029929 ;-0.030651 ;-0.031355 ;-0.032040 ;-0.032702 ;-0.033342 ;-0.033962 ;-0.034558 ;-0.035131 ;-0.035680 ;-0.036199 ;-0.036690 ;-0.037152 ;-0.037578 ;-0.037974 ;-0.038335 ;-0.038660 ;-0.038948 ;-0.039203 ;-0.039421 ;-0.039604 ;-0.039750 ;-0.039863 ;-0.039941 ;-0.039987 ;-0.040000 ;-0.039983 ;-0.039935 ;-0.039857 ;-0.039750 ;-0.039615 ;-0.039453 ;-0.039262 ;-0.039043 ;-0.038796 ;-0.038523 ;-0.038223 ;-0.037895 ;-0.037539 ;-0.037159 ;-0.036745 ;-0.036306 ;-0.035833 ;-0.035333 ;-0.034797 ;-0.034232 ;-0.033634 ;-0.033000 ;-0.032332 ;-0.031626 ;-0.030881 ;-0.030094 ;-0.029262 ;-0.028386 ;-0.027457 ;-0.026475 ;-0.025436 ;-0.024333 ;-0.024046 ;-0.023754 ;-0.023457 ;-0.023155 ;-0.022847 ;-0.022534 ;-0.022215 ;-0.021889 ;-0.021557 ;-0.021218 ;-0.020870 ;-0.020516 ;-0.020157 ;-0.019791 ;-0.019421 ;-0.019047 ;-0.018668 ;-0.018286 ;-0.017901 ;-0.017514 ;-0.017125 ;-0.016730 ;-0.016329 ;-0.015919 ;-0.015496 ;-0.015057 ;-0.014601 ;-0.014119 ;-0.013610 ;-0.013065 ;-0.012479 ;-0.011844 ;-0.011152 ;-0.010391 ;-0.009541 ;-0.009451 ;-0.009359 ;-0.009266 ;-0.009172 ;-0.009077 ;-0.008980 ;-0.008882 ;-0.008783 ;-0.008683 ;-0.008581 ;-0.008478 ;-0.008373 ;-0.008267 ;-0.008159 ;-0.008050 ;-0.007939 ;-0.007826 ;-0.007712 ;-0.007596 ;-0.007478 ;-0.007358 ;-0.007236 ;-0.007111 ;-0.006984 ;-0.006854 ;-0.006721 ;-0.006584 ;-0.006444 ;-0.006299 ;-0.006150 ;-0.005996 ;-0.005837 ;-0.005672 ;-0.005501 ;-0.005323 ;-0.005138 ;-0.004945 ;-0.004741 ;-0.004527 ;-0.004301 ;-0.004064 ;-0.003809 ;-0.003530 ;-0.003218 ;-0.002884 ;-0.002529 ;-0.002037 ;-0.001436 ;0.000000 ;0.001436 ;0.002037 ;0.002529 ;0.002884 ;0.003218 ;0.003530 ;0.003809 ;0.004064 ;0.004301 ;0.004527 ;0.004741 ;0.004945 ;0.005138 ;0.005323 ;0.005501 ;0.005672 ;0.005837 ;0.005996 ;0.006150 ;0.006299 ;0.006444 ;0.006584 ;0.006721 ;0.006854 ;0.006984 ;0.007111 ;0.007236 ;0.007358 ;0.007478 ;0.007596 ;0.007712 ;0.007826 ;0.007939 ;0.008050 ;0.008159 ;0.008267 ;0.008373 ;0.008478 ;0.008581 ;0.008683 ;0.008783 ;0.008882 ;0.008980 ;0.009077 ;0.009172 ;0.009266 ;0.009359 ;0.009451 ;0.009541 ;0.010391 ;0.011152 ;0.011844 ;0.012479 ;0.013065 ;0.013610 ;0.014119 ;0.014601 ;0.015057 ;0.015496 ;0.015919 ;0.016329 ;0.016730 ;0.017125 ;0.017514 ;0.017901 ;0.018286 ;0.018668 ;0.019047 ;0.019421 ;0.019791 ;0.020157 ;0.020516 ;0.020870 ;0.021218 ;0.021557 ;0.021889 ;0.022215 ;0.022534 ;0.022847 ;0.023155 ;0.023457 ;0.023754 ;0.024046 ;0.024333 ;0.025436 ;0.026475 ;0.027457 ;0.028386 ;0.029262 ;0.030094 ;0.030881 ;0.031626 ;0.032332 ;0.033000 ;0.033634 ;0.034232 ;0.034797 ;0.035333 ;0.035833 ;0.036306 ;0.036745 ;0.037159 ;0.037539 ;0.037895 ;0.038223 ;0.038523 ;0.038796 ;0.039043 ;0.039262 ;0.039453 ;0.039615 ;0.039750 ;0.039857 ;0.039935 ;0.039983 ;0.040000 ;0.039987 ;0.039941 ;0.039863 ;0.039750 ;0.039604 ;0.039421 ;0.039203 ;0.038948 ;0.038660 ;0.038335 ;0.037974 ;0.037578 ;0.037152 ;0.036690 ;0.036199 ;0.035680 ;0.035131 ;0.034558 ;0.033962 ;0.033342 ;0.032702 ;0.032040 ;0.031355 ;0.030651 ;0.029929 ;0.029184 ;0.028423 ;0.027644 ;0.026844 ;0.026032 ;0.025201 ;0.024357 ;0.023497 ;0.022627 ;0.021741 ;0.020846 ;0.019939 ;0.019023 ;0.018098 ;0.017165 ;0.016212 ;0.015260 ;0.014308 ;0.013355 ;0.012403 ;0.011451 ;0.010499 ;0.009546 ;0.008594 ;0.007642 ;0.006690 ;0.005737 ;0.004785 ;0.003833 ;0.002881 ;0.001928 ;0.000976 ;0.000024 + + + + +
+
diff --git a/test_files/CPACSfiles/concorde1014.xml b/test_files/CPACSfiles/concorde1014.xml new file mode 100644 index 000000000..afd1e96cc --- /dev/null +++ b/test_files/CPACSfiles/concorde1014.xml @@ -0,0 +1,2263 @@ + + +
+ concorde1014 + Simple Wing for unit testing + Martin Siggel + 2012-10-09T15:12:47 + 0.2 + 3.0 + + + Converted to cpacs 3.0 using cpacs2to3 - does not include structure update + cpacs2to3 + 2018-01-15T09:22:57 + 0.2 + 3.0 + + + Add this update + Aidan + 2018-10-03T09:00:01 + 0.3 + 3.0 + + +
+ + + + concv0 + + 499.8191 + 23.9332 + + 30.0246 + 0 + 0.50005 + + + + +Fuselage +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + +
+FuselageFuseFrame1 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 1 + 0 + 0.070208 + + + + + ... + fuseprof_1_1 + + + 1 + 0.13612 + 0.15746 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFuseFrame2 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 5.2614 + 0 + 0.45897 + + + + + ... + fuseprof_1_2 + + + 1 + 0.78415 + 0.9071 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFuseFrame3 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 9.5229 + 0 + 0.9153 + + + + + ... + fuseprof_1_3 + + + 1 + 1.2864 + 1.4881 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFuseFrame4 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 13.7843 + 0 + 1.0901 + + + + + ... + fuseprof_1_4 + + + 1 + 1.4404 + 1.6662 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFuseFrame5 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 18.0457 + 0 + 1.084 + + + + + ... + fuseprof_1_5 + + + 1 + 1.4331 + 1.6578 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFuseFrame7 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 26.5686 + 0 + 1.0793 + + + + + ... + fuseprof_1_6 + + + 1 + 1.4246 + 1.648 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFuseFrame9 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 35.0914 + 0 + 1.0907 + + + + + ... + fuseprof_1_7 + + + 1 + 1.445 + 1.6717 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFuseFrame10 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 39.3529 + 0 + 1.1183 + + + + + ... + fuseprof_1_8 + + + 1 + 1.4203 + 1.6429 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFuseFrame11 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 43.6143 + 0 + 1.1979 + + + + + ... + fuseprof_1_9 + + + 1 + 1.3315 + 1.5403 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFuseFrame12 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 47.8757 + 0 + 1.2906 + + + + + ... + fuseprof_1_10 + + + 1 + 1.2099 + 1.3996 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFuseFrame13 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 52.1371 + 0 + 1.5472 + + + + + ... + fuseprof_1_11 + + + 1 + 0.92955 + 1.0753 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFuseFrame14 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 56.3986 + 0 + 1.8593 + + + + + ... + fuseprof_1_12 + + + 1 + 0.5894 + 0.6818 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFuseFrame15 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 60.66 + 0 + 2.3157 + + + + + ... + fuseprof_1_13 + + + 1 + 0.11801 + 0.13652 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + FuselageFuseFrame1 + 0 + + + + ... + description + 0 + 0 + FuselageFuseFrame2 + 0 + + + + ... + description + 0 + 0 + FuselageFuseFrame3 + 0 + + + + ... + description + 0 + 0 + FuselageFuseFrame4 + 0 + + + + ... + description + 0 + 0 + FuselageFuseFrame5 + 0 + + + + ... + description + 0 + 0 + FuselageFuseFrame7 + 0 + + + + ... + description + 0 + 0 + FuselageFuseFrame9 + 0 + + + + ... + description + 0 + 0 + FuselageFuseFrame10 + 0 + + + + ... + description + 0 + 0 + FuselageFuseFrame11 + 0 + + + + ... + description + 0 + 0 + FuselageFuseFrame12 + 0 + + + + ... + description + 0 + 0 + FuselageFuseFrame13 + 0 + + + + ... + description + 0 + 0 + FuselageFuseFrame14 + 0 + + + + ... + description + 0 + 0 + FuselageFuseFrame15 + 0 + + + + + + ... + FuselageFuseFrame1elem1 + FuselageFuseFrame2elem1 + + + + ... + FuselageFuseFrame2elem1 + FuselageFuseFrame3elem1 + + + + ... + FuselageFuseFrame3elem1 + FuselageFuseFrame4elem1 + + + + ... + FuselageFuseFrame4elem1 + FuselageFuseFrame5elem1 + + + + ... + FuselageFuseFrame5elem1 + FuselageFuseFrame7elem1 + + + + ... + FuselageFuseFrame7elem1 + FuselageFuseFrame9elem1 + + + + ... + FuselageFuseFrame9elem1 + FuselageFuseFrame10elem1 + + + + ... + FuselageFuseFrame10elem1 + FuselageFuseFrame11elem1 + + + + ... + FuselageFuseFrame11elem1 + FuselageFuseFrame12elem1 + + + + ... + FuselageFuseFrame12elem1 + FuselageFuseFrame13elem1 + + + + ... + FuselageFuseFrame13elem1 + FuselageFuseFrame14elem1 + + + + ... + FuselageFuseFrame14elem1 + FuselageFuseFrame15elem1 + + + +
+
+ + + Wing + Fuselage + description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 13 + 0 + 0.5 + + + +
+WingWingSection1 +description + + + 1 + 1 + 1 + + + -0 + -0.00018026 + -0 + + + 0.0037595 + 0 + -8.8498e-05 + + + + + ... + foil_1_11 + + + + 35.588 + 35.588 + 35.588 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingWingSection2 +description + + + 1 + 1 + 1 + + + 0.32116 + -0.24216 + 0.0013574 + + + 4.8505 + 1.2799 + -0.095416 + + + + + ... + foil_1_10 + + + + 30.6015 + 30.6015 + 30.6015 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingWingSection3 +description + + + 1 + 1 + 1 + + + 0.40118 + -0.55268 + 0.0038698 + + + 9.8867 + 2.5588 + -0.16762 + + + + + ... + foil_1_9 + + + + 25.4255 + 25.4255 + 25.4255 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingWingSection4 +description + + + 1 + 1 + 1 + + + -0.00039544 + -1.0003 + -6.9033e-06 + + + 14.2746 + 3.8377 + -0.2377 + + + + + ... + foil_1_8 + + + + 20.8978 + 20.8978 + 20.8978 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingWingSection5 +description + + + 1 + 1 + 1 + + + -1.0427 + -1.6292 + -0.029648 + + + 17.5176 + 5.1166 + -0.32433 + + + + + ... + foil_1_7 + + + + 17.5151 + 17.5151 + 17.5151 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingWingSection6 +description + + + 1 + 1 + 1 + + + -2.5584 + -2.3868 + -0.10662 + + + 20.1708 + 6.3955 + -0.41832 + + + + + ... + foil_1_6 + + + + 14.722 + 14.722 + 14.722 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingWingSection7 +description + + + 1 + 1 + 1 + + + -4.2989 + -3.1954 + -0.24008 + + + 22.4811 + 7.6744 + -0.51325 + + + + + ... + foil_1_5 + + + + 12.272 + 12.272 + 12.272 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingWingSection8 +description + + + 1 + 1 + 1 + + + -6.0151 + -3.9782 + -0.41884 + + + 24.4417 + 8.9533 + -0.61273 + + + + + ... + foil_1_4 + + + + 10.1717 + 10.1717 + 10.1717 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingWingSection9 +description + + + 1 + 1 + 1 + + + -7.5132 + -4.6789 + -0.61637 + + + 26.1297 + 10.2322 + -0.72051 + + + + + ... + foil_1_3 + + + + 8.3439 + 8.3439 + 8.3439 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingWingSection10 +description + + + 1 + 1 + 1 + + + -8.8285 + -5.3121 + -0.82382 + + + 27.8087 + 11.5111 + -0.83598 + + + + + ... + foil_1_2 + + + + 6.5251 + 6.5251 + 6.5251 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingWingSection11 +description + + + 1 + 1 + 1 + + + -10.0538 + -5.9085 + -1.0456 + + + 30.4076 + 12.79 + -0.91742 + + + + + ... + foil_1_1 + + + + 3.4909 + 3.4909 + 3.4909 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + WingWingSection11 + 0 + + + + ... + description + 0 + 0 + WingWingSection10 + 0 + + + + ... + description + 0 + 0 + WingWingSection9 + 0 + + + + ... + description + 0 + 0 + WingWingSection8 + 0 + + + + ... + description + 0 + 0 + WingWingSection7 + 0 + + + + ... + description + 0 + 0 + WingWingSection6 + 0 + + + + ... + description + 0 + 0 + WingWingSection5 + 0 + + + + ... + description + 0 + 0 + WingWingSection4 + 0 + + + + ... + description + 0 + 0 + WingWingSection3 + 0 + + + + ... + description + 0 + 0 + WingWingSection2 + 0 + + + + ... + description + 0 + 0 + WingWingSection1 + 0 + + + + + + ... + WingWingSection11elem1 + WingWingSection10elem1 + + + + ... + WingWingSection10elem1 + WingWingSection9elem1 + + + + ... + WingWingSection9elem1 + WingWingSection8elem1 + + + + ... + WingWingSection8elem1 + WingWingSection7elem1 + + + + ... + WingWingSection7elem1 + WingWingSection6elem1 + + + + ... + WingWingSection6elem1 + WingWingSection5elem1 + + + + ... + WingWingSection5elem1 + WingWingSection4elem1 + + + + ... + WingWingSection4elem1 + WingWingSection3elem1 + + + + ... + WingWingSection3elem1 + WingWingSection2elem1 + + + + ... + WingWingSection2elem1 + WingWingSection1elem1 + + + +
+ + Fin + Fuselage + description + + + 1 + 1 + 1 + + + 90.0002 + 0 + -0 + + + 40 + 0 + 2.3 + + + +
+FinWingSection1 +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 0 + 0 + 0 + + + + + ... + foil_2_7 + + + + 16.7401 + 16.7401 + 16.7401 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FinWingSection2 +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 2.0781 + 0.59856 + 0 + + + + + ... + foil_2_6 + + + + 14.5472 + 14.5472 + 14.5472 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FinWingSection3 +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 5.1956 + 1.434 + 0 + + + + + ... + foil_2_5 + + + + 11.2695 + 11.2695 + 11.2695 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FinWingSection4 +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 8.3166 + 2.4451 + 0 + + + + + ... + foil_2_4 + + + + 7.9545 + 7.9545 + 7.9545 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FinWingSection5 +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 9.9171 + 3.456 + 0 + + + + + ... + foil_2_3 + + + + 6.1601 + 6.1601 + 6.1601 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FinWingSection6 +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 11.4305 + 4.8037 + 0 + + + + + ... + foil_2_2 + + + + 4.3881 + 4.3881 + 4.3881 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FinWingSection7 +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 12.9496 + 6.1477 + 0 + + + + + ... + foil_2_1 + + + + 2.6113 + 2.6113 + 2.6113 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + FinWingSection7 + 0 + + + + ... + description + 0 + 0 + FinWingSection6 + 0 + + + + ... + description + 0 + 0 + FinWingSection5 + 0 + + + + ... + description + 0 + 0 + FinWingSection4 + 0 + + + + ... + description + 0 + 0 + FinWingSection3 + 0 + + + + ... + description + 0 + 0 + FinWingSection2 + 0 + + + + ... + description + 0 + 0 + FinWingSection1 + 0 + + + + + + ... + FinWingSection7elem1 + FinWingSection6elem1 + + + + ... + FinWingSection6elem1 + FinWingSection5elem1 + + + + ... + FinWingSection5elem1 + FinWingSection4elem1 + + + + ... + FinWingSection4elem1 + FinWingSection3elem1 + + + + ... + FinWingSection3elem1 + FinWingSection2elem1 + + + + ... + FinWingSection2elem1 + FinWingSection1elem1 + + + +
+
+ + + + aeromap_empty + Common default aeroMap + + ISA + + + 0.0 + 0.3 + 0.0 + 0.0 + + + + + + +
+
+ + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.082579 ;0.164590 ;0.245490 ;0.324700 ;0.401700 ;0.475950 ;0.546950 ;0.614210 ;0.677280 ;0.735720 ;0.789140 ;0.837170 ;0.879470 ;0.915770 ;0.945820 ;0.969400 ;0.986360 ;0.996580 ;1.000000 ;0.996580 ;0.986360 ;0.969400 ;0.945820 ;0.915770 ;0.879470 ;0.837170 ;0.789140 ;0.735720 ;0.677280 ;0.614210 ;0.546950 ;0.475950 ;0.401700 ;0.324700 ;0.245490 ;0.164590 ;0.082579 ;0.000000 ;-0.082579 ;-0.164590 ;-0.245490 ;-0.324700 ;-0.401700 ;-0.475950 ;-0.546950 ;-0.614210 ;-0.677280 ;-0.735720 ;-0.789140 ;-0.837170 ;-0.879470 ;-0.915770 ;-0.945820 ;-0.969400 ;-0.986360 ;-0.996580 ;-1.000000 ;-0.996580 ;-0.986360 ;-0.969400 ;-0.945820 ;-0.915770 ;-0.879470 ;-0.837170 ;-0.789140 ;-0.735720 ;-0.677280 ;-0.614210 ;-0.546950 ;-0.475950 ;-0.401700 ;-0.324700 ;-0.245490 ;-0.164590 ;-0.082579 ;-0.000000 + -1.000000 ;-0.996120 ;-0.984510 ;-0.965250 ;-0.938470 ;-0.904360 ;-0.863140 ;-0.815100 ;-0.760560 ;-0.699900 ;-0.633540 ;-0.561920 ;-0.485540 ;-0.404920 ;-0.320600 ;-0.233170 ;-0.143220 ;-0.051362 ;0.041770 ;0.135540 ;0.206930 ;0.277830 ;0.347750 ;0.416230 ;0.482790 ;0.546980 ;0.608360 ;0.666500 ;0.721020 ;0.771540 ;0.817720 ;0.859240 ;0.895810 ;0.927190 ;0.953160 ;0.973550 ;0.988210 ;0.997050 ;1.000000 ;0.997050 ;0.988210 ;0.973550 ;0.953160 ;0.927190 ;0.895810 ;0.859240 ;0.817720 ;0.771540 ;0.721020 ;0.666500 ;0.608360 ;0.546980 ;0.482790 ;0.416230 ;0.347750 ;0.277830 ;0.206930 ;0.135540 ;0.041770 ;-0.051362 ;-0.143220 ;-0.233170 ;-0.320600 ;-0.404920 ;-0.485540 ;-0.561920 ;-0.633540 ;-0.699900 ;-0.760560 ;-0.815100 ;-0.863140 ;-0.904360 ;-0.938470 ;-0.965250 ;-0.984510 ;-0.996120 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.082579 ;0.164590 ;0.245490 ;0.324700 ;0.401700 ;0.475950 ;0.546950 ;0.614210 ;0.677280 ;0.735720 ;0.789140 ;0.837170 ;0.879470 ;0.915770 ;0.945820 ;0.969400 ;0.986360 ;0.996580 ;1.000000 ;0.996580 ;0.986360 ;0.969400 ;0.945820 ;0.915770 ;0.879470 ;0.837170 ;0.789140 ;0.735720 ;0.677280 ;0.614210 ;0.546950 ;0.475950 ;0.401700 ;0.324700 ;0.245490 ;0.164590 ;0.082579 ;0.000000 ;-0.082579 ;-0.164590 ;-0.245490 ;-0.324700 ;-0.401700 ;-0.475950 ;-0.546950 ;-0.614210 ;-0.677280 ;-0.735720 ;-0.789140 ;-0.837170 ;-0.879470 ;-0.915770 ;-0.945820 ;-0.969400 ;-0.986360 ;-0.996580 ;-1.000000 ;-0.996580 ;-0.986360 ;-0.969400 ;-0.945820 ;-0.915770 ;-0.879470 ;-0.837170 ;-0.789140 ;-0.735720 ;-0.677280 ;-0.614210 ;-0.546950 ;-0.475950 ;-0.401700 ;-0.324700 ;-0.245490 ;-0.164590 ;-0.082579 ;-0.000000 + -1.000000 ;-0.996120 ;-0.984510 ;-0.965250 ;-0.938470 ;-0.904360 ;-0.863140 ;-0.815100 ;-0.760560 ;-0.699900 ;-0.633540 ;-0.561920 ;-0.485540 ;-0.404920 ;-0.320600 ;-0.233170 ;-0.143220 ;-0.051362 ;0.041770 ;0.135540 ;0.206930 ;0.277830 ;0.347750 ;0.416230 ;0.482790 ;0.546980 ;0.608360 ;0.666500 ;0.721020 ;0.771540 ;0.817720 ;0.859240 ;0.895810 ;0.927190 ;0.953160 ;0.973550 ;0.988210 ;0.997050 ;1.000000 ;0.997050 ;0.988210 ;0.973550 ;0.953160 ;0.927190 ;0.895810 ;0.859240 ;0.817720 ;0.771540 ;0.721020 ;0.666500 ;0.608360 ;0.546980 ;0.482790 ;0.416230 ;0.347750 ;0.277830 ;0.206930 ;0.135540 ;0.041770 ;-0.051362 ;-0.143220 ;-0.233170 ;-0.320600 ;-0.404920 ;-0.485540 ;-0.561920 ;-0.633540 ;-0.699900 ;-0.760560 ;-0.815100 ;-0.863140 ;-0.904360 ;-0.938470 ;-0.965250 ;-0.984510 ;-0.996120 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.082579 ;0.164590 ;0.245490 ;0.324700 ;0.401700 ;0.475950 ;0.546950 ;0.614210 ;0.677280 ;0.735720 ;0.789140 ;0.837170 ;0.879470 ;0.915770 ;0.945820 ;0.969400 ;0.986360 ;0.996580 ;1.000000 ;0.996580 ;0.986360 ;0.969400 ;0.945820 ;0.915770 ;0.879470 ;0.837170 ;0.789140 ;0.735720 ;0.677280 ;0.614210 ;0.546950 ;0.475950 ;0.401700 ;0.324700 ;0.245490 ;0.164590 ;0.082579 ;0.000000 ;-0.082579 ;-0.164590 ;-0.245490 ;-0.324700 ;-0.401700 ;-0.475950 ;-0.546950 ;-0.614210 ;-0.677280 ;-0.735720 ;-0.789140 ;-0.837170 ;-0.879470 ;-0.915770 ;-0.945820 ;-0.969400 ;-0.986360 ;-0.996580 ;-1.000000 ;-0.996580 ;-0.986360 ;-0.969400 ;-0.945820 ;-0.915770 ;-0.879470 ;-0.837170 ;-0.789140 ;-0.735720 ;-0.677280 ;-0.614210 ;-0.546950 ;-0.475950 ;-0.401700 ;-0.324700 ;-0.245490 ;-0.164590 ;-0.082579 ;-0.000000 + -1.000000 ;-0.996120 ;-0.984510 ;-0.965250 ;-0.938470 ;-0.904360 ;-0.863140 ;-0.815100 ;-0.760560 ;-0.699900 ;-0.633540 ;-0.561920 ;-0.485540 ;-0.404920 ;-0.320600 ;-0.233170 ;-0.143220 ;-0.051362 ;0.041770 ;0.135540 ;0.206930 ;0.277830 ;0.347750 ;0.416230 ;0.482790 ;0.546980 ;0.608360 ;0.666500 ;0.721020 ;0.771540 ;0.817720 ;0.859240 ;0.895810 ;0.927190 ;0.953160 ;0.973550 ;0.988210 ;0.997050 ;1.000000 ;0.997050 ;0.988210 ;0.973550 ;0.953160 ;0.927190 ;0.895810 ;0.859240 ;0.817720 ;0.771540 ;0.721020 ;0.666500 ;0.608360 ;0.546980 ;0.482790 ;0.416230 ;0.347750 ;0.277830 ;0.206930 ;0.135540 ;0.041770 ;-0.051362 ;-0.143220 ;-0.233170 ;-0.320600 ;-0.404920 ;-0.485540 ;-0.561920 ;-0.633540 ;-0.699900 ;-0.760560 ;-0.815100 ;-0.863140 ;-0.904360 ;-0.938470 ;-0.965250 ;-0.984510 ;-0.996120 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.082579 ;0.164590 ;0.245490 ;0.324700 ;0.401700 ;0.475950 ;0.546950 ;0.614210 ;0.677280 ;0.735720 ;0.789140 ;0.837170 ;0.879470 ;0.915770 ;0.945820 ;0.969400 ;0.986360 ;0.996580 ;1.000000 ;0.996580 ;0.986360 ;0.969400 ;0.945820 ;0.915770 ;0.879470 ;0.837170 ;0.789140 ;0.735720 ;0.677280 ;0.614210 ;0.546950 ;0.475950 ;0.401700 ;0.324700 ;0.245490 ;0.164590 ;0.082579 ;0.000000 ;-0.082579 ;-0.164590 ;-0.245490 ;-0.324700 ;-0.401700 ;-0.475950 ;-0.546950 ;-0.614210 ;-0.677280 ;-0.735720 ;-0.789140 ;-0.837170 ;-0.879470 ;-0.915770 ;-0.945820 ;-0.969400 ;-0.986360 ;-0.996580 ;-1.000000 ;-0.996580 ;-0.986360 ;-0.969400 ;-0.945820 ;-0.915770 ;-0.879470 ;-0.837170 ;-0.789140 ;-0.735720 ;-0.677280 ;-0.614210 ;-0.546950 ;-0.475950 ;-0.401700 ;-0.324700 ;-0.245490 ;-0.164590 ;-0.082579 ;-0.000000 + -1.000000 ;-0.996120 ;-0.984510 ;-0.965250 ;-0.938470 ;-0.904360 ;-0.863140 ;-0.815100 ;-0.760560 ;-0.699900 ;-0.633540 ;-0.561920 ;-0.485540 ;-0.404920 ;-0.320600 ;-0.233170 ;-0.143220 ;-0.051362 ;0.041770 ;0.135540 ;0.206930 ;0.277830 ;0.347750 ;0.416230 ;0.482790 ;0.546980 ;0.608360 ;0.666500 ;0.721020 ;0.771540 ;0.817720 ;0.859240 ;0.895810 ;0.927190 ;0.953160 ;0.973550 ;0.988210 ;0.997050 ;1.000000 ;0.997050 ;0.988210 ;0.973550 ;0.953160 ;0.927190 ;0.895810 ;0.859240 ;0.817720 ;0.771540 ;0.721020 ;0.666500 ;0.608360 ;0.546980 ;0.482790 ;0.416230 ;0.347750 ;0.277830 ;0.206930 ;0.135540 ;0.041770 ;-0.051362 ;-0.143220 ;-0.233170 ;-0.320600 ;-0.404920 ;-0.485540 ;-0.561920 ;-0.633540 ;-0.699900 ;-0.760560 ;-0.815100 ;-0.863140 ;-0.904360 ;-0.938470 ;-0.965250 ;-0.984510 ;-0.996120 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.082579 ;0.164590 ;0.245490 ;0.324700 ;0.401700 ;0.475950 ;0.546950 ;0.614210 ;0.677280 ;0.735720 ;0.789140 ;0.837170 ;0.879470 ;0.915770 ;0.945820 ;0.969400 ;0.986360 ;0.996580 ;1.000000 ;0.996580 ;0.986360 ;0.969400 ;0.945820 ;0.915770 ;0.879470 ;0.837170 ;0.789140 ;0.735720 ;0.677280 ;0.614210 ;0.546950 ;0.475950 ;0.401700 ;0.324700 ;0.245490 ;0.164590 ;0.082579 ;0.000000 ;-0.082579 ;-0.164590 ;-0.245490 ;-0.324700 ;-0.401700 ;-0.475950 ;-0.546950 ;-0.614210 ;-0.677280 ;-0.735720 ;-0.789140 ;-0.837170 ;-0.879470 ;-0.915770 ;-0.945820 ;-0.969400 ;-0.986360 ;-0.996580 ;-1.000000 ;-0.996580 ;-0.986360 ;-0.969400 ;-0.945820 ;-0.915770 ;-0.879470 ;-0.837170 ;-0.789140 ;-0.735720 ;-0.677280 ;-0.614210 ;-0.546950 ;-0.475950 ;-0.401700 ;-0.324700 ;-0.245490 ;-0.164590 ;-0.082579 ;-0.000000 + -1.000000 ;-0.996120 ;-0.984510 ;-0.965250 ;-0.938470 ;-0.904360 ;-0.863140 ;-0.815100 ;-0.760560 ;-0.699900 ;-0.633540 ;-0.561920 ;-0.485540 ;-0.404920 ;-0.320600 ;-0.233170 ;-0.143220 ;-0.051362 ;0.041770 ;0.135540 ;0.206930 ;0.277830 ;0.347750 ;0.416230 ;0.482790 ;0.546980 ;0.608360 ;0.666500 ;0.721020 ;0.771540 ;0.817720 ;0.859240 ;0.895810 ;0.927190 ;0.953160 ;0.973550 ;0.988210 ;0.997050 ;1.000000 ;0.997050 ;0.988210 ;0.973550 ;0.953160 ;0.927190 ;0.895810 ;0.859240 ;0.817720 ;0.771540 ;0.721020 ;0.666500 ;0.608360 ;0.546980 ;0.482790 ;0.416230 ;0.347750 ;0.277830 ;0.206930 ;0.135540 ;0.041770 ;-0.051362 ;-0.143220 ;-0.233170 ;-0.320600 ;-0.404920 ;-0.485540 ;-0.561920 ;-0.633540 ;-0.699900 ;-0.760560 ;-0.815100 ;-0.863140 ;-0.904360 ;-0.938470 ;-0.965250 ;-0.984510 ;-0.996120 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.082579 ;0.164590 ;0.245490 ;0.324700 ;0.401700 ;0.475950 ;0.546950 ;0.614210 ;0.677280 ;0.735720 ;0.789140 ;0.837170 ;0.879470 ;0.915770 ;0.945820 ;0.969400 ;0.986360 ;0.996580 ;1.000000 ;0.996580 ;0.986360 ;0.969400 ;0.945820 ;0.915770 ;0.879470 ;0.837170 ;0.789140 ;0.735720 ;0.677280 ;0.614210 ;0.546950 ;0.475950 ;0.401700 ;0.324700 ;0.245490 ;0.164590 ;0.082579 ;0.000000 ;-0.082579 ;-0.164590 ;-0.245490 ;-0.324700 ;-0.401700 ;-0.475950 ;-0.546950 ;-0.614210 ;-0.677280 ;-0.735720 ;-0.789140 ;-0.837170 ;-0.879470 ;-0.915770 ;-0.945820 ;-0.969400 ;-0.986360 ;-0.996580 ;-1.000000 ;-0.996580 ;-0.986360 ;-0.969400 ;-0.945820 ;-0.915770 ;-0.879470 ;-0.837170 ;-0.789140 ;-0.735720 ;-0.677280 ;-0.614210 ;-0.546950 ;-0.475950 ;-0.401700 ;-0.324700 ;-0.245490 ;-0.164590 ;-0.082579 ;-0.000000 + -1.000000 ;-0.996120 ;-0.984510 ;-0.965250 ;-0.938470 ;-0.904360 ;-0.863140 ;-0.815100 ;-0.760560 ;-0.699900 ;-0.633540 ;-0.561920 ;-0.485540 ;-0.404920 ;-0.320600 ;-0.233170 ;-0.143220 ;-0.051362 ;0.041770 ;0.135540 ;0.206930 ;0.277830 ;0.347750 ;0.416230 ;0.482790 ;0.546980 ;0.608360 ;0.666500 ;0.721020 ;0.771540 ;0.817720 ;0.859240 ;0.895810 ;0.927190 ;0.953160 ;0.973550 ;0.988210 ;0.997050 ;1.000000 ;0.997050 ;0.988210 ;0.973550 ;0.953160 ;0.927190 ;0.895810 ;0.859240 ;0.817720 ;0.771540 ;0.721020 ;0.666500 ;0.608360 ;0.546980 ;0.482790 ;0.416230 ;0.347750 ;0.277830 ;0.206930 ;0.135540 ;0.041770 ;-0.051362 ;-0.143220 ;-0.233170 ;-0.320600 ;-0.404920 ;-0.485540 ;-0.561920 ;-0.633540 ;-0.699900 ;-0.760560 ;-0.815100 ;-0.863140 ;-0.904360 ;-0.938470 ;-0.965250 ;-0.984510 ;-0.996120 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.082579 ;0.164590 ;0.245490 ;0.324700 ;0.401700 ;0.475950 ;0.546950 ;0.614210 ;0.677280 ;0.735720 ;0.789140 ;0.837170 ;0.879470 ;0.915770 ;0.945820 ;0.969400 ;0.986360 ;0.996580 ;1.000000 ;0.996580 ;0.986360 ;0.969400 ;0.945820 ;0.915770 ;0.879470 ;0.837170 ;0.789140 ;0.735720 ;0.677280 ;0.614210 ;0.546950 ;0.475950 ;0.401700 ;0.324700 ;0.245490 ;0.164590 ;0.082579 ;0.000000 ;-0.082579 ;-0.164590 ;-0.245490 ;-0.324700 ;-0.401700 ;-0.475950 ;-0.546950 ;-0.614210 ;-0.677280 ;-0.735720 ;-0.789140 ;-0.837170 ;-0.879470 ;-0.915770 ;-0.945820 ;-0.969400 ;-0.986360 ;-0.996580 ;-1.000000 ;-0.996580 ;-0.986360 ;-0.969400 ;-0.945820 ;-0.915770 ;-0.879470 ;-0.837170 ;-0.789140 ;-0.735720 ;-0.677280 ;-0.614210 ;-0.546950 ;-0.475950 ;-0.401700 ;-0.324700 ;-0.245490 ;-0.164590 ;-0.082579 ;-0.000000 + -1.000000 ;-0.996120 ;-0.984510 ;-0.965250 ;-0.938470 ;-0.904360 ;-0.863140 ;-0.815100 ;-0.760560 ;-0.699900 ;-0.633540 ;-0.561920 ;-0.485540 ;-0.404920 ;-0.320600 ;-0.233170 ;-0.143220 ;-0.051362 ;0.041770 ;0.135540 ;0.206930 ;0.277830 ;0.347750 ;0.416230 ;0.482790 ;0.546980 ;0.608360 ;0.666500 ;0.721020 ;0.771540 ;0.817720 ;0.859240 ;0.895810 ;0.927190 ;0.953160 ;0.973550 ;0.988210 ;0.997050 ;1.000000 ;0.997050 ;0.988210 ;0.973550 ;0.953160 ;0.927190 ;0.895810 ;0.859240 ;0.817720 ;0.771540 ;0.721020 ;0.666500 ;0.608360 ;0.546980 ;0.482790 ;0.416230 ;0.347750 ;0.277830 ;0.206930 ;0.135540 ;0.041770 ;-0.051362 ;-0.143220 ;-0.233170 ;-0.320600 ;-0.404920 ;-0.485540 ;-0.561920 ;-0.633540 ;-0.699900 ;-0.760560 ;-0.815100 ;-0.863140 ;-0.904360 ;-0.938470 ;-0.965250 ;-0.984510 ;-0.996120 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.082579 ;0.164590 ;0.245490 ;0.324700 ;0.401700 ;0.475950 ;0.546950 ;0.614210 ;0.677280 ;0.735720 ;0.789140 ;0.837170 ;0.879470 ;0.915770 ;0.945820 ;0.969400 ;0.986360 ;0.996580 ;1.000000 ;0.996580 ;0.986360 ;0.969400 ;0.945820 ;0.915770 ;0.879470 ;0.837170 ;0.789140 ;0.735720 ;0.677280 ;0.614210 ;0.546950 ;0.475950 ;0.401700 ;0.324700 ;0.245490 ;0.164590 ;0.082579 ;0.000000 ;-0.082579 ;-0.164590 ;-0.245490 ;-0.324700 ;-0.401700 ;-0.475950 ;-0.546950 ;-0.614210 ;-0.677280 ;-0.735720 ;-0.789140 ;-0.837170 ;-0.879470 ;-0.915770 ;-0.945820 ;-0.969400 ;-0.986360 ;-0.996580 ;-1.000000 ;-0.996580 ;-0.986360 ;-0.969400 ;-0.945820 ;-0.915770 ;-0.879470 ;-0.837170 ;-0.789140 ;-0.735720 ;-0.677280 ;-0.614210 ;-0.546950 ;-0.475950 ;-0.401700 ;-0.324700 ;-0.245490 ;-0.164590 ;-0.082579 ;-0.000000 + -1.000000 ;-0.996120 ;-0.984510 ;-0.965250 ;-0.938470 ;-0.904360 ;-0.863140 ;-0.815100 ;-0.760560 ;-0.699900 ;-0.633540 ;-0.561920 ;-0.485540 ;-0.404920 ;-0.320600 ;-0.233170 ;-0.143220 ;-0.051362 ;0.041770 ;0.135540 ;0.206930 ;0.277830 ;0.347750 ;0.416230 ;0.482790 ;0.546980 ;0.608360 ;0.666500 ;0.721020 ;0.771540 ;0.817720 ;0.859240 ;0.895810 ;0.927190 ;0.953160 ;0.973550 ;0.988210 ;0.997050 ;1.000000 ;0.997050 ;0.988210 ;0.973550 ;0.953160 ;0.927190 ;0.895810 ;0.859240 ;0.817720 ;0.771540 ;0.721020 ;0.666500 ;0.608360 ;0.546980 ;0.482790 ;0.416230 ;0.347750 ;0.277830 ;0.206930 ;0.135540 ;0.041770 ;-0.051362 ;-0.143220 ;-0.233170 ;-0.320600 ;-0.404920 ;-0.485540 ;-0.561920 ;-0.633540 ;-0.699900 ;-0.760560 ;-0.815100 ;-0.863140 ;-0.904360 ;-0.938470 ;-0.965250 ;-0.984510 ;-0.996120 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.082579 ;0.164590 ;0.245490 ;0.324700 ;0.401700 ;0.475950 ;0.546950 ;0.614210 ;0.677280 ;0.735720 ;0.789140 ;0.837170 ;0.879470 ;0.915770 ;0.945820 ;0.969400 ;0.986360 ;0.996580 ;1.000000 ;0.996580 ;0.986360 ;0.969400 ;0.945820 ;0.915770 ;0.879470 ;0.837170 ;0.789140 ;0.735720 ;0.677280 ;0.614210 ;0.546950 ;0.475950 ;0.401700 ;0.324700 ;0.245490 ;0.164590 ;0.082579 ;0.000000 ;-0.082579 ;-0.164590 ;-0.245490 ;-0.324700 ;-0.401700 ;-0.475950 ;-0.546950 ;-0.614210 ;-0.677280 ;-0.735720 ;-0.789140 ;-0.837170 ;-0.879470 ;-0.915770 ;-0.945820 ;-0.969400 ;-0.986360 ;-0.996580 ;-1.000000 ;-0.996580 ;-0.986360 ;-0.969400 ;-0.945820 ;-0.915770 ;-0.879470 ;-0.837170 ;-0.789140 ;-0.735720 ;-0.677280 ;-0.614210 ;-0.546950 ;-0.475950 ;-0.401700 ;-0.324700 ;-0.245490 ;-0.164590 ;-0.082579 ;-0.000000 + -1.000000 ;-0.996120 ;-0.984510 ;-0.965250 ;-0.938470 ;-0.904360 ;-0.863140 ;-0.815100 ;-0.760560 ;-0.699900 ;-0.633540 ;-0.561920 ;-0.485540 ;-0.404920 ;-0.320600 ;-0.233170 ;-0.143220 ;-0.051362 ;0.041770 ;0.135540 ;0.206930 ;0.277830 ;0.347750 ;0.416230 ;0.482790 ;0.546980 ;0.608360 ;0.666500 ;0.721020 ;0.771540 ;0.817720 ;0.859240 ;0.895810 ;0.927190 ;0.953160 ;0.973550 ;0.988210 ;0.997050 ;1.000000 ;0.997050 ;0.988210 ;0.973550 ;0.953160 ;0.927190 ;0.895810 ;0.859240 ;0.817720 ;0.771540 ;0.721020 ;0.666500 ;0.608360 ;0.546980 ;0.482790 ;0.416230 ;0.347750 ;0.277830 ;0.206930 ;0.135540 ;0.041770 ;-0.051362 ;-0.143220 ;-0.233170 ;-0.320600 ;-0.404920 ;-0.485540 ;-0.561920 ;-0.633540 ;-0.699900 ;-0.760560 ;-0.815100 ;-0.863140 ;-0.904360 ;-0.938470 ;-0.965250 ;-0.984510 ;-0.996120 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.082579 ;0.164590 ;0.245490 ;0.324700 ;0.401700 ;0.475950 ;0.546950 ;0.614210 ;0.677280 ;0.735720 ;0.789140 ;0.837170 ;0.879470 ;0.915770 ;0.945820 ;0.969400 ;0.986360 ;0.996580 ;1.000000 ;0.996580 ;0.986360 ;0.969400 ;0.945820 ;0.915770 ;0.879470 ;0.837170 ;0.789140 ;0.735720 ;0.677280 ;0.614210 ;0.546950 ;0.475950 ;0.401700 ;0.324700 ;0.245490 ;0.164590 ;0.082579 ;0.000000 ;-0.082579 ;-0.164590 ;-0.245490 ;-0.324700 ;-0.401700 ;-0.475950 ;-0.546950 ;-0.614210 ;-0.677280 ;-0.735720 ;-0.789140 ;-0.837170 ;-0.879470 ;-0.915770 ;-0.945820 ;-0.969400 ;-0.986360 ;-0.996580 ;-1.000000 ;-0.996580 ;-0.986360 ;-0.969400 ;-0.945820 ;-0.915770 ;-0.879470 ;-0.837170 ;-0.789140 ;-0.735720 ;-0.677280 ;-0.614210 ;-0.546950 ;-0.475950 ;-0.401700 ;-0.324700 ;-0.245490 ;-0.164590 ;-0.082579 ;-0.000000 + -1.000000 ;-0.996120 ;-0.984510 ;-0.965250 ;-0.938470 ;-0.904360 ;-0.863140 ;-0.815100 ;-0.760560 ;-0.699900 ;-0.633540 ;-0.561920 ;-0.485540 ;-0.404920 ;-0.320600 ;-0.233170 ;-0.143220 ;-0.051362 ;0.041770 ;0.135540 ;0.206930 ;0.277830 ;0.347750 ;0.416230 ;0.482790 ;0.546980 ;0.608360 ;0.666500 ;0.721020 ;0.771540 ;0.817720 ;0.859240 ;0.895810 ;0.927190 ;0.953160 ;0.973550 ;0.988210 ;0.997050 ;1.000000 ;0.997050 ;0.988210 ;0.973550 ;0.953160 ;0.927190 ;0.895810 ;0.859240 ;0.817720 ;0.771540 ;0.721020 ;0.666500 ;0.608360 ;0.546980 ;0.482790 ;0.416230 ;0.347750 ;0.277830 ;0.206930 ;0.135540 ;0.041770 ;-0.051362 ;-0.143220 ;-0.233170 ;-0.320600 ;-0.404920 ;-0.485540 ;-0.561920 ;-0.633540 ;-0.699900 ;-0.760560 ;-0.815100 ;-0.863140 ;-0.904360 ;-0.938470 ;-0.965250 ;-0.984510 ;-0.996120 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.082579 ;0.164590 ;0.245490 ;0.324700 ;0.401700 ;0.475950 ;0.546950 ;0.614210 ;0.677280 ;0.735720 ;0.789140 ;0.837170 ;0.879470 ;0.915770 ;0.945820 ;0.969400 ;0.986360 ;0.996580 ;1.000000 ;0.996580 ;0.986360 ;0.969400 ;0.945820 ;0.915770 ;0.879470 ;0.837170 ;0.789140 ;0.735720 ;0.677280 ;0.614210 ;0.546950 ;0.475950 ;0.401700 ;0.324700 ;0.245490 ;0.164590 ;0.082579 ;0.000000 ;-0.082579 ;-0.164590 ;-0.245490 ;-0.324700 ;-0.401700 ;-0.475950 ;-0.546950 ;-0.614210 ;-0.677280 ;-0.735720 ;-0.789140 ;-0.837170 ;-0.879470 ;-0.915770 ;-0.945820 ;-0.969400 ;-0.986360 ;-0.996580 ;-1.000000 ;-0.996580 ;-0.986360 ;-0.969400 ;-0.945820 ;-0.915770 ;-0.879470 ;-0.837170 ;-0.789140 ;-0.735720 ;-0.677280 ;-0.614210 ;-0.546950 ;-0.475950 ;-0.401700 ;-0.324700 ;-0.245490 ;-0.164590 ;-0.082579 ;-0.000000 + -1.000000 ;-0.996120 ;-0.984510 ;-0.965250 ;-0.938470 ;-0.904360 ;-0.863140 ;-0.815100 ;-0.760560 ;-0.699900 ;-0.633540 ;-0.561920 ;-0.485540 ;-0.404920 ;-0.320600 ;-0.233170 ;-0.143220 ;-0.051362 ;0.041770 ;0.135540 ;0.206930 ;0.277830 ;0.347750 ;0.416230 ;0.482790 ;0.546980 ;0.608360 ;0.666500 ;0.721020 ;0.771540 ;0.817720 ;0.859240 ;0.895810 ;0.927190 ;0.953160 ;0.973550 ;0.988210 ;0.997050 ;1.000000 ;0.997050 ;0.988210 ;0.973550 ;0.953160 ;0.927190 ;0.895810 ;0.859240 ;0.817720 ;0.771540 ;0.721020 ;0.666500 ;0.608360 ;0.546980 ;0.482790 ;0.416230 ;0.347750 ;0.277830 ;0.206930 ;0.135540 ;0.041770 ;-0.051362 ;-0.143220 ;-0.233170 ;-0.320600 ;-0.404920 ;-0.485540 ;-0.561920 ;-0.633540 ;-0.699900 ;-0.760560 ;-0.815100 ;-0.863140 ;-0.904360 ;-0.938470 ;-0.965250 ;-0.984510 ;-0.996120 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.082579 ;0.164590 ;0.245490 ;0.324700 ;0.401700 ;0.475950 ;0.546950 ;0.614210 ;0.677280 ;0.735720 ;0.789140 ;0.837170 ;0.879470 ;0.915770 ;0.945820 ;0.969400 ;0.986360 ;0.996580 ;1.000000 ;0.996580 ;0.986360 ;0.969400 ;0.945820 ;0.915770 ;0.879470 ;0.837170 ;0.789140 ;0.735720 ;0.677280 ;0.614210 ;0.546950 ;0.475950 ;0.401700 ;0.324700 ;0.245490 ;0.164590 ;0.082579 ;0.000000 ;-0.082579 ;-0.164590 ;-0.245490 ;-0.324700 ;-0.401700 ;-0.475950 ;-0.546950 ;-0.614210 ;-0.677280 ;-0.735720 ;-0.789140 ;-0.837170 ;-0.879470 ;-0.915770 ;-0.945820 ;-0.969400 ;-0.986360 ;-0.996580 ;-1.000000 ;-0.996580 ;-0.986360 ;-0.969400 ;-0.945820 ;-0.915770 ;-0.879470 ;-0.837170 ;-0.789140 ;-0.735720 ;-0.677280 ;-0.614210 ;-0.546950 ;-0.475950 ;-0.401700 ;-0.324700 ;-0.245490 ;-0.164590 ;-0.082579 ;-0.000000 + -1.000000 ;-0.996120 ;-0.984510 ;-0.965250 ;-0.938470 ;-0.904360 ;-0.863140 ;-0.815100 ;-0.760560 ;-0.699900 ;-0.633540 ;-0.561920 ;-0.485540 ;-0.404920 ;-0.320600 ;-0.233170 ;-0.143220 ;-0.051362 ;0.041770 ;0.135540 ;0.206930 ;0.277830 ;0.347750 ;0.416230 ;0.482790 ;0.546980 ;0.608360 ;0.666500 ;0.721020 ;0.771540 ;0.817720 ;0.859240 ;0.895810 ;0.927190 ;0.953160 ;0.973550 ;0.988210 ;0.997050 ;1.000000 ;0.997050 ;0.988210 ;0.973550 ;0.953160 ;0.927190 ;0.895810 ;0.859240 ;0.817720 ;0.771540 ;0.721020 ;0.666500 ;0.608360 ;0.546980 ;0.482790 ;0.416230 ;0.347750 ;0.277830 ;0.206930 ;0.135540 ;0.041770 ;-0.051362 ;-0.143220 ;-0.233170 ;-0.320600 ;-0.404920 ;-0.485540 ;-0.561920 ;-0.633540 ;-0.699900 ;-0.760560 ;-0.815100 ;-0.863140 ;-0.904360 ;-0.938470 ;-0.965250 ;-0.984510 ;-0.996120 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.082579 ;0.164590 ;0.245490 ;0.324700 ;0.401700 ;0.475950 ;0.546950 ;0.614210 ;0.677280 ;0.735720 ;0.789140 ;0.837170 ;0.879470 ;0.915770 ;0.945820 ;0.969400 ;0.986360 ;0.996580 ;1.000000 ;0.996580 ;0.986360 ;0.969400 ;0.945820 ;0.915770 ;0.879470 ;0.837170 ;0.789140 ;0.735720 ;0.677280 ;0.614210 ;0.546950 ;0.475950 ;0.401700 ;0.324700 ;0.245490 ;0.164590 ;0.082579 ;0.000000 ;-0.082579 ;-0.164590 ;-0.245490 ;-0.324700 ;-0.401700 ;-0.475950 ;-0.546950 ;-0.614210 ;-0.677280 ;-0.735720 ;-0.789140 ;-0.837170 ;-0.879470 ;-0.915770 ;-0.945820 ;-0.969400 ;-0.986360 ;-0.996580 ;-1.000000 ;-0.996580 ;-0.986360 ;-0.969400 ;-0.945820 ;-0.915770 ;-0.879470 ;-0.837170 ;-0.789140 ;-0.735720 ;-0.677280 ;-0.614210 ;-0.546950 ;-0.475950 ;-0.401700 ;-0.324700 ;-0.245490 ;-0.164590 ;-0.082579 ;-0.000000 + -1.000000 ;-0.996120 ;-0.984510 ;-0.965250 ;-0.938470 ;-0.904360 ;-0.863140 ;-0.815100 ;-0.760560 ;-0.699900 ;-0.633540 ;-0.561920 ;-0.485540 ;-0.404920 ;-0.320600 ;-0.233170 ;-0.143220 ;-0.051362 ;0.041770 ;0.135540 ;0.206930 ;0.277830 ;0.347750 ;0.416230 ;0.482790 ;0.546980 ;0.608360 ;0.666500 ;0.721020 ;0.771540 ;0.817720 ;0.859240 ;0.895810 ;0.927190 ;0.953160 ;0.973550 ;0.988210 ;0.997050 ;1.000000 ;0.997050 ;0.988210 ;0.973550 ;0.953160 ;0.927190 ;0.895810 ;0.859240 ;0.817720 ;0.771540 ;0.721020 ;0.666500 ;0.608360 ;0.546980 ;0.482790 ;0.416230 ;0.347750 ;0.277830 ;0.206930 ;0.135540 ;0.041770 ;-0.051362 ;-0.143220 ;-0.233170 ;-0.320600 ;-0.404920 ;-0.485540 ;-0.561920 ;-0.633540 ;-0.699900 ;-0.760560 ;-0.815100 ;-0.863140 ;-0.904360 ;-0.938470 ;-0.965250 ;-0.984510 ;-0.996120 ;-1.000000 + + + + + + ... + ... + + 1.000000 ;0.981800 ;0.963610 ;0.945410 ;0.927210 ;0.909010 ;0.890810 ;0.872610 ;0.854420 ;0.836220 ;0.818020 ;0.799820 ;0.781620 ;0.763430 ;0.745230 ;0.727030 ;0.708830 ;0.690630 ;0.672430 ;0.654230 ;0.636030 ;0.617830 ;0.599630 ;0.581430 ;0.563220 ;0.545020 ;0.526820 ;0.508610 ;0.490410 ;0.472200 ;0.453990 ;0.435790 ;0.417580 ;0.399370 ;0.381170 ;0.362960 ;0.344750 ;0.326550 ;0.308340 ;0.290130 ;0.271930 ;0.253720 ;0.235520 ;0.217320 ;0.199110 ;0.180910 ;0.162710 ;0.144510 ;0.126320 ;0.108120 ;0.089934 ;0.071749 ;0.053572 ;0.035408 ;0.017278 ;0.000000 ;0.017278 ;0.035408 ;0.053572 ;0.071749 ;0.089934 ;0.108120 ;0.126320 ;0.144510 ;0.162710 ;0.180910 ;0.199110 ;0.217320 ;0.235520 ;0.253720 ;0.271930 ;0.290130 ;0.308340 ;0.326550 ;0.344750 ;0.362960 ;0.381170 ;0.399370 ;0.417580 ;0.435790 ;0.453990 ;0.472200 ;0.490410 ;0.508610 ;0.526820 ;0.545020 ;0.563220 ;0.581430 ;0.599630 ;0.617830 ;0.636030 ;0.654230 ;0.672430 ;0.690630 ;0.708830 ;0.727030 ;0.745230 ;0.763430 ;0.781620 ;0.799820 ;0.818020 ;0.836220 ;0.854420 ;0.872610 ;0.890810 ;0.909010 ;0.927210 ;0.945410 ;0.963610 ;0.981800 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.000328 ;0.000643 ;0.000948 ;0.001245 ;0.001530 ;0.001800 ;0.002054 ;0.002293 ;0.002517 ;0.002724 ;0.002916 ;0.003092 ;0.003254 ;0.003403 ;0.003541 ;0.003670 ;0.003792 ;0.003909 ;0.004023 ;0.004136 ;0.004249 ;0.004364 ;0.004480 ;0.004600 ;0.004724 ;0.004853 ;0.004991 ;0.005138 ;0.005297 ;0.005470 ;0.005658 ;0.005866 ;0.006098 ;0.006357 ;0.006638 ;0.006937 ;0.007250 ;0.007576 ;0.007916 ;0.008271 ;0.008640 ;0.009025 ;0.009428 ;0.009850 ;0.010295 ;0.010764 ;0.011260 ;0.011787 ;0.012356 ;0.012980 ;0.013459 ;0.012283 ;0.009213 ;0.004413 ;0.000000 ;0.010999 ;0.018360 ;0.023352 ;0.026116 ;0.027016 ;0.027607 ;0.028112 ;0.028544 ;0.028913 ;0.029224 ;0.029479 ;0.029681 ;0.029832 ;0.029933 ;0.029988 ;0.029997 ;0.029960 ;0.029878 ;0.029750 ;0.029578 ;0.029357 ;0.029082 ;0.028748 ;0.028359 ;0.027920 ;0.027434 ;0.026902 ;0.026328 ;0.025712 ;0.025057 ;0.024365 ;0.023638 ;0.022876 ;0.022081 ;0.021253 ;0.020394 ;0.019504 ;0.018586 ;0.017642 ;0.016674 ;0.015684 ;0.014673 ;0.013643 ;0.012597 ;0.011535 ;0.010458 ;0.009365 ;0.008256 ;0.007131 ;0.005991 ;0.004835 ;0.003658 ;0.002459 ;0.001239 ;0.000000 + + + + ... + ... + + 1.000000 ;0.981800 ;0.963610 ;0.945410 ;0.927210 ;0.909010 ;0.890810 ;0.872610 ;0.854420 ;0.836220 ;0.818020 ;0.799820 ;0.781620 ;0.763430 ;0.745230 ;0.727030 ;0.708830 ;0.690630 ;0.672430 ;0.654230 ;0.636030 ;0.617830 ;0.599630 ;0.581430 ;0.563220 ;0.545020 ;0.526820 ;0.508610 ;0.490410 ;0.472200 ;0.453990 ;0.435790 ;0.417580 ;0.399370 ;0.381170 ;0.362960 ;0.344750 ;0.326550 ;0.308340 ;0.290130 ;0.271930 ;0.253720 ;0.235520 ;0.217320 ;0.199110 ;0.180910 ;0.162710 ;0.144510 ;0.126320 ;0.108120 ;0.089934 ;0.071749 ;0.053572 ;0.035408 ;0.017278 ;0.000000 ;0.017278 ;0.035408 ;0.053572 ;0.071749 ;0.089934 ;0.108120 ;0.126320 ;0.144510 ;0.162710 ;0.180910 ;0.199110 ;0.217320 ;0.235520 ;0.253720 ;0.271930 ;0.290130 ;0.308340 ;0.326550 ;0.344750 ;0.362960 ;0.381170 ;0.399370 ;0.417580 ;0.435790 ;0.453990 ;0.472200 ;0.490410 ;0.508610 ;0.526820 ;0.545020 ;0.563220 ;0.581430 ;0.599630 ;0.617830 ;0.636030 ;0.654230 ;0.672430 ;0.690630 ;0.708830 ;0.727030 ;0.745230 ;0.763430 ;0.781620 ;0.799820 ;0.818020 ;0.836220 ;0.854420 ;0.872610 ;0.890810 ;0.909010 ;0.927210 ;0.945410 ;0.963610 ;0.981800 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.000195 ;0.000379 ;0.000556 ;0.000727 ;0.000889 ;0.001039 ;0.001175 ;0.001297 ;0.001406 ;0.001502 ;0.001585 ;0.001653 ;0.001710 ;0.001756 ;0.001794 ;0.001825 ;0.001852 ;0.001877 ;0.001901 ;0.001927 ;0.001957 ;0.001990 ;0.002029 ;0.002075 ;0.002127 ;0.002188 ;0.002261 ;0.002346 ;0.002448 ;0.002566 ;0.002704 ;0.002865 ;0.003054 ;0.003274 ;0.003521 ;0.003789 ;0.004074 ;0.004377 ;0.004697 ;0.005035 ;0.005392 ;0.005768 ;0.006165 ;0.006586 ;0.007033 ;0.007508 ;0.008015 ;0.008557 ;0.009146 ;0.009795 ;0.010336 ;0.009478 ;0.007030 ;0.003159 ;0.000000 ;0.010046 ;0.016594 ;0.021053 ;0.023571 ;0.024473 ;0.025094 ;0.025628 ;0.026088 ;0.026486 ;0.026827 ;0.027112 ;0.027343 ;0.027525 ;0.027658 ;0.027745 ;0.027786 ;0.027783 ;0.027736 ;0.027644 ;0.027509 ;0.027325 ;0.027087 ;0.026792 ;0.026442 ;0.026042 ;0.025596 ;0.025105 ;0.024573 ;0.024000 ;0.023389 ;0.022742 ;0.022062 ;0.021348 ;0.020603 ;0.019826 ;0.019019 ;0.018184 ;0.017322 ;0.016435 ;0.015527 ;0.014598 ;0.013650 ;0.012686 ;0.011707 ;0.010715 ;0.009710 ;0.008691 ;0.007659 ;0.006613 ;0.005554 ;0.004481 ;0.003390 ;0.002279 ;0.001148 ;0.000000 + + + + ... + ... + + 1.000000 ;0.981800 ;0.963610 ;0.945410 ;0.927210 ;0.909010 ;0.890810 ;0.872610 ;0.854420 ;0.836220 ;0.818020 ;0.799820 ;0.781620 ;0.763430 ;0.745230 ;0.727030 ;0.708830 ;0.690630 ;0.672430 ;0.654230 ;0.636030 ;0.617830 ;0.599630 ;0.581430 ;0.563220 ;0.545020 ;0.526820 ;0.508610 ;0.490410 ;0.472200 ;0.453990 ;0.435790 ;0.417580 ;0.399370 ;0.381170 ;0.362960 ;0.344750 ;0.326550 ;0.308340 ;0.290130 ;0.271930 ;0.253720 ;0.235520 ;0.217320 ;0.199110 ;0.180910 ;0.162710 ;0.144510 ;0.126320 ;0.108120 ;0.089934 ;0.071749 ;0.053572 ;0.035408 ;0.017278 ;0.000000 ;0.017278 ;0.035408 ;0.053572 ;0.071749 ;0.089934 ;0.108120 ;0.126320 ;0.144510 ;0.162710 ;0.180910 ;0.199110 ;0.217320 ;0.235520 ;0.253720 ;0.271930 ;0.290130 ;0.308340 ;0.326550 ;0.344750 ;0.362960 ;0.381170 ;0.399370 ;0.417580 ;0.435790 ;0.453990 ;0.472200 ;0.490410 ;0.508610 ;0.526820 ;0.545020 ;0.563220 ;0.581430 ;0.599630 ;0.617830 ;0.636030 ;0.654230 ;0.672430 ;0.690630 ;0.708830 ;0.727030 ;0.745230 ;0.763430 ;0.781620 ;0.799820 ;0.818020 ;0.836220 ;0.854420 ;0.872610 ;0.890810 ;0.909010 ;0.927210 ;0.945410 ;0.963610 ;0.981800 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.000092 ;0.000176 ;0.000254 ;0.000329 ;0.000396 ;0.000452 ;0.000496 ;0.000529 ;0.000550 ;0.000559 ;0.000557 ;0.000542 ;0.000517 ;0.000483 ;0.000443 ;0.000399 ;0.000352 ;0.000305 ;0.000260 ;0.000218 ;0.000183 ;0.000154 ;0.000133 ;0.000120 ;0.000117 ;0.000126 ;0.000148 ;0.000187 ;0.000243 ;0.000320 ;0.000419 ;0.000545 ;0.000702 ;0.000893 ;0.001114 ;0.001360 ;0.001625 ;0.001911 ;0.002217 ;0.002545 ;0.002893 ;0.003264 ;0.003659 ;0.004081 ;0.004532 ;0.005015 ;0.005533 ;0.006090 ;0.006697 ;0.007370 ;0.007962 ;0.007347 ;0.005369 ;0.002200 ;0.000000 ;0.009359 ;0.015311 ;0.019379 ;0.021720 ;0.022627 ;0.023275 ;0.023834 ;0.024320 ;0.024743 ;0.025107 ;0.025417 ;0.025673 ;0.025879 ;0.026038 ;0.026150 ;0.026218 ;0.026241 ;0.026221 ;0.026156 ;0.026048 ;0.025893 ;0.025683 ;0.025416 ;0.025094 ;0.024722 ;0.024305 ;0.023844 ;0.023341 ;0.022798 ;0.022218 ;0.021604 ;0.020956 ;0.020276 ;0.019565 ;0.018824 ;0.018053 ;0.017255 ;0.016432 ;0.015586 ;0.014718 ;0.013832 ;0.012929 ;0.012010 ;0.011078 ;0.010136 ;0.009181 ;0.008215 ;0.007236 ;0.006246 ;0.005245 ;0.004231 ;0.003200 ;0.002151 ;0.001083 ;0.000000 + + + + ... + ... + + 1.000000 ;0.981800 ;0.963610 ;0.945410 ;0.927210 ;0.909010 ;0.890810 ;0.872610 ;0.854420 ;0.836220 ;0.818020 ;0.799820 ;0.781620 ;0.763430 ;0.745230 ;0.727030 ;0.708830 ;0.690630 ;0.672430 ;0.654230 ;0.636030 ;0.617830 ;0.599630 ;0.581430 ;0.563220 ;0.545020 ;0.526820 ;0.508610 ;0.490410 ;0.472200 ;0.453990 ;0.435790 ;0.417580 ;0.399370 ;0.381170 ;0.362960 ;0.344750 ;0.326550 ;0.308340 ;0.290130 ;0.271930 ;0.253720 ;0.235520 ;0.217320 ;0.199110 ;0.180910 ;0.162710 ;0.144510 ;0.126320 ;0.108120 ;0.089934 ;0.071749 ;0.053572 ;0.035408 ;0.017278 ;0.000000 ;0.017278 ;0.035408 ;0.053572 ;0.071749 ;0.089934 ;0.108120 ;0.126320 ;0.144510 ;0.162710 ;0.180910 ;0.199110 ;0.217320 ;0.235520 ;0.253720 ;0.271930 ;0.290130 ;0.308340 ;0.326550 ;0.344750 ;0.362960 ;0.381170 ;0.399370 ;0.417580 ;0.435790 ;0.453990 ;0.472200 ;0.490410 ;0.508610 ;0.526820 ;0.545020 ;0.563220 ;0.581430 ;0.599630 ;0.617830 ;0.636030 ;0.654230 ;0.672430 ;0.690630 ;0.708830 ;0.727030 ;0.745230 ;0.763430 ;0.781620 ;0.799820 ;0.818020 ;0.836220 ;0.854420 ;0.872610 ;0.890810 ;0.909010 ;0.927210 ;0.945410 ;0.963610 ;0.981800 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.000042 ;0.000077 ;0.000107 ;0.000134 ;0.000154 ;0.000165 ;0.000164 ;0.000152 ;0.000129 ;0.000096 ;0.000051 ;-0.000005 ;-0.000072 ;-0.000145 ;-0.000224 ;-0.000307 ;-0.000391 ;-0.000475 ;-0.000555 ;-0.000631 ;-0.000699 ;-0.000759 ;-0.000811 ;-0.000852 ;-0.000883 ;-0.000900 ;-0.000903 ;-0.000888 ;-0.000852 ;-0.000795 ;-0.000714 ;-0.000605 ;-0.000463 ;-0.000283 ;-0.000072 ;0.000165 ;0.000424 ;0.000705 ;0.001008 ;0.001334 ;0.001682 ;0.002055 ;0.002454 ;0.002881 ;0.003340 ;0.003833 ;0.004362 ;0.004934 ;0.005557 ;0.006250 ;0.006874 ;0.006373 ;0.004605 ;0.001749 ;0.000000 ;0.009129 ;0.014855 ;0.018777 ;0.021057 ;0.021978 ;0.022648 ;0.023226 ;0.023730 ;0.024170 ;0.024551 ;0.024877 ;0.025149 ;0.025370 ;0.025542 ;0.025669 ;0.025750 ;0.025787 ;0.025780 ;0.025728 ;0.025633 ;0.025489 ;0.025292 ;0.025035 ;0.024723 ;0.024361 ;0.023953 ;0.023501 ;0.023007 ;0.022473 ;0.021901 ;0.021295 ;0.020656 ;0.019985 ;0.019282 ;0.018550 ;0.017788 ;0.017000 ;0.016186 ;0.015349 ;0.014492 ;0.013616 ;0.012724 ;0.011817 ;0.010898 ;0.009968 ;0.009028 ;0.008076 ;0.007113 ;0.006138 ;0.005154 ;0.004157 ;0.003144 ;0.002113 ;0.001063 ;0.000000 + + + + ... + ... + + 1.000000 ;0.981800 ;0.963610 ;0.945410 ;0.927210 ;0.909010 ;0.890810 ;0.872610 ;0.854420 ;0.836220 ;0.818020 ;0.799820 ;0.781620 ;0.763430 ;0.745230 ;0.727030 ;0.708830 ;0.690630 ;0.672430 ;0.654230 ;0.636030 ;0.617830 ;0.599630 ;0.581430 ;0.563220 ;0.545020 ;0.526820 ;0.508610 ;0.490410 ;0.472200 ;0.453990 ;0.435790 ;0.417580 ;0.399370 ;0.381170 ;0.362960 ;0.344750 ;0.326550 ;0.308340 ;0.290130 ;0.271930 ;0.253720 ;0.235520 ;0.217320 ;0.199110 ;0.180910 ;0.162710 ;0.144510 ;0.126320 ;0.108120 ;0.089934 ;0.071749 ;0.053572 ;0.035408 ;0.017278 ;0.000000 ;0.017278 ;0.035408 ;0.053572 ;0.071749 ;0.089934 ;0.108120 ;0.126320 ;0.144510 ;0.162710 ;0.180910 ;0.199110 ;0.217320 ;0.235520 ;0.253720 ;0.271930 ;0.290130 ;0.308340 ;0.326550 ;0.344750 ;0.362960 ;0.381170 ;0.399370 ;0.417580 ;0.435790 ;0.453990 ;0.472200 ;0.490410 ;0.508610 ;0.526820 ;0.545020 ;0.563220 ;0.581430 ;0.599630 ;0.617830 ;0.636030 ;0.654230 ;0.672430 ;0.690630 ;0.708830 ;0.727030 ;0.745230 ;0.763430 ;0.781620 ;0.799820 ;0.818020 ;0.836220 ;0.854420 ;0.872610 ;0.890810 ;0.909010 ;0.927210 ;0.945410 ;0.963610 ;0.981800 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.000032 ;0.000057 ;0.000078 ;0.000095 ;0.000106 ;0.000107 ;0.000096 ;0.000074 ;0.000042 ;-0.000001 ;-0.000056 ;-0.000122 ;-0.000198 ;-0.000282 ;-0.000371 ;-0.000463 ;-0.000557 ;-0.000650 ;-0.000739 ;-0.000823 ;-0.000900 ;-0.000968 ;-0.001027 ;-0.001075 ;-0.001112 ;-0.001135 ;-0.001143 ;-0.001133 ;-0.001101 ;-0.001048 ;-0.000969 ;-0.000861 ;-0.000719 ;-0.000539 ;-0.000326 ;-0.000087 ;0.000176 ;0.000461 ;0.000768 ;0.001099 ;0.001454 ;0.001834 ;0.002241 ;0.002677 ;0.003146 ;0.003650 ;0.004191 ;0.004776 ;0.005414 ;0.006123 ;0.006766 ;0.006280 ;0.004525 ;0.001684 ;0.000000 ;0.009244 ;0.015025 ;0.018986 ;0.021294 ;0.022235 ;0.022921 ;0.023514 ;0.024031 ;0.024482 ;0.024874 ;0.025209 ;0.025489 ;0.025717 ;0.025896 ;0.026028 ;0.026114 ;0.026154 ;0.026149 ;0.026100 ;0.026005 ;0.025862 ;0.025663 ;0.025404 ;0.025089 ;0.024722 ;0.024309 ;0.023850 ;0.023349 ;0.022807 ;0.022227 ;0.021612 ;0.020963 ;0.020282 ;0.019568 ;0.018825 ;0.018052 ;0.017251 ;0.016424 ;0.015575 ;0.014704 ;0.013815 ;0.012909 ;0.011988 ;0.011055 ;0.010112 ;0.009157 ;0.008191 ;0.007214 ;0.006226 ;0.005227 ;0.004215 ;0.003188 ;0.002142 ;0.001079 ;0.000000 + + + + ... + ... + + 1.000000 ;0.981800 ;0.963610 ;0.945410 ;0.927210 ;0.909010 ;0.890810 ;0.872610 ;0.854420 ;0.836220 ;0.818020 ;0.799820 ;0.781620 ;0.763430 ;0.745230 ;0.727030 ;0.708830 ;0.690630 ;0.672430 ;0.654230 ;0.636030 ;0.617830 ;0.599630 ;0.581430 ;0.563220 ;0.545020 ;0.526820 ;0.508610 ;0.490410 ;0.472200 ;0.453990 ;0.435790 ;0.417580 ;0.399370 ;0.381170 ;0.362960 ;0.344750 ;0.326550 ;0.308340 ;0.290130 ;0.271930 ;0.253720 ;0.235520 ;0.217320 ;0.199110 ;0.180910 ;0.162710 ;0.144510 ;0.126320 ;0.108120 ;0.089934 ;0.071749 ;0.053572 ;0.035408 ;0.017278 ;0.000000 ;0.017278 ;0.035408 ;0.053572 ;0.071749 ;0.089934 ;0.108120 ;0.126320 ;0.144510 ;0.162710 ;0.180910 ;0.199110 ;0.217320 ;0.235520 ;0.253720 ;0.271930 ;0.290130 ;0.308340 ;0.326550 ;0.344750 ;0.362960 ;0.381170 ;0.399370 ;0.417580 ;0.435790 ;0.453990 ;0.472200 ;0.490410 ;0.508610 ;0.526820 ;0.545020 ;0.563220 ;0.581430 ;0.599630 ;0.617830 ;0.636030 ;0.654230 ;0.672430 ;0.690630 ;0.708830 ;0.727030 ;0.745230 ;0.763430 ;0.781620 ;0.799820 ;0.818020 ;0.836220 ;0.854420 ;0.872610 ;0.890810 ;0.909010 ;0.927210 ;0.945410 ;0.963610 ;0.981800 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.000042 ;0.000075 ;0.000104 ;0.000130 ;0.000149 ;0.000157 ;0.000154 ;0.000139 ;0.000113 ;0.000076 ;0.000027 ;-0.000034 ;-0.000105 ;-0.000184 ;-0.000269 ;-0.000357 ;-0.000447 ;-0.000536 ;-0.000622 ;-0.000702 ;-0.000776 ;-0.000840 ;-0.000896 ;-0.000940 ;-0.000973 ;-0.000993 ;-0.000997 ;-0.000982 ;-0.000947 ;-0.000888 ;-0.000805 ;-0.000692 ;-0.000543 ;-0.000357 ;-0.000137 ;0.000110 ;0.000380 ;0.000673 ;0.000989 ;0.001329 ;0.001693 ;0.002082 ;0.002499 ;0.002945 ;0.003425 ;0.003940 ;0.004493 ;0.005090 ;0.005742 ;0.006465 ;0.007119 ;0.006602 ;0.004767 ;0.001802 ;0.000000 ;0.009517 ;0.015482 ;0.019569 ;0.021945 ;0.022908 ;0.023607 ;0.024212 ;0.024739 ;0.025200 ;0.025598 ;0.025939 ;0.026223 ;0.026455 ;0.026636 ;0.026769 ;0.026855 ;0.026894 ;0.026887 ;0.026834 ;0.026735 ;0.026585 ;0.026380 ;0.026113 ;0.025788 ;0.025410 ;0.024984 ;0.024513 ;0.023998 ;0.023441 ;0.022845 ;0.022212 ;0.021546 ;0.020845 ;0.020112 ;0.019348 ;0.018554 ;0.017731 ;0.016882 ;0.016009 ;0.015115 ;0.014202 ;0.013271 ;0.012325 ;0.011366 ;0.010396 ;0.009415 ;0.008423 ;0.007418 ;0.006402 ;0.005375 ;0.004335 ;0.003279 ;0.002203 ;0.001109 ;0.000000 + + + + ... + ... + + 1.000000 ;0.981800 ;0.963610 ;0.945410 ;0.927210 ;0.909010 ;0.890810 ;0.872610 ;0.854420 ;0.836220 ;0.818020 ;0.799820 ;0.781620 ;0.763430 ;0.745230 ;0.727030 ;0.708830 ;0.690630 ;0.672430 ;0.654230 ;0.636030 ;0.617830 ;0.599630 ;0.581430 ;0.563220 ;0.545020 ;0.526820 ;0.508610 ;0.490410 ;0.472200 ;0.453990 ;0.435790 ;0.417580 ;0.399370 ;0.381170 ;0.362960 ;0.344750 ;0.326550 ;0.308340 ;0.290130 ;0.271930 ;0.253720 ;0.235520 ;0.217320 ;0.199110 ;0.180910 ;0.162710 ;0.144510 ;0.126320 ;0.108120 ;0.089934 ;0.071749 ;0.053572 ;0.035408 ;0.017278 ;0.000000 ;0.017278 ;0.035408 ;0.053572 ;0.071749 ;0.089934 ;0.108120 ;0.126320 ;0.144510 ;0.162710 ;0.180910 ;0.199110 ;0.217320 ;0.235520 ;0.253720 ;0.271930 ;0.290130 ;0.308340 ;0.326550 ;0.344750 ;0.362960 ;0.381170 ;0.399370 ;0.417580 ;0.435790 ;0.453990 ;0.472200 ;0.490410 ;0.508610 ;0.526820 ;0.545020 ;0.563220 ;0.581430 ;0.599630 ;0.617830 ;0.636030 ;0.654230 ;0.672430 ;0.690630 ;0.708830 ;0.727030 ;0.745230 ;0.763430 ;0.781620 ;0.799820 ;0.818020 ;0.836220 ;0.854420 ;0.872610 ;0.890810 ;0.909010 ;0.927210 ;0.945410 ;0.963610 ;0.981800 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.000049 ;0.000089 ;0.000125 ;0.000157 ;0.000182 ;0.000197 ;0.000199 ;0.000189 ;0.000168 ;0.000135 ;0.000090 ;0.000033 ;-0.000035 ;-0.000110 ;-0.000192 ;-0.000278 ;-0.000365 ;-0.000452 ;-0.000535 ;-0.000613 ;-0.000683 ;-0.000746 ;-0.000799 ;-0.000841 ;-0.000871 ;-0.000888 ;-0.000889 ;-0.000871 ;-0.000832 ;-0.000770 ;-0.000682 ;-0.000564 ;-0.000411 ;-0.000219 ;0.000007 ;0.000261 ;0.000538 ;0.000838 ;0.001162 ;0.001510 ;0.001882 ;0.002279 ;0.002705 ;0.003161 ;0.003650 ;0.004176 ;0.004740 ;0.005349 ;0.006013 ;0.006751 ;0.007415 ;0.006872 ;0.004970 ;0.001899 ;0.000000 ;0.009761 ;0.015889 ;0.020086 ;0.022524 ;0.023506 ;0.024220 ;0.024836 ;0.025373 ;0.025841 ;0.026247 ;0.026593 ;0.026882 ;0.027117 ;0.027300 ;0.027434 ;0.027520 ;0.027559 ;0.027550 ;0.027494 ;0.027391 ;0.027237 ;0.027025 ;0.026751 ;0.026417 ;0.026030 ;0.025594 ;0.025110 ;0.024582 ;0.024011 ;0.023401 ;0.022753 ;0.022070 ;0.021353 ;0.020603 ;0.019820 ;0.019007 ;0.018164 ;0.017295 ;0.016401 ;0.015485 ;0.014550 ;0.013597 ;0.012628 ;0.011646 ;0.010652 ;0.009647 ;0.008630 ;0.007601 ;0.006560 ;0.005508 ;0.004442 ;0.003360 ;0.002258 ;0.001137 ;0.000000 + + + + ... + ... + + 1.000000 ;0.981800 ;0.963610 ;0.945410 ;0.927210 ;0.909010 ;0.890810 ;0.872610 ;0.854420 ;0.836220 ;0.818020 ;0.799820 ;0.781620 ;0.763430 ;0.745230 ;0.727030 ;0.708830 ;0.690630 ;0.672430 ;0.654230 ;0.636030 ;0.617830 ;0.599630 ;0.581430 ;0.563220 ;0.545020 ;0.526820 ;0.508610 ;0.490410 ;0.472200 ;0.453990 ;0.435790 ;0.417580 ;0.399370 ;0.381170 ;0.362960 ;0.344750 ;0.326550 ;0.308340 ;0.290130 ;0.271930 ;0.253720 ;0.235520 ;0.217320 ;0.199110 ;0.180910 ;0.162710 ;0.144510 ;0.126320 ;0.108120 ;0.089934 ;0.071749 ;0.053572 ;0.035408 ;0.017278 ;0.000000 ;0.017278 ;0.035408 ;0.053572 ;0.071749 ;0.089934 ;0.108120 ;0.126320 ;0.144510 ;0.162710 ;0.180910 ;0.199110 ;0.217320 ;0.235520 ;0.253720 ;0.271930 ;0.290130 ;0.308340 ;0.326550 ;0.344750 ;0.362960 ;0.381170 ;0.399370 ;0.417580 ;0.435790 ;0.453990 ;0.472200 ;0.490410 ;0.508610 ;0.526820 ;0.545020 ;0.563220 ;0.581430 ;0.599630 ;0.617830 ;0.636030 ;0.654230 ;0.672430 ;0.690630 ;0.708830 ;0.727030 ;0.745230 ;0.763430 ;0.781620 ;0.799820 ;0.818020 ;0.836220 ;0.854420 ;0.872610 ;0.890810 ;0.909010 ;0.927210 ;0.945410 ;0.963610 ;0.981800 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.000033 ;0.000058 ;0.000078 ;0.000095 ;0.000105 ;0.000104 ;0.000092 ;0.000067 ;0.000032 ;-0.000015 ;-0.000075 ;-0.000146 ;-0.000228 ;-0.000318 ;-0.000413 ;-0.000512 ;-0.000613 ;-0.000712 ;-0.000808 ;-0.000898 ;-0.000980 ;-0.001053 ;-0.001117 ;-0.001169 ;-0.001208 ;-0.001234 ;-0.001243 ;-0.001233 ;-0.001200 ;-0.001144 ;-0.001061 ;-0.000947 ;-0.000797 ;-0.000607 ;-0.000382 ;-0.000128 ;0.000150 ;0.000452 ;0.000778 ;0.001128 ;0.001505 ;0.001907 ;0.002338 ;0.002801 ;0.003298 ;0.003832 ;0.004406 ;0.005026 ;0.005703 ;0.006455 ;0.007136 ;0.006625 ;0.004772 ;0.001771 ;0.000000 ;0.009789 ;0.015907 ;0.020101 ;0.022545 ;0.023542 ;0.024270 ;0.024899 ;0.025447 ;0.025926 ;0.026342 ;0.026697 ;0.026994 ;0.027236 ;0.027426 ;0.027567 ;0.027658 ;0.027701 ;0.027696 ;0.027644 ;0.027544 ;0.027393 ;0.027182 ;0.026909 ;0.026575 ;0.026187 ;0.025749 ;0.025263 ;0.024732 ;0.024158 ;0.023544 ;0.022893 ;0.022205 ;0.021483 ;0.020728 ;0.019940 ;0.019121 ;0.018272 ;0.017397 ;0.016497 ;0.015575 ;0.014633 ;0.013673 ;0.012698 ;0.011710 ;0.010710 ;0.009699 ;0.008676 ;0.007641 ;0.006594 ;0.005536 ;0.004465 ;0.003377 ;0.002269 ;0.001142 ;0.000000 + + + + ... + ... + + 1.000000 ;0.981800 ;0.963610 ;0.945410 ;0.927210 ;0.909010 ;0.890810 ;0.872610 ;0.854420 ;0.836220 ;0.818020 ;0.799820 ;0.781620 ;0.763430 ;0.745230 ;0.727030 ;0.708830 ;0.690630 ;0.672430 ;0.654230 ;0.636030 ;0.617830 ;0.599630 ;0.581430 ;0.563220 ;0.545020 ;0.526820 ;0.508610 ;0.490410 ;0.472200 ;0.453990 ;0.435790 ;0.417580 ;0.399370 ;0.381170 ;0.362960 ;0.344750 ;0.326550 ;0.308340 ;0.290130 ;0.271930 ;0.253720 ;0.235520 ;0.217320 ;0.199110 ;0.180910 ;0.162710 ;0.144510 ;0.126320 ;0.108120 ;0.089934 ;0.071749 ;0.053572 ;0.035408 ;0.017278 ;0.000000 ;0.017278 ;0.035408 ;0.053572 ;0.071749 ;0.089934 ;0.108120 ;0.126320 ;0.144510 ;0.162710 ;0.180910 ;0.199110 ;0.217320 ;0.235520 ;0.253720 ;0.271930 ;0.290130 ;0.308340 ;0.326550 ;0.344750 ;0.362960 ;0.381170 ;0.399370 ;0.417580 ;0.435790 ;0.453990 ;0.472200 ;0.490410 ;0.508610 ;0.526820 ;0.545020 ;0.563220 ;0.581430 ;0.599630 ;0.617830 ;0.636030 ;0.654230 ;0.672430 ;0.690630 ;0.708830 ;0.727030 ;0.745230 ;0.763430 ;0.781620 ;0.799820 ;0.818020 ;0.836220 ;0.854420 ;0.872610 ;0.890810 ;0.909010 ;0.927210 ;0.945410 ;0.963610 ;0.981800 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.000000 ;-0.000021 ;-0.000049 ;-0.000081 ;-0.000116 ;-0.000155 ;-0.000205 ;-0.000266 ;-0.000338 ;-0.000421 ;-0.000514 ;-0.000618 ;-0.000734 ;-0.000859 ;-0.000991 ;-0.001128 ;-0.001268 ;-0.001407 ;-0.001545 ;-0.001678 ;-0.001804 ;-0.001921 ;-0.002027 ;-0.002123 ;-0.002206 ;-0.002275 ;-0.002329 ;-0.002364 ;-0.002378 ;-0.002369 ;-0.002335 ;-0.002272 ;-0.002177 ;-0.002043 ;-0.001867 ;-0.001655 ;-0.001412 ;-0.001143 ;-0.000849 ;-0.000529 ;-0.000183 ;0.000191 ;0.000592 ;0.001024 ;0.001489 ;0.001991 ;0.002531 ;0.003113 ;0.003743 ;0.004433 ;0.005201 ;0.005912 ;0.005527 ;0.003915 ;0.001272 ;0.000000 ;0.009466 ;0.015295 ;0.019300 ;0.021660 ;0.022665 ;0.023410 ;0.024055 ;0.024619 ;0.025113 ;0.025543 ;0.025912 ;0.026224 ;0.026480 ;0.026684 ;0.026839 ;0.026944 ;0.027001 ;0.027011 ;0.026973 ;0.026887 ;0.026750 ;0.026553 ;0.026293 ;0.025973 ;0.025598 ;0.025174 ;0.024702 ;0.024184 ;0.023624 ;0.023024 ;0.022386 ;0.021713 ;0.021006 ;0.020265 ;0.019493 ;0.018690 ;0.017858 ;0.016999 ;0.016117 ;0.015212 ;0.014289 ;0.013349 ;0.012394 ;0.011426 ;0.010448 ;0.009460 ;0.008460 ;0.007449 ;0.006428 ;0.005395 ;0.004351 ;0.003291 ;0.002211 ;0.001113 ;0.000000 + + + + ... + ... + + 1.000000 ;0.981800 ;0.963610 ;0.945410 ;0.927210 ;0.909010 ;0.890810 ;0.872610 ;0.854420 ;0.836220 ;0.818020 ;0.799820 ;0.781620 ;0.763430 ;0.745230 ;0.727030 ;0.708830 ;0.690630 ;0.672430 ;0.654230 ;0.636030 ;0.617830 ;0.599630 ;0.581430 ;0.563220 ;0.545020 ;0.526820 ;0.508610 ;0.490410 ;0.472200 ;0.453990 ;0.435790 ;0.417580 ;0.399370 ;0.381170 ;0.362960 ;0.344750 ;0.326550 ;0.308340 ;0.290130 ;0.271930 ;0.253720 ;0.235520 ;0.217320 ;0.199110 ;0.180910 ;0.162710 ;0.144510 ;0.126320 ;0.108120 ;0.089934 ;0.071749 ;0.053572 ;0.035408 ;0.017278 ;0.000000 ;0.017278 ;0.035408 ;0.053572 ;0.071749 ;0.089934 ;0.108120 ;0.126320 ;0.144510 ;0.162710 ;0.180910 ;0.199110 ;0.217320 ;0.235520 ;0.253720 ;0.271930 ;0.290130 ;0.308340 ;0.326550 ;0.344750 ;0.362960 ;0.381170 ;0.399370 ;0.417580 ;0.435790 ;0.453990 ;0.472200 ;0.490410 ;0.508610 ;0.526820 ;0.545020 ;0.563220 ;0.581430 ;0.599630 ;0.617830 ;0.636030 ;0.654230 ;0.672430 ;0.690630 ;0.708830 ;0.727030 ;0.745230 ;0.763430 ;0.781620 ;0.799820 ;0.818020 ;0.836220 ;0.854420 ;0.872610 ;0.890810 ;0.909010 ;0.927210 ;0.945410 ;0.963610 ;0.981800 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.000000 ;-0.000105 ;-0.000215 ;-0.000327 ;-0.000440 ;-0.000557 ;-0.000682 ;-0.000818 ;-0.000963 ;-0.001117 ;-0.001280 ;-0.001453 ;-0.001636 ;-0.001827 ;-0.002024 ;-0.002224 ;-0.002425 ;-0.002624 ;-0.002820 ;-0.003009 ;-0.003190 ;-0.003359 ;-0.003516 ;-0.003660 ;-0.003790 ;-0.003904 ;-0.004000 ;-0.004076 ;-0.004129 ;-0.004156 ;-0.004156 ;-0.004125 ;-0.004059 ;-0.003952 ;-0.003800 ;-0.003609 ;-0.003386 ;-0.003134 ;-0.002854 ;-0.002547 ;-0.002210 ;-0.001845 ;-0.001449 ;-0.001020 ;-0.000555 ;-0.000052 ;0.000492 ;0.001082 ;0.001722 ;0.002425 ;0.003208 ;0.003959 ;0.003773 ;0.002549 ;0.000487 ;0.000000 ;0.008875 ;0.014199 ;0.017872 ;0.020079 ;0.021085 ;0.021849 ;0.022513 ;0.023095 ;0.023608 ;0.024056 ;0.024445 ;0.024775 ;0.025051 ;0.025275 ;0.025449 ;0.025576 ;0.025654 ;0.025686 ;0.025670 ;0.025607 ;0.025493 ;0.025320 ;0.025084 ;0.024788 ;0.024437 ;0.024037 ;0.023591 ;0.023099 ;0.022566 ;0.021993 ;0.021383 ;0.020739 ;0.020062 ;0.019352 ;0.018611 ;0.017840 ;0.017042 ;0.016217 ;0.015370 ;0.014503 ;0.013617 ;0.012716 ;0.011802 ;0.010876 ;0.009941 ;0.008997 ;0.008044 ;0.007080 ;0.006107 ;0.005125 ;0.004132 ;0.003125 ;0.002099 ;0.001056 ;0.000000 + + + + ... + ... + + 1.000000 ;0.981800 ;0.963610 ;0.945410 ;0.927210 ;0.909010 ;0.890810 ;0.872610 ;0.854420 ;0.836220 ;0.818020 ;0.799820 ;0.781620 ;0.763430 ;0.745230 ;0.727030 ;0.708830 ;0.690630 ;0.672430 ;0.654230 ;0.636030 ;0.617830 ;0.599630 ;0.581430 ;0.563220 ;0.545020 ;0.526820 ;0.508610 ;0.490410 ;0.472200 ;0.453990 ;0.435790 ;0.417580 ;0.399370 ;0.381170 ;0.362960 ;0.344750 ;0.326550 ;0.308340 ;0.290130 ;0.271930 ;0.253720 ;0.235520 ;0.217320 ;0.199110 ;0.180910 ;0.162710 ;0.144510 ;0.126320 ;0.108120 ;0.089934 ;0.071749 ;0.053572 ;0.035408 ;0.017278 ;0.000000 ;0.017278 ;0.035408 ;0.053572 ;0.071749 ;0.089934 ;0.108120 ;0.126320 ;0.144510 ;0.162710 ;0.180910 ;0.199110 ;0.217320 ;0.235520 ;0.253720 ;0.271930 ;0.290130 ;0.308340 ;0.326550 ;0.344750 ;0.362960 ;0.381170 ;0.399370 ;0.417580 ;0.435790 ;0.453990 ;0.472200 ;0.490410 ;0.508610 ;0.526820 ;0.545020 ;0.563220 ;0.581430 ;0.599630 ;0.617830 ;0.636030 ;0.654230 ;0.672430 ;0.690630 ;0.708830 ;0.727030 ;0.745230 ;0.763430 ;0.781620 ;0.799820 ;0.818020 ;0.836220 ;0.854420 ;0.872610 ;0.890810 ;0.909010 ;0.927210 ;0.945410 ;0.963610 ;0.981800 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.000000 ;-0.000203 ;-0.000409 ;-0.000616 ;-0.000821 ;-0.001029 ;-0.001243 ;-0.001466 ;-0.001697 ;-0.001935 ;-0.002180 ;-0.002434 ;-0.002696 ;-0.002965 ;-0.003237 ;-0.003510 ;-0.003783 ;-0.004052 ;-0.004316 ;-0.004571 ;-0.004815 ;-0.005045 ;-0.005262 ;-0.005463 ;-0.005647 ;-0.005814 ;-0.005960 ;-0.006084 ;-0.006183 ;-0.006253 ;-0.006292 ;-0.006299 ;-0.006268 ;-0.006193 ;-0.006070 ;-0.005905 ;-0.005704 ;-0.005474 ;-0.005212 ;-0.004920 ;-0.004597 ;-0.004241 ;-0.003853 ;-0.003429 ;-0.002967 ;-0.002463 ;-0.001915 ;-0.001319 ;-0.000670 ;0.000046 ;0.000847 ;0.001641 ;0.001691 ;0.000929 ;-0.000441 ;0.000000 ;0.008149 ;0.012859 ;0.016129 ;0.018150 ;0.019154 ;0.019939 ;0.020623 ;0.021225 ;0.021757 ;0.022226 ;0.022635 ;0.022987 ;0.023285 ;0.023532 ;0.023730 ;0.023880 ;0.023983 ;0.024040 ;0.024051 ;0.024016 ;0.023930 ;0.023785 ;0.023578 ;0.023311 ;0.022990 ;0.022621 ;0.022205 ;0.021746 ;0.021246 ;0.020707 ;0.020132 ;0.019524 ;0.018884 ;0.018213 ;0.017511 ;0.016781 ;0.016025 ;0.015243 ;0.014441 ;0.013620 ;0.012782 ;0.011929 ;0.011065 ;0.010192 ;0.009311 ;0.008423 ;0.007527 ;0.006622 ;0.005710 ;0.004790 ;0.003861 ;0.002919 ;0.001960 ;0.000986 ;0.000000 + + + + ... + ... + + 1.000000 ;0.990000 ;0.980000 ;0.970000 ;0.960000 ;0.950000 ;0.940000 ;0.930000 ;0.920000 ;0.910000 ;0.900000 ;0.890000 ;0.880000 ;0.870000 ;0.860000 ;0.850000 ;0.840000 ;0.830000 ;0.820000 ;0.810000 ;0.800000 ;0.790000 ;0.780000 ;0.770000 ;0.760000 ;0.750000 ;0.740000 ;0.730000 ;0.720000 ;0.710000 ;0.700000 ;0.690000 ;0.680000 ;0.670000 ;0.660000 ;0.650000 ;0.640000 ;0.630000 ;0.620000 ;0.610000 ;0.600000 ;0.590000 ;0.580000 ;0.570000 ;0.560000 ;0.550000 ;0.540000 ;0.530000 ;0.520000 ;0.510000 ;0.500000 ;0.490000 ;0.480000 ;0.470000 ;0.460000 ;0.450000 ;0.440000 ;0.430000 ;0.420000 ;0.410000 ;0.400000 ;0.390000 ;0.380000 ;0.370000 ;0.360000 ;0.350000 ;0.340000 ;0.330000 ;0.320000 ;0.310000 ;0.300000 ;0.290000 ;0.280000 ;0.270000 ;0.260000 ;0.250000 ;0.240000 ;0.230000 ;0.220000 ;0.210000 ;0.200000 ;0.190000 ;0.180000 ;0.170000 ;0.160000 ;0.150000 ;0.140000 ;0.130000 ;0.120000 ;0.110000 ;0.100000 ;0.090000 ;0.080000 ;0.070000 ;0.060000 ;0.050000 ;0.040000 ;0.030000 ;0.020000 ;0.010000 ;0.000000 ;0.010000 ;0.020000 ;0.030000 ;0.040000 ;0.050000 ;0.060000 ;0.070000 ;0.080000 ;0.090000 ;0.100000 ;0.110000 ;0.120000 ;0.130000 ;0.140000 ;0.150000 ;0.160000 ;0.170000 ;0.180000 ;0.190000 ;0.200000 ;0.210000 ;0.220000 ;0.230000 ;0.240000 ;0.250000 ;0.260000 ;0.270000 ;0.280000 ;0.290000 ;0.300000 ;0.310000 ;0.320000 ;0.330000 ;0.340000 ;0.350000 ;0.360000 ;0.370000 ;0.380000 ;0.390000 ;0.400000 ;0.410000 ;0.420000 ;0.430000 ;0.440000 ;0.450000 ;0.460000 ;0.470000 ;0.480000 ;0.490000 ;0.500000 ;0.510000 ;0.520000 ;0.530000 ;0.540000 ;0.550000 ;0.560000 ;0.570000 ;0.580000 ;0.590000 ;0.600000 ;0.610000 ;0.620000 ;0.630000 ;0.640000 ;0.650000 ;0.660000 ;0.670000 ;0.680000 ;0.690000 ;0.700000 ;0.710000 ;0.720000 ;0.730000 ;0.740000 ;0.750000 ;0.760000 ;0.770000 ;0.780000 ;0.790000 ;0.800000 ;0.810000 ;0.820000 ;0.830000 ;0.840000 ;0.850000 ;0.860000 ;0.870000 ;0.880000 ;0.890000 ;0.900000 ;0.910000 ;0.920000 ;0.930000 ;0.940000 ;0.950000 ;0.960000 ;0.970000 ;0.980000 ;0.990000 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;-0.002417 ;-0.002932 ;-0.003367 ;-0.003758 ;-0.004130 ;-0.004499 ;-0.004876 ;-0.005264 ;-0.005665 ;-0.006078 ;-0.006500 ;-0.006929 ;-0.007360 ;-0.007792 ;-0.008222 ;-0.008648 ;-0.009069 ;-0.009485 ;-0.009897 ;-0.010306 ;-0.010712 ;-0.011118 ;-0.011526 ;-0.011937 ;-0.012353 ;-0.012777 ;-0.013209 ;-0.013650 ;-0.014101 ;-0.014561 ;-0.015031 ;-0.015508 ;-0.015992 ;-0.016481 ;-0.016972 ;-0.017462 ;-0.017948 ;-0.018428 ;-0.018897 ;-0.019353 ;-0.019793 ;-0.020212 ;-0.020609 ;-0.020980 ;-0.021324 ;-0.021640 ;-0.021924 ;-0.022178 ;-0.022401 ;-0.022593 ;-0.022754 ;-0.022888 ;-0.022994 ;-0.023076 ;-0.023136 ;-0.023176 ;-0.023201 ;-0.023212 ;-0.023213 ;-0.023207 ;-0.023197 ;-0.023184 ;-0.023173 ;-0.023163 ;-0.023156 ;-0.023153 ;-0.023154 ;-0.023159 ;-0.023166 ;-0.023173 ;-0.023178 ;-0.023179 ;-0.023172 ;-0.023153 ;-0.023120 ;-0.023068 ;-0.022994 ;-0.022894 ;-0.022766 ;-0.022606 ;-0.022413 ;-0.022185 ;-0.021922 ;-0.021622 ;-0.021286 ;-0.020914 ;-0.020505 ;-0.020058 ;-0.019570 ;-0.019035 ;-0.018444 ;-0.017780 ;-0.017021 ;-0.016134 ;-0.015074 ;-0.013781 ;-0.012173 ;-0.010146 ;-0.007565 ;0.000000 ;0.007876 ;0.010375 ;0.012359 ;0.013944 ;0.015225 ;0.016275 ;0.017153 ;0.017902 ;0.018557 ;0.019141 ;0.019673 ;0.020163 ;0.020620 ;0.021047 ;0.021448 ;0.021822 ;0.022170 ;0.022491 ;0.022783 ;0.023046 ;0.023279 ;0.023482 ;0.023655 ;0.023799 ;0.023914 ;0.024003 ;0.024067 ;0.024107 ;0.024127 ;0.024128 ;0.024113 ;0.024083 ;0.024041 ;0.023988 ;0.023927 ;0.023857 ;0.023780 ;0.023697 ;0.023608 ;0.023513 ;0.023411 ;0.023301 ;0.023183 ;0.023056 ;0.022918 ;0.022768 ;0.022605 ;0.022426 ;0.022232 ;0.022019 ;0.021788 ;0.021538 ;0.021267 ;0.020975 ;0.020663 ;0.020330 ;0.019977 ;0.019604 ;0.019214 ;0.018806 ;0.018384 ;0.017949 ;0.017503 ;0.017048 ;0.016586 ;0.016121 ;0.015653 ;0.015187 ;0.014723 ;0.014263 ;0.013810 ;0.013363 ;0.012925 ;0.012496 ;0.012076 ;0.011664 ;0.011260 ;0.010863 ;0.010470 ;0.010080 ;0.009690 ;0.009298 ;0.008901 ;0.008497 ;0.008084 ;0.007658 ;0.007219 ;0.006765 ;0.006297 ;0.005814 ;0.005320 ;0.004818 ;0.004313 ;0.003812 ;0.003324 ;0.002860 ;0.002433 ;0.002059 ;0.001754 ;-0.000000 + + + + ... + ... + + 1.000000 ;0.990000 ;0.980000 ;0.970000 ;0.960000 ;0.950000 ;0.940000 ;0.930000 ;0.920000 ;0.910000 ;0.900000 ;0.890000 ;0.880000 ;0.870000 ;0.860000 ;0.850000 ;0.840000 ;0.830000 ;0.820000 ;0.810000 ;0.800000 ;0.790000 ;0.780000 ;0.770000 ;0.760000 ;0.750000 ;0.740000 ;0.730000 ;0.720000 ;0.710000 ;0.700000 ;0.690000 ;0.680000 ;0.670000 ;0.660000 ;0.650000 ;0.640000 ;0.630000 ;0.620000 ;0.610000 ;0.600000 ;0.590000 ;0.580000 ;0.570000 ;0.560000 ;0.550000 ;0.540000 ;0.530000 ;0.520000 ;0.510000 ;0.500000 ;0.490000 ;0.480000 ;0.470000 ;0.460000 ;0.450000 ;0.440000 ;0.430000 ;0.420000 ;0.410000 ;0.400000 ;0.390000 ;0.380000 ;0.370000 ;0.360000 ;0.350000 ;0.340000 ;0.330000 ;0.320000 ;0.310000 ;0.300000 ;0.290000 ;0.280000 ;0.270000 ;0.260000 ;0.250000 ;0.240000 ;0.230000 ;0.220000 ;0.210000 ;0.200000 ;0.190000 ;0.180000 ;0.170000 ;0.160000 ;0.150000 ;0.140000 ;0.130000 ;0.120000 ;0.110000 ;0.100000 ;0.090000 ;0.080000 ;0.070000 ;0.060000 ;0.050000 ;0.040000 ;0.030000 ;0.020000 ;0.010000 ;0.000000 ;0.010000 ;0.020000 ;0.030000 ;0.040000 ;0.050000 ;0.060000 ;0.070000 ;0.080000 ;0.090000 ;0.100000 ;0.110000 ;0.120000 ;0.130000 ;0.140000 ;0.150000 ;0.160000 ;0.170000 ;0.180000 ;0.190000 ;0.200000 ;0.210000 ;0.220000 ;0.230000 ;0.240000 ;0.250000 ;0.260000 ;0.270000 ;0.280000 ;0.290000 ;0.300000 ;0.310000 ;0.320000 ;0.330000 ;0.340000 ;0.350000 ;0.360000 ;0.370000 ;0.380000 ;0.390000 ;0.400000 ;0.410000 ;0.420000 ;0.430000 ;0.440000 ;0.450000 ;0.460000 ;0.470000 ;0.480000 ;0.490000 ;0.500000 ;0.510000 ;0.520000 ;0.530000 ;0.540000 ;0.550000 ;0.560000 ;0.570000 ;0.580000 ;0.590000 ;0.600000 ;0.610000 ;0.620000 ;0.630000 ;0.640000 ;0.650000 ;0.660000 ;0.670000 ;0.680000 ;0.690000 ;0.700000 ;0.710000 ;0.720000 ;0.730000 ;0.740000 ;0.750000 ;0.760000 ;0.770000 ;0.780000 ;0.790000 ;0.800000 ;0.810000 ;0.820000 ;0.830000 ;0.840000 ;0.850000 ;0.860000 ;0.870000 ;0.880000 ;0.890000 ;0.900000 ;0.910000 ;0.920000 ;0.930000 ;0.940000 ;0.950000 ;0.960000 ;0.970000 ;0.980000 ;0.990000 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;-0.002417 ;-0.002932 ;-0.003367 ;-0.003758 ;-0.004130 ;-0.004499 ;-0.004876 ;-0.005264 ;-0.005665 ;-0.006078 ;-0.006500 ;-0.006929 ;-0.007360 ;-0.007792 ;-0.008222 ;-0.008648 ;-0.009069 ;-0.009485 ;-0.009897 ;-0.010306 ;-0.010712 ;-0.011118 ;-0.011526 ;-0.011937 ;-0.012353 ;-0.012777 ;-0.013209 ;-0.013650 ;-0.014101 ;-0.014561 ;-0.015031 ;-0.015508 ;-0.015992 ;-0.016481 ;-0.016972 ;-0.017462 ;-0.017948 ;-0.018428 ;-0.018897 ;-0.019353 ;-0.019793 ;-0.020212 ;-0.020609 ;-0.020980 ;-0.021324 ;-0.021640 ;-0.021924 ;-0.022178 ;-0.022401 ;-0.022593 ;-0.022754 ;-0.022888 ;-0.022994 ;-0.023076 ;-0.023136 ;-0.023176 ;-0.023201 ;-0.023212 ;-0.023213 ;-0.023207 ;-0.023197 ;-0.023184 ;-0.023173 ;-0.023163 ;-0.023156 ;-0.023153 ;-0.023154 ;-0.023159 ;-0.023166 ;-0.023173 ;-0.023178 ;-0.023179 ;-0.023172 ;-0.023153 ;-0.023120 ;-0.023068 ;-0.022994 ;-0.022894 ;-0.022766 ;-0.022606 ;-0.022413 ;-0.022185 ;-0.021922 ;-0.021622 ;-0.021286 ;-0.020914 ;-0.020505 ;-0.020058 ;-0.019570 ;-0.019035 ;-0.018444 ;-0.017780 ;-0.017021 ;-0.016134 ;-0.015074 ;-0.013781 ;-0.012173 ;-0.010146 ;-0.007565 ;0.000000 ;0.007876 ;0.010375 ;0.012359 ;0.013944 ;0.015225 ;0.016275 ;0.017153 ;0.017902 ;0.018557 ;0.019141 ;0.019673 ;0.020163 ;0.020620 ;0.021047 ;0.021448 ;0.021822 ;0.022170 ;0.022491 ;0.022783 ;0.023046 ;0.023279 ;0.023482 ;0.023655 ;0.023799 ;0.023914 ;0.024003 ;0.024067 ;0.024107 ;0.024127 ;0.024128 ;0.024113 ;0.024083 ;0.024041 ;0.023988 ;0.023927 ;0.023857 ;0.023780 ;0.023697 ;0.023608 ;0.023513 ;0.023411 ;0.023301 ;0.023183 ;0.023056 ;0.022918 ;0.022768 ;0.022605 ;0.022426 ;0.022232 ;0.022019 ;0.021788 ;0.021538 ;0.021267 ;0.020975 ;0.020663 ;0.020330 ;0.019977 ;0.019604 ;0.019214 ;0.018806 ;0.018384 ;0.017949 ;0.017503 ;0.017048 ;0.016586 ;0.016121 ;0.015653 ;0.015187 ;0.014723 ;0.014263 ;0.013810 ;0.013363 ;0.012925 ;0.012496 ;0.012076 ;0.011664 ;0.011260 ;0.010863 ;0.010470 ;0.010080 ;0.009690 ;0.009298 ;0.008901 ;0.008497 ;0.008084 ;0.007658 ;0.007219 ;0.006765 ;0.006297 ;0.005814 ;0.005320 ;0.004818 ;0.004313 ;0.003812 ;0.003324 ;0.002860 ;0.002433 ;0.002059 ;0.001754 ;-0.000000 + + + + ... + ... + + 1.000000 ;0.990000 ;0.980000 ;0.970000 ;0.960000 ;0.950000 ;0.940000 ;0.930000 ;0.920000 ;0.910000 ;0.900000 ;0.890000 ;0.880000 ;0.870000 ;0.860000 ;0.850000 ;0.840000 ;0.830000 ;0.820000 ;0.810000 ;0.800000 ;0.790000 ;0.780000 ;0.770000 ;0.760000 ;0.750000 ;0.740000 ;0.730000 ;0.720000 ;0.710000 ;0.700000 ;0.690000 ;0.680000 ;0.670000 ;0.660000 ;0.650000 ;0.640000 ;0.630000 ;0.620000 ;0.610000 ;0.600000 ;0.590000 ;0.580000 ;0.570000 ;0.560000 ;0.550000 ;0.540000 ;0.530000 ;0.520000 ;0.510000 ;0.500000 ;0.490000 ;0.480000 ;0.470000 ;0.460000 ;0.450000 ;0.440000 ;0.430000 ;0.420000 ;0.410000 ;0.400000 ;0.390000 ;0.380000 ;0.370000 ;0.360000 ;0.350000 ;0.340000 ;0.330000 ;0.320000 ;0.310000 ;0.300000 ;0.290000 ;0.280000 ;0.270000 ;0.260000 ;0.250000 ;0.240000 ;0.230000 ;0.220000 ;0.210000 ;0.200000 ;0.190000 ;0.180000 ;0.170000 ;0.160000 ;0.150000 ;0.140000 ;0.130000 ;0.120000 ;0.110000 ;0.100000 ;0.090000 ;0.080000 ;0.070000 ;0.060000 ;0.050000 ;0.040000 ;0.030000 ;0.020000 ;0.010000 ;0.000000 ;0.010000 ;0.020000 ;0.030000 ;0.040000 ;0.050000 ;0.060000 ;0.070000 ;0.080000 ;0.090000 ;0.100000 ;0.110000 ;0.120000 ;0.130000 ;0.140000 ;0.150000 ;0.160000 ;0.170000 ;0.180000 ;0.190000 ;0.200000 ;0.210000 ;0.220000 ;0.230000 ;0.240000 ;0.250000 ;0.260000 ;0.270000 ;0.280000 ;0.290000 ;0.300000 ;0.310000 ;0.320000 ;0.330000 ;0.340000 ;0.350000 ;0.360000 ;0.370000 ;0.380000 ;0.390000 ;0.400000 ;0.410000 ;0.420000 ;0.430000 ;0.440000 ;0.450000 ;0.460000 ;0.470000 ;0.480000 ;0.490000 ;0.500000 ;0.510000 ;0.520000 ;0.530000 ;0.540000 ;0.550000 ;0.560000 ;0.570000 ;0.580000 ;0.590000 ;0.600000 ;0.610000 ;0.620000 ;0.630000 ;0.640000 ;0.650000 ;0.660000 ;0.670000 ;0.680000 ;0.690000 ;0.700000 ;0.710000 ;0.720000 ;0.730000 ;0.740000 ;0.750000 ;0.760000 ;0.770000 ;0.780000 ;0.790000 ;0.800000 ;0.810000 ;0.820000 ;0.830000 ;0.840000 ;0.850000 ;0.860000 ;0.870000 ;0.880000 ;0.890000 ;0.900000 ;0.910000 ;0.920000 ;0.930000 ;0.940000 ;0.950000 ;0.960000 ;0.970000 ;0.980000 ;0.990000 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;-0.002417 ;-0.002932 ;-0.003367 ;-0.003758 ;-0.004130 ;-0.004499 ;-0.004876 ;-0.005264 ;-0.005665 ;-0.006078 ;-0.006500 ;-0.006929 ;-0.007360 ;-0.007792 ;-0.008222 ;-0.008648 ;-0.009069 ;-0.009485 ;-0.009897 ;-0.010306 ;-0.010712 ;-0.011118 ;-0.011526 ;-0.011937 ;-0.012353 ;-0.012777 ;-0.013209 ;-0.013650 ;-0.014101 ;-0.014561 ;-0.015031 ;-0.015508 ;-0.015992 ;-0.016481 ;-0.016972 ;-0.017462 ;-0.017948 ;-0.018428 ;-0.018897 ;-0.019353 ;-0.019793 ;-0.020212 ;-0.020609 ;-0.020980 ;-0.021324 ;-0.021640 ;-0.021924 ;-0.022178 ;-0.022401 ;-0.022593 ;-0.022754 ;-0.022888 ;-0.022994 ;-0.023076 ;-0.023136 ;-0.023176 ;-0.023201 ;-0.023212 ;-0.023213 ;-0.023207 ;-0.023197 ;-0.023184 ;-0.023173 ;-0.023163 ;-0.023156 ;-0.023153 ;-0.023154 ;-0.023159 ;-0.023166 ;-0.023173 ;-0.023178 ;-0.023179 ;-0.023172 ;-0.023153 ;-0.023120 ;-0.023068 ;-0.022994 ;-0.022894 ;-0.022766 ;-0.022606 ;-0.022413 ;-0.022185 ;-0.021922 ;-0.021622 ;-0.021286 ;-0.020914 ;-0.020505 ;-0.020058 ;-0.019570 ;-0.019035 ;-0.018444 ;-0.017780 ;-0.017021 ;-0.016134 ;-0.015074 ;-0.013781 ;-0.012173 ;-0.010146 ;-0.007565 ;0.000000 ;0.007876 ;0.010375 ;0.012359 ;0.013944 ;0.015225 ;0.016275 ;0.017153 ;0.017902 ;0.018557 ;0.019141 ;0.019673 ;0.020163 ;0.020620 ;0.021047 ;0.021448 ;0.021822 ;0.022170 ;0.022491 ;0.022783 ;0.023046 ;0.023279 ;0.023482 ;0.023655 ;0.023799 ;0.023914 ;0.024003 ;0.024067 ;0.024107 ;0.024127 ;0.024128 ;0.024113 ;0.024083 ;0.024041 ;0.023988 ;0.023927 ;0.023857 ;0.023780 ;0.023697 ;0.023608 ;0.023513 ;0.023411 ;0.023301 ;0.023183 ;0.023056 ;0.022918 ;0.022768 ;0.022605 ;0.022426 ;0.022232 ;0.022019 ;0.021788 ;0.021538 ;0.021267 ;0.020975 ;0.020663 ;0.020330 ;0.019977 ;0.019604 ;0.019214 ;0.018806 ;0.018384 ;0.017949 ;0.017503 ;0.017048 ;0.016586 ;0.016121 ;0.015653 ;0.015187 ;0.014723 ;0.014263 ;0.013810 ;0.013363 ;0.012925 ;0.012496 ;0.012076 ;0.011664 ;0.011260 ;0.010863 ;0.010470 ;0.010080 ;0.009690 ;0.009298 ;0.008901 ;0.008497 ;0.008084 ;0.007658 ;0.007219 ;0.006765 ;0.006297 ;0.005814 ;0.005320 ;0.004818 ;0.004313 ;0.003812 ;0.003324 ;0.002860 ;0.002433 ;0.002059 ;0.001754 ;-0.000000 + + + + ... + ... + + 1.000000 ;0.990000 ;0.980000 ;0.970000 ;0.960000 ;0.950000 ;0.940000 ;0.930000 ;0.920000 ;0.910000 ;0.900000 ;0.890000 ;0.880000 ;0.870000 ;0.860000 ;0.850000 ;0.840000 ;0.830000 ;0.820000 ;0.810000 ;0.800000 ;0.790000 ;0.780000 ;0.770000 ;0.760000 ;0.750000 ;0.740000 ;0.730000 ;0.720000 ;0.710000 ;0.700000 ;0.690000 ;0.680000 ;0.670000 ;0.660000 ;0.650000 ;0.640000 ;0.630000 ;0.620000 ;0.610000 ;0.600000 ;0.590000 ;0.580000 ;0.570000 ;0.560000 ;0.550000 ;0.540000 ;0.530000 ;0.520000 ;0.510000 ;0.500000 ;0.490000 ;0.480000 ;0.470000 ;0.460000 ;0.450000 ;0.440000 ;0.430000 ;0.420000 ;0.410000 ;0.400000 ;0.390000 ;0.380000 ;0.370000 ;0.360000 ;0.350000 ;0.340000 ;0.330000 ;0.320000 ;0.310000 ;0.300000 ;0.290000 ;0.280000 ;0.270000 ;0.260000 ;0.250000 ;0.240000 ;0.230000 ;0.220000 ;0.210000 ;0.200000 ;0.190000 ;0.180000 ;0.170000 ;0.160000 ;0.150000 ;0.140000 ;0.130000 ;0.120000 ;0.110000 ;0.100000 ;0.090000 ;0.080000 ;0.070000 ;0.060000 ;0.050000 ;0.040000 ;0.030000 ;0.020000 ;0.010000 ;0.000000 ;0.010000 ;0.020000 ;0.030000 ;0.040000 ;0.050000 ;0.060000 ;0.070000 ;0.080000 ;0.090000 ;0.100000 ;0.110000 ;0.120000 ;0.130000 ;0.140000 ;0.150000 ;0.160000 ;0.170000 ;0.180000 ;0.190000 ;0.200000 ;0.210000 ;0.220000 ;0.230000 ;0.240000 ;0.250000 ;0.260000 ;0.270000 ;0.280000 ;0.290000 ;0.300000 ;0.310000 ;0.320000 ;0.330000 ;0.340000 ;0.350000 ;0.360000 ;0.370000 ;0.380000 ;0.390000 ;0.400000 ;0.410000 ;0.420000 ;0.430000 ;0.440000 ;0.450000 ;0.460000 ;0.470000 ;0.480000 ;0.490000 ;0.500000 ;0.510000 ;0.520000 ;0.530000 ;0.540000 ;0.550000 ;0.560000 ;0.570000 ;0.580000 ;0.590000 ;0.600000 ;0.610000 ;0.620000 ;0.630000 ;0.640000 ;0.650000 ;0.660000 ;0.670000 ;0.680000 ;0.690000 ;0.700000 ;0.710000 ;0.720000 ;0.730000 ;0.740000 ;0.750000 ;0.760000 ;0.770000 ;0.780000 ;0.790000 ;0.800000 ;0.810000 ;0.820000 ;0.830000 ;0.840000 ;0.850000 ;0.860000 ;0.870000 ;0.880000 ;0.890000 ;0.900000 ;0.910000 ;0.920000 ;0.930000 ;0.940000 ;0.950000 ;0.960000 ;0.970000 ;0.980000 ;0.990000 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;-0.002417 ;-0.002932 ;-0.003367 ;-0.003758 ;-0.004130 ;-0.004499 ;-0.004876 ;-0.005264 ;-0.005665 ;-0.006078 ;-0.006500 ;-0.006929 ;-0.007360 ;-0.007792 ;-0.008222 ;-0.008648 ;-0.009069 ;-0.009485 ;-0.009897 ;-0.010306 ;-0.010712 ;-0.011118 ;-0.011526 ;-0.011937 ;-0.012353 ;-0.012777 ;-0.013209 ;-0.013650 ;-0.014101 ;-0.014561 ;-0.015031 ;-0.015508 ;-0.015992 ;-0.016481 ;-0.016972 ;-0.017462 ;-0.017948 ;-0.018428 ;-0.018897 ;-0.019353 ;-0.019793 ;-0.020212 ;-0.020609 ;-0.020980 ;-0.021324 ;-0.021640 ;-0.021924 ;-0.022178 ;-0.022401 ;-0.022593 ;-0.022754 ;-0.022888 ;-0.022994 ;-0.023076 ;-0.023136 ;-0.023176 ;-0.023201 ;-0.023212 ;-0.023213 ;-0.023207 ;-0.023197 ;-0.023184 ;-0.023173 ;-0.023163 ;-0.023156 ;-0.023153 ;-0.023154 ;-0.023159 ;-0.023166 ;-0.023173 ;-0.023178 ;-0.023179 ;-0.023172 ;-0.023153 ;-0.023120 ;-0.023068 ;-0.022994 ;-0.022894 ;-0.022766 ;-0.022606 ;-0.022413 ;-0.022185 ;-0.021922 ;-0.021622 ;-0.021286 ;-0.020914 ;-0.020505 ;-0.020058 ;-0.019570 ;-0.019035 ;-0.018444 ;-0.017780 ;-0.017021 ;-0.016134 ;-0.015074 ;-0.013781 ;-0.012173 ;-0.010146 ;-0.007565 ;0.000000 ;0.007876 ;0.010375 ;0.012359 ;0.013944 ;0.015225 ;0.016275 ;0.017153 ;0.017902 ;0.018557 ;0.019141 ;0.019673 ;0.020163 ;0.020620 ;0.021047 ;0.021448 ;0.021822 ;0.022170 ;0.022491 ;0.022783 ;0.023046 ;0.023279 ;0.023482 ;0.023655 ;0.023799 ;0.023914 ;0.024003 ;0.024067 ;0.024107 ;0.024127 ;0.024128 ;0.024113 ;0.024083 ;0.024041 ;0.023988 ;0.023927 ;0.023857 ;0.023780 ;0.023697 ;0.023608 ;0.023513 ;0.023411 ;0.023301 ;0.023183 ;0.023056 ;0.022918 ;0.022768 ;0.022605 ;0.022426 ;0.022232 ;0.022019 ;0.021788 ;0.021538 ;0.021267 ;0.020975 ;0.020663 ;0.020330 ;0.019977 ;0.019604 ;0.019214 ;0.018806 ;0.018384 ;0.017949 ;0.017503 ;0.017048 ;0.016586 ;0.016121 ;0.015653 ;0.015187 ;0.014723 ;0.014263 ;0.013810 ;0.013363 ;0.012925 ;0.012496 ;0.012076 ;0.011664 ;0.011260 ;0.010863 ;0.010470 ;0.010080 ;0.009690 ;0.009298 ;0.008901 ;0.008497 ;0.008084 ;0.007658 ;0.007219 ;0.006765 ;0.006297 ;0.005814 ;0.005320 ;0.004818 ;0.004313 ;0.003812 ;0.003324 ;0.002860 ;0.002433 ;0.002059 ;0.001754 ;-0.000000 + + + + ... + ... + + 1.000000 ;0.990000 ;0.980000 ;0.970000 ;0.960000 ;0.950000 ;0.940000 ;0.930000 ;0.920000 ;0.910000 ;0.900000 ;0.890000 ;0.880000 ;0.870000 ;0.860000 ;0.850000 ;0.840000 ;0.830000 ;0.820000 ;0.810000 ;0.800000 ;0.790000 ;0.780000 ;0.770000 ;0.760000 ;0.750000 ;0.740000 ;0.730000 ;0.720000 ;0.710000 ;0.700000 ;0.690000 ;0.680000 ;0.670000 ;0.660000 ;0.650000 ;0.640000 ;0.630000 ;0.620000 ;0.610000 ;0.600000 ;0.590000 ;0.580000 ;0.570000 ;0.560000 ;0.550000 ;0.540000 ;0.530000 ;0.520000 ;0.510000 ;0.500000 ;0.490000 ;0.480000 ;0.470000 ;0.460000 ;0.450000 ;0.440000 ;0.430000 ;0.420000 ;0.410000 ;0.400000 ;0.390000 ;0.380000 ;0.370000 ;0.360000 ;0.350000 ;0.340000 ;0.330000 ;0.320000 ;0.310000 ;0.300000 ;0.290000 ;0.280000 ;0.270000 ;0.260000 ;0.250000 ;0.240000 ;0.230000 ;0.220000 ;0.210000 ;0.200000 ;0.190000 ;0.180000 ;0.170000 ;0.160000 ;0.150000 ;0.140000 ;0.130000 ;0.120000 ;0.110000 ;0.100000 ;0.090000 ;0.080000 ;0.070000 ;0.060000 ;0.050000 ;0.040000 ;0.030000 ;0.020000 ;0.010000 ;0.000000 ;0.010000 ;0.020000 ;0.030000 ;0.040000 ;0.050000 ;0.060000 ;0.070000 ;0.080000 ;0.090000 ;0.100000 ;0.110000 ;0.120000 ;0.130000 ;0.140000 ;0.150000 ;0.160000 ;0.170000 ;0.180000 ;0.190000 ;0.200000 ;0.210000 ;0.220000 ;0.230000 ;0.240000 ;0.250000 ;0.260000 ;0.270000 ;0.280000 ;0.290000 ;0.300000 ;0.310000 ;0.320000 ;0.330000 ;0.340000 ;0.350000 ;0.360000 ;0.370000 ;0.380000 ;0.390000 ;0.400000 ;0.410000 ;0.420000 ;0.430000 ;0.440000 ;0.450000 ;0.460000 ;0.470000 ;0.480000 ;0.490000 ;0.500000 ;0.510000 ;0.520000 ;0.530000 ;0.540000 ;0.550000 ;0.560000 ;0.570000 ;0.580000 ;0.590000 ;0.600000 ;0.610000 ;0.620000 ;0.630000 ;0.640000 ;0.650000 ;0.660000 ;0.670000 ;0.680000 ;0.690000 ;0.700000 ;0.710000 ;0.720000 ;0.730000 ;0.740000 ;0.750000 ;0.760000 ;0.770000 ;0.780000 ;0.790000 ;0.800000 ;0.810000 ;0.820000 ;0.830000 ;0.840000 ;0.850000 ;0.860000 ;0.870000 ;0.880000 ;0.890000 ;0.900000 ;0.910000 ;0.920000 ;0.930000 ;0.940000 ;0.950000 ;0.960000 ;0.970000 ;0.980000 ;0.990000 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;-0.002417 ;-0.002932 ;-0.003367 ;-0.003758 ;-0.004130 ;-0.004499 ;-0.004876 ;-0.005264 ;-0.005665 ;-0.006078 ;-0.006500 ;-0.006929 ;-0.007360 ;-0.007792 ;-0.008222 ;-0.008648 ;-0.009069 ;-0.009485 ;-0.009897 ;-0.010306 ;-0.010712 ;-0.011118 ;-0.011526 ;-0.011937 ;-0.012353 ;-0.012777 ;-0.013209 ;-0.013650 ;-0.014101 ;-0.014561 ;-0.015031 ;-0.015508 ;-0.015992 ;-0.016481 ;-0.016972 ;-0.017462 ;-0.017948 ;-0.018428 ;-0.018897 ;-0.019353 ;-0.019793 ;-0.020212 ;-0.020609 ;-0.020980 ;-0.021324 ;-0.021640 ;-0.021924 ;-0.022178 ;-0.022401 ;-0.022593 ;-0.022754 ;-0.022888 ;-0.022994 ;-0.023076 ;-0.023136 ;-0.023176 ;-0.023201 ;-0.023212 ;-0.023213 ;-0.023207 ;-0.023197 ;-0.023184 ;-0.023173 ;-0.023163 ;-0.023156 ;-0.023153 ;-0.023154 ;-0.023159 ;-0.023166 ;-0.023173 ;-0.023178 ;-0.023179 ;-0.023172 ;-0.023153 ;-0.023120 ;-0.023068 ;-0.022994 ;-0.022894 ;-0.022766 ;-0.022606 ;-0.022413 ;-0.022185 ;-0.021922 ;-0.021622 ;-0.021286 ;-0.020914 ;-0.020505 ;-0.020058 ;-0.019570 ;-0.019035 ;-0.018444 ;-0.017780 ;-0.017021 ;-0.016134 ;-0.015074 ;-0.013781 ;-0.012173 ;-0.010146 ;-0.007565 ;0.000000 ;0.007876 ;0.010375 ;0.012359 ;0.013944 ;0.015225 ;0.016275 ;0.017153 ;0.017902 ;0.018557 ;0.019141 ;0.019673 ;0.020163 ;0.020620 ;0.021047 ;0.021448 ;0.021822 ;0.022170 ;0.022491 ;0.022783 ;0.023046 ;0.023279 ;0.023482 ;0.023655 ;0.023799 ;0.023914 ;0.024003 ;0.024067 ;0.024107 ;0.024127 ;0.024128 ;0.024113 ;0.024083 ;0.024041 ;0.023988 ;0.023927 ;0.023857 ;0.023780 ;0.023697 ;0.023608 ;0.023513 ;0.023411 ;0.023301 ;0.023183 ;0.023056 ;0.022918 ;0.022768 ;0.022605 ;0.022426 ;0.022232 ;0.022019 ;0.021788 ;0.021538 ;0.021267 ;0.020975 ;0.020663 ;0.020330 ;0.019977 ;0.019604 ;0.019214 ;0.018806 ;0.018384 ;0.017949 ;0.017503 ;0.017048 ;0.016586 ;0.016121 ;0.015653 ;0.015187 ;0.014723 ;0.014263 ;0.013810 ;0.013363 ;0.012925 ;0.012496 ;0.012076 ;0.011664 ;0.011260 ;0.010863 ;0.010470 ;0.010080 ;0.009690 ;0.009298 ;0.008901 ;0.008497 ;0.008084 ;0.007658 ;0.007219 ;0.006765 ;0.006297 ;0.005814 ;0.005320 ;0.004818 ;0.004313 ;0.003812 ;0.003324 ;0.002860 ;0.002433 ;0.002059 ;0.001754 ;-0.000000 + + + + ... + ... + + 1.000000 ;0.990000 ;0.980000 ;0.970000 ;0.960000 ;0.950000 ;0.940000 ;0.930000 ;0.920000 ;0.910000 ;0.900000 ;0.890000 ;0.880000 ;0.870000 ;0.860000 ;0.850000 ;0.840000 ;0.830000 ;0.820000 ;0.810000 ;0.800000 ;0.790000 ;0.780000 ;0.770000 ;0.760000 ;0.750000 ;0.740000 ;0.730000 ;0.720000 ;0.710000 ;0.700000 ;0.690000 ;0.680000 ;0.670000 ;0.660000 ;0.650000 ;0.640000 ;0.630000 ;0.620000 ;0.610000 ;0.600000 ;0.590000 ;0.580000 ;0.570000 ;0.560000 ;0.550000 ;0.540000 ;0.530000 ;0.520000 ;0.510000 ;0.500000 ;0.490000 ;0.480000 ;0.470000 ;0.460000 ;0.450000 ;0.440000 ;0.430000 ;0.420000 ;0.410000 ;0.400000 ;0.390000 ;0.380000 ;0.370000 ;0.360000 ;0.350000 ;0.340000 ;0.330000 ;0.320000 ;0.310000 ;0.300000 ;0.290000 ;0.280000 ;0.270000 ;0.260000 ;0.250000 ;0.240000 ;0.230000 ;0.220000 ;0.210000 ;0.200000 ;0.190000 ;0.180000 ;0.170000 ;0.160000 ;0.150000 ;0.140000 ;0.130000 ;0.120000 ;0.110000 ;0.100000 ;0.090000 ;0.080000 ;0.070000 ;0.060000 ;0.050000 ;0.040000 ;0.030000 ;0.020000 ;0.010000 ;0.000000 ;0.010000 ;0.020000 ;0.030000 ;0.040000 ;0.050000 ;0.060000 ;0.070000 ;0.080000 ;0.090000 ;0.100000 ;0.110000 ;0.120000 ;0.130000 ;0.140000 ;0.150000 ;0.160000 ;0.170000 ;0.180000 ;0.190000 ;0.200000 ;0.210000 ;0.220000 ;0.230000 ;0.240000 ;0.250000 ;0.260000 ;0.270000 ;0.280000 ;0.290000 ;0.300000 ;0.310000 ;0.320000 ;0.330000 ;0.340000 ;0.350000 ;0.360000 ;0.370000 ;0.380000 ;0.390000 ;0.400000 ;0.410000 ;0.420000 ;0.430000 ;0.440000 ;0.450000 ;0.460000 ;0.470000 ;0.480000 ;0.490000 ;0.500000 ;0.510000 ;0.520000 ;0.530000 ;0.540000 ;0.550000 ;0.560000 ;0.570000 ;0.580000 ;0.590000 ;0.600000 ;0.610000 ;0.620000 ;0.630000 ;0.640000 ;0.650000 ;0.660000 ;0.670000 ;0.680000 ;0.690000 ;0.700000 ;0.710000 ;0.720000 ;0.730000 ;0.740000 ;0.750000 ;0.760000 ;0.770000 ;0.780000 ;0.790000 ;0.800000 ;0.810000 ;0.820000 ;0.830000 ;0.840000 ;0.850000 ;0.860000 ;0.870000 ;0.880000 ;0.890000 ;0.900000 ;0.910000 ;0.920000 ;0.930000 ;0.940000 ;0.950000 ;0.960000 ;0.970000 ;0.980000 ;0.990000 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;-0.002417 ;-0.002932 ;-0.003367 ;-0.003758 ;-0.004130 ;-0.004499 ;-0.004876 ;-0.005264 ;-0.005665 ;-0.006078 ;-0.006500 ;-0.006929 ;-0.007360 ;-0.007792 ;-0.008222 ;-0.008648 ;-0.009069 ;-0.009485 ;-0.009897 ;-0.010306 ;-0.010712 ;-0.011118 ;-0.011526 ;-0.011937 ;-0.012353 ;-0.012777 ;-0.013209 ;-0.013650 ;-0.014101 ;-0.014561 ;-0.015031 ;-0.015508 ;-0.015992 ;-0.016481 ;-0.016972 ;-0.017462 ;-0.017948 ;-0.018428 ;-0.018897 ;-0.019353 ;-0.019793 ;-0.020212 ;-0.020609 ;-0.020980 ;-0.021324 ;-0.021640 ;-0.021924 ;-0.022178 ;-0.022401 ;-0.022593 ;-0.022754 ;-0.022888 ;-0.022994 ;-0.023076 ;-0.023136 ;-0.023176 ;-0.023201 ;-0.023212 ;-0.023213 ;-0.023207 ;-0.023197 ;-0.023184 ;-0.023173 ;-0.023163 ;-0.023156 ;-0.023153 ;-0.023154 ;-0.023159 ;-0.023166 ;-0.023173 ;-0.023178 ;-0.023179 ;-0.023172 ;-0.023153 ;-0.023120 ;-0.023068 ;-0.022994 ;-0.022894 ;-0.022766 ;-0.022606 ;-0.022413 ;-0.022185 ;-0.021922 ;-0.021622 ;-0.021286 ;-0.020914 ;-0.020505 ;-0.020058 ;-0.019570 ;-0.019035 ;-0.018444 ;-0.017780 ;-0.017021 ;-0.016134 ;-0.015074 ;-0.013781 ;-0.012173 ;-0.010146 ;-0.007565 ;0.000000 ;0.007876 ;0.010375 ;0.012359 ;0.013944 ;0.015225 ;0.016275 ;0.017153 ;0.017902 ;0.018557 ;0.019141 ;0.019673 ;0.020163 ;0.020620 ;0.021047 ;0.021448 ;0.021822 ;0.022170 ;0.022491 ;0.022783 ;0.023046 ;0.023279 ;0.023482 ;0.023655 ;0.023799 ;0.023914 ;0.024003 ;0.024067 ;0.024107 ;0.024127 ;0.024128 ;0.024113 ;0.024083 ;0.024041 ;0.023988 ;0.023927 ;0.023857 ;0.023780 ;0.023697 ;0.023608 ;0.023513 ;0.023411 ;0.023301 ;0.023183 ;0.023056 ;0.022918 ;0.022768 ;0.022605 ;0.022426 ;0.022232 ;0.022019 ;0.021788 ;0.021538 ;0.021267 ;0.020975 ;0.020663 ;0.020330 ;0.019977 ;0.019604 ;0.019214 ;0.018806 ;0.018384 ;0.017949 ;0.017503 ;0.017048 ;0.016586 ;0.016121 ;0.015653 ;0.015187 ;0.014723 ;0.014263 ;0.013810 ;0.013363 ;0.012925 ;0.012496 ;0.012076 ;0.011664 ;0.011260 ;0.010863 ;0.010470 ;0.010080 ;0.009690 ;0.009298 ;0.008901 ;0.008497 ;0.008084 ;0.007658 ;0.007219 ;0.006765 ;0.006297 ;0.005814 ;0.005320 ;0.004818 ;0.004313 ;0.003812 ;0.003324 ;0.002860 ;0.002433 ;0.002059 ;0.001754 ;-0.000000 + + + + ... + ... + + 1.000000 ;0.990000 ;0.980000 ;0.970000 ;0.960000 ;0.950000 ;0.940000 ;0.930000 ;0.920000 ;0.910000 ;0.900000 ;0.890000 ;0.880000 ;0.870000 ;0.860000 ;0.850000 ;0.840000 ;0.830000 ;0.820000 ;0.810000 ;0.800000 ;0.790000 ;0.780000 ;0.770000 ;0.760000 ;0.750000 ;0.740000 ;0.730000 ;0.720000 ;0.710000 ;0.700000 ;0.690000 ;0.680000 ;0.670000 ;0.660000 ;0.650000 ;0.640000 ;0.630000 ;0.620000 ;0.610000 ;0.600000 ;0.590000 ;0.580000 ;0.570000 ;0.560000 ;0.550000 ;0.540000 ;0.530000 ;0.520000 ;0.510000 ;0.500000 ;0.490000 ;0.480000 ;0.470000 ;0.460000 ;0.450000 ;0.440000 ;0.430000 ;0.420000 ;0.410000 ;0.400000 ;0.390000 ;0.380000 ;0.370000 ;0.360000 ;0.350000 ;0.340000 ;0.330000 ;0.320000 ;0.310000 ;0.300000 ;0.290000 ;0.280000 ;0.270000 ;0.260000 ;0.250000 ;0.240000 ;0.230000 ;0.220000 ;0.210000 ;0.200000 ;0.190000 ;0.180000 ;0.170000 ;0.160000 ;0.150000 ;0.140000 ;0.130000 ;0.120000 ;0.110000 ;0.100000 ;0.090000 ;0.080000 ;0.070000 ;0.060000 ;0.050000 ;0.040000 ;0.030000 ;0.020000 ;0.010000 ;0.000000 ;0.010000 ;0.020000 ;0.030000 ;0.040000 ;0.050000 ;0.060000 ;0.070000 ;0.080000 ;0.090000 ;0.100000 ;0.110000 ;0.120000 ;0.130000 ;0.140000 ;0.150000 ;0.160000 ;0.170000 ;0.180000 ;0.190000 ;0.200000 ;0.210000 ;0.220000 ;0.230000 ;0.240000 ;0.250000 ;0.260000 ;0.270000 ;0.280000 ;0.290000 ;0.300000 ;0.310000 ;0.320000 ;0.330000 ;0.340000 ;0.350000 ;0.360000 ;0.370000 ;0.380000 ;0.390000 ;0.400000 ;0.410000 ;0.420000 ;0.430000 ;0.440000 ;0.450000 ;0.460000 ;0.470000 ;0.480000 ;0.490000 ;0.500000 ;0.510000 ;0.520000 ;0.530000 ;0.540000 ;0.550000 ;0.560000 ;0.570000 ;0.580000 ;0.590000 ;0.600000 ;0.610000 ;0.620000 ;0.630000 ;0.640000 ;0.650000 ;0.660000 ;0.670000 ;0.680000 ;0.690000 ;0.700000 ;0.710000 ;0.720000 ;0.730000 ;0.740000 ;0.750000 ;0.760000 ;0.770000 ;0.780000 ;0.790000 ;0.800000 ;0.810000 ;0.820000 ;0.830000 ;0.840000 ;0.850000 ;0.860000 ;0.870000 ;0.880000 ;0.890000 ;0.900000 ;0.910000 ;0.920000 ;0.930000 ;0.940000 ;0.950000 ;0.960000 ;0.970000 ;0.980000 ;0.990000 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;-0.002417 ;-0.002932 ;-0.003367 ;-0.003758 ;-0.004130 ;-0.004499 ;-0.004876 ;-0.005264 ;-0.005665 ;-0.006078 ;-0.006500 ;-0.006929 ;-0.007360 ;-0.007792 ;-0.008222 ;-0.008648 ;-0.009069 ;-0.009485 ;-0.009897 ;-0.010306 ;-0.010712 ;-0.011118 ;-0.011526 ;-0.011937 ;-0.012353 ;-0.012777 ;-0.013209 ;-0.013650 ;-0.014101 ;-0.014561 ;-0.015031 ;-0.015508 ;-0.015992 ;-0.016481 ;-0.016972 ;-0.017462 ;-0.017948 ;-0.018428 ;-0.018897 ;-0.019353 ;-0.019793 ;-0.020212 ;-0.020609 ;-0.020980 ;-0.021324 ;-0.021640 ;-0.021924 ;-0.022178 ;-0.022401 ;-0.022593 ;-0.022754 ;-0.022888 ;-0.022994 ;-0.023076 ;-0.023136 ;-0.023176 ;-0.023201 ;-0.023212 ;-0.023213 ;-0.023207 ;-0.023197 ;-0.023184 ;-0.023173 ;-0.023163 ;-0.023156 ;-0.023153 ;-0.023154 ;-0.023159 ;-0.023166 ;-0.023173 ;-0.023178 ;-0.023179 ;-0.023172 ;-0.023153 ;-0.023120 ;-0.023068 ;-0.022994 ;-0.022894 ;-0.022766 ;-0.022606 ;-0.022413 ;-0.022185 ;-0.021922 ;-0.021622 ;-0.021286 ;-0.020914 ;-0.020505 ;-0.020058 ;-0.019570 ;-0.019035 ;-0.018444 ;-0.017780 ;-0.017021 ;-0.016134 ;-0.015074 ;-0.013781 ;-0.012173 ;-0.010146 ;-0.007565 ;0.000000 ;0.007876 ;0.010375 ;0.012359 ;0.013944 ;0.015225 ;0.016275 ;0.017153 ;0.017902 ;0.018557 ;0.019141 ;0.019673 ;0.020163 ;0.020620 ;0.021047 ;0.021448 ;0.021822 ;0.022170 ;0.022491 ;0.022783 ;0.023046 ;0.023279 ;0.023482 ;0.023655 ;0.023799 ;0.023914 ;0.024003 ;0.024067 ;0.024107 ;0.024127 ;0.024128 ;0.024113 ;0.024083 ;0.024041 ;0.023988 ;0.023927 ;0.023857 ;0.023780 ;0.023697 ;0.023608 ;0.023513 ;0.023411 ;0.023301 ;0.023183 ;0.023056 ;0.022918 ;0.022768 ;0.022605 ;0.022426 ;0.022232 ;0.022019 ;0.021788 ;0.021538 ;0.021267 ;0.020975 ;0.020663 ;0.020330 ;0.019977 ;0.019604 ;0.019214 ;0.018806 ;0.018384 ;0.017949 ;0.017503 ;0.017048 ;0.016586 ;0.016121 ;0.015653 ;0.015187 ;0.014723 ;0.014263 ;0.013810 ;0.013363 ;0.012925 ;0.012496 ;0.012076 ;0.011664 ;0.011260 ;0.010863 ;0.010470 ;0.010080 ;0.009690 ;0.009298 ;0.008901 ;0.008497 ;0.008084 ;0.007658 ;0.007219 ;0.006765 ;0.006297 ;0.005814 ;0.005320 ;0.004818 ;0.004313 ;0.003812 ;0.003324 ;0.002860 ;0.002433 ;0.002059 ;0.001754 ;-0.000000 + + + + +
+
diff --git a/test_files/CPACSfiles/j280904scaled.xml b/test_files/CPACSfiles/j280904scaled.xml new file mode 100644 index 000000000..7dd304737 --- /dev/null +++ b/test_files/CPACSfiles/j280904scaled.xml @@ -0,0 +1,3096 @@ + + +
+ j280904scaled + Simple Wing for unit testing + Martin Siggel + 2012-10-09T15:12:47 + 0.2 + 3.0 + + + Converted to cpacs 3.0 using cpacs2to3 - does not include structure update + cpacs2to3 + 2018-01-15T09:22:57 + 0.2 + 3.0 + + + Add this update + Aidan + 2018-10-03T09:00:01 + 0.3 + 3.0 + + +
+ + + + j280v0 + + 49.5353 + 3.6736 + + 3.9293 + 0 + 0 + + + + +Body1 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + +
+Body1Frame1 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + -0.254 + + + + + ... + fuseprof_1_1 + + + 1 + 0.0254 + 0.0254 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body1Frame27 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.16422 + 0 + -0.23764 + + + + + ... + fuseprof_1_2 + + + 1 + 0.32889 + 0.30382 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body1Frame2 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.52426 + 0 + -0.25839 + + + + + ... + fuseprof_1_3 + + + 1 + 0.49302 + 0.50145 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body1Frame3 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 1.3627 + 0 + -0.22552 + + + + + ... + fuseprof_1_4 + + + 1 + 0.7102 + 0.71115 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body1Frame4 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 1.9916 + 0 + -0.02667 + + + + + ... + fuseprof_1_5 + + + 1 + 0.77165 + 0.98425 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body1Frame5 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 2.5156 + 0 + 0.082745 + + + + + ... + fuseprof_1_6 + + + 1 + 0.856 + 1.1089 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body1Frame6 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 4.2057 + 0 + -0.099441 + + + + + ... + fuseprof_1_7 + + + 1 + 0.86665 + 0.9163 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body1Frame7 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 6.538 + 0 + -0.089154 + + + + + ... + fuseprof_1_8 + + + 1 + 0.7262 + 0.7343 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body1Frame8 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 8.0576 + -0.0254 + -0.13716 + + + + + ... + fuseprof_1_9 + + + 1 + 0.4125 + 0.38227 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + Body1Frame1 + 0 + + + + ... + description + 0 + 0 + Body1Frame27 + 0 + + + + ... + description + 0 + 0 + Body1Frame2 + 0 + + + + ... + description + 0 + 0 + Body1Frame3 + 0 + + + + ... + description + 0 + 0 + Body1Frame4 + 0 + + + + ... + description + 0 + 0 + Body1Frame5 + 0 + + + + ... + description + 0 + 0 + Body1Frame6 + 0 + + + + ... + description + 0 + 0 + Body1Frame7 + 0 + + + + ... + description + 0 + 0 + Body1Frame8 + 0 + + + + + + ... + Body1Frame1elem1 + Body1Frame27elem1 + + + + ... + Body1Frame27elem1 + Body1Frame2elem1 + + + + ... + Body1Frame2elem1 + Body1Frame3elem1 + + + + ... + Body1Frame3elem1 + Body1Frame4elem1 + + + + ... + Body1Frame4elem1 + Body1Frame5elem1 + + + + ... + Body1Frame5elem1 + Body1Frame6elem1 + + + + ... + Body1Frame6elem1 + Body1Frame7elem1 + + + + ... + Body1Frame7elem1 + Body1Frame8elem1 + + + +
+ +Body2 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 4.1402 + 1.9558 + 0.04572 + + + +
+Body2Frame1 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + -0.00254 + + + + + ... + fuseprof_2_1 + + + 1 + 0.00127 + 0.00254 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body2Frame2 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.25171 + 0 + 0.0021791 + + + + + ... + fuseprof_2_2 + + + 1 + 0.10812 + 0.1683 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body2Frame3 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 1.2263 + 0 + 0.005969 + + + + + ... + fuseprof_2_3 + + + 1 + 0.20264 + 0.31966 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body2Frame4 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 5.9352 + 0 + 0.33617 + + + + + ... + fuseprof_2_4 + + + 1 + 0.1442 + 0.24574 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body2Frame5 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 6.5913 + 0 + 0.46647 + + + + + ... + fuseprof_2_5 + + + 1 + 0.13262 + 0.32144 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body2Frame6 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 7.9383 + 0 + 0.52629 + + + + + ... + fuseprof_2_6 + + + 1 + 0.10885 + 0.27407 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body2Frame7 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 8.398 + 0 + 0.53365 + + + + + ... + fuseprof_2_7 + + + 1 + 0.099125 + 0.17704 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body2Frame8 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 8.5707 + 0 + 0.58166 + + + + + ... + fuseprof_2_8 + + + 1 + 0.00127 + 0.00254 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + Body2Frame1 + 0 + + + + ... + description + 0 + 0 + Body2Frame2 + 0 + + + + ... + description + 0 + 0 + Body2Frame3 + 0 + + + + ... + description + 0 + 0 + Body2Frame4 + 0 + + + + ... + description + 0 + 0 + Body2Frame5 + 0 + + + + ... + description + 0 + 0 + Body2Frame6 + 0 + + + + ... + description + 0 + 0 + Body2Frame7 + 0 + + + + ... + description + 0 + 0 + Body2Frame8 + 0 + + + + + + ... + Body2Frame1elem1 + Body2Frame2elem1 + + + + ... + Body2Frame2elem1 + Body2Frame3elem1 + + + + ... + Body2Frame3elem1 + Body2Frame4elem1 + + + + ... + Body2Frame4elem1 + Body2Frame5elem1 + + + + ... + Body2Frame5elem1 + Body2Frame6elem1 + + + + ... + Body2Frame6elem1 + Body2Frame7elem1 + + + + ... + Body2Frame7elem1 + Body2Frame8elem1 + + + +
+ +Body3 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 4.1402 + -1.9558 + 0.04572 + + + +
+Body3Frame1 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + -0.00254 + + + + + ... + fuseprof_3_1 + + + 1 + 0.00127 + 0.00254 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body3Frame2 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.25171 + 0 + 0.004318 + + + + + ... + fuseprof_3_2 + + + 1 + 0.10812 + 0.17044 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body3Frame3 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 1.2263 + 0 + 0.005969 + + + + + ... + fuseprof_3_3 + + + 1 + 0.20264 + 0.31966 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body3Frame4 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 5.9352 + 0 + 0.33617 + + + + + ... + fuseprof_3_4 + + + 1 + 0.1442 + 0.24574 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body3Frame5 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 6.5913 + 0 + 0.46647 + + + + + ... + fuseprof_3_5 + + + 1 + 0.13262 + 0.32144 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body3Frame6 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 7.9383 + 0 + 0.52629 + + + + + ... + fuseprof_3_6 + + + 1 + 0.10885 + 0.27407 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body3Frame7 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 8.398 + 0 + 0.53365 + + + + + ... + fuseprof_3_7 + + + 1 + 0.099125 + 0.17704 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body3Frame8 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 8.5707 + 0 + 0.58166 + + + + + ... + fuseprof_3_8 + + + 1 + 0.00127 + 0.00254 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + Body3Frame1 + 0 + + + + ... + description + 0 + 0 + Body3Frame2 + 0 + + + + ... + description + 0 + 0 + Body3Frame3 + 0 + + + + ... + description + 0 + 0 + Body3Frame4 + 0 + + + + ... + description + 0 + 0 + Body3Frame5 + 0 + + + + ... + description + 0 + 0 + Body3Frame6 + 0 + + + + ... + description + 0 + 0 + Body3Frame7 + 0 + + + + ... + description + 0 + 0 + Body3Frame8 + 0 + + + + + + ... + Body3Frame1elem1 + Body3Frame2elem1 + + + + ... + Body3Frame2elem1 + Body3Frame3elem1 + + + + ... + Body3Frame3elem1 + Body3Frame4elem1 + + + + ... + Body3Frame4elem1 + Body3Frame5elem1 + + + + ... + Body3Frame5elem1 + Body3Frame6elem1 + + + + ... + Body3Frame6elem1 + Body3Frame7elem1 + + + + ... + Body3Frame7elem1 + Body3Frame8elem1 + + + +
+
+ + + Wing1 + Body1 + description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 2.0463 + 0 + 0 + + + +
+Wing1Section1 +description + + + 1 + 1 + 1 + + + -0 + 0 + -0.23351 + + + 0 + 0 + 0 + + + + + ... + foil_1_5 + + + + 5.2974 + 5.2974 + 5.2974 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Wing1Section5 +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 0 + 0.254 + 0 + + + + + ... + foil_1_4 + + + + 5.2974 + 5.2974 + 5.2974 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Wing1Section2 +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 1.1554 + 1.8412 + 0 + + + + + ... + foil_1_3 + + + + 3.6547 + 3.6547 + 3.6547 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Wing1Section3 +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 1.6456 + 4.0434 + 0 + + + + + ... + foil_1_2 + + + + 2.5885 + 2.5885 + 2.5885 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Wing1Section4 +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 2.4495 + 7.6545 + 0 + + + + + ... + foil_1_1 + + + + 1.174 + 1.174 + 1.174 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + Wing1Section4 + 0 + + + + ... + description + 0 + 0 + Wing1Section3 + 0 + + + + ... + description + 0 + 0 + Wing1Section2 + 0 + + + + ... + description + 0 + 0 + Wing1Section5 + 0 + + + + ... + description + 0 + 0 + Wing1Section1 + 0 + + + + + + ... + Wing1Section4elem1 + Wing1Section3elem1 + + + + ... + Wing1Section3elem1 + Wing1Section2elem1 + + + + ... + Wing1Section2elem1 + Wing1Section5elem1 + + + + ... + Wing1Section5elem1 + Wing1Section1elem1 + + + +
+ + Wing2 + Body1 + description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 10.8966 + 0 + 0.4572 + + + +
+Wing2Section2 +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 0 + 1.905 + 0 + + + + + ... + foil_2_1 + + + + 1.5354 + 1.5354 + 1.5354 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Wing2Section1 +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 0 + -1.905 + 0 + + + + + ... + foil_2_2 + + + + 1.5354 + 1.5354 + 1.5354 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + Wing2Section2 + 0 + + + + ... + description + 0 + 0 + Wing2Section1 + 0 + + + + + + ... + Wing2Section2elem1 + Wing2Section1elem1 + + + +
+ + Wing3 + Body1 + description + + + 1 + 1 + 1 + + + 90.0002 + 0 + -0 + + + 10.8712 + 1.9558 + 0.5588 + + + +
+Wing3Section1 +description + + + 1 + 1 + 1 + + + 3.5083e-15 + 0 + -0 + + + 0 + 0 + 0 + + + + + ... + foil_3_5 + + + + 1.8034 + 1.8034 + 1.8034 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Wing3Section2 +description + + + 1 + 1 + 1 + + + 3.5083e-14 + 0 + -0 + + + 0.1524 + 0.254 + 1.5553e-17 + + + + + ... + foil_3_4 + + + + 1.7526 + 1.7526 + 1.7526 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Wing3Section3 +description + + + 1 + 1 + 1 + + + 1.2424e-13 + 0 + -0 + + + 0.6096 + 0.90932 + 5.568e-17 + + + + + ... + foil_3_3 + + + + 1.2954 + 1.2954 + 1.2954 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Wing3Section4 +description + + + 1 + 1 + 1 + + + 1.6167e-13 + 0 + -0 + + + 0.97561 + 1.2403 + 7.5945e-17 + + + + + ... + foil_3_2 + + + + 0.83972 + 0.83972 + 0.83972 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Wing3Section5 +description + + + 1 + 1 + 1 + + + 1.8752e-13 + 0 + -0 + + + 1.27 + 1.4859 + 9.0985e-17 + + + + + ... + foil_3_1 + + + + 0.381 + 0.381 + 0.381 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + Wing3Section5 + 0 + + + + ... + description + 0 + 0 + Wing3Section4 + 0 + + + + ... + description + 0 + 0 + Wing3Section3 + 0 + + + + ... + description + 0 + 0 + Wing3Section2 + 0 + + + + ... + description + 0 + 0 + Wing3Section1 + 0 + + + + + + ... + Wing3Section5elem1 + Wing3Section4elem1 + + + + ... + Wing3Section4elem1 + Wing3Section3elem1 + + + + ... + Wing3Section3elem1 + Wing3Section2elem1 + + + + ... + Wing3Section2elem1 + Wing3Section1elem1 + + + +
+ + Wing4 + Body1 + description + + + 1 + 1 + 1 + + + 90.0002 + 0 + -0 + + + 10.8712 + -1.9558 + 0.5588 + + + +
+Wing4Section1 +description + + + 1 + 1 + 1 + + + 3.5083e-15 + 0 + -0 + + + 0 + 0 + 0 + + + + + ... + foil_4_5 + + + + 1.8034 + 1.8034 + 1.8034 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Wing4Section2 +description + + + 1 + 1 + 1 + + + 3.5083e-14 + 0 + -0 + + + 0.1524 + 0.254 + 1.5553e-17 + + + + + ... + foil_4_4 + + + + 1.7526 + 1.7526 + 1.7526 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Wing4Section3 +description + + + 1 + 1 + 1 + + + 1.2424e-13 + 0 + -0 + + + 0.6096 + 0.90932 + 5.568e-17 + + + + + ... + foil_4_3 + + + + 1.2954 + 1.2954 + 1.2954 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Wing4Section4 +description + + + 1 + 1 + 1 + + + 1.6167e-13 + 0 + -0 + + + 0.97561 + 1.2403 + 7.5945e-17 + + + + + ... + foil_4_2 + + + + 0.83972 + 0.83972 + 0.83972 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Wing4Section5 +description + + + 1 + 1 + 1 + + + 1.8752e-13 + 0 + -0 + + + 1.27 + 1.4859 + 9.0985e-17 + + + + + ... + foil_4_1 + + + + 0.381 + 0.381 + 0.381 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + Wing4Section5 + 0 + + + + ... + description + 0 + 0 + Wing4Section4 + 0 + + + + ... + description + 0 + 0 + Wing4Section3 + 0 + + + + ... + description + 0 + 0 + Wing4Section2 + 0 + + + + ... + description + 0 + 0 + Wing4Section1 + 0 + + + + + + ... + Wing4Section5elem1 + Wing4Section4elem1 + + + + ... + Wing4Section4elem1 + Wing4Section3elem1 + + + + ... + Wing4Section3elem1 + Wing4Section2elem1 + + + + ... + Wing4Section2elem1 + Wing4Section1elem1 + + + +
+
+ + + + aeromap_empty + Common default aeroMap + + ISA + + + 0.0 + 0.3 + 0.0 + 0.0 + + + + + + +
+
+ + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.707000 ;1.000000 ;0.707000 ;0.000000 ;-0.707000 ;-1.000000 ;-0.707000 ;0.000000 + -1.000000 ;-0.707000 ;0.000000 ;0.707000 ;1.000000 ;0.707000 ;0.000000 ;-0.707000 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.654440 ;1.000000 ;0.980320 ;0.604370 ;0.000000 ;-0.604370 ;-0.980320 ;-1.000000 ;-0.654440 ;0.000000 + -1.000000 ;-0.759190 ;-0.274810 ;0.332180 ;0.805030 ;1.000000 ;0.805030 ;0.332180 ;-0.274810 ;-0.759190 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.343900 ;0.685200 ;0.920500 ;1.000000 ;0.909200 ;0.685200 ;0.396700 ;0.000000 ;-0.396700 ;-0.685200 ;-0.909200 ;-1.000000 ;-0.920500 ;-0.685200 ;-0.343900 ;0.000000 + -1.000000 ;-0.954300 ;-0.746000 ;-0.465700 ;-0.026200 ;0.380900 ;0.686000 ;0.920500 ;1.000000 ;0.920500 ;0.686000 ;0.380900 ;-0.026200 ;-0.465700 ;-0.746000 ;-0.954300 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.529300 ;0.882300 ;1.000000 ;0.929900 ;0.650900 ;0.348700 ;0.000000 ;-0.348700 ;-0.650900 ;-0.929900 ;-1.000000 ;-0.882300 ;-0.529300 ;0.000000 + -1.000000 ;-0.892900 ;-0.606300 ;-0.159300 ;0.187500 ;0.614300 ;0.988900 ;1.000000 ;0.988900 ;0.614300 ;0.187500 ;-0.159300 ;-0.606300 ;-0.892900 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.545400 ;0.930200 ;1.000000 ;0.887400 ;0.572800 ;0.227100 ;0.000000 ;-0.227100 ;-0.572800 ;-0.887400 ;-1.000000 ;-0.930200 ;-0.545400 ;0.000000 + -1.000000 ;-0.881300 ;-0.566500 ;-0.295000 ;0.066600 ;0.560300 ;0.994800 ;1.000000 ;0.994800 ;0.560300 ;0.066600 ;-0.295000 ;-0.566500 ;-0.881300 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.441200 ;0.915400 ;1.000000 ;0.791100 ;0.542200 ;0.457800 ;0.254000 ;0.000000 ;-0.254000 ;-0.457800 ;-0.542200 ;-0.791100 ;-1.000000 ;-0.915400 ;-0.441200 ;0.000000 + -1.000000 ;-0.909100 ;-0.490400 ;-0.146800 ;0.193400 ;0.449100 ;0.692100 ;0.953800 ;1.000000 ;0.953800 ;0.692100 ;0.449100 ;0.193400 ;-0.146800 ;-0.490400 ;-0.909100 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.633900 ;1.000000 ;0.978900 ;0.937900 ;0.571500 ;0.000000 ;-0.571500 ;-0.937900 ;-0.978900 ;-1.000000 ;-0.633900 ;0.000000 + -1.000000 ;-0.799300 ;-0.315600 ;0.103000 ;0.434500 ;0.840300 ;1.000000 ;0.840300 ;0.434500 ;0.103000 ;-0.315600 ;-0.799300 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.633100 ;1.000000 ;0.599900 ;0.000000 ;-0.599900 ;-1.000000 ;-0.633100 ;0.000000 + -1.000000 ;-0.780000 ;0.114800 ;0.805600 ;1.000000 ;0.805600 ;0.114800 ;-0.780000 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.800500 ;1.000000 ;0.677300 ;0.000000 ;-0.677300 ;-1.000000 ;-0.800500 ;0.000000 + -1.000000 ;-0.606300 ;0.100000 ;0.787600 ;1.000000 ;0.787600 ;0.100000 ;-0.606300 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 + -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 + -1.000000 ;-0.974581 ;-0.899742 ;-0.779027 ;-0.618715 ;-0.426705 ;-0.212618 ;0.012710 ;0.238037 ;0.452124 ;0.644134 ;0.804446 ;0.925161 ;1.000000 ;0.925161 ;0.804446 ;0.644134 ;0.452124 ;0.238037 ;0.012710 ;-0.212618 ;-0.426705 ;-0.618715 ;-0.779027 ;-0.899742 ;-0.974581 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 + -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 + -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 + -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 + -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 + -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 + -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.222521 ;0.433884 ;0.623490 ;0.781831 ;0.900969 ;0.974928 ;1.000000 ;0.974928 ;0.900969 ;0.781831 ;0.623490 ;0.433884 ;0.222521 ;0.000000 ;-0.222521 ;-0.433884 ;-0.623490 ;-0.781831 ;-0.900969 ;-0.974928 ;-1.000000 ;-0.974928 ;-0.900969 ;-0.781831 ;-0.623490 ;-0.433884 ;-0.222521 ;0.000000 + 1.000000 ;0.974928 ;0.900969 ;0.781831 ;0.623490 ;0.433884 ;0.222521 ;0.000000 ;-0.222521 ;-0.433884 ;-0.623490 ;-0.781831 ;-0.900969 ;-0.974928 ;-1.000000 ;-0.974928 ;-0.900969 ;-0.781831 ;-0.623490 ;-0.433884 ;-0.222521 ;0.000000 ;0.222521 ;0.433884 ;0.623490 ;0.781831 ;0.900969 ;0.974928 ;1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 + -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 + -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 + -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 + -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 + -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 + -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 + -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 + + + + + + ... + ... + + 1.000000 ;0.933330 ;0.866670 ;0.800000 ;0.733330 ;0.666670 ;0.600000 ;0.533330 ;0.466670 ;0.400000 ;0.390210 ;0.361800 ;0.317560 ;0.261800 ;0.200000 ;0.138200 ;0.082440 ;0.038200 ;0.009790 ;0.000000 ;0.009790 ;0.038200 ;0.082440 ;0.138200 ;0.200000 ;0.261800 ;0.317560 ;0.361800 ;0.390210 ;0.400000 ;0.466670 ;0.533330 ;0.600000 ;0.666670 ;0.733330 ;0.800000 ;0.866670 ;0.933330 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;-0.008003 ;-0.015248 ;-0.021667 ;-0.027225 ;-0.031883 ;-0.035580 ;-0.038288 ;-0.039938 ;-0.040500 ;-0.040493 ;-0.040335 ;-0.039727 ;-0.038265 ;-0.035595 ;-0.031448 ;-0.025703 ;-0.018375 ;-0.009675 ;0.000000 ;0.010110 ;0.020010 ;0.029025 ;0.036593 ;0.042345 ;0.046192 ;0.048345 ;0.049253 ;0.049485 ;0.049500 ;0.048825 ;0.046837 ;0.043583 ;0.039105 ;0.033450 ;0.026670 ;0.018802 ;0.009893 ;0.000000 + + + + ... + ... + + 1.000000 ;0.933330 ;0.866670 ;0.800000 ;0.733330 ;0.666670 ;0.600000 ;0.533330 ;0.466670 ;0.400000 ;0.390210 ;0.361800 ;0.317560 ;0.261800 ;0.200000 ;0.138200 ;0.082440 ;0.038200 ;0.009790 ;0.000000 ;0.009790 ;0.038200 ;0.082440 ;0.138200 ;0.200000 ;0.261800 ;0.317560 ;0.361800 ;0.390210 ;0.400000 ;0.466670 ;0.533330 ;0.600000 ;0.666670 ;0.733330 ;0.800000 ;0.866670 ;0.933330 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;-0.010100 ;-0.019244 ;-0.027346 ;-0.034360 ;-0.040239 ;-0.044905 ;-0.048322 ;-0.050405 ;-0.051115 ;-0.051105 ;-0.050906 ;-0.050140 ;-0.048294 ;-0.044924 ;-0.039690 ;-0.032439 ;-0.023191 ;-0.012211 ;0.000000 ;0.012760 ;0.025254 ;0.036632 ;0.046183 ;0.053443 ;0.058299 ;0.061016 ;0.062161 ;0.062455 ;0.062473 ;0.061622 ;0.059113 ;0.055005 ;0.049354 ;0.042217 ;0.033660 ;0.023730 ;0.012485 ;0.000000 + + + + ... + ... + + 1.000000 ;0.933330 ;0.866670 ;0.800000 ;0.733330 ;0.666670 ;0.600000 ;0.533330 ;0.466670 ;0.400000 ;0.390210 ;0.361800 ;0.317560 ;0.261800 ;0.200000 ;0.138200 ;0.082440 ;0.038200 ;0.009790 ;0.000000 ;0.009790 ;0.038200 ;0.082440 ;0.138200 ;0.200000 ;0.261800 ;0.317560 ;0.361800 ;0.390210 ;0.400000 ;0.466670 ;0.533330 ;0.600000 ;0.666670 ;0.733330 ;0.800000 ;0.866670 ;0.933330 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;-0.011379 ;-0.021681 ;-0.030809 ;-0.038712 ;-0.045334 ;-0.050592 ;-0.054442 ;-0.056788 ;-0.057588 ;-0.057577 ;-0.057353 ;-0.056489 ;-0.054410 ;-0.050613 ;-0.044716 ;-0.036547 ;-0.026128 ;-0.013757 ;0.000000 ;0.014376 ;0.028453 ;0.041271 ;0.052032 ;0.060211 ;0.065682 ;0.068743 ;0.070033 ;0.070364 ;0.070385 ;0.069425 ;0.066599 ;0.061971 ;0.055604 ;0.047563 ;0.037923 ;0.026736 ;0.014066 ;0.000000 + + + + ... + ... + + 1.000000 ;0.992815 ;0.984341 ;0.973346 ;0.958722 ;0.939532 ;0.915058 ;0.884835 ;0.848670 ;0.806651 ;0.759145 ;0.706772 ;0.650380 ;0.591004 ;0.529811 ;0.468049 ;0.406987 ;0.347858 ;0.292025 ;0.241431 ;0.195471 ;0.154655 ;0.119288 ;0.089456 ;0.065008 ;0.045550 ;0.030439 ;0.018790 ;0.009447 ;0.000000 ;0.004776 ;0.012217 ;0.022351 ;0.036229 ;0.054835 ;0.078971 ;0.109196 ;0.145776 ;0.188656 ;0.237455 ;0.291475 ;0.348443 ;0.408255 ;0.469936 ;0.532204 ;0.593754 ;0.653318 ;0.709729 ;0.761969 ;0.809221 ;0.850900 ;0.886681 ;0.916515 ;0.940625 ;0.959499 ;0.973864 ;0.984652 ;0.992961 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;-0.000880 ;-0.001908 ;-0.003228 ;-0.004958 ;-0.007188 ;-0.009968 ;-0.013308 ;-0.017180 ;-0.021518 ;-0.026225 ;-0.031172 ;-0.036195 ;-0.041098 ;-0.045643 ;-0.049569 ;-0.052598 ;-0.054475 ;-0.055006 ;-0.054675 ;-0.053622 ;-0.051679 ;-0.048791 ;-0.045011 ;-0.040481 ;-0.035389 ;-0.029893 ;-0.023978 ;-0.017005 ;0.000000 ;0.018879 ;0.028005 ;0.036622 ;0.045550 ;0.054865 ;0.064316 ;0.073455 ;0.081708 ;0.088444 ;0.093045 ;0.094976 ;0.094286 ;0.091653 ;0.087237 ;0.081287 ;0.074119 ;0.066089 ;0.057566 ;0.048910 ;0.040457 ;0.032505 ;0.025299 ;0.019013 ;0.013743 ;0.009495 ;0.006188 ;0.003661 ;0.001688 ;0.000000 + + + + ... + ... + + 1.000000 ;0.933330 ;0.866670 ;0.800000 ;0.733330 ;0.666670 ;0.600000 ;0.533330 ;0.466670 ;0.400000 ;0.390210 ;0.361800 ;0.317560 ;0.261800 ;0.200000 ;0.138200 ;0.082440 ;0.038200 ;0.009790 ;0.000000 ;0.009790 ;0.038200 ;0.082440 ;0.138200 ;0.200000 ;0.261800 ;0.317560 ;0.361800 ;0.390210 ;0.400000 ;0.466670 ;0.533330 ;0.600000 ;0.666670 ;0.733330 ;0.800000 ;0.866670 ;0.933330 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.000000 ;-0.012448 ;-0.023718 ;-0.033705 ;-0.042350 ;-0.049595 ;-0.055347 ;-0.059558 ;-0.062125 ;-0.063000 ;-0.062988 ;-0.062743 ;-0.061798 ;-0.059523 ;-0.055370 ;-0.048918 ;-0.039982 ;-0.028583 ;-0.015050 ;0.000000 ;0.015727 ;0.031127 ;0.045150 ;0.056922 ;0.065870 ;0.071855 ;0.075203 ;0.076615 ;0.076977 ;0.077000 ;0.075950 ;0.072858 ;0.067795 ;0.060830 ;0.052033 ;0.041487 ;0.029248 ;0.015388 ;0.000000 + + + + ... + ... + + 1.000000 ;0.998973 ;0.995895 ;0.990780 ;0.983647 ;0.974528 ;0.963458 ;0.950484 ;0.935659 ;0.919044 ;0.900707 ;0.880723 ;0.859175 ;0.836150 ;0.811745 ;0.786058 ;0.759196 ;0.731269 ;0.702392 ;0.672683 ;0.642264 ;0.611260 ;0.579800 ;0.548012 ;0.516026 ;0.483974 ;0.451988 ;0.420200 ;0.388740 ;0.357736 ;0.327317 ;0.297608 ;0.268731 ;0.240804 ;0.213942 ;0.188255 ;0.163850 ;0.140825 ;0.119277 ;0.099293 ;0.080956 ;0.064341 ;0.049516 ;0.036542 ;0.025472 ;0.016353 ;0.009220 ;0.004105 ;0.001027 ;0.000000 ;0.001027 ;0.004105 ;0.009220 ;0.016353 ;0.025472 ;0.036542 ;0.049516 ;0.064341 ;0.080956 ;0.099293 ;0.119277 ;0.140825 ;0.163850 ;0.188255 ;0.213942 ;0.240804 ;0.268731 ;0.297608 ;0.327317 ;0.357736 ;0.388740 ;0.420200 ;0.451988 ;0.483974 ;0.516026 ;0.548012 ;0.579800 ;0.611260 ;0.642264 ;0.672683 ;0.702392 ;0.731269 ;0.759196 ;0.786058 ;0.811745 ;0.836150 ;0.859175 ;0.880723 ;0.900707 ;0.919044 ;0.935659 ;0.950484 ;0.963458 ;0.974528 ;0.983647 ;0.990780 ;0.995895 ;0.998973 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.001260 ;-0.001404 ;-0.001835 ;-0.002546 ;-0.003531 ;-0.004779 ;-0.006274 ;-0.008002 ;-0.009943 ;-0.012079 ;-0.014389 ;-0.016851 ;-0.019442 ;-0.022140 ;-0.024921 ;-0.027762 ;-0.030640 ;-0.033529 ;-0.036406 ;-0.039244 ;-0.042017 ;-0.044698 ;-0.047259 ;-0.049670 ;-0.051901 ;-0.053923 ;-0.055705 ;-0.057217 ;-0.058430 ;-0.059317 ;-0.059853 ;-0.060016 ;-0.059788 ;-0.059156 ;-0.058110 ;-0.056645 ;-0.054764 ;-0.052472 ;-0.049782 ;-0.046708 ;-0.043271 ;-0.039493 ;-0.035400 ;-0.031017 ;-0.026371 ;-0.021488 ;-0.016391 ;-0.011100 ;-0.005632 ;0.000000 ;0.005632 ;0.011100 ;0.016391 ;0.021488 ;0.026371 ;0.031017 ;0.035400 ;0.039493 ;0.043271 ;0.046708 ;0.049782 ;0.052472 ;0.054764 ;0.056645 ;0.058110 ;0.059156 ;0.059788 ;0.060016 ;0.059853 ;0.059317 ;0.058430 ;0.057217 ;0.055705 ;0.053923 ;0.051901 ;0.049670 ;0.047259 ;0.044698 ;0.042017 ;0.039244 ;0.036406 ;0.033529 ;0.030640 ;0.027762 ;0.024921 ;0.022140 ;0.019442 ;0.016851 ;0.014389 ;0.012079 ;0.009943 ;0.008002 ;0.006274 ;0.004779 ;0.003531 ;0.002546 ;0.001835 ;0.001404 ;0.001260 + + + + ... + ... + + 1.000000 ;0.998973 ;0.995895 ;0.990780 ;0.983647 ;0.974528 ;0.963458 ;0.950484 ;0.935659 ;0.919044 ;0.900707 ;0.880723 ;0.859175 ;0.836150 ;0.811745 ;0.786058 ;0.759196 ;0.731269 ;0.702392 ;0.672683 ;0.642264 ;0.611260 ;0.579800 ;0.548012 ;0.516026 ;0.483974 ;0.451988 ;0.420200 ;0.388740 ;0.357736 ;0.327317 ;0.297608 ;0.268731 ;0.240804 ;0.213942 ;0.188255 ;0.163850 ;0.140825 ;0.119277 ;0.099293 ;0.080956 ;0.064341 ;0.049516 ;0.036542 ;0.025472 ;0.016353 ;0.009220 ;0.004105 ;0.001027 ;0.000000 ;0.001027 ;0.004105 ;0.009220 ;0.016353 ;0.025472 ;0.036542 ;0.049516 ;0.064341 ;0.080956 ;0.099293 ;0.119277 ;0.140825 ;0.163850 ;0.188255 ;0.213942 ;0.240804 ;0.268731 ;0.297608 ;0.327317 ;0.357736 ;0.388740 ;0.420200 ;0.451988 ;0.483974 ;0.516026 ;0.548012 ;0.579800 ;0.611260 ;0.642264 ;0.672683 ;0.702392 ;0.731269 ;0.759196 ;0.786058 ;0.811745 ;0.836150 ;0.859175 ;0.880723 ;0.900707 ;0.919044 ;0.935659 ;0.950484 ;0.963458 ;0.974528 ;0.983647 ;0.990780 ;0.995895 ;0.998973 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.001260 ;-0.001404 ;-0.001835 ;-0.002546 ;-0.003531 ;-0.004779 ;-0.006274 ;-0.008002 ;-0.009943 ;-0.012079 ;-0.014389 ;-0.016851 ;-0.019442 ;-0.022140 ;-0.024921 ;-0.027762 ;-0.030640 ;-0.033529 ;-0.036406 ;-0.039244 ;-0.042017 ;-0.044698 ;-0.047259 ;-0.049670 ;-0.051901 ;-0.053923 ;-0.055705 ;-0.057217 ;-0.058430 ;-0.059317 ;-0.059853 ;-0.060016 ;-0.059788 ;-0.059156 ;-0.058110 ;-0.056645 ;-0.054764 ;-0.052472 ;-0.049782 ;-0.046708 ;-0.043271 ;-0.039493 ;-0.035400 ;-0.031017 ;-0.026371 ;-0.021488 ;-0.016391 ;-0.011100 ;-0.005632 ;0.000000 ;0.005632 ;0.011100 ;0.016391 ;0.021488 ;0.026371 ;0.031017 ;0.035400 ;0.039493 ;0.043271 ;0.046708 ;0.049782 ;0.052472 ;0.054764 ;0.056645 ;0.058110 ;0.059156 ;0.059788 ;0.060016 ;0.059853 ;0.059317 ;0.058430 ;0.057217 ;0.055705 ;0.053923 ;0.051901 ;0.049670 ;0.047259 ;0.044698 ;0.042017 ;0.039244 ;0.036406 ;0.033529 ;0.030640 ;0.027762 ;0.024921 ;0.022140 ;0.019442 ;0.016851 ;0.014389 ;0.012079 ;0.009943 ;0.008002 ;0.006274 ;0.004779 ;0.003531 ;0.002546 ;0.001835 ;0.001404 ;0.001260 + + + + ... + ... + + 1.000000 ;0.998973 ;0.995895 ;0.990780 ;0.983647 ;0.974528 ;0.963458 ;0.950484 ;0.935659 ;0.919044 ;0.900707 ;0.880723 ;0.859175 ;0.836150 ;0.811745 ;0.786058 ;0.759196 ;0.731269 ;0.702392 ;0.672683 ;0.642264 ;0.611260 ;0.579800 ;0.548012 ;0.516026 ;0.483974 ;0.451988 ;0.420200 ;0.388740 ;0.357736 ;0.327317 ;0.297608 ;0.268731 ;0.240804 ;0.213942 ;0.188255 ;0.163850 ;0.140825 ;0.119277 ;0.099293 ;0.080956 ;0.064341 ;0.049516 ;0.036542 ;0.025472 ;0.016353 ;0.009220 ;0.004105 ;0.001027 ;0.000000 ;0.001027 ;0.004105 ;0.009220 ;0.016353 ;0.025472 ;0.036542 ;0.049516 ;0.064341 ;0.080956 ;0.099293 ;0.119277 ;0.140825 ;0.163850 ;0.188255 ;0.213942 ;0.240804 ;0.268731 ;0.297608 ;0.327317 ;0.357736 ;0.388740 ;0.420200 ;0.451988 ;0.483974 ;0.516026 ;0.548012 ;0.579800 ;0.611260 ;0.642264 ;0.672683 ;0.702392 ;0.731269 ;0.759196 ;0.786058 ;0.811745 ;0.836150 ;0.859175 ;0.880723 ;0.900707 ;0.919044 ;0.935659 ;0.950484 ;0.963458 ;0.974528 ;0.983647 ;0.990780 ;0.995895 ;0.998973 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.001260 ;-0.001404 ;-0.001835 ;-0.002546 ;-0.003531 ;-0.004779 ;-0.006274 ;-0.008002 ;-0.009943 ;-0.012079 ;-0.014389 ;-0.016851 ;-0.019442 ;-0.022140 ;-0.024921 ;-0.027762 ;-0.030640 ;-0.033529 ;-0.036406 ;-0.039244 ;-0.042017 ;-0.044698 ;-0.047259 ;-0.049670 ;-0.051901 ;-0.053923 ;-0.055705 ;-0.057217 ;-0.058430 ;-0.059317 ;-0.059853 ;-0.060016 ;-0.059788 ;-0.059156 ;-0.058110 ;-0.056645 ;-0.054764 ;-0.052472 ;-0.049782 ;-0.046708 ;-0.043271 ;-0.039493 ;-0.035400 ;-0.031017 ;-0.026371 ;-0.021488 ;-0.016391 ;-0.011100 ;-0.005632 ;0.000000 ;0.005632 ;0.011100 ;0.016391 ;0.021488 ;0.026371 ;0.031017 ;0.035400 ;0.039493 ;0.043271 ;0.046708 ;0.049782 ;0.052472 ;0.054764 ;0.056645 ;0.058110 ;0.059156 ;0.059788 ;0.060016 ;0.059853 ;0.059317 ;0.058430 ;0.057217 ;0.055705 ;0.053923 ;0.051901 ;0.049670 ;0.047259 ;0.044698 ;0.042017 ;0.039244 ;0.036406 ;0.033529 ;0.030640 ;0.027762 ;0.024921 ;0.022140 ;0.019442 ;0.016851 ;0.014389 ;0.012079 ;0.009943 ;0.008002 ;0.006274 ;0.004779 ;0.003531 ;0.002546 ;0.001835 ;0.001404 ;0.001260 + + + + ... + ... + + 1.000000 ;0.998973 ;0.995895 ;0.990780 ;0.983647 ;0.974528 ;0.963458 ;0.950484 ;0.935659 ;0.919044 ;0.900707 ;0.880723 ;0.859175 ;0.836150 ;0.811745 ;0.786058 ;0.759196 ;0.731269 ;0.702392 ;0.672683 ;0.642264 ;0.611260 ;0.579800 ;0.548012 ;0.516026 ;0.483974 ;0.451988 ;0.420200 ;0.388740 ;0.357736 ;0.327317 ;0.297608 ;0.268731 ;0.240804 ;0.213942 ;0.188255 ;0.163850 ;0.140825 ;0.119277 ;0.099293 ;0.080956 ;0.064341 ;0.049516 ;0.036542 ;0.025472 ;0.016353 ;0.009220 ;0.004105 ;0.001027 ;0.000000 ;0.001027 ;0.004105 ;0.009220 ;0.016353 ;0.025472 ;0.036542 ;0.049516 ;0.064341 ;0.080956 ;0.099293 ;0.119277 ;0.140825 ;0.163850 ;0.188255 ;0.213942 ;0.240804 ;0.268731 ;0.297608 ;0.327317 ;0.357736 ;0.388740 ;0.420200 ;0.451988 ;0.483974 ;0.516026 ;0.548012 ;0.579800 ;0.611260 ;0.642264 ;0.672683 ;0.702392 ;0.731269 ;0.759196 ;0.786058 ;0.811745 ;0.836150 ;0.859175 ;0.880723 ;0.900707 ;0.919044 ;0.935659 ;0.950484 ;0.963458 ;0.974528 ;0.983647 ;0.990780 ;0.995895 ;0.998973 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.001260 ;-0.001404 ;-0.001835 ;-0.002546 ;-0.003531 ;-0.004779 ;-0.006274 ;-0.008002 ;-0.009943 ;-0.012079 ;-0.014389 ;-0.016851 ;-0.019442 ;-0.022140 ;-0.024921 ;-0.027762 ;-0.030640 ;-0.033529 ;-0.036406 ;-0.039244 ;-0.042017 ;-0.044698 ;-0.047259 ;-0.049670 ;-0.051901 ;-0.053923 ;-0.055705 ;-0.057217 ;-0.058430 ;-0.059317 ;-0.059853 ;-0.060016 ;-0.059788 ;-0.059156 ;-0.058110 ;-0.056645 ;-0.054764 ;-0.052472 ;-0.049782 ;-0.046708 ;-0.043271 ;-0.039493 ;-0.035400 ;-0.031017 ;-0.026371 ;-0.021488 ;-0.016391 ;-0.011100 ;-0.005632 ;0.000000 ;0.005632 ;0.011100 ;0.016391 ;0.021488 ;0.026371 ;0.031017 ;0.035400 ;0.039493 ;0.043271 ;0.046708 ;0.049782 ;0.052472 ;0.054764 ;0.056645 ;0.058110 ;0.059156 ;0.059788 ;0.060016 ;0.059853 ;0.059317 ;0.058430 ;0.057217 ;0.055705 ;0.053923 ;0.051901 ;0.049670 ;0.047259 ;0.044698 ;0.042017 ;0.039244 ;0.036406 ;0.033529 ;0.030640 ;0.027762 ;0.024921 ;0.022140 ;0.019442 ;0.016851 ;0.014389 ;0.012079 ;0.009943 ;0.008002 ;0.006274 ;0.004779 ;0.003531 ;0.002546 ;0.001835 ;0.001404 ;0.001260 + + + + ... + ... + + 1.000000 ;0.998973 ;0.995895 ;0.990780 ;0.983647 ;0.974528 ;0.963458 ;0.950484 ;0.935659 ;0.919044 ;0.900707 ;0.880723 ;0.859175 ;0.836150 ;0.811745 ;0.786058 ;0.759196 ;0.731269 ;0.702392 ;0.672683 ;0.642264 ;0.611260 ;0.579800 ;0.548012 ;0.516026 ;0.483974 ;0.451988 ;0.420200 ;0.388740 ;0.357736 ;0.327317 ;0.297608 ;0.268731 ;0.240804 ;0.213942 ;0.188255 ;0.163850 ;0.140825 ;0.119277 ;0.099293 ;0.080956 ;0.064341 ;0.049516 ;0.036542 ;0.025472 ;0.016353 ;0.009220 ;0.004105 ;0.001027 ;0.000000 ;0.001027 ;0.004105 ;0.009220 ;0.016353 ;0.025472 ;0.036542 ;0.049516 ;0.064341 ;0.080956 ;0.099293 ;0.119277 ;0.140825 ;0.163850 ;0.188255 ;0.213942 ;0.240804 ;0.268731 ;0.297608 ;0.327317 ;0.357736 ;0.388740 ;0.420200 ;0.451988 ;0.483974 ;0.516026 ;0.548012 ;0.579800 ;0.611260 ;0.642264 ;0.672683 ;0.702392 ;0.731269 ;0.759196 ;0.786058 ;0.811745 ;0.836150 ;0.859175 ;0.880723 ;0.900707 ;0.919044 ;0.935659 ;0.950484 ;0.963458 ;0.974528 ;0.983647 ;0.990780 ;0.995895 ;0.998973 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.001260 ;-0.001404 ;-0.001835 ;-0.002546 ;-0.003531 ;-0.004779 ;-0.006274 ;-0.008002 ;-0.009943 ;-0.012079 ;-0.014389 ;-0.016851 ;-0.019442 ;-0.022140 ;-0.024921 ;-0.027762 ;-0.030640 ;-0.033529 ;-0.036406 ;-0.039244 ;-0.042017 ;-0.044698 ;-0.047259 ;-0.049670 ;-0.051901 ;-0.053923 ;-0.055705 ;-0.057217 ;-0.058430 ;-0.059317 ;-0.059853 ;-0.060016 ;-0.059788 ;-0.059156 ;-0.058110 ;-0.056645 ;-0.054764 ;-0.052472 ;-0.049782 ;-0.046708 ;-0.043271 ;-0.039493 ;-0.035400 ;-0.031017 ;-0.026371 ;-0.021488 ;-0.016391 ;-0.011100 ;-0.005632 ;0.000000 ;0.005632 ;0.011100 ;0.016391 ;0.021488 ;0.026371 ;0.031017 ;0.035400 ;0.039493 ;0.043271 ;0.046708 ;0.049782 ;0.052472 ;0.054764 ;0.056645 ;0.058110 ;0.059156 ;0.059788 ;0.060016 ;0.059853 ;0.059317 ;0.058430 ;0.057217 ;0.055705 ;0.053923 ;0.051901 ;0.049670 ;0.047259 ;0.044698 ;0.042017 ;0.039244 ;0.036406 ;0.033529 ;0.030640 ;0.027762 ;0.024921 ;0.022140 ;0.019442 ;0.016851 ;0.014389 ;0.012079 ;0.009943 ;0.008002 ;0.006274 ;0.004779 ;0.003531 ;0.002546 ;0.001835 ;0.001404 ;0.001260 + + + + ... + ... + + 1.000000 ;0.998973 ;0.995895 ;0.990780 ;0.983647 ;0.974528 ;0.963458 ;0.950484 ;0.935659 ;0.919044 ;0.900707 ;0.880723 ;0.859175 ;0.836150 ;0.811745 ;0.786058 ;0.759196 ;0.731269 ;0.702392 ;0.672683 ;0.642264 ;0.611260 ;0.579800 ;0.548012 ;0.516026 ;0.483974 ;0.451988 ;0.420200 ;0.388740 ;0.357736 ;0.327317 ;0.297608 ;0.268731 ;0.240804 ;0.213942 ;0.188255 ;0.163850 ;0.140825 ;0.119277 ;0.099293 ;0.080956 ;0.064341 ;0.049516 ;0.036542 ;0.025472 ;0.016353 ;0.009220 ;0.004105 ;0.001027 ;0.000000 ;0.001027 ;0.004105 ;0.009220 ;0.016353 ;0.025472 ;0.036542 ;0.049516 ;0.064341 ;0.080956 ;0.099293 ;0.119277 ;0.140825 ;0.163850 ;0.188255 ;0.213942 ;0.240804 ;0.268731 ;0.297608 ;0.327317 ;0.357736 ;0.388740 ;0.420200 ;0.451988 ;0.483974 ;0.516026 ;0.548012 ;0.579800 ;0.611260 ;0.642264 ;0.672683 ;0.702392 ;0.731269 ;0.759196 ;0.786058 ;0.811745 ;0.836150 ;0.859175 ;0.880723 ;0.900707 ;0.919044 ;0.935659 ;0.950484 ;0.963458 ;0.974528 ;0.983647 ;0.990780 ;0.995895 ;0.998973 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.001260 ;-0.001404 ;-0.001835 ;-0.002546 ;-0.003531 ;-0.004779 ;-0.006274 ;-0.008002 ;-0.009943 ;-0.012079 ;-0.014389 ;-0.016851 ;-0.019442 ;-0.022140 ;-0.024921 ;-0.027762 ;-0.030640 ;-0.033529 ;-0.036406 ;-0.039244 ;-0.042017 ;-0.044698 ;-0.047259 ;-0.049670 ;-0.051901 ;-0.053923 ;-0.055705 ;-0.057217 ;-0.058430 ;-0.059317 ;-0.059853 ;-0.060016 ;-0.059788 ;-0.059156 ;-0.058110 ;-0.056645 ;-0.054764 ;-0.052472 ;-0.049782 ;-0.046708 ;-0.043271 ;-0.039493 ;-0.035400 ;-0.031017 ;-0.026371 ;-0.021488 ;-0.016391 ;-0.011100 ;-0.005632 ;0.000000 ;0.005632 ;0.011100 ;0.016391 ;0.021488 ;0.026371 ;0.031017 ;0.035400 ;0.039493 ;0.043271 ;0.046708 ;0.049782 ;0.052472 ;0.054764 ;0.056645 ;0.058110 ;0.059156 ;0.059788 ;0.060016 ;0.059853 ;0.059317 ;0.058430 ;0.057217 ;0.055705 ;0.053923 ;0.051901 ;0.049670 ;0.047259 ;0.044698 ;0.042017 ;0.039244 ;0.036406 ;0.033529 ;0.030640 ;0.027762 ;0.024921 ;0.022140 ;0.019442 ;0.016851 ;0.014389 ;0.012079 ;0.009943 ;0.008002 ;0.006274 ;0.004779 ;0.003531 ;0.002546 ;0.001835 ;0.001404 ;0.001260 + + + + ... + ... + + 1.000000 ;0.998973 ;0.995895 ;0.990780 ;0.983647 ;0.974528 ;0.963458 ;0.950484 ;0.935659 ;0.919044 ;0.900707 ;0.880723 ;0.859175 ;0.836150 ;0.811745 ;0.786058 ;0.759196 ;0.731269 ;0.702392 ;0.672683 ;0.642264 ;0.611260 ;0.579800 ;0.548012 ;0.516026 ;0.483974 ;0.451988 ;0.420200 ;0.388740 ;0.357736 ;0.327317 ;0.297608 ;0.268731 ;0.240804 ;0.213942 ;0.188255 ;0.163850 ;0.140825 ;0.119277 ;0.099293 ;0.080956 ;0.064341 ;0.049516 ;0.036542 ;0.025472 ;0.016353 ;0.009220 ;0.004105 ;0.001027 ;0.000000 ;0.001027 ;0.004105 ;0.009220 ;0.016353 ;0.025472 ;0.036542 ;0.049516 ;0.064341 ;0.080956 ;0.099293 ;0.119277 ;0.140825 ;0.163850 ;0.188255 ;0.213942 ;0.240804 ;0.268731 ;0.297608 ;0.327317 ;0.357736 ;0.388740 ;0.420200 ;0.451988 ;0.483974 ;0.516026 ;0.548012 ;0.579800 ;0.611260 ;0.642264 ;0.672683 ;0.702392 ;0.731269 ;0.759196 ;0.786058 ;0.811745 ;0.836150 ;0.859175 ;0.880723 ;0.900707 ;0.919044 ;0.935659 ;0.950484 ;0.963458 ;0.974528 ;0.983647 ;0.990780 ;0.995895 ;0.998973 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.001260 ;-0.001404 ;-0.001835 ;-0.002546 ;-0.003531 ;-0.004779 ;-0.006274 ;-0.008002 ;-0.009943 ;-0.012079 ;-0.014389 ;-0.016851 ;-0.019442 ;-0.022140 ;-0.024921 ;-0.027762 ;-0.030640 ;-0.033529 ;-0.036406 ;-0.039244 ;-0.042017 ;-0.044698 ;-0.047259 ;-0.049670 ;-0.051901 ;-0.053923 ;-0.055705 ;-0.057217 ;-0.058430 ;-0.059317 ;-0.059853 ;-0.060016 ;-0.059788 ;-0.059156 ;-0.058110 ;-0.056645 ;-0.054764 ;-0.052472 ;-0.049782 ;-0.046708 ;-0.043271 ;-0.039493 ;-0.035400 ;-0.031017 ;-0.026371 ;-0.021488 ;-0.016391 ;-0.011100 ;-0.005632 ;0.000000 ;0.005632 ;0.011100 ;0.016391 ;0.021488 ;0.026371 ;0.031017 ;0.035400 ;0.039493 ;0.043271 ;0.046708 ;0.049782 ;0.052472 ;0.054764 ;0.056645 ;0.058110 ;0.059156 ;0.059788 ;0.060016 ;0.059853 ;0.059317 ;0.058430 ;0.057217 ;0.055705 ;0.053923 ;0.051901 ;0.049670 ;0.047259 ;0.044698 ;0.042017 ;0.039244 ;0.036406 ;0.033529 ;0.030640 ;0.027762 ;0.024921 ;0.022140 ;0.019442 ;0.016851 ;0.014389 ;0.012079 ;0.009943 ;0.008002 ;0.006274 ;0.004779 ;0.003531 ;0.002546 ;0.001835 ;0.001404 ;0.001260 + + + + ... + ... + + 1.000000 ;0.998973 ;0.995895 ;0.990780 ;0.983647 ;0.974528 ;0.963458 ;0.950484 ;0.935659 ;0.919044 ;0.900707 ;0.880723 ;0.859175 ;0.836150 ;0.811745 ;0.786058 ;0.759196 ;0.731269 ;0.702392 ;0.672683 ;0.642264 ;0.611260 ;0.579800 ;0.548012 ;0.516026 ;0.483974 ;0.451988 ;0.420200 ;0.388740 ;0.357736 ;0.327317 ;0.297608 ;0.268731 ;0.240804 ;0.213942 ;0.188255 ;0.163850 ;0.140825 ;0.119277 ;0.099293 ;0.080956 ;0.064341 ;0.049516 ;0.036542 ;0.025472 ;0.016353 ;0.009220 ;0.004105 ;0.001027 ;0.000000 ;0.001027 ;0.004105 ;0.009220 ;0.016353 ;0.025472 ;0.036542 ;0.049516 ;0.064341 ;0.080956 ;0.099293 ;0.119277 ;0.140825 ;0.163850 ;0.188255 ;0.213942 ;0.240804 ;0.268731 ;0.297608 ;0.327317 ;0.357736 ;0.388740 ;0.420200 ;0.451988 ;0.483974 ;0.516026 ;0.548012 ;0.579800 ;0.611260 ;0.642264 ;0.672683 ;0.702392 ;0.731269 ;0.759196 ;0.786058 ;0.811745 ;0.836150 ;0.859175 ;0.880723 ;0.900707 ;0.919044 ;0.935659 ;0.950484 ;0.963458 ;0.974528 ;0.983647 ;0.990780 ;0.995895 ;0.998973 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.001260 ;-0.001404 ;-0.001835 ;-0.002546 ;-0.003531 ;-0.004779 ;-0.006274 ;-0.008002 ;-0.009943 ;-0.012079 ;-0.014389 ;-0.016851 ;-0.019442 ;-0.022140 ;-0.024921 ;-0.027762 ;-0.030640 ;-0.033529 ;-0.036406 ;-0.039244 ;-0.042017 ;-0.044698 ;-0.047259 ;-0.049670 ;-0.051901 ;-0.053923 ;-0.055705 ;-0.057217 ;-0.058430 ;-0.059317 ;-0.059853 ;-0.060016 ;-0.059788 ;-0.059156 ;-0.058110 ;-0.056645 ;-0.054764 ;-0.052472 ;-0.049782 ;-0.046708 ;-0.043271 ;-0.039493 ;-0.035400 ;-0.031017 ;-0.026371 ;-0.021488 ;-0.016391 ;-0.011100 ;-0.005632 ;0.000000 ;0.005632 ;0.011100 ;0.016391 ;0.021488 ;0.026371 ;0.031017 ;0.035400 ;0.039493 ;0.043271 ;0.046708 ;0.049782 ;0.052472 ;0.054764 ;0.056645 ;0.058110 ;0.059156 ;0.059788 ;0.060016 ;0.059853 ;0.059317 ;0.058430 ;0.057217 ;0.055705 ;0.053923 ;0.051901 ;0.049670 ;0.047259 ;0.044698 ;0.042017 ;0.039244 ;0.036406 ;0.033529 ;0.030640 ;0.027762 ;0.024921 ;0.022140 ;0.019442 ;0.016851 ;0.014389 ;0.012079 ;0.009943 ;0.008002 ;0.006274 ;0.004779 ;0.003531 ;0.002546 ;0.001835 ;0.001404 ;0.001260 + + + + ... + ... + + 1.000000 ;0.998973 ;0.995895 ;0.990780 ;0.983647 ;0.974528 ;0.963458 ;0.950484 ;0.935659 ;0.919044 ;0.900707 ;0.880723 ;0.859175 ;0.836150 ;0.811745 ;0.786058 ;0.759196 ;0.731269 ;0.702392 ;0.672683 ;0.642264 ;0.611260 ;0.579800 ;0.548012 ;0.516026 ;0.483974 ;0.451988 ;0.420200 ;0.388740 ;0.357736 ;0.327317 ;0.297608 ;0.268731 ;0.240804 ;0.213942 ;0.188255 ;0.163850 ;0.140825 ;0.119277 ;0.099293 ;0.080956 ;0.064341 ;0.049516 ;0.036542 ;0.025472 ;0.016353 ;0.009220 ;0.004105 ;0.001027 ;0.000000 ;0.001027 ;0.004105 ;0.009220 ;0.016353 ;0.025472 ;0.036542 ;0.049516 ;0.064341 ;0.080956 ;0.099293 ;0.119277 ;0.140825 ;0.163850 ;0.188255 ;0.213942 ;0.240804 ;0.268731 ;0.297608 ;0.327317 ;0.357736 ;0.388740 ;0.420200 ;0.451988 ;0.483974 ;0.516026 ;0.548012 ;0.579800 ;0.611260 ;0.642264 ;0.672683 ;0.702392 ;0.731269 ;0.759196 ;0.786058 ;0.811745 ;0.836150 ;0.859175 ;0.880723 ;0.900707 ;0.919044 ;0.935659 ;0.950484 ;0.963458 ;0.974528 ;0.983647 ;0.990780 ;0.995895 ;0.998973 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.001260 ;-0.001404 ;-0.001835 ;-0.002546 ;-0.003531 ;-0.004779 ;-0.006274 ;-0.008002 ;-0.009943 ;-0.012079 ;-0.014389 ;-0.016851 ;-0.019442 ;-0.022140 ;-0.024921 ;-0.027762 ;-0.030640 ;-0.033529 ;-0.036406 ;-0.039244 ;-0.042017 ;-0.044698 ;-0.047259 ;-0.049670 ;-0.051901 ;-0.053923 ;-0.055705 ;-0.057217 ;-0.058430 ;-0.059317 ;-0.059853 ;-0.060016 ;-0.059788 ;-0.059156 ;-0.058110 ;-0.056645 ;-0.054764 ;-0.052472 ;-0.049782 ;-0.046708 ;-0.043271 ;-0.039493 ;-0.035400 ;-0.031017 ;-0.026371 ;-0.021488 ;-0.016391 ;-0.011100 ;-0.005632 ;0.000000 ;0.005632 ;0.011100 ;0.016391 ;0.021488 ;0.026371 ;0.031017 ;0.035400 ;0.039493 ;0.043271 ;0.046708 ;0.049782 ;0.052472 ;0.054764 ;0.056645 ;0.058110 ;0.059156 ;0.059788 ;0.060016 ;0.059853 ;0.059317 ;0.058430 ;0.057217 ;0.055705 ;0.053923 ;0.051901 ;0.049670 ;0.047259 ;0.044698 ;0.042017 ;0.039244 ;0.036406 ;0.033529 ;0.030640 ;0.027762 ;0.024921 ;0.022140 ;0.019442 ;0.016851 ;0.014389 ;0.012079 ;0.009943 ;0.008002 ;0.006274 ;0.004779 ;0.003531 ;0.002546 ;0.001835 ;0.001404 ;0.001260 + + + + ... + ... + + 1.000000 ;0.998973 ;0.995895 ;0.990780 ;0.983647 ;0.974528 ;0.963458 ;0.950484 ;0.935659 ;0.919044 ;0.900707 ;0.880723 ;0.859175 ;0.836150 ;0.811745 ;0.786058 ;0.759196 ;0.731269 ;0.702392 ;0.672683 ;0.642264 ;0.611260 ;0.579800 ;0.548012 ;0.516026 ;0.483974 ;0.451988 ;0.420200 ;0.388740 ;0.357736 ;0.327317 ;0.297608 ;0.268731 ;0.240804 ;0.213942 ;0.188255 ;0.163850 ;0.140825 ;0.119277 ;0.099293 ;0.080956 ;0.064341 ;0.049516 ;0.036542 ;0.025472 ;0.016353 ;0.009220 ;0.004105 ;0.001027 ;0.000000 ;0.001027 ;0.004105 ;0.009220 ;0.016353 ;0.025472 ;0.036542 ;0.049516 ;0.064341 ;0.080956 ;0.099293 ;0.119277 ;0.140825 ;0.163850 ;0.188255 ;0.213942 ;0.240804 ;0.268731 ;0.297608 ;0.327317 ;0.357736 ;0.388740 ;0.420200 ;0.451988 ;0.483974 ;0.516026 ;0.548012 ;0.579800 ;0.611260 ;0.642264 ;0.672683 ;0.702392 ;0.731269 ;0.759196 ;0.786058 ;0.811745 ;0.836150 ;0.859175 ;0.880723 ;0.900707 ;0.919044 ;0.935659 ;0.950484 ;0.963458 ;0.974528 ;0.983647 ;0.990780 ;0.995895 ;0.998973 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.001260 ;-0.001404 ;-0.001835 ;-0.002546 ;-0.003531 ;-0.004779 ;-0.006274 ;-0.008002 ;-0.009943 ;-0.012079 ;-0.014389 ;-0.016851 ;-0.019442 ;-0.022140 ;-0.024921 ;-0.027762 ;-0.030640 ;-0.033529 ;-0.036406 ;-0.039244 ;-0.042017 ;-0.044698 ;-0.047259 ;-0.049670 ;-0.051901 ;-0.053923 ;-0.055705 ;-0.057217 ;-0.058430 ;-0.059317 ;-0.059853 ;-0.060016 ;-0.059788 ;-0.059156 ;-0.058110 ;-0.056645 ;-0.054764 ;-0.052472 ;-0.049782 ;-0.046708 ;-0.043271 ;-0.039493 ;-0.035400 ;-0.031017 ;-0.026371 ;-0.021488 ;-0.016391 ;-0.011100 ;-0.005632 ;0.000000 ;0.005632 ;0.011100 ;0.016391 ;0.021488 ;0.026371 ;0.031017 ;0.035400 ;0.039493 ;0.043271 ;0.046708 ;0.049782 ;0.052472 ;0.054764 ;0.056645 ;0.058110 ;0.059156 ;0.059788 ;0.060016 ;0.059853 ;0.059317 ;0.058430 ;0.057217 ;0.055705 ;0.053923 ;0.051901 ;0.049670 ;0.047259 ;0.044698 ;0.042017 ;0.039244 ;0.036406 ;0.033529 ;0.030640 ;0.027762 ;0.024921 ;0.022140 ;0.019442 ;0.016851 ;0.014389 ;0.012079 ;0.009943 ;0.008002 ;0.006274 ;0.004779 ;0.003531 ;0.002546 ;0.001835 ;0.001404 ;0.001260 + + + + ... + ... + + 1.000000 ;0.998973 ;0.995895 ;0.990780 ;0.983647 ;0.974528 ;0.963458 ;0.950484 ;0.935659 ;0.919044 ;0.900707 ;0.880723 ;0.859175 ;0.836150 ;0.811745 ;0.786058 ;0.759196 ;0.731269 ;0.702392 ;0.672683 ;0.642264 ;0.611260 ;0.579800 ;0.548012 ;0.516026 ;0.483974 ;0.451988 ;0.420200 ;0.388740 ;0.357736 ;0.327317 ;0.297608 ;0.268731 ;0.240804 ;0.213942 ;0.188255 ;0.163850 ;0.140825 ;0.119277 ;0.099293 ;0.080956 ;0.064341 ;0.049516 ;0.036542 ;0.025472 ;0.016353 ;0.009220 ;0.004105 ;0.001027 ;0.000000 ;0.001027 ;0.004105 ;0.009220 ;0.016353 ;0.025472 ;0.036542 ;0.049516 ;0.064341 ;0.080956 ;0.099293 ;0.119277 ;0.140825 ;0.163850 ;0.188255 ;0.213942 ;0.240804 ;0.268731 ;0.297608 ;0.327317 ;0.357736 ;0.388740 ;0.420200 ;0.451988 ;0.483974 ;0.516026 ;0.548012 ;0.579800 ;0.611260 ;0.642264 ;0.672683 ;0.702392 ;0.731269 ;0.759196 ;0.786058 ;0.811745 ;0.836150 ;0.859175 ;0.880723 ;0.900707 ;0.919044 ;0.935659 ;0.950484 ;0.963458 ;0.974528 ;0.983647 ;0.990780 ;0.995895 ;0.998973 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.001260 ;-0.001404 ;-0.001835 ;-0.002546 ;-0.003531 ;-0.004779 ;-0.006274 ;-0.008002 ;-0.009943 ;-0.012079 ;-0.014389 ;-0.016851 ;-0.019442 ;-0.022140 ;-0.024921 ;-0.027762 ;-0.030640 ;-0.033529 ;-0.036406 ;-0.039244 ;-0.042017 ;-0.044698 ;-0.047259 ;-0.049670 ;-0.051901 ;-0.053923 ;-0.055705 ;-0.057217 ;-0.058430 ;-0.059317 ;-0.059853 ;-0.060016 ;-0.059788 ;-0.059156 ;-0.058110 ;-0.056645 ;-0.054764 ;-0.052472 ;-0.049782 ;-0.046708 ;-0.043271 ;-0.039493 ;-0.035400 ;-0.031017 ;-0.026371 ;-0.021488 ;-0.016391 ;-0.011100 ;-0.005632 ;0.000000 ;0.005632 ;0.011100 ;0.016391 ;0.021488 ;0.026371 ;0.031017 ;0.035400 ;0.039493 ;0.043271 ;0.046708 ;0.049782 ;0.052472 ;0.054764 ;0.056645 ;0.058110 ;0.059156 ;0.059788 ;0.060016 ;0.059853 ;0.059317 ;0.058430 ;0.057217 ;0.055705 ;0.053923 ;0.051901 ;0.049670 ;0.047259 ;0.044698 ;0.042017 ;0.039244 ;0.036406 ;0.033529 ;0.030640 ;0.027762 ;0.024921 ;0.022140 ;0.019442 ;0.016851 ;0.014389 ;0.012079 ;0.009943 ;0.008002 ;0.006274 ;0.004779 ;0.003531 ;0.002546 ;0.001835 ;0.001404 ;0.001260 + + + + ... + ... + + 1.000000 ;0.998973 ;0.995895 ;0.990780 ;0.983647 ;0.974528 ;0.963458 ;0.950484 ;0.935659 ;0.919044 ;0.900707 ;0.880723 ;0.859175 ;0.836150 ;0.811745 ;0.786058 ;0.759196 ;0.731269 ;0.702392 ;0.672683 ;0.642264 ;0.611260 ;0.579800 ;0.548012 ;0.516026 ;0.483974 ;0.451988 ;0.420200 ;0.388740 ;0.357736 ;0.327317 ;0.297608 ;0.268731 ;0.240804 ;0.213942 ;0.188255 ;0.163850 ;0.140825 ;0.119277 ;0.099293 ;0.080956 ;0.064341 ;0.049516 ;0.036542 ;0.025472 ;0.016353 ;0.009220 ;0.004105 ;0.001027 ;0.000000 ;0.001027 ;0.004105 ;0.009220 ;0.016353 ;0.025472 ;0.036542 ;0.049516 ;0.064341 ;0.080956 ;0.099293 ;0.119277 ;0.140825 ;0.163850 ;0.188255 ;0.213942 ;0.240804 ;0.268731 ;0.297608 ;0.327317 ;0.357736 ;0.388740 ;0.420200 ;0.451988 ;0.483974 ;0.516026 ;0.548012 ;0.579800 ;0.611260 ;0.642264 ;0.672683 ;0.702392 ;0.731269 ;0.759196 ;0.786058 ;0.811745 ;0.836150 ;0.859175 ;0.880723 ;0.900707 ;0.919044 ;0.935659 ;0.950484 ;0.963458 ;0.974528 ;0.983647 ;0.990780 ;0.995895 ;0.998973 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.001260 ;-0.001404 ;-0.001835 ;-0.002546 ;-0.003531 ;-0.004779 ;-0.006274 ;-0.008002 ;-0.009943 ;-0.012079 ;-0.014389 ;-0.016851 ;-0.019442 ;-0.022140 ;-0.024921 ;-0.027762 ;-0.030640 ;-0.033529 ;-0.036406 ;-0.039244 ;-0.042017 ;-0.044698 ;-0.047259 ;-0.049670 ;-0.051901 ;-0.053923 ;-0.055705 ;-0.057217 ;-0.058430 ;-0.059317 ;-0.059853 ;-0.060016 ;-0.059788 ;-0.059156 ;-0.058110 ;-0.056645 ;-0.054764 ;-0.052472 ;-0.049782 ;-0.046708 ;-0.043271 ;-0.039493 ;-0.035400 ;-0.031017 ;-0.026371 ;-0.021488 ;-0.016391 ;-0.011100 ;-0.005632 ;0.000000 ;0.005632 ;0.011100 ;0.016391 ;0.021488 ;0.026371 ;0.031017 ;0.035400 ;0.039493 ;0.043271 ;0.046708 ;0.049782 ;0.052472 ;0.054764 ;0.056645 ;0.058110 ;0.059156 ;0.059788 ;0.060016 ;0.059853 ;0.059317 ;0.058430 ;0.057217 ;0.055705 ;0.053923 ;0.051901 ;0.049670 ;0.047259 ;0.044698 ;0.042017 ;0.039244 ;0.036406 ;0.033529 ;0.030640 ;0.027762 ;0.024921 ;0.022140 ;0.019442 ;0.016851 ;0.014389 ;0.012079 ;0.009943 ;0.008002 ;0.006274 ;0.004779 ;0.003531 ;0.002546 ;0.001835 ;0.001404 ;0.001260 + + + + +
+
diff --git a/test_files/CPACSfiles/j35vort0903cfscaled.xml b/test_files/CPACSfiles/j35vort0903cfscaled.xml new file mode 100644 index 000000000..8962530ab --- /dev/null +++ b/test_files/CPACSfiles/j35vort0903cfscaled.xml @@ -0,0 +1,7140 @@ + + +
+ j35vort0903cfscaled + Simple Wing for unit testing + Martin Siggel + 2012-10-09T15:12:47 + 0.2 + 3.0 + + + Converted to cpacs 3.0 using cpacs2to3 - does not include structure update + cpacs2to3 + 2018-01-15T09:22:57 + 0.2 + 3.0 + + + Add this update + Aidan + 2018-10-03T09:00:01 + 0.3 + 3.0 + + +
+ + + + j35vv0 + + 50.9873 + 7.0347 + + 9.8178 + 0 + 0.019397 + + + + +Fuse +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + +
+FuseBodyframe8 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 2.1995 + 0 + -0.3131 + + + + + ... + fuseprof_1_1 + + + 1 + 0.0537 + 0.05405 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuseBodyframe9 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 3.211 + 0 + -0.21662 + + + + + ... + fuseprof_1_2 + + + 1 + 0.28397 + 0.30447 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuseBodyframe10 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 4.2225 + 0 + -0.095929 + + + + + ... + fuseprof_1_3 + + + 1 + 0.44106 + 0.5077 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuseBodyframe11 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 5.234 + 0 + 0.074182 + + + + + ... + fuseprof_1_4 + + + 1 + 0.55675 + 0.7218 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuseBodyframe12 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 6.2456 + 0 + 0.072816 + + + + + ... + fuseprof_1_5 + + + 1 + 0.6052 + 0.738 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuseBodyframe13 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 7.2571 + 0 + 0.087801 + + + + + ... + fuseprof_1_6 + + + 1 + 0.6088 + 0.7512 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuseBodyframe4 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 13.3262 + 0 + 0.26417 + + + + + ... + fuseprof_1_7 + + + 1 + 0.7755 + 0.75585 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuseBodyframe5 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 14.3378 + 0 + 0.26 + + + + + ... + fuseprof_1_8 + + + 1 + 0.68605 + 0.79 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuseBodyframe6 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 15.3493 + 0 + 0.2925 + + + + + ... + fuseprof_1_9 + + + 1 + 0.61695 + 0.5875 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuseBodyframe7 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 16.2727 + 0 + 0.36252 + + + + + ... + fuseprof_1_10 + + + 1 + 0.5197 + 0.45997 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + FuseBodyframe8 + 0 + + + + ... + description + 0 + 0 + FuseBodyframe9 + 0 + + + + ... + description + 0 + 0 + FuseBodyframe10 + 0 + + + + ... + description + 0 + 0 + FuseBodyframe11 + 0 + + + + ... + description + 0 + 0 + FuseBodyframe12 + 0 + + + + ... + description + 0 + 0 + FuseBodyframe13 + 0 + + + + ... + description + 0 + 0 + FuseBodyframe4 + 0 + + + + ... + description + 0 + 0 + FuseBodyframe5 + 0 + + + + ... + description + 0 + 0 + FuseBodyframe6 + 0 + + + + ... + description + 0 + 0 + FuseBodyframe7 + 0 + + + + + + ... + FuseBodyframe8elem1 + FuseBodyframe9elem1 + + + + ... + FuseBodyframe9elem1 + FuseBodyframe10elem1 + + + + ... + FuseBodyframe10elem1 + FuseBodyframe11elem1 + + + + ... + FuseBodyframe11elem1 + FuseBodyframe12elem1 + + + + ... + FuseBodyframe12elem1 + FuseBodyframe13elem1 + + + + ... + FuseBodyframe13elem1 + FuseBodyframe4elem1 + + + + ... + FuseBodyframe4elem1 + FuseBodyframe5elem1 + + + + ... + FuseBodyframe5elem1 + FuseBodyframe6elem1 + + + + ... + FuseBodyframe6elem1 + FuseBodyframe7elem1 + + + +
+ +vortR0 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 11.853 + 3.385 + 0 + + + +
+vortR0Bodyframe1 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.0027132 + 1.8849e-10 + -0.05 + + + + + ... + fuseprof_2_1 + + + 1 + 0.0068485 + 0.011568 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR0Bodyframe3 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.024214 + -8.352e-17 + -0.05 + + + + + ... + fuseprof_2_2 + + + 1 + 0.01 + 0.032621 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR0Bodyframe5 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.066138 + -8.352e-17 + -0.05 + + + + + ... + fuseprof_2_3 + + + 1 + 0.01 + 0.047046 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR0Bodyframe7 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.12638 + -8.352e-17 + -0.05 + + + + + ... + fuseprof_2_4 + + + 1 + 0.01 + 0.05 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR0Bodyframe9 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.20193 + -8.352e-17 + -0.05 + + + + + ... + fuseprof_2_5 + + + 1 + 0.01 + 0.05 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR0Bodyframe11 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.28899 + -8.352e-17 + -0.05 + + + + + ... + fuseprof_2_6 + + + 1 + 0.01 + 0.05 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR0Bodyframe13 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.38319 + -8.352e-17 + -0.05 + + + + + ... + fuseprof_2_7 + + + 1 + 0.01 + 0.05 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR0Bodyframe15 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.47981 + -8.352e-17 + -0.05 + + + + + ... + fuseprof_2_8 + + + 1 + 0.01 + 0.05 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR0Bodyframe17 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.57402 + -8.352e-17 + -0.05 + + + + + ... + fuseprof_2_9 + + + 1 + 0.01 + 0.05 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR0Bodyframe19 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.66107 + -8.352e-17 + -0.05 + + + + + ... + fuseprof_2_10 + + + 1 + 0.01 + 0.05 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR0Bodyframe21 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.73662 + -8.352e-17 + -0.05 + + + + + ... + fuseprof_2_11 + + + 1 + 0.01 + 0.05 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR0Bodyframe23 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.79686 + -8.352e-17 + -0.05 + + + + + ... + fuseprof_2_12 + + + 1 + 0.01 + 0.047046 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR0Bodyframe25 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.83879 + -8.352e-17 + -0.05 + + + + + ... + fuseprof_2_13 + + + 1 + 0.01 + 0.032621 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR0Bodyframe27 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.86029 + 2.2302e-10 + -0.05 + + + + + ... + fuseprof_2_14 + + + 1 + 0.0068485 + 0.011568 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + vortR0Bodyframe1 + 0 + + + + ... + description + 0 + 0 + vortR0Bodyframe3 + 0 + + + + ... + description + 0 + 0 + vortR0Bodyframe5 + 0 + + + + ... + description + 0 + 0 + vortR0Bodyframe7 + 0 + + + + ... + description + 0 + 0 + vortR0Bodyframe9 + 0 + + + + ... + description + 0 + 0 + vortR0Bodyframe11 + 0 + + + + ... + description + 0 + 0 + vortR0Bodyframe13 + 0 + + + + ... + description + 0 + 0 + vortR0Bodyframe15 + 0 + + + + ... + description + 0 + 0 + vortR0Bodyframe17 + 0 + + + + ... + description + 0 + 0 + vortR0Bodyframe19 + 0 + + + + ... + description + 0 + 0 + vortR0Bodyframe21 + 0 + + + + ... + description + 0 + 0 + vortR0Bodyframe23 + 0 + + + + ... + description + 0 + 0 + vortR0Bodyframe25 + 0 + + + + ... + description + 0 + 0 + vortR0Bodyframe27 + 0 + + + + + + ... + vortR0Bodyframe1elem1 + vortR0Bodyframe3elem1 + + + + ... + vortR0Bodyframe3elem1 + vortR0Bodyframe5elem1 + + + + ... + vortR0Bodyframe5elem1 + vortR0Bodyframe7elem1 + + + + ... + vortR0Bodyframe7elem1 + vortR0Bodyframe9elem1 + + + + ... + vortR0Bodyframe9elem1 + vortR0Bodyframe11elem1 + + + + ... + vortR0Bodyframe11elem1 + vortR0Bodyframe13elem1 + + + + ... + vortR0Bodyframe13elem1 + vortR0Bodyframe15elem1 + + + + ... + vortR0Bodyframe15elem1 + vortR0Bodyframe17elem1 + + + + ... + vortR0Bodyframe17elem1 + vortR0Bodyframe19elem1 + + + + ... + vortR0Bodyframe19elem1 + vortR0Bodyframe21elem1 + + + + ... + vortR0Bodyframe21elem1 + vortR0Bodyframe23elem1 + + + + ... + vortR0Bodyframe23elem1 + vortR0Bodyframe25elem1 + + + + ... + vortR0Bodyframe25elem1 + vortR0Bodyframe27elem1 + + + +
+ +vortR1 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 12.48 + 3.788 + 0 + + + +
+vortR1Bodyframe1 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.0019587 + 1.46e-10 + -0.045 + + + + + ... + fuseprof_3_1 + + + 1 + 0.0059445 + 0.009337 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR1Bodyframe3 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.01748 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_3_2 + + + 1 + 0.01 + 0.02665 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR1Bodyframe5 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.047745 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_3_3 + + + 1 + 0.01 + 0.039732 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR1Bodyframe7 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.091236 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_3_4 + + + 1 + 0.01 + 0.045 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR1Bodyframe9 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.14577 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_3_5 + + + 1 + 0.01 + 0.045 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR1Bodyframe11 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.20862 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_3_6 + + + 1 + 0.01 + 0.045 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR1Bodyframe13 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.27662 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_3_7 + + + 1 + 0.01 + 0.045 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR1Bodyframe15 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.34638 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_3_8 + + + 1 + 0.01 + 0.045 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR1Bodyframe17 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.41438 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_3_9 + + + 1 + 0.01 + 0.045 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR1Bodyframe19 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.47723 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_3_10 + + + 1 + 0.01 + 0.045 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR1Bodyframe21 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.53176 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_3_11 + + + 1 + 0.01 + 0.045 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR1Bodyframe23 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.57525 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_3_12 + + + 1 + 0.01 + 0.039732 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR1Bodyframe25 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.60552 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_3_13 + + + 1 + 0.01 + 0.02665 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR1Bodyframe27 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.62104 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_3_14 + + + 1 + 0.0059445 + 0.009337 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + vortR1Bodyframe1 + 0 + + + + ... + description + 0 + 0 + vortR1Bodyframe3 + 0 + + + + ... + description + 0 + 0 + vortR1Bodyframe5 + 0 + + + + ... + description + 0 + 0 + vortR1Bodyframe7 + 0 + + + + ... + description + 0 + 0 + vortR1Bodyframe9 + 0 + + + + ... + description + 0 + 0 + vortR1Bodyframe11 + 0 + + + + ... + description + 0 + 0 + vortR1Bodyframe13 + 0 + + + + ... + description + 0 + 0 + vortR1Bodyframe15 + 0 + + + + ... + description + 0 + 0 + vortR1Bodyframe17 + 0 + + + + ... + description + 0 + 0 + vortR1Bodyframe19 + 0 + + + + ... + description + 0 + 0 + vortR1Bodyframe21 + 0 + + + + ... + description + 0 + 0 + vortR1Bodyframe23 + 0 + + + + ... + description + 0 + 0 + vortR1Bodyframe25 + 0 + + + + ... + description + 0 + 0 + vortR1Bodyframe27 + 0 + + + + + + ... + vortR1Bodyframe1elem1 + vortR1Bodyframe3elem1 + + + + ... + vortR1Bodyframe3elem1 + vortR1Bodyframe5elem1 + + + + ... + vortR1Bodyframe5elem1 + vortR1Bodyframe7elem1 + + + + ... + vortR1Bodyframe7elem1 + vortR1Bodyframe9elem1 + + + + ... + vortR1Bodyframe9elem1 + vortR1Bodyframe11elem1 + + + + ... + vortR1Bodyframe11elem1 + vortR1Bodyframe13elem1 + + + + ... + vortR1Bodyframe13elem1 + vortR1Bodyframe15elem1 + + + + ... + vortR1Bodyframe15elem1 + vortR1Bodyframe17elem1 + + + + ... + vortR1Bodyframe17elem1 + vortR1Bodyframe19elem1 + + + + ... + vortR1Bodyframe19elem1 + vortR1Bodyframe21elem1 + + + + ... + vortR1Bodyframe21elem1 + vortR1Bodyframe23elem1 + + + + ... + vortR1Bodyframe23elem1 + vortR1Bodyframe25elem1 + + + + ... + vortR1Bodyframe25elem1 + vortR1Bodyframe27elem1 + + + +
+ +vortR2 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 13.23 + 4.28 + 0 + + + +
+vortR2Bodyframe1 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.001201 + 6.664e-11 + -0.030266 + + + + + ... + fuseprof_4_1 + + + 1 + 0.0023536 + 0.0038407 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR2Bodyframe3 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.010718 + 5.2666e-18 + -0.03 + + + + + ... + fuseprof_4_2 + + + 1 + 0.01 + 0.017112 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR2Bodyframe5 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.029276 + 5.2666e-18 + -0.03 + + + + + ... + fuseprof_4_3 + + + 1 + 0.01 + 0.025768 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR2Bodyframe7 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.055943 + 5.2666e-18 + -0.03 + + + + + ... + fuseprof_4_4 + + + 1 + 0.01 + 0.029931 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR2Bodyframe9 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.089382 + 5.2666e-18 + -0.03 + + + + + ... + fuseprof_4_5 + + + 1 + 0.01 + 0.03 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR2Bodyframe11 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.12792 + 5.2666e-18 + -0.03 + + + + + ... + fuseprof_4_6 + + + 1 + 0.01 + 0.03 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR2Bodyframe13 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.16962 + 5.2666e-18 + -0.03 + + + + + ... + fuseprof_4_7 + + + 1 + 0.01 + 0.03 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR2Bodyframe15 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.21238 + 5.2666e-18 + -0.03 + + + + + ... + fuseprof_4_8 + + + 1 + 0.01 + 0.03 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR2Bodyframe17 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.25408 + 5.2666e-18 + -0.03 + + + + + ... + fuseprof_4_9 + + + 1 + 0.01 + 0.03 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR2Bodyframe19 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.29262 + 5.2666e-18 + -0.03 + + + + + ... + fuseprof_4_10 + + + 1 + 0.01 + 0.03 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR2Bodyframe21 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.32606 + 5.2666e-18 + -0.03 + + + + + ... + fuseprof_4_11 + + + 1 + 0.01 + 0.029931 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR2Bodyframe23 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.35272 + 5.2666e-18 + -0.03 + + + + + ... + fuseprof_4_12 + + + 1 + 0.01 + 0.025768 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR2Bodyframe25 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.37128 + 5.2666e-18 + -0.03 + + + + + ... + fuseprof_4_13 + + + 1 + 0.01 + 0.017112 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR2Bodyframe27 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.3808 + 5.2736e-18 + -0.03 + + + + + ... + fuseprof_4_14 + + + 1 + 0.0020871 + 0.0025086 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + vortR2Bodyframe1 + 0 + + + + ... + description + 0 + 0 + vortR2Bodyframe3 + 0 + + + + ... + description + 0 + 0 + vortR2Bodyframe5 + 0 + + + + ... + description + 0 + 0 + vortR2Bodyframe7 + 0 + + + + ... + description + 0 + 0 + vortR2Bodyframe9 + 0 + + + + ... + description + 0 + 0 + vortR2Bodyframe11 + 0 + + + + ... + description + 0 + 0 + vortR2Bodyframe13 + 0 + + + + ... + description + 0 + 0 + vortR2Bodyframe15 + 0 + + + + ... + description + 0 + 0 + vortR2Bodyframe17 + 0 + + + + ... + description + 0 + 0 + vortR2Bodyframe19 + 0 + + + + ... + description + 0 + 0 + vortR2Bodyframe21 + 0 + + + + ... + description + 0 + 0 + vortR2Bodyframe23 + 0 + + + + ... + description + 0 + 0 + vortR2Bodyframe25 + 0 + + + + ... + description + 0 + 0 + vortR2Bodyframe27 + 0 + + + + + + ... + vortR2Bodyframe1elem1 + vortR2Bodyframe3elem1 + + + + ... + vortR2Bodyframe3elem1 + vortR2Bodyframe5elem1 + + + + ... + vortR2Bodyframe5elem1 + vortR2Bodyframe7elem1 + + + + ... + vortR2Bodyframe7elem1 + vortR2Bodyframe9elem1 + + + + ... + vortR2Bodyframe9elem1 + vortR2Bodyframe11elem1 + + + + ... + vortR2Bodyframe11elem1 + vortR2Bodyframe13elem1 + + + + ... + vortR2Bodyframe13elem1 + vortR2Bodyframe15elem1 + + + + ... + vortR2Bodyframe15elem1 + vortR2Bodyframe17elem1 + + + + ... + vortR2Bodyframe17elem1 + vortR2Bodyframe19elem1 + + + + ... + vortR2Bodyframe19elem1 + vortR2Bodyframe21elem1 + + + + ... + vortR2Bodyframe21elem1 + vortR2Bodyframe23elem1 + + + + ... + vortR2Bodyframe23elem1 + vortR2Bodyframe25elem1 + + + + ... + vortR2Bodyframe25elem1 + vortR2Bodyframe27elem1 + + + +
+ +vortL0 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 11.853 + -3.385 + 0 + + + +
+vortL0Bodyframe1 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.0027132 + 1.8849e-10 + -0.05 + + + + + ... + fuseprof_5_1 + + + 1 + 0.0068485 + 0.011568 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL0Bodyframe3 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.024214 + -1.2308e-16 + -0.05 + + + + + ... + fuseprof_5_2 + + + 1 + 0.01 + 0.038641 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL0Bodyframe5 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.066138 + -1.2308e-16 + -0.05 + + + + + ... + fuseprof_5_3 + + + 1 + 0.01 + 0.047046 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL0Bodyframe7 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.12638 + -1.2308e-16 + -0.05 + + + + + ... + fuseprof_5_4 + + + 1 + 0.01 + 0.05 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL0Bodyframe9 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.20193 + -1.2308e-16 + -0.05 + + + + + ... + fuseprof_5_5 + + + 1 + 0.01 + 0.05 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL0Bodyframe11 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.28899 + -1.2308e-16 + -0.05 + + + + + ... + fuseprof_5_6 + + + 1 + 0.01 + 0.05 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL0Bodyframe13 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.38319 + -1.2308e-16 + -0.05 + + + + + ... + fuseprof_5_7 + + + 1 + 0.01 + 0.05 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL0Bodyframe15 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.47981 + -1.2308e-16 + -0.05 + + + + + ... + fuseprof_5_8 + + + 1 + 0.01 + 0.05 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL0Bodyframe17 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.57402 + -1.2308e-16 + -0.05 + + + + + ... + fuseprof_5_9 + + + 1 + 0.01 + 0.05 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL0Bodyframe19 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.66107 + -1.2308e-16 + -0.05 + + + + + ... + fuseprof_5_10 + + + 1 + 0.01 + 0.05 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL0Bodyframe21 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.73662 + -1.2308e-16 + -0.05 + + + + + ... + fuseprof_5_11 + + + 1 + 0.01 + 0.05 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL0Bodyframe23 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.79686 + -1.2308e-16 + -0.05 + + + + + ... + fuseprof_5_12 + + + 1 + 0.01 + 0.047046 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL0Bodyframe25 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.83879 + -1.2308e-16 + -0.05 + + + + + ... + fuseprof_5_13 + + + 1 + 0.01 + 0.036233 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL0Bodyframe27 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.86029 + 2.2302e-10 + -0.05 + + + + + ... + fuseprof_5_14 + + + 1 + 0.0068485 + 0.011568 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + vortL0Bodyframe1 + 0 + + + + ... + description + 0 + 0 + vortL0Bodyframe3 + 0 + + + + ... + description + 0 + 0 + vortL0Bodyframe5 + 0 + + + + ... + description + 0 + 0 + vortL0Bodyframe7 + 0 + + + + ... + description + 0 + 0 + vortL0Bodyframe9 + 0 + + + + ... + description + 0 + 0 + vortL0Bodyframe11 + 0 + + + + ... + description + 0 + 0 + vortL0Bodyframe13 + 0 + + + + ... + description + 0 + 0 + vortL0Bodyframe15 + 0 + + + + ... + description + 0 + 0 + vortL0Bodyframe17 + 0 + + + + ... + description + 0 + 0 + vortL0Bodyframe19 + 0 + + + + ... + description + 0 + 0 + vortL0Bodyframe21 + 0 + + + + ... + description + 0 + 0 + vortL0Bodyframe23 + 0 + + + + ... + description + 0 + 0 + vortL0Bodyframe25 + 0 + + + + ... + description + 0 + 0 + vortL0Bodyframe27 + 0 + + + + + + ... + vortL0Bodyframe1elem1 + vortL0Bodyframe3elem1 + + + + ... + vortL0Bodyframe3elem1 + vortL0Bodyframe5elem1 + + + + ... + vortL0Bodyframe5elem1 + vortL0Bodyframe7elem1 + + + + ... + vortL0Bodyframe7elem1 + vortL0Bodyframe9elem1 + + + + ... + vortL0Bodyframe9elem1 + vortL0Bodyframe11elem1 + + + + ... + vortL0Bodyframe11elem1 + vortL0Bodyframe13elem1 + + + + ... + vortL0Bodyframe13elem1 + vortL0Bodyframe15elem1 + + + + ... + vortL0Bodyframe15elem1 + vortL0Bodyframe17elem1 + + + + ... + vortL0Bodyframe17elem1 + vortL0Bodyframe19elem1 + + + + ... + vortL0Bodyframe19elem1 + vortL0Bodyframe21elem1 + + + + ... + vortL0Bodyframe21elem1 + vortL0Bodyframe23elem1 + + + + ... + vortL0Bodyframe23elem1 + vortL0Bodyframe25elem1 + + + + ... + vortL0Bodyframe25elem1 + vortL0Bodyframe27elem1 + + + +
+ +vortL1 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 12.48 + -3.788 + 0 + + + +
+vortL1Bodyframe1 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.0019587 + 1.46e-10 + -0.045 + + + + + ... + fuseprof_6_1 + + + 1 + 0.0059445 + 0.009337 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL1Bodyframe3 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.01748 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_6_2 + + + 1 + 0.01 + 0.034037 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL1Frame62 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.038792 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_6_3 + + + 1 + 0.010227 + 0.042305 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL1Bodyframe6 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.06796 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_6_4 + + + 1 + 0.01 + 0.04363 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL1Bodyframe7 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.091236 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_6_5 + + + 1 + 0.01 + 0.045 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL1Bodyframe9 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.14577 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_6_6 + + + 1 + 0.01 + 0.045 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL1Bodyframe13 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.27662 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_6_7 + + + 1 + 0.01 + 0.045 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL1Bodyframe17 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.41438 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_6_8 + + + 1 + 0.01 + 0.045 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL1Bodyframe21 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.53176 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_6_9 + + + 1 + 0.01 + 0.045 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL1Bodyframe23 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.57525 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_6_10 + + + 1 + 0.01 + 0.039732 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL1Bodyframe25 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.60552 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_6_11 + + + 1 + 0.01 + 0.02665 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL1Bodyframe27 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.62104 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_6_12 + + + 1 + 0.0059445 + 0.009337 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + vortL1Bodyframe1 + 0 + + + + ... + description + 0 + 0 + vortL1Bodyframe3 + 0 + + + + ... + description + 0 + 0 + vortL1Frame62 + 0 + + + + ... + description + 0 + 0 + vortL1Bodyframe6 + 0 + + + + ... + description + 0 + 0 + vortL1Bodyframe7 + 0 + + + + ... + description + 0 + 0 + vortL1Bodyframe9 + 0 + + + + ... + description + 0 + 0 + vortL1Bodyframe13 + 0 + + + + ... + description + 0 + 0 + vortL1Bodyframe17 + 0 + + + + ... + description + 0 + 0 + vortL1Bodyframe21 + 0 + + + + ... + description + 0 + 0 + vortL1Bodyframe23 + 0 + + + + ... + description + 0 + 0 + vortL1Bodyframe25 + 0 + + + + ... + description + 0 + 0 + vortL1Bodyframe27 + 0 + + + + + + ... + vortL1Bodyframe1elem1 + vortL1Bodyframe3elem1 + + + + ... + vortL1Bodyframe3elem1 + vortL1Frame62elem1 + + + + ... + vortL1Frame62elem1 + vortL1Bodyframe6elem1 + + + + ... + vortL1Bodyframe6elem1 + vortL1Bodyframe7elem1 + + + + ... + vortL1Bodyframe7elem1 + vortL1Bodyframe9elem1 + + + + ... + vortL1Bodyframe9elem1 + vortL1Bodyframe13elem1 + + + + ... + vortL1Bodyframe13elem1 + vortL1Bodyframe17elem1 + + + + ... + vortL1Bodyframe17elem1 + vortL1Bodyframe21elem1 + + + + ... + vortL1Bodyframe21elem1 + vortL1Bodyframe23elem1 + + + + ... + vortL1Bodyframe23elem1 + vortL1Bodyframe25elem1 + + + + ... + vortL1Bodyframe25elem1 + vortL1Bodyframe27elem1 + + + +
+ +vortL2 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 13.23 + -4.28 + 0 + + + +
+vortL2Bodyframe1 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.001201 + 6.664e-11 + -0.03 + + + + + ... + fuseprof_7_1 + + + 1 + 0.00262 + 0.0035744 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL2Bodyframe3 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.010718 + 1.0533e-17 + -0.03 + + + + + ... + fuseprof_7_2 + + + 1 + 0.01 + 0.01951 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL2Bodyframe5 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.029276 + 1.0533e-17 + -0.03 + + + + + ... + fuseprof_7_3 + + + 1 + 0.01 + 0.0271 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL2Bodyframe7 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.055943 + 1.0533e-17 + -0.03 + + + + + ... + fuseprof_7_4 + + + 1 + 0.01 + 0.029931 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL2Bodyframe9 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.089382 + 1.0533e-17 + -0.03 + + + + + ... + fuseprof_7_5 + + + 1 + 0.01 + 0.03 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL2Bodyframe11 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.12792 + 1.0533e-17 + -0.03 + + + + + ... + fuseprof_7_6 + + + 1 + 0.01 + 0.03 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL2Bodyframe13 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.16962 + 1.0533e-17 + -0.03 + + + + + ... + fuseprof_7_7 + + + 1 + 0.01 + 0.03 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL2Bodyframe15 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.21238 + 1.0533e-17 + -0.03 + + + + + ... + fuseprof_7_8 + + + 1 + 0.01 + 0.03 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL2Bodyframe17 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.25408 + 1.0533e-17 + -0.03 + + + + + ... + fuseprof_7_9 + + + 1 + 0.01 + 0.03 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL2Bodyframe19 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.29262 + 1.0533e-17 + -0.03 + + + + + ... + fuseprof_7_10 + + + 1 + 0.01 + 0.03 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL2Bodyframe21 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.32606 + 1.0533e-17 + -0.03 + + + + + ... + fuseprof_7_11 + + + 1 + 0.01 + 0.029931 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL2Bodyframe23 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.35272 + 1.0533e-17 + -0.03 + + + + + ... + fuseprof_7_12 + + + 1 + 0.01 + 0.025768 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL2Bodyframe25 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.37128 + 1.0533e-17 + -0.03 + + + + + ... + fuseprof_7_13 + + + 1 + 0.01 + 0.017112 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL2Bodyframe27 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.3808 + 1.0519e-17 + -0.03 + + + + + ... + fuseprof_7_14 + + + 1 + 0.0023536 + 0.0025086 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + vortL2Bodyframe1 + 0 + + + + ... + description + 0 + 0 + vortL2Bodyframe3 + 0 + + + + ... + description + 0 + 0 + vortL2Bodyframe5 + 0 + + + + ... + description + 0 + 0 + vortL2Bodyframe7 + 0 + + + + ... + description + 0 + 0 + vortL2Bodyframe9 + 0 + + + + ... + description + 0 + 0 + vortL2Bodyframe11 + 0 + + + + ... + description + 0 + 0 + vortL2Bodyframe13 + 0 + + + + ... + description + 0 + 0 + vortL2Bodyframe15 + 0 + + + + ... + description + 0 + 0 + vortL2Bodyframe17 + 0 + + + + ... + description + 0 + 0 + vortL2Bodyframe19 + 0 + + + + ... + description + 0 + 0 + vortL2Bodyframe21 + 0 + + + + ... + description + 0 + 0 + vortL2Bodyframe23 + 0 + + + + ... + description + 0 + 0 + vortL2Bodyframe25 + 0 + + + + ... + description + 0 + 0 + vortL2Bodyframe27 + 0 + + + + + + ... + vortL2Bodyframe1elem1 + vortL2Bodyframe3elem1 + + + + ... + vortL2Bodyframe3elem1 + vortL2Bodyframe5elem1 + + + + ... + vortL2Bodyframe5elem1 + vortL2Bodyframe7elem1 + + + + ... + vortL2Bodyframe7elem1 + vortL2Bodyframe9elem1 + + + + ... + vortL2Bodyframe9elem1 + vortL2Bodyframe11elem1 + + + + ... + vortL2Bodyframe11elem1 + vortL2Bodyframe13elem1 + + + + ... + vortL2Bodyframe13elem1 + vortL2Bodyframe15elem1 + + + + ... + vortL2Bodyframe15elem1 + vortL2Bodyframe17elem1 + + + + ... + vortL2Bodyframe17elem1 + vortL2Bodyframe19elem1 + + + + ... + vortL2Bodyframe19elem1 + vortL2Bodyframe21elem1 + + + + ... + vortL2Bodyframe21elem1 + vortL2Bodyframe23elem1 + + + + ... + vortL2Bodyframe23elem1 + vortL2Bodyframe25elem1 + + + + ... + vortL2Bodyframe25elem1 + vortL2Bodyframe27elem1 + + + +
+
+ + + Fin + Fuse + description + + + 1 + 1 + 1 + + + 90.0002 + 0 + -0 + + + 9.3754 + 4.0681e-17 + 0.6644 + + + +
+FinWingSection2 +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 0 + 0 + 0 + + + + + ... + foil_1_2 + + + + 4.8601 + 4.8601 + 4.8601 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FinWingSection1 +description + + + 1 + 1 + 1 + + + -0 + 0 + -0.90224 + + + 4.4688 + 2.0387 + 0 + + + + + ... + foil_1_1 + + + + 1.156 + 1.156 + 1.156 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + FinWingSection1 + 0 + + + + ... + description + 0 + 0 + FinWingSection2 + 0 + + + + + + ... + FinWingSection1elem1 + FinWingSection2elem1 + + + +
+ + Wing + Fuse + description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 5.0049 + 0 + -0.064604 + + + +
+WingWingSection7 +description + + + 1 + 1 + 1 + + + -0 + -1 + -0 + + + -0.3 + 0 + -0.01173 + + + + + ... + foil_2_7 + + + + 10.5 + 10.5 + 10.5 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingWingSection6 +description + + + 1 + 1 + 1 + + + -0 + -0.97781 + -0 + + + -0.2117 + 0.8 + -0.026842 + + + + + ... + foil_2_6 + + + + 10.155 + 10.155 + 10.155 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingWingSection5 +description + + + 1 + 1 + 1 + + + -0 + -0.90459 + -0 + + + -0.19243 + 1 + -0.023908 + + + + + ... + foil_2_5 + + + + 10.0503 + 10.0503 + 10.0503 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingWingSection4 +description + + + 1 + 1 + 1 + + + -0 + -0.76077 + -0 + + + -0.025661 + 1.2 + -0.0070237 + + + + + ... + foil_2_4 + + + + 9.7978 + 9.7978 + 9.7978 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingWingSection3 +description + + + 1 + 1 + 1 + + + -0 + -0.57548 + -0 + + + 0.22545 + 1.3 + 0.021771 + + + + + ... + foil_2_3 + + + + 9.5037 + 9.5037 + 9.5037 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingWingSection2 +description + + + 1 + 1 + 1 + + + -0 + -0.0028329 + -0 + + + 4.9966 + 2.201 + 0.06439 + + + + + ... + foil_2_2 + + + + 4.3485 + 4.3485 + 4.3485 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingWingSection1 +description + + + 1 + 1 + 1 + + + -0 + -0.01789 + -0 + + + 8.5797 + 4.526 + 0.064365 + + + + + ... + foil_2_1 + + + + 0.76543 + 0.76543 + 0.76543 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + WingWingSection1 + 0 + + + + ... + description + 0 + 0 + WingWingSection2 + 0 + + + + ... + description + 0 + 0 + WingWingSection3 + 0 + + + + ... + description + 0 + 0 + WingWingSection4 + 0 + + + + ... + description + 0 + 0 + WingWingSection5 + 0 + + + + ... + description + 0 + 0 + WingWingSection6 + 0 + + + + ... + description + 0 + 0 + WingWingSection7 + 0 + + + + + + ... + WingWingSection1elem1 + WingWingSection2elem1 + + + + ... + WingWingSection2elem1 + WingWingSection3elem1 + + + + ... + WingWingSection3elem1 + WingWingSection4elem1 + + + + ... + WingWingSection4elem1 + WingWingSection5elem1 + + + + ... + WingWingSection5elem1 + WingWingSection6elem1 + + + + ... + WingWingSection6elem1 + WingWingSection7elem1 + + + +
+
+ + + + aeromap_empty + Common default aeroMap + + ISA + + + 0.0 + 0.3 + 0.0 + 0.0 + + + + + + +
+
+ + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.356731 ;0.681350 ;0.900971 ;1.000000 ;0.927341 ;0.715967 ;0.410089 ;0.000000 ;-0.410089 ;-0.715967 ;-0.927341 ;-1.000000 ;-0.900971 ;-0.681350 ;-0.356731 ;0.000000 + -1.000000 ;-0.934453 ;-0.732932 ;-0.436042 ;-0.028088 ;0.370647 ;0.692584 ;0.906294 ;1.000000 ;0.906294 ;0.692584 ;0.370647 ;-0.028088 ;-0.436042 ;-0.732932 ;-0.934453 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.101997 ;0.212427 ;0.273184 ;0.385884 ;0.493594 ;0.547329 ;0.641343 ;0.712920 ;0.780710 ;0.840490 ;0.878360 ;0.931785 ;0.963096 ;0.983662 ;0.995993 ;1.000000 ;0.993929 ;0.984069 ;0.958805 ;0.924537 ;0.863141 ;0.822730 ;0.760920 ;0.701053 ;0.620487 ;0.562412 ;0.490214 ;0.381180 ;0.284666 ;0.186542 ;0.105565 ;0.000000 ;-0.105565 ;-0.186542 ;-0.284666 ;-0.381180 ;-0.490214 ;-0.562412 ;-0.620487 ;-0.701053 ;-0.760920 ;-0.822730 ;-0.863141 ;-0.924537 ;-0.958805 ;-0.984069 ;-0.993929 ;-1.000000 ;-0.995993 ;-0.983662 ;-0.963096 ;-0.931785 ;-0.878360 ;-0.840490 ;-0.780710 ;-0.712920 ;-0.641343 ;-0.547329 ;-0.493594 ;-0.385884 ;-0.273184 ;-0.212427 ;-0.101997 ;0.000000 + -1.000000 ;-0.994941 ;-0.977333 ;-0.962107 ;-0.922702 ;-0.869830 ;-0.837065 ;-0.767378 ;-0.701384 ;-0.624949 ;-0.541955 ;-0.478096 ;-0.362970 ;-0.269138 ;-0.180139 ;-0.089468 ;0.002362 ;0.109770 ;0.177772 ;0.284011 ;0.381068 ;0.504927 ;0.568414 ;0.648824 ;0.713109 ;0.784196 ;0.826855 ;0.871582 ;0.924420 ;0.958446 ;0.982457 ;0.994426 ;1.000000 ;0.994426 ;0.982457 ;0.958446 ;0.924420 ;0.871582 ;0.826855 ;0.784196 ;0.713109 ;0.648824 ;0.568414 ;0.504927 ;0.381068 ;0.284011 ;0.177772 ;0.109770 ;0.002362 ;-0.089468 ;-0.180139 ;-0.269138 ;-0.362970 ;-0.478096 ;-0.541955 ;-0.624949 ;-0.701384 ;-0.767378 ;-0.837065 ;-0.869830 ;-0.922702 ;-0.962107 ;-0.977333 ;-0.994941 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.092308 ;0.200445 ;0.285168 ;0.387557 ;0.483595 ;0.558191 ;0.642226 ;0.704274 ;0.768292 ;0.837124 ;0.881371 ;0.926751 ;0.955251 ;0.981550 ;0.995107 ;1.000000 ;0.997182 ;0.988602 ;0.971675 ;0.949441 ;0.923038 ;0.890727 ;0.846193 ;0.793927 ;0.746097 ;0.662488 ;0.590859 ;0.521614 ;0.485289 ;0.440362 ;0.386930 ;0.317076 ;0.252868 ;0.210895 ;0.164928 ;0.082272 ;0.000000 ;-0.082272 ;-0.164928 ;-0.210895 ;-0.252868 ;-0.317076 ;-0.386930 ;-0.440362 ;-0.485289 ;-0.521614 ;-0.590859 ;-0.662488 ;-0.746097 ;-0.793927 ;-0.846193 ;-0.890727 ;-0.923038 ;-0.949441 ;-0.971675 ;-0.988602 ;-0.997182 ;-1.000000 ;-0.995107 ;-0.981550 ;-0.955251 ;-0.926751 ;-0.881371 ;-0.837124 ;-0.768292 ;-0.704274 ;-0.642226 ;-0.558191 ;-0.483595 ;-0.387557 ;-0.285168 ;-0.200445 ;-0.092308 ;0.000000 + -1.000000 ;-0.996385 ;-0.982562 ;-0.964252 ;-0.932651 ;-0.892501 ;-0.853178 ;-0.798676 ;-0.749855 ;-0.689635 ;-0.609333 ;-0.545008 ;-0.461553 ;-0.392667 ;-0.302470 ;-0.222818 ;-0.132647 ;-0.071343 ;-0.004952 ;0.070452 ;0.138742 ;0.200975 ;0.262407 ;0.331314 ;0.397413 ;0.448280 ;0.521503 ;0.572259 ;0.613111 ;0.691389 ;0.762881 ;0.827333 ;0.890165 ;0.932556 ;0.953889 ;0.972203 ;0.993229 ;1.000000 ;0.993229 ;0.972203 ;0.953889 ;0.932556 ;0.890165 ;0.827333 ;0.762881 ;0.691389 ;0.613111 ;0.572259 ;0.521503 ;0.448280 ;0.397413 ;0.331314 ;0.262407 ;0.200975 ;0.138742 ;0.070452 ;-0.004952 ;-0.071343 ;-0.132647 ;-0.222818 ;-0.302470 ;-0.392667 ;-0.461553 ;-0.545008 ;-0.609333 ;-0.689635 ;-0.749855 ;-0.798676 ;-0.853178 ;-0.892501 ;-0.932651 ;-0.964252 ;-0.982562 ;-0.996385 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.092308 ;0.200445 ;0.285168 ;0.387557 ;0.483595 ;0.558191 ;0.642226 ;0.704274 ;0.768292 ;0.837124 ;0.881371 ;0.926751 ;0.955251 ;0.981550 ;0.995107 ;1.000000 ;0.994869 ;0.978884 ;0.954558 ;0.923038 ;0.875859 ;0.846193 ;0.811480 ;0.775708 ;0.715895 ;0.635328 ;0.603824 ;0.573448 ;0.527281 ;0.496751 ;0.460219 ;0.407825 ;0.361301 ;0.302971 ;0.253053 ;0.199490 ;0.132157 ;0.068980 ;0.000000 ;-0.068980 ;-0.132157 ;-0.199490 ;-0.253053 ;-0.302971 ;-0.361301 ;-0.407825 ;-0.460219 ;-0.496751 ;-0.527281 ;-0.573448 ;-0.603824 ;-0.635328 ;-0.715895 ;-0.775708 ;-0.811480 ;-0.846193 ;-0.875859 ;-0.923038 ;-0.954558 ;-0.978884 ;-0.994869 ;-1.000000 ;-0.995107 ;-0.981550 ;-0.955251 ;-0.926751 ;-0.881371 ;-0.837124 ;-0.768292 ;-0.704274 ;-0.642226 ;-0.558191 ;-0.483595 ;-0.387557 ;-0.285168 ;-0.200445 ;-0.092308 ;0.000000 + -1.000000 ;-0.996782 ;-0.984579 ;-0.968415 ;-0.940519 ;-0.905075 ;-0.870361 ;-0.822248 ;-0.779150 ;-0.725989 ;-0.655100 ;-0.598315 ;-0.524642 ;-0.463831 ;-0.384206 ;-0.313891 ;-0.234265 ;-0.159435 ;-0.078837 ;-0.005731 ;0.061964 ;0.138408 ;0.177695 ;0.217921 ;0.254416 ;0.306830 ;0.364666 ;0.493246 ;0.577696 ;0.670688 ;0.719179 ;0.768216 ;0.826013 ;0.867762 ;0.910010 ;0.938680 ;0.962730 ;0.984110 ;0.995869 ;1.000000 ;0.995869 ;0.984110 ;0.962730 ;0.938680 ;0.910010 ;0.867762 ;0.826013 ;0.768216 ;0.719179 ;0.670688 ;0.577696 ;0.493246 ;0.364666 ;0.306830 ;0.254416 ;0.217921 ;0.177695 ;0.138408 ;0.061964 ;-0.005731 ;-0.078837 ;-0.159435 ;-0.234265 ;-0.313891 ;-0.384206 ;-0.463831 ;-0.524642 ;-0.598315 ;-0.655100 ;-0.725989 ;-0.779150 ;-0.822248 ;-0.870361 ;-0.905075 ;-0.940519 ;-0.968415 ;-0.984579 ;-0.996782 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.074533 ;0.166598 ;0.242920 ;0.323690 ;0.409999 ;0.482461 ;0.563222 ;0.614859 ;0.679415 ;0.745057 ;0.794948 ;0.849763 ;0.885600 ;0.932409 ;0.971787 ;1.000000 ;0.961370 ;0.916165 ;0.876299 ;0.839901 ;0.789302 ;0.739141 ;0.674895 ;0.597140 ;0.527856 ;0.506622 ;0.491893 ;0.480141 ;0.454098 ;0.432346 ;0.405378 ;0.375356 ;0.343563 ;0.299266 ;0.258000 ;0.211290 ;0.158507 ;0.109830 ;0.063182 ;0.000000 ;-0.063182 ;-0.109830 ;-0.158507 ;-0.211290 ;-0.258000 ;-0.299266 ;-0.343563 ;-0.375356 ;-0.405378 ;-0.432346 ;-0.454098 ;-0.480141 ;-0.491893 ;-0.506622 ;-0.527856 ;-0.597140 ;-0.674895 ;-0.739141 ;-0.789302 ;-0.839901 ;-0.876299 ;-0.916165 ;-0.961370 ;-1.000000 ;-0.971787 ;-0.932409 ;-0.885600 ;-0.849763 ;-0.794948 ;-0.745057 ;-0.679415 ;-0.614859 ;-0.563222 ;-0.482461 ;-0.409999 ;-0.323690 ;-0.242920 ;-0.166598 ;-0.074533 ;0.000000 + -1.000000 ;-0.997958 ;-0.989551 ;-0.977512 ;-0.959686 ;-0.934269 ;-0.907429 ;-0.870853 ;-0.843296 ;-0.803542 ;-0.755906 ;-0.713731 ;-0.659723 ;-0.618792 ;-0.556027 ;-0.491028 ;-0.433209 ;0.203349 ;0.272417 ;0.324497 ;0.365681 ;0.415519 ;0.458258 ;0.505364 ;0.553095 ;0.588561 ;0.682577 ;0.722945 ;0.747317 ;0.789632 ;0.817674 ;0.846657 ;0.873618 ;0.897668 ;0.925134 ;0.945918 ;0.964592 ;0.980403 ;0.990745 ;0.996954 ;1.000000 ;0.996954 ;0.990745 ;0.980403 ;0.964592 ;0.945918 ;0.925134 ;0.897668 ;0.873618 ;0.846657 ;0.817674 ;0.789632 ;0.747317 ;0.722945 ;0.682577 ;0.588561 ;0.553095 ;0.505364 ;0.458258 ;0.415519 ;0.365681 ;0.324497 ;0.272417 ;0.203349 ;-0.433209 ;-0.491028 ;-0.556027 ;-0.618792 ;-0.659723 ;-0.713731 ;-0.755906 ;-0.803542 ;-0.843296 ;-0.870853 ;-0.907429 ;-0.934269 ;-0.959686 ;-0.977512 ;-0.989551 ;-0.997958 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.081493 ;0.157125 ;0.231853 ;0.305586 ;0.379064 ;0.448283 ;0.527511 ;0.585025 ;0.645655 ;0.699888 ;0.761319 ;0.814628 ;0.869177 ;0.910994 ;0.947237 ;0.998451 ;1.000000 ;0.938632 ;0.897255 ;0.828069 ;0.766294 ;0.713218 ;0.628346 ;0.543731 ;0.457444 ;0.432526 ;0.424178 ;0.409891 ;0.392905 ;0.373507 ;0.349953 ;0.317403 ;0.283616 ;0.240909 ;0.197392 ;0.154279 ;0.101141 ;0.049780 ;0.000000 ;-0.049780 ;-0.101141 ;-0.154279 ;-0.197392 ;-0.240909 ;-0.283616 ;-0.317403 ;-0.349953 ;-0.373507 ;-0.392905 ;-0.409891 ;-0.424178 ;-0.432526 ;-0.457444 ;-0.543731 ;-0.628346 ;-0.713218 ;-0.766294 ;-0.828069 ;-0.897255 ;-0.938632 ;-1.000000 ;-0.998451 ;-0.947237 ;-0.910994 ;-0.869177 ;-0.814628 ;-0.761319 ;-0.699888 ;-0.645655 ;-0.585025 ;-0.527511 ;-0.448283 ;-0.379064 ;-0.305586 ;-0.231853 ;-0.157125 ;-0.081493 ;0.000000 + -1.000000 ;-0.997851 ;-0.991895 ;-0.982210 ;-0.968829 ;-0.951537 ;-0.931393 ;-0.903386 ;-0.879423 ;-0.850475 ;-0.820933 ;-0.782982 ;-0.745274 ;-0.701266 ;-0.662972 ;-0.625818 ;-0.567651 ;0.327932 ;0.397850 ;0.439394 ;0.499059 ;0.544292 ;0.578260 ;0.624767 ;0.663043 ;0.694912 ;0.809315 ;0.832961 ;0.856953 ;0.877179 ;0.895089 ;0.912574 ;0.931882 ;0.947922 ;0.963933 ;0.976509 ;0.985986 ;0.994095 ;0.998581 ;1.000000 ;0.998581 ;0.994095 ;0.985986 ;0.976509 ;0.963933 ;0.947922 ;0.931882 ;0.912574 ;0.895089 ;0.877179 ;0.856953 ;0.832961 ;0.809315 ;0.694912 ;0.663043 ;0.624767 ;0.578260 ;0.544292 ;0.499059 ;0.439394 ;0.397850 ;0.327932 ;-0.567651 ;-0.625818 ;-0.662972 ;-0.701266 ;-0.745274 ;-0.782982 ;-0.820933 ;-0.850475 ;-0.879423 ;-0.903386 ;-0.931393 ;-0.951537 ;-0.968829 ;-0.982210 ;-0.991895 ;-0.997851 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.065470 ;0.098308 ;0.205443 ;0.290148 ;0.346993 ;0.395736 ;0.451467 ;0.511442 ;0.562912 ;0.617914 ;0.664263 ;0.713218 ;0.759560 ;0.799170 ;0.835362 ;0.870969 ;1.000000 ;0.997350 ;0.987557 ;0.973572 ;0.948501 ;0.924534 ;0.894721 ;0.856477 ;0.810851 ;0.755314 ;0.698792 ;0.638217 ;0.576545 ;0.511862 ;0.437457 ;0.352936 ;0.273452 ;0.258739 ;0.252984 ;0.242572 ;0.228733 ;0.209419 ;0.187679 ;0.000000 ;-0.187679 ;-0.209419 ;-0.228733 ;-0.242572 ;-0.252984 ;-0.258739 ;-0.273452 ;-0.352936 ;-0.437457 ;-0.511862 ;-0.576545 ;-0.638217 ;-0.698792 ;-0.755314 ;-0.810851 ;-0.856477 ;-0.894721 ;-0.924534 ;-0.948501 ;-0.973572 ;-0.987557 ;-0.997350 ;-1.000000 ;-0.870969 ;-0.835362 ;-0.799170 ;-0.759560 ;-0.713218 ;-0.664263 ;-0.617914 ;-0.562912 ;-0.511442 ;-0.451467 ;-0.395736 ;-0.346993 ;-0.290148 ;-0.205443 ;-0.098308 ;-0.065470 ;0.000000 + -1.000000 ;-0.995674 ;-0.987498 ;-0.972776 ;-0.953410 ;-0.936343 ;-0.918921 ;-0.895638 ;-0.866198 ;-0.836901 ;-0.800947 ;-0.766346 ;-0.724766 ;-0.679677 ;-0.635621 ;-0.589716 ;-0.537596 ;-0.092689 ;-0.033325 ;0.041898 ;0.105323 ;0.184227 ;0.241627 ;0.300149 ;0.362183 ;0.423906 ;0.486525 ;0.540040 ;0.588764 ;0.630904 ;0.668355 ;0.704301 ;0.736802 ;0.760240 ;0.844601 ;0.862299 ;0.881960 ;0.900110 ;0.918772 ;0.934668 ;1.000000 ;0.934668 ;0.918772 ;0.900110 ;0.881960 ;0.862299 ;0.844601 ;0.760240 ;0.736802 ;0.704301 ;0.668355 ;0.630904 ;0.588764 ;0.540040 ;0.486525 ;0.423906 ;0.362183 ;0.300149 ;0.241627 ;0.184227 ;0.105323 ;0.041898 ;-0.033325 ;-0.092689 ;-0.537596 ;-0.589716 ;-0.635621 ;-0.679677 ;-0.724766 ;-0.766346 ;-0.800947 ;-0.836901 ;-0.866198 ;-0.895638 ;-0.918921 ;-0.936343 ;-0.953410 ;-0.972776 ;-0.987498 ;-0.995674 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.116069 ;0.165874 ;0.210169 ;0.250680 ;0.282152 ;0.294355 ;0.427995 ;0.507301 ;0.591260 ;0.657512 ;0.719435 ;0.776185 ;0.826860 ;0.873355 ;0.914988 ;0.991416 ;0.998705 ;1.000000 ;0.994988 ;0.980153 ;0.961389 ;0.929761 ;0.900097 ;0.854513 ;0.814586 ;0.757894 ;0.702674 ;0.621532 ;0.542308 ;0.460098 ;0.371168 ;0.296171 ;0.273800 ;0.265420 ;0.251031 ;0.232882 ;0.214263 ;0.160567 ;0.000000 ;-0.160567 ;-0.214263 ;-0.232882 ;-0.251031 ;-0.265420 ;-0.273800 ;-0.296171 ;-0.371168 ;-0.460098 ;-0.542308 ;-0.621532 ;-0.702674 ;-0.757894 ;-0.814586 ;-0.854513 ;-0.900097 ;-0.929761 ;-0.961389 ;-0.980153 ;-0.994988 ;-1.000000 ;-0.998705 ;-0.991416 ;-0.914988 ;-0.873355 ;-0.826860 ;-0.776185 ;-0.719435 ;-0.657512 ;-0.591260 ;-0.507301 ;-0.427995 ;-0.294355 ;-0.282152 ;-0.250680 ;-0.210169 ;-0.165874 ;-0.116069 ;0.000000 + -1.000000 ;-0.999844 ;-0.997284 ;-0.990135 ;-0.977851 ;-0.960555 ;-0.948182 ;-0.757041 ;-0.724639 ;-0.681238 ;-0.639122 ;-0.592157 ;-0.541243 ;-0.487207 ;-0.426637 ;-0.358702 ;-0.134702 ;-0.070707 ;-0.006058 ;0.058402 ;0.136743 ;0.198593 ;0.273470 ;0.327893 ;0.395403 ;0.444257 ;0.502560 ;0.550186 ;0.608048 ;0.653699 ;0.691974 ;0.724546 ;0.745703 ;0.854415 ;0.876334 ;0.899980 ;0.920881 ;0.937247 ;0.971436 ;1.000000 ;0.971436 ;0.937247 ;0.920881 ;0.899980 ;0.876334 ;0.854415 ;0.745703 ;0.724546 ;0.691974 ;0.653699 ;0.608048 ;0.550186 ;0.502560 ;0.444257 ;0.395403 ;0.327893 ;0.273470 ;0.198593 ;0.136743 ;0.058402 ;-0.006058 ;-0.070707 ;-0.134702 ;-0.358702 ;-0.426637 ;-0.487207 ;-0.541243 ;-0.592157 ;-0.639122 ;-0.681238 ;-0.724639 ;-0.757041 ;-0.948182 ;-0.960555 ;-0.977851 ;-0.990135 ;-0.997284 ;-0.999844 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.071171 ;0.140562 ;0.206501 ;0.260555 ;0.301487 ;0.330392 ;0.363373 ;0.397925 ;0.432044 ;0.504360 ;0.553275 ;0.586755 ;0.655184 ;0.738586 ;0.783190 ;0.832261 ;0.874077 ;0.907870 ;0.941029 ;0.963853 ;0.981233 ;0.995161 ;1.000000 ;0.972163 ;0.953078 ;0.929404 ;0.901189 ;0.869998 ;0.834016 ;0.796919 ;0.753639 ;0.691960 ;0.625010 ;0.543461 ;0.474944 ;0.385089 ;0.314314 ;0.243735 ;0.121367 ;0.000000 ;-0.121367 ;-0.243735 ;-0.314314 ;-0.385089 ;-0.474944 ;-0.543461 ;-0.625010 ;-0.691960 ;-0.753639 ;-0.796919 ;-0.834016 ;-0.869998 ;-0.901189 ;-0.929404 ;-0.953078 ;-0.972163 ;-1.000000 ;-0.995161 ;-0.981233 ;-0.963853 ;-0.941029 ;-0.907870 ;-0.874077 ;-0.832261 ;-0.783190 ;-0.738586 ;-0.655184 ;-0.586755 ;-0.553275 ;-0.504360 ;-0.432044 ;-0.397925 ;-0.363373 ;-0.330392 ;-0.301487 ;-0.260555 ;-0.206501 ;-0.140562 ;-0.071171 ;0.000000 + -1.000000 ;-0.999645 ;-0.995506 ;-0.987156 ;-0.974818 ;-0.958205 ;-0.941317 ;-0.916746 ;-0.884982 ;-0.847547 ;-0.816842 ;-0.787988 ;-0.764466 ;-0.708230 ;-0.628899 ;-0.579192 ;-0.512789 ;-0.443125 ;-0.374163 ;-0.289017 ;-0.212799 ;-0.134885 ;-0.038010 ;0.178239 ;0.314405 ;0.378784 ;0.441457 ;0.502336 ;0.558646 ;0.613904 ;0.663002 ;0.712599 ;0.772350 ;0.825827 ;0.878331 ;0.913497 ;0.949017 ;0.969372 ;0.983502 ;0.995887 ;1.000000 ;0.995887 ;0.983502 ;0.969372 ;0.949017 ;0.913497 ;0.878331 ;0.825827 ;0.772350 ;0.712599 ;0.663002 ;0.613904 ;0.558646 ;0.502336 ;0.441457 ;0.378784 ;0.314405 ;0.178239 ;-0.038010 ;-0.134885 ;-0.212799 ;-0.289017 ;-0.374163 ;-0.443125 ;-0.512789 ;-0.579192 ;-0.628899 ;-0.708230 ;-0.764466 ;-0.787988 ;-0.816842 ;-0.847547 ;-0.884982 ;-0.916746 ;-0.941317 ;-0.958205 ;-0.974818 ;-0.987156 ;-0.995506 ;-0.999645 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.094559 ;0.194840 ;0.315604 ;0.399753 ;0.476736 ;0.566456 ;0.645002 ;0.724037 ;0.786724 ;0.853648 ;0.899178 ;0.933188 ;0.961558 ;0.982176 ;0.994836 ;1.000000 ;0.998753 ;0.986527 ;0.966686 ;0.939121 ;0.899226 ;0.854380 ;0.797285 ;0.733876 ;0.672793 ;0.595652 ;0.532693 ;0.474533 ;0.396166 ;0.320466 ;0.215536 ;0.116975 ;0.000000 ;-0.116975 ;-0.215536 ;-0.320466 ;-0.396166 ;-0.474533 ;-0.532693 ;-0.595652 ;-0.672793 ;-0.733876 ;-0.797285 ;-0.854380 ;-0.899226 ;-0.939121 ;-0.966686 ;-0.986527 ;-0.998753 ;-1.000000 ;-0.994836 ;-0.982176 ;-0.961558 ;-0.933188 ;-0.899178 ;-0.853648 ;-0.786724 ;-0.724037 ;-0.645002 ;-0.566456 ;-0.476736 ;-0.399753 ;-0.315604 ;-0.194840 ;-0.094559 ;0.000000 + -1.000000 ;-0.996325 ;-0.983429 ;-0.953683 ;-0.923186 ;-0.887087 ;-0.834682 ;-0.778580 ;-0.711107 ;-0.645522 ;-0.557216 ;-0.479388 ;-0.404613 ;-0.321349 ;-0.233614 ;-0.142905 ;-0.030300 ;0.027357 ;0.161922 ;0.267757 ;0.365500 ;0.467896 ;0.556252 ;0.645809 ;0.726637 ;0.791221 ;0.855431 ;0.895995 ;0.926331 ;0.956802 ;0.976555 ;0.990514 ;0.995654 ;1.000000 ;0.995654 ;0.990514 ;0.976555 ;0.956802 ;0.926331 ;0.895995 ;0.855431 ;0.791221 ;0.726637 ;0.645809 ;0.556252 ;0.467896 ;0.365500 ;0.267757 ;0.161922 ;0.027357 ;-0.030300 ;-0.142905 ;-0.233614 ;-0.321349 ;-0.404613 ;-0.479388 ;-0.557216 ;-0.645522 ;-0.711107 ;-0.778580 ;-0.834682 ;-0.887087 ;-0.923186 ;-0.953683 ;-0.983429 ;-0.996325 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.252703 ;0.490532 ;0.698785 ;0.862963 ;0.968426 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.968426 ;0.862963 ;0.698785 ;0.490532 ;0.252703 ;0.000000 ;-0.252703 ;-0.490532 ;-0.698785 ;-0.862963 ;-0.968426 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.968426 ;-0.862963 ;-0.698785 ;-0.490532 ;-0.252703 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.348471 ;0.659520 ;0.892910 ;0.999007 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.999007 ;0.892910 ;0.659520 ;0.348471 ;0.000000 ;-0.348471 ;-0.659520 ;-0.892910 ;-0.999007 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.999007 ;-0.892910 ;-0.659520 ;-0.348471 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.415481 ;0.766804 ;0.978314 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.978314 ;0.766804 ;0.415481 ;0.000000 ;-0.415481 ;-0.766804 ;-0.978314 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.978314 ;-0.766804 ;-0.415481 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.415481 ;0.766804 ;0.978314 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.978314 ;0.766804 ;0.415481 ;0.000000 ;-0.415481 ;-0.766804 ;-0.978314 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.978314 ;-0.766804 ;-0.415481 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.348471 ;0.659520 ;0.892910 ;0.999007 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.999007 ;0.892910 ;0.659520 ;0.348471 ;0.000000 ;-0.348471 ;-0.659520 ;-0.892910 ;-0.999007 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.999007 ;-0.892910 ;-0.659520 ;-0.348471 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.252703 ;0.490532 ;0.698785 ;0.862963 ;0.968426 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.968426 ;0.862963 ;0.698785 ;0.490532 ;0.252703 ;0.000000 ;-0.252703 ;-0.490532 ;-0.698785 ;-0.862963 ;-0.968426 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.968426 ;-0.862963 ;-0.698785 ;-0.490532 ;-0.252703 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.243825 ;0.474163 ;0.677755 ;0.841697 ;0.953330 ;0.999539 ;1.000000 ;1.000000 ;1.000000 ;0.999539 ;0.953330 ;0.841697 ;0.677755 ;0.474163 ;0.243825 ;0.000000 ;-0.243825 ;-0.474163 ;-0.677755 ;-0.841697 ;-0.953330 ;-0.999539 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.999539 ;-0.953330 ;-0.841697 ;-0.677755 ;-0.474163 ;-0.243825 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.315899 ;0.603796 ;0.834594 ;0.975626 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.975626 ;0.834594 ;0.603796 ;0.315899 ;0.000000 ;-0.315899 ;-0.603796 ;-0.834594 ;-0.975626 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.975626 ;-0.834594 ;-0.603796 ;-0.315899 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.383223 ;0.716529 ;0.943843 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.943843 ;0.716529 ;0.383223 ;0.000000 ;-0.383223 ;-0.716529 ;-0.943843 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.943843 ;-0.716529 ;-0.383223 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.406763 ;0.753491 ;0.970373 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970373 ;0.753491 ;0.406763 ;0.000000 ;-0.406763 ;-0.753491 ;-0.970373 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970373 ;-0.753491 ;-0.406763 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.406763 ;0.753491 ;0.970373 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970373 ;0.753491 ;0.406763 ;0.000000 ;-0.406763 ;-0.753491 ;-0.970373 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970373 ;-0.753491 ;-0.406763 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.406763 ;0.753491 ;0.970373 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970373 ;0.753491 ;0.406763 ;0.000000 ;-0.406763 ;-0.753491 ;-0.970373 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970373 ;-0.753491 ;-0.406763 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.406763 ;0.753491 ;0.970373 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970373 ;0.753491 ;0.406763 ;0.000000 ;-0.406763 ;-0.753491 ;-0.970373 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970373 ;-0.753491 ;-0.406763 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.406763 ;0.753491 ;0.970373 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970373 ;0.753491 ;0.406763 ;0.000000 ;-0.406763 ;-0.753491 ;-0.970373 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970373 ;-0.753491 ;-0.406763 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.406763 ;0.753491 ;0.970373 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970373 ;0.753491 ;0.406763 ;0.000000 ;-0.406763 ;-0.753491 ;-0.970373 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970373 ;-0.753491 ;-0.406763 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.406763 ;0.753491 ;0.970373 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970373 ;0.753491 ;0.406763 ;0.000000 ;-0.406763 ;-0.753491 ;-0.970373 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970373 ;-0.753491 ;-0.406763 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.406763 ;0.753491 ;0.970373 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970373 ;0.753491 ;0.406763 ;0.000000 ;-0.406763 ;-0.753491 ;-0.970373 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970373 ;-0.753491 ;-0.406763 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.383223 ;0.716529 ;0.943843 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.943843 ;0.716529 ;0.383223 ;0.000000 ;-0.383223 ;-0.716529 ;-0.943843 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.943843 ;-0.716529 ;-0.383223 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.315899 ;0.603796 ;0.834594 ;0.975626 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.975626 ;0.834594 ;0.603796 ;0.315899 ;0.000000 ;-0.315899 ;-0.603796 ;-0.834594 ;-0.975626 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.975626 ;-0.834594 ;-0.603796 ;-0.315899 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.243825 ;0.474163 ;0.677755 ;0.841697 ;0.953330 ;0.999539 ;1.000000 ;1.000000 ;1.000000 ;0.999539 ;0.953330 ;0.841697 ;0.677755 ;0.474163 ;0.243825 ;0.000000 ;-0.243825 ;-0.474163 ;-0.677755 ;-0.841697 ;-0.953330 ;-0.999539 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.999539 ;-0.953330 ;-0.841697 ;-0.677755 ;-0.474163 ;-0.243825 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.218448 ;0.426850 ;0.615457 ;0.775086 ;0.897317 ;0.974571 ;1.000000 ;1.000000 ;1.000000 ;0.974571 ;0.897317 ;0.775086 ;0.615457 ;0.426850 ;0.218448 ;0.000000 ;-0.218448 ;-0.426850 ;-0.615457 ;-0.775086 ;-0.897317 ;-0.974571 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.974571 ;-0.897317 ;-0.775086 ;-0.615457 ;-0.426850 ;-0.218448 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.254323 ;0.493509 ;0.702578 ;0.866720 ;0.970901 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970901 ;0.866720 ;0.702578 ;0.493509 ;0.254323 ;0.000000 ;-0.254323 ;-0.493509 ;-0.702578 ;-0.866720 ;-0.970901 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970901 ;-0.866720 ;-0.702578 ;-0.493509 ;-0.254323 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.310764 ;0.594831 ;0.824593 ;0.969456 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.969456 ;0.824593 ;0.594831 ;0.310764 ;0.000000 ;-0.310764 ;-0.594831 ;-0.824593 ;-0.969456 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.969456 ;-0.824593 ;-0.594831 ;-0.310764 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.334241 ;0.635427 ;0.868570 ;0.992366 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992366 ;0.868570 ;0.635427 ;0.334241 ;0.000000 ;-0.334241 ;-0.635427 ;-0.868570 ;-0.992366 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992366 ;-0.868570 ;-0.635427 ;-0.334241 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.334612 ;0.636061 ;0.869229 ;0.992613 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992613 ;0.869229 ;0.636061 ;0.334612 ;0.000000 ;-0.334612 ;-0.636061 ;-0.869229 ;-0.992613 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992613 ;-0.869229 ;-0.636061 ;-0.334612 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.334612 ;0.636061 ;0.869229 ;0.992613 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992613 ;0.869229 ;0.636061 ;0.334612 ;0.000000 ;-0.334612 ;-0.636061 ;-0.869229 ;-0.992613 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992613 ;-0.869229 ;-0.636061 ;-0.334612 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.334612 ;0.636061 ;0.869229 ;0.992613 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992613 ;0.869229 ;0.636061 ;0.334612 ;0.000000 ;-0.334612 ;-0.636061 ;-0.869229 ;-0.992613 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992613 ;-0.869229 ;-0.636061 ;-0.334612 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.334612 ;0.636061 ;0.869229 ;0.992613 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992613 ;0.869229 ;0.636061 ;0.334612 ;0.000000 ;-0.334612 ;-0.636061 ;-0.869229 ;-0.992613 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992613 ;-0.869229 ;-0.636061 ;-0.334612 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.334612 ;0.636061 ;0.869229 ;0.992613 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992613 ;0.869229 ;0.636061 ;0.334612 ;0.000000 ;-0.334612 ;-0.636061 ;-0.869229 ;-0.992613 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992613 ;-0.869229 ;-0.636061 ;-0.334612 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.334612 ;0.636061 ;0.869229 ;0.992613 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992613 ;0.869229 ;0.636061 ;0.334612 ;0.000000 ;-0.334612 ;-0.636061 ;-0.869229 ;-0.992613 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992613 ;-0.869229 ;-0.636061 ;-0.334612 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.334241 ;0.635427 ;0.868570 ;0.992366 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992366 ;0.868570 ;0.635427 ;0.334241 ;0.000000 ;-0.334241 ;-0.635427 ;-0.868570 ;-0.992366 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992366 ;-0.868570 ;-0.635427 ;-0.334241 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.310764 ;0.594831 ;0.824593 ;0.969456 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.969456 ;0.824593 ;0.594831 ;0.310764 ;0.000000 ;-0.310764 ;-0.594831 ;-0.824593 ;-0.969456 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.969456 ;-0.824593 ;-0.594831 ;-0.310764 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.254323 ;0.493509 ;0.702578 ;0.866720 ;0.970901 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970901 ;0.866720 ;0.702578 ;0.493509 ;0.254323 ;0.000000 ;-0.254323 ;-0.493509 ;-0.702578 ;-0.866720 ;-0.970901 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970901 ;-0.866720 ;-0.702578 ;-0.493509 ;-0.254323 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.218448 ;0.426850 ;0.615457 ;0.775086 ;0.897317 ;0.974571 ;1.000000 ;1.000000 ;1.000000 ;0.974571 ;0.897317 ;0.775086 ;0.615457 ;0.426850 ;0.218448 ;0.000000 ;-0.218448 ;-0.426850 ;-0.615457 ;-0.775086 ;-0.897317 ;-0.974571 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.974571 ;-0.897317 ;-0.775086 ;-0.615457 ;-0.426850 ;-0.218448 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.252703 ;0.490532 ;0.698785 ;0.862963 ;0.968426 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.968426 ;0.862963 ;0.698785 ;0.490532 ;0.252703 ;0.000000 ;-0.252703 ;-0.490532 ;-0.698785 ;-0.862963 ;-0.968426 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.968426 ;-0.862963 ;-0.698785 ;-0.490532 ;-0.252703 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.348471 ;0.659520 ;0.892910 ;0.999007 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.999007 ;0.892910 ;0.659520 ;0.348471 ;0.000000 ;-0.348471 ;-0.659520 ;-0.892910 ;-0.999007 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.999007 ;-0.892910 ;-0.659520 ;-0.348471 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.415481 ;0.766804 ;0.978314 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.978314 ;0.766804 ;0.415481 ;0.000000 ;-0.415481 ;-0.766804 ;-0.978314 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.978314 ;-0.766804 ;-0.415481 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.415481 ;0.766804 ;0.978314 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.978314 ;0.766804 ;0.415481 ;0.000000 ;-0.415481 ;-0.766804 ;-0.978314 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.978314 ;-0.766804 ;-0.415481 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.348471 ;0.659520 ;0.892910 ;0.999007 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.999007 ;0.892910 ;0.659520 ;0.348471 ;0.000000 ;-0.348471 ;-0.659520 ;-0.892910 ;-0.999007 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.999007 ;-0.892910 ;-0.659520 ;-0.348471 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.252703 ;0.490532 ;0.698785 ;0.862963 ;0.968426 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.968426 ;0.862963 ;0.698785 ;0.490532 ;0.252703 ;0.000000 ;-0.252703 ;-0.490532 ;-0.698785 ;-0.862963 ;-0.968426 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.968426 ;-0.862963 ;-0.698785 ;-0.490532 ;-0.252703 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.243825 ;0.474163 ;0.677755 ;0.841697 ;0.953330 ;0.999539 ;1.000000 ;1.000000 ;1.000000 ;0.999539 ;0.953330 ;0.841697 ;0.677755 ;0.474163 ;0.243825 ;0.000000 ;-0.243825 ;-0.474163 ;-0.677755 ;-0.841697 ;-0.953330 ;-0.999539 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.999539 ;-0.953330 ;-0.841697 ;-0.677755 ;-0.474163 ;-0.243825 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.315899 ;0.603796 ;0.834594 ;0.975626 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.975626 ;0.834594 ;0.603796 ;0.315899 ;0.000000 ;-0.315899 ;-0.603796 ;-0.834594 ;-0.975626 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.975626 ;-0.834594 ;-0.603796 ;-0.315899 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.000000 ;0.346671 ;0.652254 ;0.871644 ;0.976146 ;1.000000 ;0.995597 ;0.990221 ;0.979203 ;0.990221 ;0.995597 ;1.000000 ;0.976146 ;0.871644 ;0.652254 ;0.346671 ;-0.000000 ;-0.346671 ;-0.652254 ;-0.871644 ;-0.976146 ;-1.000000 ;-0.995597 ;-0.990221 ;-0.979203 ;-0.990221 ;-0.995597 ;-1.000000 ;-0.976146 ;-0.871644 ;-0.652254 ;-0.346671 ;0.000000 + -1.000000 ;-0.980685 ;-0.923606 ;-0.831536 ;-0.707915 ;-0.556946 ;-0.383475 ;-0.194869 ;0.000001 ;0.194871 ;0.383477 ;0.556948 ;0.707917 ;0.831538 ;0.923608 ;0.980687 ;1.000000 ;0.980687 ;0.923608 ;0.831538 ;0.707917 ;0.556948 ;0.383477 ;0.194871 ;0.000001 ;-0.194869 ;-0.383475 ;-0.556946 ;-0.707915 ;-0.831536 ;-0.923606 ;-0.980685 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.400797 ;0.744261 ;0.964329 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.964329 ;0.744261 ;0.400797 ;0.000000 ;-0.400797 ;-0.744261 ;-0.964329 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.964329 ;-0.744261 ;-0.400797 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.406763 ;0.753491 ;0.970373 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970373 ;0.753491 ;0.406763 ;0.000000 ;-0.406763 ;-0.753491 ;-0.970373 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970373 ;-0.753491 ;-0.406763 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.406763 ;0.753491 ;0.970373 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970373 ;0.753491 ;0.406763 ;0.000000 ;-0.406763 ;-0.753491 ;-0.970373 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970373 ;-0.753491 ;-0.406763 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.406763 ;0.753491 ;0.970373 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970373 ;0.753491 ;0.406763 ;0.000000 ;-0.406763 ;-0.753491 ;-0.970373 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970373 ;-0.753491 ;-0.406763 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.406763 ;0.753491 ;0.970373 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970373 ;0.753491 ;0.406763 ;0.000000 ;-0.406763 ;-0.753491 ;-0.970373 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970373 ;-0.753491 ;-0.406763 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.406763 ;0.753491 ;0.970373 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970373 ;0.753491 ;0.406763 ;0.000000 ;-0.406763 ;-0.753491 ;-0.970373 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970373 ;-0.753491 ;-0.406763 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.383223 ;0.716529 ;0.943843 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.943843 ;0.716529 ;0.383223 ;0.000000 ;-0.383223 ;-0.716529 ;-0.943843 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.943843 ;-0.716529 ;-0.383223 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.315899 ;0.603796 ;0.834594 ;0.975626 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.975626 ;0.834594 ;0.603796 ;0.315899 ;0.000000 ;-0.315899 ;-0.603796 ;-0.834594 ;-0.975626 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.975626 ;-0.834594 ;-0.603796 ;-0.315899 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.243825 ;0.474163 ;0.677755 ;0.841697 ;0.953330 ;0.999539 ;1.000000 ;1.000000 ;1.000000 ;0.999539 ;0.953330 ;0.841697 ;0.677755 ;0.474163 ;0.243825 ;0.000000 ;-0.243825 ;-0.474163 ;-0.677755 ;-0.841697 ;-0.953330 ;-0.999539 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.999539 ;-0.953330 ;-0.841697 ;-0.677755 ;-0.474163 ;-0.243825 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.218448 ;0.426850 ;0.615457 ;0.775086 ;0.897317 ;0.974571 ;1.000000 ;1.000000 ;1.000000 ;0.974571 ;0.897317 ;0.775086 ;0.615457 ;0.426850 ;0.218448 ;0.000000 ;-0.218448 ;-0.426850 ;-0.615457 ;-0.775086 ;-0.897317 ;-0.974571 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.974571 ;-0.897317 ;-0.775086 ;-0.615457 ;-0.426850 ;-0.218448 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.254323 ;0.493509 ;0.702578 ;0.866720 ;0.970901 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970901 ;0.866720 ;0.702578 ;0.493509 ;0.254323 ;0.000000 ;-0.254323 ;-0.493509 ;-0.702578 ;-0.866720 ;-0.970901 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970901 ;-0.866720 ;-0.702578 ;-0.493509 ;-0.254323 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.310764 ;0.594831 ;0.824593 ;0.969456 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.969456 ;0.824593 ;0.594831 ;0.310764 ;0.000000 ;-0.310764 ;-0.594831 ;-0.824593 ;-0.969456 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.969456 ;-0.824593 ;-0.594831 ;-0.310764 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.334241 ;0.635427 ;0.868570 ;0.992366 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992366 ;0.868570 ;0.635427 ;0.334241 ;0.000000 ;-0.334241 ;-0.635427 ;-0.868570 ;-0.992366 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992366 ;-0.868570 ;-0.635427 ;-0.334241 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.334612 ;0.636061 ;0.869229 ;0.992613 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992613 ;0.869229 ;0.636061 ;0.334612 ;0.000000 ;-0.334612 ;-0.636061 ;-0.869229 ;-0.992613 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992613 ;-0.869229 ;-0.636061 ;-0.334612 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.334612 ;0.636061 ;0.869229 ;0.992613 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992613 ;0.869229 ;0.636061 ;0.334612 ;0.000000 ;-0.334612 ;-0.636061 ;-0.869229 ;-0.992613 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992613 ;-0.869229 ;-0.636061 ;-0.334612 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.334612 ;0.636061 ;0.869229 ;0.992613 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992613 ;0.869229 ;0.636061 ;0.334612 ;0.000000 ;-0.334612 ;-0.636061 ;-0.869229 ;-0.992613 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992613 ;-0.869229 ;-0.636061 ;-0.334612 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.334612 ;0.636061 ;0.869229 ;0.992613 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992613 ;0.869229 ;0.636061 ;0.334612 ;0.000000 ;-0.334612 ;-0.636061 ;-0.869229 ;-0.992613 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992613 ;-0.869229 ;-0.636061 ;-0.334612 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.334612 ;0.636061 ;0.869229 ;0.992613 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992613 ;0.869229 ;0.636061 ;0.334612 ;0.000000 ;-0.334612 ;-0.636061 ;-0.869229 ;-0.992613 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992613 ;-0.869229 ;-0.636061 ;-0.334612 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.334612 ;0.636061 ;0.869229 ;0.992613 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992613 ;0.869229 ;0.636061 ;0.334612 ;0.000000 ;-0.334612 ;-0.636061 ;-0.869229 ;-0.992613 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992613 ;-0.869229 ;-0.636061 ;-0.334612 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.334241 ;0.635427 ;0.868570 ;0.992366 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992366 ;0.868570 ;0.635427 ;0.334241 ;0.000000 ;-0.334241 ;-0.635427 ;-0.868570 ;-0.992366 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992366 ;-0.868570 ;-0.635427 ;-0.334241 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.310764 ;0.594831 ;0.824593 ;0.969456 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.969456 ;0.824593 ;0.594831 ;0.310764 ;0.000000 ;-0.310764 ;-0.594831 ;-0.824593 ;-0.969456 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.969456 ;-0.824593 ;-0.594831 ;-0.310764 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.254323 ;0.493509 ;0.702578 ;0.866720 ;0.970901 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970901 ;0.866720 ;0.702578 ;0.493509 ;0.254323 ;0.000000 ;-0.254323 ;-0.493509 ;-0.702578 ;-0.866720 ;-0.970901 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970901 ;-0.866720 ;-0.702578 ;-0.493509 ;-0.254323 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.218448 ;0.426850 ;0.615457 ;0.775086 ;0.897317 ;0.974571 ;1.000000 ;1.000000 ;1.000000 ;0.974571 ;0.897317 ;0.775086 ;0.615457 ;0.426850 ;0.218448 ;0.000000 ;-0.218448 ;-0.426850 ;-0.615457 ;-0.775086 ;-0.897317 ;-0.974571 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.974571 ;-0.897317 ;-0.775086 ;-0.615457 ;-0.426850 ;-0.218448 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + + + ... + ... + + 1.000000 ;0.963618 ;0.927743 ;0.892317 ;0.857288 ;0.822689 ;0.788651 ;0.755121 ;0.722053 ;0.689413 ;0.657168 ;0.625310 ;0.593838 ;0.562774 ;0.532152 ;0.502027 ;0.472522 ;0.443826 ;0.415944 ;0.388873 ;0.362611 ;0.337160 ;0.312516 ;0.288678 ;0.265655 ;0.243448 ;0.222064 ;0.201510 ;0.181796 ;0.162934 ;0.144935 ;0.127812 ;0.111580 ;0.096253 ;0.081852 ;0.068414 ;0.055978 ;0.044596 ;0.034320 ;0.025215 ;0.017354 ;0.010821 ;0.005725 ;0.002191 ;0.000347 ;0.000000 ;0.000347 ;0.002191 ;0.005725 ;0.010821 ;0.017354 ;0.025215 ;0.034320 ;0.044596 ;0.055978 ;0.068414 ;0.081852 ;0.096253 ;0.111580 ;0.127812 ;0.144935 ;0.162935 ;0.181796 ;0.201510 ;0.222064 ;0.243448 ;0.265655 ;0.288678 ;0.312516 ;0.337160 ;0.362611 ;0.388873 ;0.415944 ;0.443826 ;0.472522 ;0.502027 ;0.532152 ;0.562774 ;0.593838 ;0.625310 ;0.657168 ;0.689414 ;0.722054 ;0.755121 ;0.788650 ;0.822689 ;0.857290 ;0.892322 ;0.927748 ;0.963622 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.000000 ;-0.003004 ;-0.005893 ;-0.008604 ;-0.011082 ;-0.013356 ;-0.015550 ;-0.017609 ;-0.019479 ;-0.021122 ;-0.022502 ;-0.023601 ;-0.024415 ;-0.024959 ;-0.025261 ;-0.025370 ;-0.025344 ;-0.025209 ;-0.024971 ;-0.024642 ;-0.024231 ;-0.023747 ;-0.023202 ;-0.022605 ;-0.021958 ;-0.021272 ;-0.020551 ;-0.019800 ;-0.019021 ;-0.018216 ;-0.017392 ;-0.016550 ;-0.015694 ;-0.014829 ;-0.013956 ;-0.013063 ;-0.012138 ;-0.011160 ;-0.010113 ;-0.008974 ;-0.007724 ;-0.006339 ;-0.004798 ;-0.003090 ;-0.001277 ;0.000000 ;0.001277 ;0.003090 ;0.004798 ;0.006339 ;0.007724 ;0.008974 ;0.010113 ;0.011160 ;0.012138 ;0.013063 ;0.013956 ;0.014829 ;0.015694 ;0.016550 ;0.017392 ;0.018216 ;0.019021 ;0.019800 ;0.020551 ;0.021272 ;0.021958 ;0.022605 ;0.023202 ;0.023747 ;0.024231 ;0.024642 ;0.024971 ;0.025209 ;0.025344 ;0.025370 ;0.025261 ;0.024959 ;0.024415 ;0.023601 ;0.022502 ;0.021124 ;0.019480 ;0.017608 ;0.015549 ;0.013356 ;0.011084 ;0.008609 ;0.005898 ;0.003007 ;0.000000 + + + + ... + ... + + 1.000000 ;0.963618 ;0.927743 ;0.892317 ;0.857288 ;0.822689 ;0.788651 ;0.755121 ;0.722053 ;0.689413 ;0.657168 ;0.625310 ;0.593838 ;0.562774 ;0.532152 ;0.502027 ;0.472522 ;0.443826 ;0.415944 ;0.388873 ;0.362611 ;0.337160 ;0.312516 ;0.288678 ;0.265655 ;0.243448 ;0.222064 ;0.201510 ;0.181796 ;0.162934 ;0.144935 ;0.127812 ;0.111580 ;0.096253 ;0.081852 ;0.068414 ;0.055978 ;0.044596 ;0.034320 ;0.025215 ;0.017354 ;0.010821 ;0.005725 ;0.002191 ;0.000347 ;0.000000 ;0.000347 ;0.002191 ;0.005725 ;0.010821 ;0.017354 ;0.025215 ;0.034320 ;0.044596 ;0.055978 ;0.068414 ;0.081852 ;0.096253 ;0.111580 ;0.127812 ;0.144935 ;0.162935 ;0.181796 ;0.201510 ;0.222064 ;0.243448 ;0.265655 ;0.288678 ;0.312516 ;0.337160 ;0.362611 ;0.388873 ;0.415944 ;0.443826 ;0.472522 ;0.502027 ;0.532152 ;0.562774 ;0.593838 ;0.625310 ;0.657168 ;0.689414 ;0.722054 ;0.755121 ;0.788650 ;0.822689 ;0.857290 ;0.892322 ;0.927748 ;0.963622 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.000000 ;-0.003004 ;-0.005893 ;-0.008604 ;-0.011082 ;-0.013356 ;-0.015550 ;-0.017609 ;-0.019479 ;-0.021122 ;-0.022502 ;-0.023601 ;-0.024415 ;-0.024959 ;-0.025261 ;-0.025370 ;-0.025344 ;-0.025209 ;-0.024971 ;-0.024642 ;-0.024231 ;-0.023747 ;-0.023202 ;-0.022605 ;-0.021958 ;-0.021272 ;-0.020551 ;-0.019800 ;-0.019021 ;-0.018216 ;-0.017392 ;-0.016550 ;-0.015694 ;-0.014829 ;-0.013956 ;-0.013063 ;-0.012138 ;-0.011160 ;-0.010113 ;-0.008974 ;-0.007724 ;-0.006339 ;-0.004798 ;-0.003090 ;-0.001277 ;0.000000 ;0.001277 ;0.003090 ;0.004798 ;0.006339 ;0.007724 ;0.008974 ;0.010113 ;0.011160 ;0.012138 ;0.013063 ;0.013956 ;0.014829 ;0.015694 ;0.016550 ;0.017392 ;0.018216 ;0.019021 ;0.019800 ;0.020551 ;0.021272 ;0.021958 ;0.022605 ;0.023202 ;0.023747 ;0.024231 ;0.024642 ;0.024971 ;0.025209 ;0.025344 ;0.025370 ;0.025261 ;0.024959 ;0.024415 ;0.023601 ;0.022502 ;0.021124 ;0.019480 ;0.017608 ;0.015549 ;0.013356 ;0.011084 ;0.008609 ;0.005898 ;0.003007 ;0.000000 + + + + ... + ... + + 1.000000 ;0.790636 ;0.658676 ;0.481925 ;0.369320 ;0.275866 ;0.184270 ;0.080490 ;0.030321 ;0.014845 ;0.005655 ;0.000771 ;0.000000 ;0.000863 ;0.007973 ;0.016576 ;0.057944 ;0.150753 ;0.251349 ;0.358086 ;0.527807 ;0.657275 ;0.781896 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.000000 ;-0.017428 ;-0.023337 ;-0.025564 ;-0.025300 ;-0.023856 ;-0.020606 ;-0.014510 ;-0.010085 ;-0.007877 ;-0.005394 ;-0.002109 ;0.000000 ;0.002839 ;0.006838 ;0.008800 ;0.013352 ;0.019443 ;0.023653 ;0.025607 ;0.025687 ;0.023592 ;0.018084 ;-0.000000 + + + + ... + ... + + 1.000000 ;0.770699 ;0.715287 ;0.677589 ;0.643834 ;0.585004 ;0.552287 ;0.519807 ;0.440497 ;0.366661 ;0.318370 ;0.248105 ;0.201698 ;0.154868 ;0.102733 ;0.070779 ;0.042973 ;0.026089 ;0.015474 ;0.009927 ;0.004902 ;0.001948 ;0.000929 ;0.000202 ;0.000000 ;0.000188 ;0.000759 ;0.001521 ;0.004522 ;0.008349 ;0.014343 ;0.021013 ;0.031358 ;0.049273 ;0.080477 ;0.138826 ;0.204549 ;0.274977 ;0.332199 ;0.395826 ;0.466784 ;0.536776 ;0.589187 ;0.622019 ;0.656260 ;0.700546 ;0.730571 ;0.805429 ;0.860509 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;-0.017385 ;-0.020474 ;-0.022224 ;-0.023494 ;-0.024977 ;-0.025419 ;-0.025611 ;-0.025409 ;-0.024477 ;-0.023489 ;-0.021538 ;-0.019906 ;-0.017936 ;-0.015261 ;-0.013278 ;-0.011036 ;-0.009110 ;-0.007355 ;-0.006101 ;-0.004453 ;-0.002891 ;-0.002021 ;-0.000935 ;0.000000 ;0.001006 ;0.001928 ;0.002667 ;0.004390 ;0.005752 ;0.007236 ;0.008452 ;0.009890 ;0.011711 ;0.014016 ;0.017259 ;0.020094 ;0.022428 ;0.023866 ;0.024990 ;0.025622 ;0.025585 ;0.024947 ;0.024192 ;0.023095 ;0.021229 ;0.019706 ;0.015247 ;0.011658 ;0.000000 + + + + ... + ... + + 1.000000 ;0.931937 ;0.883470 ;0.863967 ;0.844359 ;0.824718 ;0.805014 ;0.791117 ;0.771151 ;0.749018 ;0.730765 ;0.713239 ;0.685078 ;0.649341 ;0.613049 ;0.553197 ;0.496931 ;0.458638 ;0.400396 ;0.358267 ;0.282372 ;0.218282 ;0.167915 ;0.124112 ;0.087842 ;0.071512 ;0.058508 ;0.048681 ;0.039310 ;0.030768 ;0.022907 ;0.015756 ;0.009680 ;0.006921 ;0.004149 ;0.001982 ;0.000791 ;0.000276 ;0.000087 ;0.000000 ;0.000225 ;0.000703 ;0.001443 ;0.002481 ;0.004603 ;0.007280 ;0.012016 ;0.016938 ;0.020461 ;0.028359 ;0.039710 ;0.052946 ;0.066865 ;0.078469 ;0.090628 ;0.103521 ;0.116947 ;0.141550 ;0.171445 ;0.197681 ;0.235343 ;0.386363 ;0.443914 ;0.499374 ;0.571929 ;0.622051 ;0.657806 ;0.677101 ;0.708152 ;0.725660 ;0.782525 ;0.905888 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.000000 ;-0.009498 ;-0.014347 ;-0.016183 ;-0.017890 ;-0.019436 ;-0.020807 ;-0.021661 ;-0.022763 ;-0.023857 ;-0.024628 ;-0.025248 ;-0.026005 ;-0.026581 ;-0.026809 ;-0.026679 ;-0.026258 ;-0.025777 ;-0.024677 ;-0.023622 ;-0.021584 ;-0.019707 ;-0.018023 ;-0.016270 ;-0.014490 ;-0.013539 ;-0.012659 ;-0.011840 ;-0.010878 ;-0.009805 ;-0.008589 ;-0.007219 ;-0.005709 ;-0.004811 ;-0.003757 ;-0.002656 ;-0.001738 ;-0.001076 ;-0.000687 ;0.000000 ;0.000738 ;0.001440 ;0.002124 ;0.002807 ;0.003958 ;0.005216 ;0.006981 ;0.008503 ;0.009474 ;0.011408 ;0.013797 ;0.016190 ;0.018388 ;0.019954 ;0.021313 ;0.022405 ;0.023089 ;0.023774 ;0.024310 ;0.024622 ;0.024915 ;0.025591 ;0.025634 ;0.025265 ;0.024294 ;0.023306 ;0.022291 ;0.021595 ;0.020219 ;0.019293 ;0.015931 ;0.008341 ;-0.000000 + + + + ... + ... + + 1.000000 ;0.934088 ;0.878382 ;0.858030 ;0.837567 ;0.817072 ;0.796511 ;0.782010 ;0.763340 ;0.742189 ;0.724229 ;0.706743 ;0.678331 ;0.641843 ;0.624272 ;0.588851 ;0.566424 ;0.516758 ;0.462865 ;0.423439 ;0.352121 ;0.256165 ;0.189909 ;0.152074 ;0.126010 ;0.036059 ;0.030412 ;0.020707 ;0.012713 ;0.008910 ;0.006149 ;0.004064 ;0.002496 ;0.001357 ;0.000586 ;0.000144 ;0.000000 ;0.000084 ;0.000357 ;0.000843 ;0.001572 ;0.002591 ;0.003973 ;0.005850 ;0.008542 ;0.015043 ;0.036835 ;0.048465 ;0.065617 ;0.084986 ;0.096180 ;0.107166 ;0.114234 ;0.120326 ;0.132746 ;0.146381 ;0.174874 ;0.202382 ;0.245512 ;0.408904 ;0.447877 ;0.468391 ;0.516182 ;0.579252 ;0.613874 ;0.634185 ;0.650685 ;0.683955 ;0.701875 ;0.719491 ;0.803352 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.000000 ;-0.009218 ;-0.014723 ;-0.016598 ;-0.018334 ;-0.019896 ;-0.021270 ;-0.022117 ;-0.023088 ;-0.024065 ;-0.024764 ;-0.025326 ;-0.025998 ;-0.026468 ;-0.026561 ;-0.026545 ;-0.026430 ;-0.026008 ;-0.025323 ;-0.024602 ;-0.022873 ;-0.020297 ;-0.018307 ;-0.017002 ;-0.016005 ;-0.012045 ;-0.011619 ;-0.010563 ;-0.007638 ;-0.005660 ;-0.004095 ;-0.002844 ;-0.001855 ;-0.001096 ;-0.000545 ;-0.000184 ;0.000000 ;0.000193 ;0.000584 ;0.001188 ;0.002025 ;0.003122 ;0.004518 ;0.006276 ;0.008525 ;0.012054 ;0.016191 ;0.018128 ;0.020782 ;0.023542 ;0.024972 ;0.026146 ;0.026771 ;0.027211 ;0.027807 ;0.028107 ;0.028359 ;0.028468 ;0.028467 ;0.028042 ;0.027797 ;0.027590 ;0.026918 ;0.025748 ;0.024910 ;0.024311 ;0.023747 ;0.022368 ;0.021475 ;0.020487 ;0.015239 ;-0.000000 + + + + ... + ... + + 1.000000 ;0.887892 ;0.864740 ;0.842107 ;0.819351 ;0.796560 ;0.773697 ;0.757572 ;0.740731 ;0.720735 ;0.702734 ;0.669572 ;0.637144 ;0.615780 ;0.574848 ;0.532531 ;0.453991 ;0.396817 ;0.278969 ;0.188454 ;0.153838 ;0.130883 ;0.116633 ;0.074106 ;0.043432 ;0.026641 ;0.018669 ;0.012884 ;0.008516 ;0.005233 ;0.002845 ;0.001231 ;0.000304 ;0.000000 ;0.000173 ;0.000740 ;0.001750 ;0.003268 ;0.005391 ;0.008272 ;0.012191 ;0.017820 ;0.031476 ;0.068419 ;0.079858 ;0.094350 ;0.106021 ;0.115019 ;0.126769 ;0.134733 ;0.143047 ;0.154170 ;0.207815 ;0.302681 ;0.422711 ;0.475610 ;0.527132 ;0.565776 ;0.607611 ;0.625471 ;0.661049 ;0.679974 ;0.698386 ;0.788379 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;-0.014046 ;-0.016298 ;-0.018374 ;-0.020286 ;-0.021994 ;-0.023481 ;-0.024388 ;-0.025224 ;-0.026095 ;-0.026751 ;-0.027642 ;-0.028152 ;-0.028318 ;-0.028339 ;-0.028064 ;-0.027144 ;-0.026154 ;-0.023564 ;-0.021299 ;-0.020331 ;-0.019576 ;-0.019000 ;-0.017014 ;-0.015382 ;-0.011333 ;-0.008489 ;-0.006212 ;-0.004373 ;-0.002904 ;-0.001759 ;-0.000909 ;-0.000329 ;0.000000 ;0.000353 ;0.001011 ;0.001998 ;0.003345 ;0.005095 ;0.007311 ;0.010091 ;0.013641 ;0.019272 ;0.025310 ;0.027015 ;0.029023 ;0.030490 ;0.031443 ;0.032416 ;0.032892 ;0.033197 ;0.033349 ;0.033125 ;0.032262 ;0.030913 ;0.030035 ;0.028989 ;0.028059 ;0.026796 ;0.026142 ;0.024578 ;0.023587 ;0.022508 ;0.016696 ;0.000000 + + + + ... + ... + + 1.000000 ;0.922384 ;0.849623 ;0.824461 ;0.799164 ;0.773827 ;0.748411 ;0.730485 ;0.715166 ;0.695996 ;0.677693 ;0.658952 ;0.642939 ;0.608219 ;0.585071 ;0.564212 ;0.521130 ;0.461359 ;0.394124 ;0.305304 ;0.219295 ;0.196252 ;0.176930 ;0.160835 ;0.144160 ;0.133899 ;0.121370 ;0.112214 ;0.100810 ;0.047336 ;0.029044 ;0.020355 ;0.014049 ;0.009287 ;0.005707 ;0.003104 ;0.001344 ;0.000332 ;0.000000 ;0.000188 ;0.000807 ;0.001908 ;0.003565 ;0.005881 ;0.009024 ;0.013297 ;0.019432 ;0.034286 ;0.059212 ;0.072101 ;0.085940 ;0.094752 ;0.105834 ;0.113529 ;0.121848 ;0.130370 ;0.137629 ;0.145430 ;0.153194 ;0.162243 ;0.179504 ;0.198904 ;0.230583 ;0.302131 ;0.369521 ;0.428814 ;0.487042 ;0.530221 ;0.562536 ;0.807006 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;-0.010922 ;-0.018158 ;-0.020474 ;-0.022600 ;-0.024492 ;-0.026127 ;-0.027117 ;-0.027861 ;-0.028670 ;-0.029313 ;-0.029844 ;-0.030202 ;-0.030702 ;-0.030853 ;-0.030885 ;-0.030701 ;-0.030090 ;-0.029135 ;-0.027581 ;-0.025835 ;-0.025254 ;-0.024576 ;-0.023783 ;-0.022699 ;-0.021891 ;-0.020753 ;-0.019816 ;-0.018523 ;-0.014644 ;-0.010677 ;-0.008009 ;-0.005883 ;-0.004165 ;-0.002788 ;-0.001710 ;-0.000900 ;-0.000336 ;0.000000 ;0.000364 ;0.001018 ;0.001984 ;0.003296 ;0.004995 ;0.007145 ;0.009850 ;0.013329 ;0.019109 ;0.023678 ;0.025862 ;0.028059 ;0.029371 ;0.030918 ;0.031890 ;0.032838 ;0.033698 ;0.034329 ;0.034894 ;0.035344 ;0.035753 ;0.036227 ;0.036382 ;0.036137 ;0.035199 ;0.034122 ;0.033038 ;0.031782 ;0.030687 ;0.029709 ;0.015783 ;0.000000 + + + + ... + ... + + 1.000000 ;0.891325 ;0.834981 ;0.823498 ;0.808259 ;0.790340 ;0.781475 ;0.765609 ;0.748381 ;0.720414 ;0.703288 ;0.689060 ;0.675361 ;0.656564 ;0.637042 ;0.621185 ;0.583506 ;0.558858 ;0.537694 ;0.491386 ;0.455751 ;0.394522 ;0.332712 ;0.272892 ;0.236826 ;0.218067 ;0.203370 ;0.187211 ;0.177215 ;0.166003 ;0.150157 ;0.129981 ;0.120166 ;0.107097 ;0.086403 ;0.067080 ;0.049080 ;0.036514 ;0.029379 ;0.018103 ;0.012701 ;0.008771 ;0.005800 ;0.003565 ;0.001938 ;0.000838 ;0.000207 ;0.000000 ;0.000120 ;0.000512 ;0.001208 ;0.002253 ;0.003710 ;0.005683 ;0.008356 ;0.012175 ;0.021279 ;0.030171 ;0.036613 ;0.039030 ;0.043640 ;0.061114 ;0.081776 ;0.094445 ;0.107512 ;0.125078 ;0.136482 ;0.146772 ;0.155965 ;0.167392 ;0.177123 ;0.188218 ;0.202526 ;0.214637 ;0.224592 ;0.234398 ;0.267390 ;0.334614 ;0.940994 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;-0.017338 ;-0.022820 ;-0.024188 ;-0.025728 ;-0.027219 ;-0.027853 ;-0.028843 ;-0.029734 ;-0.031377 ;-0.032239 ;-0.032860 ;-0.033391 ;-0.034000 ;-0.034501 ;-0.034814 ;-0.035262 ;-0.035357 ;-0.035333 ;-0.035020 ;-0.034601 ;-0.033683 ;-0.032634 ;-0.031527 ;-0.030759 ;-0.030078 ;-0.029282 ;-0.028124 ;-0.027265 ;-0.026173 ;-0.024402 ;-0.021782 ;-0.020366 ;-0.018346 ;-0.014835 ;-0.012990 ;-0.010940 ;-0.009220 ;-0.007803 ;-0.005158 ;-0.003813 ;-0.002796 ;-0.001993 ;-0.001354 ;-0.000851 ;-0.000466 ;-0.000186 ;0.000000 ;0.000201 ;0.000528 ;0.000995 ;0.001620 ;0.002428 ;0.003457 ;0.004775 ;0.006541 ;0.010117 ;0.012617 ;0.014093 ;0.014599 ;0.015523 ;0.018864 ;0.022646 ;0.024839 ;0.026910 ;0.029372 ;0.030771 ;0.031901 ;0.032802 ;0.033783 ;0.034498 ;0.035174 ;0.035827 ;0.036199 ;0.036360 ;0.036371 ;0.035911 ;0.034608 ;0.004011 ;0.000000 + + + + +
+
diff --git a/test_files/CPACSfiles/labARscaled.xml b/test_files/CPACSfiles/labARscaled.xml new file mode 100644 index 000000000..847c8e6d4 --- /dev/null +++ b/test_files/CPACSfiles/labARscaled.xml @@ -0,0 +1,1070 @@ + + +
+ labARscaled + Simple Wing for unit testing + Martin Siggel + 2012-10-09T15:12:47 + 0.2 + 3.0 + + + Converted to cpacs 3.0 using cpacs2to3 - does not include structure update + cpacs2to3 + 2018-01-15T09:22:57 + 0.2 + 3.0 + + + Add this update + Aidan + 2018-10-03T09:00:01 + 0.3 + 3.0 + + +
+ + + + labAv0 + + 0.027329 + 0.069737 + + 0.19223 + 0 + 0 + + + + + Body1 + description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + +
+ Body1Frame1 + description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.004572 + 0 + 0 + + + + + ... + fuseprof_1_1 + + + 1 + 0.0022547 + 0.0022547 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ Body1Frame2 + description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.054356 + 0 + 0 + + + + + ... + fuseprof_1_2 + + + 1 + 0.013229 + 0.013229 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ Body1Frame3 + description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.10414 + 0 + 0 + + + + + ... + fuseprof_1_3 + + + 1 + 0.019512 + 0.019512 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ Body1Frame4 + description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.15392 + 0 + 0 + + + + + ... + fuseprof_1_4 + + + 1 + 0.023339 + 0.023339 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ Body1Frame5 + description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.20371 + 0 + 0 + + + + + ... + fuseprof_1_5 + + + 1 + 0.025174 + 0.025174 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ Body1Frame6 + description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.25349 + 0 + 0 + + + + + ... + fuseprof_1_6 + + + 1 + 0.025174 + 0.025174 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ Body1Frame7 + description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.30328 + 0 + 0 + + + + + ... + fuseprof_1_7 + + + 1 + 0.023339 + 0.023339 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ Body1Frame8 + description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.35306 + 0 + 0 + + + + + ... + fuseprof_1_8 + + + 1 + 0.019512 + 0.019512 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ Body1Frame9 + description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.40284 + 0 + 0 + + + + + ... + fuseprof_1_9 + + + 1 + 0.013229 + 0.013229 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ Body1Frame10 + description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.45263 + 0 + 0 + + + + + ... + fuseprof_1_10 + + + 1 + 0.0022547 + 0.0022547 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + Body1Frame1 + 0 + + + + ... + description + 0 + 0 + Body1Frame2 + 0 + + + + ... + description + 0 + 0 + Body1Frame3 + 0 + + + + ... + description + 0 + 0 + Body1Frame4 + 0 + + + + ... + description + 0 + 0 + Body1Frame5 + 0 + + + + ... + description + 0 + 0 + Body1Frame6 + 0 + + + + ... + description + 0 + 0 + Body1Frame7 + 0 + + + + ... + description + 0 + 0 + Body1Frame8 + 0 + + + + ... + description + 0 + 0 + Body1Frame9 + 0 + + + + ... + description + 0 + 0 + Body1Frame10 + 0 + + + + + + ... + Body1Frame1elem1 + Body1Frame2elem1 + + + + ... + Body1Frame2elem1 + Body1Frame3elem1 + + + + ... + Body1Frame3elem1 + Body1Frame4elem1 + + + + ... + Body1Frame4elem1 + Body1Frame5elem1 + + + + ... + Body1Frame5elem1 + Body1Frame6elem1 + + + + ... + Body1Frame6elem1 + Body1Frame7elem1 + + + + ... + Body1Frame7elem1 + Body1Frame8elem1 + + + + ... + Body1Frame8elem1 + Body1Frame9elem1 + + + + ... + Body1Frame9elem1 + Body1Frame10elem1 + + + +
+
+ + + wingmod1A + Body1 + description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 0.1016 + 0 + 0 + + + +
+ wingmod1Aroot + description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 0 + 0 + 0 + + + + + ... + foil_1_2 + + + + 0.089662 + 0.089662 + 0.089662 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ wingmod1Atip + description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 0.1647 + 0.2032 + 0 + + + + + ... + foil_1_1 + + + + 0.044831 + 0.044831 + 0.044831 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + wingmod1Atip + 0 + + + + ... + description + 0 + 0 + wingmod1Aroot + 0 + + + + + + ... + wingmod1Atipelem1 + wingmod1Arootelem1 + + + +
+
+ + + + aeromap_empty + Common default aeroMap + + ISA + + + 1000.0 + 0.3 + 5.0 + 0.0 + + + + + + +
+
+ + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 + ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 + ;-1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 + -1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 + ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 + ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 + ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 + ;-1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 + -1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 + ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 + ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 + ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 + ;-1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 + -1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 + ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 + ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 + ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 + ;-1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 + -1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 + ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 + ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 + ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 + ;-1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 + -1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 + ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 + ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 + ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 + ;-1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 + -1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 + ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 + ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 + ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 + ;-1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 + -1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 + ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 + ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 + ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 + ;-1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 + -1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 + ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 + ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 + ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 + ;-1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 + -1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 + ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 + ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 + ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 + ;-1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 + -1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 + ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 + ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 + + + + + + ... + ... + + 1.000000 ;0.951194 ;0.902266 ;0.853214 ;0.804038 ;0.754739 ;0.705314 + ;0.655764 ;0.606088 ;0.556287 ;0.506358 ;0.456303 ;0.406120 ;0.355808 ;0.305368 + ;0.254799 ;0.204101 ;0.153272 ;0.102313 ;0.076784 ;0.051222 ;0.025628 ;0.012818 + ;0.007692 ;0.005128 ;0.000000 ;0.005128 ;0.007692 ;0.012818 ;0.025628 ;0.051222 + ;0.076784 ;0.102313 ;0.153272 ;0.204101 ;0.254799 ;0.305368 ;0.355808 ;0.406120 + ;0.456303 ;0.506358 ;0.556287 ;0.606088 ;0.655764 ;0.705314 ;0.754739 ;0.804038 + ;0.853214 ;0.902266 ;0.951194 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.000224 ;-0.005576 ;-0.010942 ;-0.016321 ;-0.021714 ;-0.027121 + ;-0.032470 ;-0.037536 ;-0.042148 ;-0.046177 ;-0.049506 ;-0.051949 ;-0.053253 + ;-0.053150 ;-0.051842 ;-0.049452 ;-0.045919 ;-0.041032 ;-0.034397 ;-0.030137 + ;-0.024954 ;-0.018011 ;-0.013038 ;-0.010317 ;-0.008572 ;0.000000 ;0.008572 ;0.010317 + ;0.013038 ;0.018011 ;0.024954 ;0.030137 ;0.034397 ;0.041032 ;0.045919 ;0.049452 + ;0.051842 ;0.053150 ;0.053253 ;0.051949 ;0.049506 ;0.046177 ;0.042148 ;0.037536 + ;0.032470 ;0.027121 ;0.021714 ;0.016321 ;0.010942 ;0.005576 ;0.000224 + + + + ... + ... + + 1.000000 ;0.951194 ;0.902266 ;0.853214 ;0.804038 ;0.754739 ;0.705314 + ;0.655764 ;0.606088 ;0.556287 ;0.506358 ;0.456303 ;0.406120 ;0.355808 ;0.305368 + ;0.254799 ;0.204101 ;0.153272 ;0.102313 ;0.076784 ;0.051222 ;0.025628 ;0.012818 + ;0.007692 ;0.005128 ;0.000000 ;0.005128 ;0.007692 ;0.012818 ;0.025628 ;0.051222 + ;0.076784 ;0.102313 ;0.153272 ;0.204101 ;0.254799 ;0.305368 ;0.355808 ;0.406120 + ;0.456303 ;0.506358 ;0.556287 ;0.606088 ;0.655764 ;0.705314 ;0.754739 ;0.804038 + ;0.853214 ;0.902266 ;0.951194 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.000224 ;-0.005576 ;-0.010942 ;-0.016321 ;-0.021714 ;-0.027121 + ;-0.032470 ;-0.037536 ;-0.042148 ;-0.046177 ;-0.049506 ;-0.051949 ;-0.053253 + ;-0.053150 ;-0.051842 ;-0.049452 ;-0.045919 ;-0.041032 ;-0.034397 ;-0.030137 + ;-0.024954 ;-0.018011 ;-0.013038 ;-0.010317 ;-0.008572 ;0.000000 ;0.008572 ;0.010317 + ;0.013038 ;0.018011 ;0.024954 ;0.030137 ;0.034397 ;0.041032 ;0.045919 ;0.049452 + ;0.051842 ;0.053150 ;0.053253 ;0.051949 ;0.049506 ;0.046177 ;0.042148 ;0.037536 + ;0.032470 ;0.027121 ;0.021714 ;0.016321 ;0.010942 ;0.005576 ;0.000224 + + + + +
+ + + + + False + Euler + False + 10.0 + + 5.0 + + 3.0 + 0.003 + + + 10.0 + 0.007 + + 0.23 + 0.23 + + 2.0 + 0.9 + 4.0 + False + False + 20 + 3.0 + 100.0 + 1.2 + 1.4 + 40.0 + False + 20.0 + 20.0 + + 5.0 + + + +
\ No newline at end of file diff --git a/tests/docker/Centos/Dockerfile b/tests/docker/Centos/Dockerfile index 4c664e6e3..ca6c8d7f9 100644 --- a/tests/docker/Centos/Dockerfile +++ b/tests/docker/Centos/Dockerfile @@ -19,8 +19,10 @@ RUN source ~/.bashrc RUN conda update -n base -c defaults conda WORKDIR /CEASIOMpy/CEASIOMpy/installation/CentOS/ +RUN chmod +x install_*.sh RUN ./install_ceasiompy.sh RUN ./install_ceasiompy.sh +RUN ./install_pyavl.sh RUN ./install_pytornado.sh RUN ./install_sumo.sh RUN ./install_su2.sh diff --git a/tests/test_integration_tests.py b/tests/test_integration_tests.py index 87173559e..d2b74c6f7 100644 --- a/tests/test_integration_tests.py +++ b/tests/test_integration_tests.py @@ -112,6 +112,17 @@ def test_integration_4(): assert workflow_ends() +@pytest.mark.slow +@pytest.mark.skipif(not shutil.which("avl"), reason="avl not installed") +def test_integration_5(): + modules_to_run = ["PyAVL", "SaveAeroCoefficients"] + + with change_working_dir(WORKFLOW_TEST_DIR): + run_modules_list([str(CPACS_IN_PATH), *modules_to_run]) + + assert workflow_ends() + + # ================================================================================================= # MAIN # =================================================================================================