diff --git a/.coveragerc b/.coveragerc deleted file mode 100644 index 08bcdef..0000000 --- a/.coveragerc +++ /dev/null @@ -1,4 +0,0 @@ -[run] -branch = True -source = skrebate -include = */skrebate/* diff --git a/.github/workflows/publish_package.yml b/.github/workflows/publish_package.yml new file mode 100644 index 0000000..fc54635 --- /dev/null +++ b/.github/workflows/publish_package.yml @@ -0,0 +1,38 @@ +name: Publish Python Package + +on: + release: + types: [published] + tags: + - 'v*' + workflow_dispatch: + +jobs: + publish: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: "3.10" # Python version for building/uploading + + - name: Install build tools + run: | + python -m pip install --upgrade pip + pip install build twine + + # Optional: Generate version file from GitHub tag + # - name: Generate version file + # run: echo "__version__ = '${GITHUB_REF##refs/tags/}'" > your_package/_version.py + + - name: Build package + run: python -m build + + - name: Publish to PyPI + env: + TWINE_USERNAME: __token__ + TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} + run: twine upload dist/* \ No newline at end of file diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..304c00d --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,38 @@ +name: Python Package CI + +on: + #push: + # branches: [master] + # push: + # branches: [dev-kia-pypi] + pull_request: + branches: [master] + +jobs: + test: + runs-on: ubuntu-latest + + strategy: + matrix: + python-version: ["3.9", "3.10", "3.11", "3.12"] + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + + - name: Upgrade pip, install build tools + run: | + python -m pip install --upgrade pip setuptools wheel build + + - name: Install your package with test dependencies + run: | + pip install .[test] # assumes you've defined [project.optional-dependencies] in pyproject.toml + + - name: Run pytest + run: | + pytest --disable-warnings --maxfail=1 --tb=short \ No newline at end of file diff --git a/.gitignore b/.gitignore index f1fb64e..402bb38 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,7 @@ run_test.py __pycache__/ *.py[cod] *$py.class +.pytest_cache # C extensions *.so @@ -61,17 +62,27 @@ docs/_build/ # PyBuilder target/ -#Ipython Notebook +# Others .ipynb_checkpoints - -testing.ipynb - *.lprof - *.prof -/demo_scikitrebate.ipynb - *.DS_Store -.idea/ - -analysis_pipeline/skrebatewip +.idea/ + +# Files +demo/data +BenchmarkData.zip +analysis_pipeline/ +BenchmarkData/ +BenchmarkData2/ +BenchmarkData3/ +BenchmarkData4/ +skrebate_old +analysis/BasicXOR/ +analysis/BasicXOR2/ +analysis/BasicXOR2_2/ +analysis/BasicXOR3/ +analysis/jobs/ +analysis/logs/ +analysis/core2wayEpistasis +*.zip diff --git a/.landscape.yaml b/.landscape.yaml deleted file mode 100644 index 2b3342a..0000000 --- a/.landscape.yaml +++ /dev/null @@ -1,5 +0,0 @@ -doc-warnings: yes - -ignore-patterns: - - __init__.py - diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index f1fcf14..0000000 --- a/.travis.yml +++ /dev/null @@ -1,18 +0,0 @@ -language: python -virtualenv: - system_site_packages: true -env: - matrix: - # let's start simple: - - PYTHON_VERSION="2.7" LATEST="true" - - PYTHON_VERSION="3.6" COVERAGE="true" LATEST="true" - - PYTHON_VERSION="3.6" LATEST="true" -install: source ./ci/.travis_install.sh -script: bash ./ci/.travis_test.sh -after_success: - # Ignore coveralls failures as the coveralls server is not very reliable - # but we don't want travis to report a failure in the github UI just - # because the coverage report failed to be published. - - if [[ "$COVERAGE" == "true" ]]; then coveralls || echo "failed"; fi -cache: apt -sudo: false diff --git a/README.md b/README.md index 7cee961..68c946e 100644 --- a/README.md +++ b/README.md @@ -12,30 +12,33 @@ Package information: ![Python 2.7](https://img.shields.io/badge/python-2.7-blue. [![PyPI version](https://badge.fury.io/py/skrebate.svg)](https://badge.fury.io/py/skrebate) # scikit-rebate -This package includes a scikit-learn-compatible Python implementation of ReBATE, a suite of [Relief-based feature selection algorithms](https://en.wikipedia.org/wiki/Relief_(feature_selection)) for Machine Learning. These Relief-Based algorithms (RBAs) are designed for feature weighting/selection as part of a machine learning pipeline (supervised learning). Presently this includes the following core RBAs: ReliefF, SURF, SURF\*, MultiSURF\*, and MultiSURF. Additionally, an implementation of the iterative TuRF mechanism and VLSRelief is included. **It is still under active development** and we encourage you to check back on this repository regularly for updates. -These algorithms offer a computationally efficient way to perform feature selection that is sensitive to feature interactions as well as simple univariate associations, unlike most currently available filter-based feature selection methods. The main benefit of Relief algorithms is that they identify feature interactions without having to exhaustively check every pairwise interaction, thus taking significantly less time than exhaustive pairwise search. +This package includes a scikit-learn-compatible Python implementation of ReBATE, a suite of [Relief-based feature selection algorithms]() for Machine Learning. These Relief-based algorithms (RBAs) are designed for feature weighting/selection as part of a machine learning pipeline (supervised learning). Presently this includes the following core RBAs: ReliefF, SURF, SURF\*, MultiSURF\*, MultiSURF, SWRF\*, SWRF, MultiSWRF\*, MultiSWRF, MultiSWRFDB\*, MultiSWRFDB, and μ-Relief. Additionally, an implementation of the iterative TuRF mechanism and VLSRelief is included. **It is still under active development** and we encourage you to check back on this repository regularly for updates. -Certain algorithms require user specified run parameters (e.g. ReliefF requires the user to specify some 'k' number of nearest neighbors). +These algorithms offer a computationally efficient way to perform feature selection that is sensitive to feature interactions as well as simple univariate associations, unlike most currently available filter-based feature selection methods. The main benefit of Relief-based algorithms is that they identify feature interactions without having to exhaustively check every pairwise interaction, thus taking significantly less time than exhaustive pairwise search. -Relief algorithms are commonly applied to genetic analyses, where epistasis (i.e., feature interactions) is common. However, the algorithms implemented in this package can be applied to almost any supervised classification data set and supports: + -* Feature sets that are discrete/categorical, continuous-valued or a mix of both +Certain algorithms have run parameters that the user can specify, or if not specified, default to preset values (e.g. ReliefF’s parameter for ‘k’ number of nearest neighbors). -* Data with missing values +Relief-based algorithms are commonly applied to genetic analyses, where epistasis (i.e., feature interactions) is common. However, the algorithms implemented in this package can be applied to almost any supervised, structured data set and support: -* Binary endpoints (i.e., classification) +- Feature sets that are discrete/categorical, continuous-valued or a mix of both -* Multi-class endpoints (i.e., classification) +- Data with missing values -* Continuous endpoints (i.e., regression) +- Binary endpoints (i.e., classification) -Built into this code, is a strategy to 'automatically' detect from the loaded data, these relevant characteristics. +- Multi-class endpoints (i.e., classification) -Of our two initial ReBATE software releases, this scikit-learn compatible version primarily focuses on ease of incorporation into a scikit learn analysis pipeline. +- Continuous endpoints (i.e., regression) + +Built into this code is a strategy to 'automatically' detect these relevant characteristics from the loaded data. + +Of our two initial ReBATE software releases, this scikit-learn compatible version primarily focuses on ease of incorporation into a scikit-learn analysis pipeline. This code is most appropriate for scikit-learn users, Windows operating system users, beginners, or those looking for the most recent ReBATE developments. -An alternative 'stand-alone' version of [ReBATE](https://github.com/EpistasisLab/ReBATE) is also available that focuses on improving run-time with the use of Cython for optimization. This implementation also outputs feature names and associated feature scores as a text file by default. +An alternative 'stand-alone' version of [ReBATE](https://github.com/EpistasisLab/ReBATE) is also available that focuses on improving run-time with the use of Cython for optimization. This implementation also outputs feature names and associated feature scores as a text file by default. ## License @@ -47,11 +50,11 @@ Generally, we have licensed scikit-rebate to make it as widely usable as possibl scikit-rebate is built on top of the following existing Python packages: -* NumPy +- NumPy -* SciPy +- SciPy -* scikit-learn +- scikit-learn All of the necessary Python packages can be installed via the [Anaconda Python distribution](https://www.continuum.io/downloads), which we strongly recommend that you use. We also strongly recommend that you use Python 3 over Python 2 if you're given the choice. @@ -71,30 +74,97 @@ Please [file a new issue](https://github.com/EpistasisLab/scikit-rebate/issues/n ## Usage -We have designed the Relief algorithms to be integrated directly into scikit-learn machine learning workflows. For example, the ReliefF algorithm can be used as a feature selection step in a scikit-learn pipeline as follows. +### Basic Usage + +To use an algorithm from ReBATE as a feature selection method: -```python +```Python +# Import necessary packages +import pandas as pd +from skrebate import ReliefF + +# Load the example dataset +genetic_data = pd.read_csv( + './data/GAMETES_Epistasis_2-Way_20atts_0.4H_EDM-1_1.csv') + +# Separate the features and labels from the dataset +features, labels = genetic_data.drop('class', axis=1).values, genetic_data['class'].values + +# Apply the ReliefF algorithm for feature selection +fs = ReliefF() +fs.fit(features, labels) + +# Print out the results +feature_name = genetic_data.drop('class', axis=1).columns +fs.summary(feature_name=feature_name) + +>>> Feature name Feature importances Feature rank +>>> P2 0.12330000 1 +>>> P1 0.11892500 2 +>>> N0 -0.00018125 3 +>>> N10 -0.00075625 4 +>>> N13 -0.00320625 5 +>>> N14 -0.00402500 6 +>>> N4 -0.00582500 7 +>>> N1 -0.00595000 8 +>>> N8 -0.00653750 9 +>>> N12 -0.00696250 10 +>>> N16 -0.00705000 11 +>>> N17 -0.00740625 12 +>>> N5 -0.00788750 13 +>>> N11 -0.00822500 14 +>>> N9 -0.00826250 15 +>>> N2 -0.00871875 16 +>>> N3 -0.00872500 17 +>>> N7 -0.00991875 18 +>>> N6 -0.01038750 19 +>>> N15 -0.01044375 20 +``` + +### Using as End-to-end Pipeline + +We have designed the Relief-based algorithms to be integrated directly into scikit-learn machine learning workflows. For example, the ReliefF algorithm can be used as a feature selection step in a scikit-learn pipeline as follows: + +```Python +# Import necessary packages import pandas as pd -import numpy as np from sklearn.pipeline import make_pipeline from skrebate import ReliefF from sklearn.ensemble import RandomForestClassifier -from sklearn.model_selection import cross_val_score +from sklearn.model_selection import train_test_split +from sklearn.metrics import accuracy_score -genetic_data = pd.read_csv('https://github.com/EpistasisLab/scikit-rebate/raw/master/data/' - 'GAMETES_Epistasis_2-Way_20atts_0.4H_EDM-1_1.tsv.gz', - sep='\t', compression='gzip') +# Load the example dataset +genetic_data = pd.read_csv( + './data/GAMETES_Epistasis_2-Way_20atts_0.4H_EDM-1_1.csv') +# Separate the features and labels from the dataset features, labels = genetic_data.drop('class', axis=1).values, genetic_data['class'].values -clf = make_pipeline(ReliefF(n_features_to_select=2, n_neighbors=100), - RandomForestClassifier(n_estimators=100)) +# Split the data to training and testing +X_train, X_test, y_train, y_test = train_test_split(features, labels, test_size=0.3, random_state=42) -print(np.mean(cross_val_score(clf, features, labels))) ->>> 0.795 +# Make pipeline +clf = make_pipeline( + ReliefF(n_features_to_select=2), + RandomForestClassifier(n_estimators=100) +) + +# Train the model +clf.fit(X_train, y_train) + +# Evaluate the model on testing set +y_pred = clf.predict(X_test) +accuracy = accuracy_score(y_test, y_pred) +print(f"Accuracy: {accuracy:.3f}") +>>> Accuracy: 0.781 ``` -For more information on the Relief algorithms available in this package and how to use them, please refer to our [usage documentation](https://EpistasisLab.github.io/scikit-rebate/using/). + + +For more information on the Relief-based algorithms available in this package and how to use them, please refer to our [usage documentation](https://urbslab.github.io/scikit-rebate/using/). ## Contributing to scikit-rebate @@ -106,15 +176,19 @@ Please refer to our [contribution guidelines](https://EpistasisLab.github.io/sci If you use scikit-rebate in a scientific publication, please consider citing the following paper: -Ryan J. Urbanowicz, Randal S. Olson, Peter Schmitt, Melissa Meeker, Jason H. Moore (2017). [Benchmarking Relief-Based Feature Selection Methods](https://arxiv.org/abs/1711.08477). *arXiv preprint*, under review. +Ryan J. Urbanowicz, Randal S. Olson, Peter Schmitt, Melissa Meeker, Jason H. Moore (2018). Benchmarking Relief-Based Feature Selection Methods for Bioinformatics Data Mining. _Journal of Biomedical Informatics_, 85, 168-188. DOI: [10.1016/j.jbi.2018.07.015](https://doi.org/10.1016/j.jbi.2018.07.015) -BibTeX entry: +### BibTeX entry: ```bibtex -@misc{Urbanowicz2017Benchmarking, - author = {Urbanowicz, Ryan J. and Olson, Randal S. and Schmitt, Peter and Meeker, Melissa and Moore, Jason H.}, - title = {Benchmarking Relief-Based Feature Selection Methods}, - year = {2017}, - howpublished = {arXiv e-print. https://arxiv.org/abs/1711.08477}, +@article{Urbanowicz2018Benchmarking, + author = {Urbanowicz, Ryan J. and Olson, Randal S. and Schmitt, Peter and Meeker, Melissa and Moore, Jason H.}, + title = {Benchmarking Relief-Based Feature Selection Methods for Bioinformatics Data Mining}, + journal = {Journal of Biomedical Informatics}, + volume = {85}, + pages = {168--188}, + year = {2018}, + doi = {10.1016/j.jbi.2018.07.015}, + url = {https://doi.org/10.1016/j.jbi.2018.07.015} } ``` diff --git a/analysis/check_run_validity.py b/analysis/check_run_validity.py new file mode 100644 index 0000000..24f93a6 --- /dev/null +++ b/analysis/check_run_validity.py @@ -0,0 +1,30 @@ +import os + +def find_error_runs(log_dir, error_keywords=None): + if error_keywords is None: + # Add more as needed + error_keywords = ["error", "failed", "segmentation fault", "traceback", "exception", "abort", "core dumped"] + + error_runs = [] + + for root, _, files in os.walk(log_dir): + for file in files: + if file.endswith((".err", ".log", ".out")): + filepath = os.path.join(root, file) + try: + with open(filepath, "r", encoding="utf-8", errors="ignore") as f: + content = f.read().lower() + if any(keyword in content for keyword in error_keywords): + error_runs.append(filepath) + except Exception as e: + print(f"Error reading {filepath}: {e}") + + return error_runs + +# Example usage: +log_directory = "./logs" # Change this to your logs directory +errors = find_error_runs(log_directory) + +print("Jobs with errors:") +for err_file in errors: + print(err_file) diff --git a/analysis/higher_order_interactions/Heatmaps.ipynb b/analysis/higher_order_interactions/Heatmaps.ipynb deleted file mode 100644 index 12d8313..0000000 --- a/analysis/higher_order_interactions/Heatmaps.ipynb +++ /dev/null @@ -1,247 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "import os\n", - "import pandas as pd\n", - "import seaborn as sns\n", - "import matplotlib.pyplot as plt\n", - "import numpy as np" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Below is the parsing code that goes through all result files and calculates the ranks for each feature for all replicates" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# Define the path to the 'Results' directory\n", - "results_dir = 'my_dir' # Change this to the path of your 'Results' directory\n", - "\n", - "# Initialize a DataFrame to hold all rankings\n", - "all_rankings_df = pd.DataFrame()\n", - "\n", - "# Initialize a dictionary to hold the total number of features (N) for each RBA method\n", - "total_features_per_rba = {}\n", - "\n", - "# Iterate over each subfolder in the Results directory, each named for an RBA\n", - "for rba in os.listdir(results_dir):\n", - " rba_path = os.path.join(results_dir, rba)\n", - " if os.path.isdir(rba_path): # Ensure it's a directory\n", - " method_feature_counts = [] # To store feature counts for each dataset within this method\n", - " for file in os.listdir(rba_path):\n", - " if file.endswith('.txt'): # Ensure the file is a .txt file\n", - " file_path = os.path.join(rba_path, file)\n", - " \n", - " # Extract the dataset identifier from the file name\n", - " parts = file.split('_')\n", - " dataset_id = '_'.join(parts[-2].split('_')[:2])\n", - " \n", - " # Determine Ranks\n", - " df = pd.read_csv(file_path, sep='\\t', usecols=['Feature'])\n", - " if rba == \"RandomShuffle\":\n", - " df['Rank'] = df.index + 1\n", - " else:\n", - " column_to_use = 'ABS_Feature_Importance' if \"ABS\" in rba else 'Feature_Importance'\n", - " df = pd.read_csv(file_path, sep='\\t', usecols=['Feature', column_to_use])\n", - " df.sort_values(by=column_to_use, ascending=False, inplace=True)\n", - " df.reset_index(drop=True, inplace=True)\n", - " df['Rank'] = df.index + 1\n", - " \n", - " # Store in a dataframe\n", - " predictive_df = df[df['Feature'].str.startswith('M')][['Feature', 'Rank']]\n", - " predictive_df['RBA'] = rba\n", - " predictive_df['Dataset'] = dataset_id\n", - " \n", - " all_rankings_df = pd.concat([all_rankings_df, predictive_df], ignore_index=True)\n", - " \n", - " # Add the feature count of this dataset to the list for this method\n", - " method_feature_counts.append(df['Feature'].nunique())\n", - " \n", - " # Store the maximum feature count encountered for this method as N\n", - " total_features_per_rba[rba] = max(method_feature_counts)\n", - "\n", - "# Now, you have both the rankings and the total number of features (N) for each RBA method\n", - "# You can use total_features_per_rba to access N for each method as needed\n", - "\n", - "# Specify the path to save the consolidated rankings file\n", - "save_path = os.path.join(results_dir, 'consolidated_rankings.csv')\n", - "all_rankings_df.to_csv(save_path, index=False)\n", - "\n", - "print(f\"Consolidated rankings saved to: {save_path}\")\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### This code generates the ranking percentages that are needed to create the heatmaps" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# Assuming all_rankings_df is correctly prepared and contains 'RBA', 'Feature', 'Rank', 'Dataset'\n", - "\n", - "# Since all datasets have the same N, we can pick the N from any RBA method from total_features_per_rba\n", - "N = next(iter(total_features_per_rba.values()))\n", - "\n", - "# Step 1: Identify the lowest-ranked predictive feature for each dataset for each RBA\n", - "lowest_ranks = all_rankings_df.groupby(['RBA', 'Dataset'])['Rank'].max().reset_index()\n", - "\n", - "# Initialize a structure to hold the calculated percentages for each RBA method\n", - "percentages = {rba: [0] * N for rba in lowest_ranks['RBA'].unique()}\n", - "\n", - "# Step 2: Calculate percentages for each position for each RBA\n", - "for rba in percentages.keys():\n", - " rba_data = lowest_ranks[lowest_ranks['RBA'] == rba]\n", - " for position in range(1, N + 1):\n", - " # Count how many of the lowest ranks are better (lower number) than the current position\n", - " count_higher = rba_data[rba_data['Rank'] <= (position)].shape[0]\n", - " total_datasets = rba_data.shape[0] # Should be 30 per RBA if there are 30 datasets\n", - " percentages[rba][position - 1] = (count_higher / total_datasets) * 100\n", - "\n", - "# Convert the percentages to a DataFrame for visualization\n", - "percentages_df = pd.DataFrame(percentages, index=range(1, N + 1))\n", - "\n", - "# Save percentages_df to a CSV file\n", - "save_path_percentages = os.path.join(results_dir, 'percentages_df.csv')\n", - "percentages_df.to_csv(save_path_percentages, index_label='Ranking Position')\n", - "\n", - "print(\"Percentages saved to percentages_df.csv.\")\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Plotting code for heatmaps" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# Create custom color scheme\n", - "custom_cmap = sns.color_palette('Oranges', n_colors=1000)[:800] + sns.color_palette('Blues', n_colors=1000)[800:]\n", - "\n", - "# Define your preferred order of the RBAs as a list\n", - "rba_order = [\n", - " 'RandomShuffle',\n", - " 'MutualInformation',\n", - " 'ReliefF10',\n", - " 'ReliefF',\n", - " 'MultiSURF',\n", - " 'MultiSURFstar',\n", - " 'ABS_ReliefF10',\n", - " 'ABS_ReliefF',\n", - " 'ABS_MultiSURF',\n", - " 'ABS_MultiSURFstar'\n", - "]\n", - "\n", - "# Define a mapping from your RBA order to new descriptive names\n", - "rba_descriptive_names = {\n", - " 'RandomShuffle': 'Random Shuffle',\n", - " 'MutualInformation': 'Mutual Information',\n", - " 'ReliefF10': 'ReliefF 10NN',\n", - " 'ReliefF': 'ReliefF 100NN',\n", - " 'MultiSURF': 'MultiSURF',\n", - " 'MultiSURFstar': 'MultiSURF*',\n", - " 'ABS_ReliefF10': 'ReliefF 10NN ABS',\n", - " 'ABS_ReliefF': 'ReliefF 100NN ABS',\n", - " 'ABS_MultiSURF': 'MultiSURF ABS',\n", - " 'ABS_MultiSURFstar': 'MultiSURF* ABS'\n", - "}\n", - "\n", - "percentages_df = percentages_df.iloc[1:] # Drop the first row as this will always be 0\n", - "percentages_df_transposed = percentages_df.T # Transpose percentages_df to switch rows and columns for horizontal orientation\n", - "\n", - "# Reorder the DataFrame according to your defined RBA order\n", - "percentages_df_ordered = percentages_df_transposed.loc[rba_order] # The .loc indexer reindexes the DataFrame to the specified order; any missing labels will result in NaN rows\n", - "\n", - "# Define the tick labels as percentages of optimality\n", - "xtick_labels = ['Optimal', '10%', '20%', '30%', '40%', '50%', '60%', '70%', '80%', '90%', '100%']\n", - "# Generate a list of positions at which to place the x-tick labels, assuming they should be placed at even intervals\n", - "xtick_positions = np.linspace(start=0, stop=percentages_df_transposed.shape[1] - 0.13, num=len(xtick_labels))\n", - "\n", - "# Create the heatmap with the reordered DataFrame\n", - "plt.figure(figsize=(12, 7)) # Adjust the size as necessary\n", - "heatmap = sns.heatmap(percentages_df_ordered, annot=False, fmt=\".1f\", cmap=custom_cmap, cbar_kws={'label': 'Power (Frequency of Success)'})\n", - "\n", - "# Add horizontal lines manually between Methods\n", - "for i in range(percentages_df_ordered.shape[0] - 1):\n", - " heatmap.axhline(i + 1, color='black', linewidth=1.5)\n", - "\n", - "# Adding black border around the heatmap\n", - "for _, spine in heatmap.spines.items():\n", - " spine.set_visible(True)\n", - " spine.set_linewidth(1.5)\n", - " spine.set_edgecolor(\"black\")\n", - "\n", - "# Adding black border around the color bar in legend\n", - "cbar = heatmap.collections[0].colorbar\n", - "cbar.outline.set_linewidth(1.5)\n", - "cbar.outline.set_edgecolor(\"black\")\n", - "\n", - "# Set the title and axis labels appropriately\n", - "heatmap.set_title('XOR2_a20_ABS', fontsize = 16)\n", - "heatmap.set_xlabel('Predictive features in top % of ranked features', fontsize = 14)\n", - "heatmap.set_ylabel('Method', fontsize = 14)\n", - "\n", - "# Set the custom x-tick labels, positions, and fontsize\n", - "heatmap.set_xticks(xtick_positions)\n", - "heatmap.set_xticklabels(xtick_labels, rotation=0, fontsize=11)\n", - "\n", - "# Set the custom y-tick labels fontsize\n", - "new_ytick_labels = [rba_descriptive_names[rba] for rba in rba_order]\n", - "heatmap.set_yticklabels(new_ytick_labels, fontsize=11)\n", - "\n", - "# Save and show the Plot\n", - "plt.rcParams['font.sans-serif'] = 'Helvetica'\n", - "plt.rcParams['font.family'] = 'sans-serif'\n", - "plt.rcParams['pdf.fonttype'] = 42\n", - "plt.tight_layout() # Adjust the layout\n", - "save_path = os.path.join(results_dir, 'XOR2_a20_ABS.pdf') # Save\n", - "plt.savefig(save_path, format='pdf', bbox_inches='tight') # Save\n", - "plt.show() # Display the heatmap" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "base", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.11.5" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/analysis/higher_order_interactions/MScoring.ipynb b/analysis/higher_order_interactions/MScoring.ipynb deleted file mode 100644 index eea5b4f..0000000 --- a/analysis/higher_order_interactions/MScoring.ipynb +++ /dev/null @@ -1,158 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "import os\n", - "import pandas as pd\n", - "import re" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# Function to process results directory and return a pivot table with feature importance\n", - "def process_results_directory(root_dir, meaningful_parts):\n", - " all_data = [] # List to store all data\n", - " \n", - " # Walk through the directory tree\n", - " for subdir, dirs, files in os.walk(root_dir):\n", - " # Check if subdir contains 'ABS' or 'MutualInformation'\n", - " if 'ABS' in subdir or 'MutualInformation' in subdir:\n", - " if subdir != root_dir: # Ensure not processing the root directory\n", - " method = subdir.split(os.sep)[-1].replace('ABS_', '') # Extract method name from subdir\n", - " subdir_data = [] # List to store data for current subdir\n", - " for file in files:\n", - " if file.endswith('.txt'): # Process only .txt files\n", - " file_path = os.path.join(subdir, file) # Construct file path\n", - " try:\n", - " data = pd.read_csv(file_path, delimiter='\\t') # Read data from file\n", - " m_data = data[data['Feature'].str.startswith('M')] # Filter data for features starting with 'M'\n", - " importance_cols = [col for col in data.columns if \"Feature_Importance\" in col] # Find importance columns\n", - "\n", - " # Iterate over filtered data and importance columns\n", - " for index, row in m_data.iterrows():\n", - " for col in importance_cols:\n", - " importance_type = col.replace('Feature_Importance', '').strip() # Extract importance type\n", - " method_column_name = f\"{method}_{importance_type}\".rstrip('_') # Create method column name\n", - " entry = {\n", - " 'Feature': row['Feature'], # Feature name\n", - " 'Method': method_column_name, # Method and importance type\n", - " 'Importance': row[col], # Importance value\n", - " **meaningful_parts # Add meaningful parts\n", - " }\n", - " subdir_data.append(entry) # Add entry to subdir_data\n", - " except Exception as e:\n", - " print(f\"Error reading {file_path}: {e}\") # Print error if reading fails\n", - "\n", - " if subdir_data:\n", - " all_data.extend(subdir_data) # Add subdir data to all_data\n", - "\n", - " if all_data:\n", - " results_df = pd.DataFrame(all_data) # Create DataFrame from all_data\n", - " pivot_df = results_df.pivot_table(index=['Feature', *meaningful_parts.keys()], columns='Method', values='Importance', aggfunc='mean').reset_index()\n", - " # Get the current non-Method columns\n", - " non_method_cols = ['Feature', *meaningful_parts.keys()]\n", - " # Get the current Method columns and sort them as required\n", - " method_cols = [col for col in pivot_df.columns if col not in non_method_cols]\n", - " sorted_method_cols = ['ReliefF10', 'ReliefF10_ABS', 'ReliefF', 'ReliefF_ABS', 'MultiSURF', 'MultiSURF_ABS', 'MultiSURFstar', 'MultiSURFstar_ABS', 'MutualInformation']\n", - " # Combine the non-Method columns with the sorted Method columns\n", - " pivot_df = pivot_df[non_method_cols + sorted_method_cols]\n", - " return pivot_df # Return the pivot table\n", - " else:\n", - " return pd.DataFrame() # Return an empty DataFrame if no data" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "def extract_numeric_parts(s):\n", - " \"\"\"Extract numeric parts from a string and return as a tuple of integers.\"\"\"\n", - " # Use regular expression to find all sequences of digits in the string\n", - " # Convert each sequence of digits to an integer and return them as a tuple\n", - " return tuple(map(int, re.findall(r'\\d+', s)))" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "def find_and_process_results(start_dir):\n", - " master_df = pd.DataFrame() # Initialize an empty DataFrame to store the master results\n", - " for root, dirs, files in os.walk(start_dir): # Walk through the directory tree\n", - " if 'Results' in dirs: # Check if 'Results' directory exists in the current directory\n", - " path_parts = os.path.relpath(root, start_dir).split(os.sep) # Get the relative path parts\n", - " meaningful_parts = {} # Dictionary to store meaningful parts\n", - " for part in path_parts: # Iterate over path parts - will need to update this for new descriptors if needed\n", - " if 'xor_' in part:\n", - " meaningful_parts['X1'] = part # Order of epistasis with additional descriptors\n", - " elif 'a_' in part:\n", - " meaningful_parts['X2'] = part # Feature count\n", - "\n", - " results_dir = os.path.join(root, 'Results') # Construct the path to the 'Results' directory\n", - " print(f\"Processing 'Results' folder at: {results_dir}\")\n", - " results_df = process_results_directory(results_dir, meaningful_parts) # Process the results directory\n", - " if not results_df.empty: # If the results DataFrame is not empty\n", - " csv_path = os.path.join(results_dir, 'M_average_feature_importance.csv') # Path to save the results CSV\n", - " results_df.to_csv(csv_path, index=False) # Save the results DataFrame to a CSV file\n", - " print(f\"Average feature importance results saved to {csv_path}\")\n", - "\n", - " # Create a numeric tuple for sorting X1\n", - " results_df['X1_numeric'] = results_df['X1'].apply(extract_numeric_parts)\n", - " \n", - " # Append to the master DataFrame\n", - " master_df = pd.concat([master_df, results_df], ignore_index=True)\n", - "\n", - " # Sort the master DataFrame\n", - " if not master_df.empty: # If the master DataFrame is not empty\n", - " master_df = master_df.sort_values(by=['X1_numeric', 'Feature']) # Sort by numeric parts of X1 and Feature\n", - " master_df.drop('X1_numeric', axis=1, inplace=True) # Remove the auxiliary column after sorting\n", - " master_csv_path = os.path.join(start_dir, 'M_master_feature_importance.csv') # Path to save the master CSV\n", - " master_df.to_csv(master_csv_path, index=False) # Save the master DataFrame to a CSV file\n", - " print(f\"Master feature importance results saved to {master_csv_path}\") # Print confirmation" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# Start the process from the current working directory\n", - "find_and_process_results('.')" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "base", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.11.5" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/analysis/higher_order_interactions/MasterRunScript.ipynb b/analysis/higher_order_interactions/MasterRunScript.ipynb deleted file mode 100644 index d6a8233..0000000 --- a/analysis/higher_order_interactions/MasterRunScript.ipynb +++ /dev/null @@ -1,557 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Import necessary packages" - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "metadata": {}, - "outputs": [], - "source": [ - "import os\n", - "import fnmatch\n", - "import pandas as pd\n", - "import numpy as np\n", - "from sklearn.pipeline import make_pipeline\n", - "from skrebate import ReliefF # for reproducibility, need to install skrebate version 0.62\n", - "from skrebate import SURF\n", - "from skrebate import SURFstar\n", - "from skrebate import MultiSURF\n", - "from skrebate import MultiSURFstar\n", - "from skrebate import TuRF\n", - "from sklearn.feature_selection import RFE\n", - "from sklearn.ensemble import RandomForestClassifier\n", - "from sklearn.model_selection import cross_val_score\n", - "from sklearn.model_selection import train_test_split\n", - "from sklearn.feature_selection import mutual_info_classif" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Define function for directory maintenance" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [], - "source": [ - "def ensure_dir(directory): # Check if directories exist. If they do not, they will be created in the next function\n", - " if not os.path.exists(directory):\n", - " os.makedirs(directory)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Define functions for random shuffle" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": {}, - "outputs": [], - "source": [ - "def random_shuffle(file_path):\n", - " # Define the directory to store results\n", - " results_dir = os.path.join(os.path.dirname(file_path), \"Results\", \"RandomShuffle\")\n", - " ensure_dir(results_dir) # Ensure the Results/RandomShuffle directory exists\n", - "\n", - " # Read the .txt file into a DataFrame\n", - " try:\n", - " df = pd.read_csv(file_path, sep='\\t') # Assuming tab-separated values; adjust the separator as needed\n", - " except Exception as e:\n", - " print(f\"Error reading {file_path}: {e}\")\n", - " return\n", - "\n", - " # Ensure 'Class' column is not included in the shuffle\n", - " if 'Class' in df.columns:\n", - " columns_to_shuffle = df.drop('Class', axis=1).columns.tolist()\n", - " else:\n", - " columns_to_shuffle = df.columns.tolist()\n", - "\n", - " # Shuffle the column names\n", - " shuffled_columns = np.random.permutation(columns_to_shuffle)\n", - "\n", - " # Create a new DataFrame with the shuffled column names\n", - " new_df = pd.DataFrame(shuffled_columns, columns=['Feature'])\n", - "\n", - " # Construct the output file name based on the original file's name\n", - " base_name = os.path.basename(file_path)\n", - " new_file_name = f\"{os.path.splitext(base_name)[0]}_RandShuffle.txt\"\n", - " output_path = os.path.join(results_dir, new_file_name)\n", - "\n", - " # Write the new DataFrame to disk\n", - " new_df.to_csv(output_path, index=False, sep='\\t')\n", - "\n", - "def find_and_random_shuffle(root_dir):\n", - " for dirpath, dirnames, filenames in os.walk(root_dir):\n", - " # Check if 'EDM' is in the directory name directly above the files\n", - " if \"EDM\" in os.path.basename(dirpath):\n", - " #print(f\"Processing in EDM directory: {dirpath}\") # Debugging line\n", - " for filename in filenames:\n", - " if filename.endswith('.txt'): # Ensure it's a .txt file\n", - " file_path = os.path.join(dirpath, filename)\n", - " #print(f\"Processing file: {file_path}\") # Debugging line\n", - " random_shuffle(file_path)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Define current working directory (GAMETES_2.2_dev_peter_XOR)" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": {}, - "outputs": [], - "source": [ - "root_dir = 'my_dir' # Change this to your parent directory path" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Run random shuffle process on directory" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": {}, - "outputs": [], - "source": [ - "# Run through the directory and produce random assortments of the features. This is the Random Shuffle that will be presented in the paper\n", - "find_and_random_shuffle(root_dir)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Define functions for Mutual Information" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": {}, - "outputs": [], - "source": [ - "def process_mutual_info(file_path):\n", - " # Load the genetic data\n", - " genetic_data = pd.read_csv(file_path, sep='\\t') # Ensure correct delimiter is used\n", - " \n", - " # Split the data\n", - " features, labels = genetic_data.drop('Class', axis=1).values, genetic_data['Class'].values\n", - " X_train, X_test, y_train, y_test = train_test_split(features, labels)\n", - " \n", - " # Apply Mutual Information\n", - " mi_scores = mutual_info_classif(X_train, y_train)\n", - " \n", - " # Pair feature names with MI scores\n", - " temp_list = []\n", - " for feature_name, mi_score in zip(genetic_data.drop('Class', axis=1).columns, mi_scores):\n", - " temp_list.append([feature_name, mi_score])\n", - " \n", - " # Process results\n", - " Results = pd.DataFrame(temp_list, columns=['Feature', 'Feature_Importance'])\n", - " Results.sort_values(by='Feature_Importance', ascending=False, inplace=True)\n", - " \n", - " # Define directories\n", - " base_dir = os.path.dirname(file_path)\n", - " results_dir = os.path.join(base_dir, \"Results\")\n", - " mi_dir = os.path.join(results_dir, \"MutualInformation\")\n", - " ensure_dir(mi_dir)\n", - " \n", - " # Extract base filename without extension\n", - " base_name = os.path.splitext(os.path.basename(file_path))[0]\n", - " \n", - " # Save the files\n", - " Results.to_csv(os.path.join(mi_dir, f\"{base_name}_MIResults.txt\"), index=False, sep='\\t')\n", - "\n", - "def find_and_mutual_info(root_dir):\n", - " for dirpath, dirnames, filenames in os.walk(root_dir):\n", - " # Check if 'EDM' is in the directory name directly above the files\n", - " if \"EDM\" in os.path.basename(dirpath):\n", - " #print(f\"Processing in EDM directory: {dirpath}\") # Debugging line\n", - " for filename in filenames:\n", - " if filename.endswith('.txt'): # Ensure it's a .txt file\n", - " file_path = os.path.join(dirpath, filename)\n", - " #print(f\"Processing file: {file_path}\") # Debugging line\n", - " process_mutual_info(file_path)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Run Mutual Information on directory" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [], - "source": [ - "# Run through the directory and perform Mutual Information.\n", - "find_and_mutual_info(root_dir)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Define functions for ReliefF with 10 NN" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [], - "source": [ - "def process_relieff10(file_path):\n", - " # Load the genetic data\n", - " genetic_data = pd.read_csv(file_path, sep = '\\t')\n", - " \n", - " # Split the data\n", - " features, labels = genetic_data.drop('Class', axis=1).values, genetic_data['Class'].values\n", - " X_train, X_test, y_train, y_test = train_test_split(features, labels)\n", - " \n", - " # Apply ReliefF\n", - " fs = ReliefF(n_features_to_select=2, n_neighbors=10)\n", - " fs.fit(X_train, y_train)\n", - " \n", - " temp_list = []\n", - " for feature_name, feature_score in zip(genetic_data.drop('Class', axis=1).columns, fs.feature_importances_):\n", - " temp_list.append([feature_name, feature_score])\n", - " \n", - " # Process results\n", - " Results = pd.DataFrame(temp_list, columns=['Feature', 'Feature_Importance'])\n", - " ABSResults = Results.copy()\n", - " ABSResults['ABS_Feature_Importance'] = ABSResults['Feature_Importance'].abs()\n", - " Results.sort_values(by='Feature_Importance', ascending=False, inplace=True)\n", - " ABSResults.sort_values(by='ABS_Feature_Importance', ascending=False, inplace=True)\n", - " \n", - " # Define directories\n", - " base_dir = os.path.dirname(file_path)\n", - " results_dir = os.path.join(base_dir, \"Results\")\n", - " relief_dir = os.path.join(results_dir, \"ReliefF10\")\n", - " abs_relief_dir = os.path.join(results_dir, \"ABS_ReliefF10\")\n", - " ensure_dir(relief_dir)\n", - " ensure_dir(abs_relief_dir)\n", - " \n", - " # Extract base filename without extension\n", - " base_name = os.path.splitext(os.path.basename(file_path))[0]\n", - " \n", - " # Save the files\n", - " Results.to_csv(os.path.join(relief_dir, f\"{base_name}_Results.txt\"), index=False, sep='\\t')\n", - " ABSResults.to_csv(os.path.join(abs_relief_dir, f\"{base_name}_ABSResults.txt\"), index=False, sep='\\t')\n", - "\n", - "def find_and_relieff10(root_dir):\n", - " for dirpath, dirnames, filenames in os.walk(root_dir):\n", - " # Check if 'EDM' is in the directory name directly above the files\n", - " if \"EDM\" in os.path.basename(dirpath):\n", - " #print(f\"Processing in EDM directory: {dirpath}\") # Debugging line\n", - " for filename in filenames:\n", - " if filename.endswith('.txt'): # Ensure it's a .txt file\n", - " file_path = os.path.join(dirpath, filename)\n", - " #print(f\"Processing file: {file_path}\") # Debugging line\n", - " process_relieff10(file_path)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Run ReliefF (10 NN) on directory" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": {}, - "outputs": [], - "source": [ - "find_and_relieff10(root_dir)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Define functions for ReliefF with 100 NN" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": {}, - "outputs": [], - "source": [ - "def process_relieff(file_path):\n", - " # Load the genetic data\n", - " genetic_data = pd.read_csv(file_path, sep = '\\t')\n", - " \n", - " # Split the data\n", - " features, labels = genetic_data.drop('Class', axis=1).values, genetic_data['Class'].values\n", - " X_train, X_test, y_train, y_test = train_test_split(features, labels)\n", - " \n", - " # Apply ReliefF\n", - " fs = ReliefF(n_features_to_select=2, n_neighbors=100)\n", - " fs.fit(X_train, y_train)\n", - " \n", - " temp_list = []\n", - " for feature_name, feature_score in zip(genetic_data.drop('Class', axis=1).columns, fs.feature_importances_):\n", - " temp_list.append([feature_name, feature_score])\n", - " \n", - " # Process results\n", - " Results = pd.DataFrame(temp_list, columns=['Feature', 'Feature_Importance'])\n", - " ABSResults = Results.copy()\n", - " ABSResults['ABS_Feature_Importance'] = ABSResults['Feature_Importance'].abs()\n", - " Results.sort_values(by='Feature_Importance', ascending=False, inplace=True)\n", - " ABSResults.sort_values(by='ABS_Feature_Importance', ascending=False, inplace=True)\n", - " \n", - " # Define directories\n", - " base_dir = os.path.dirname(file_path)\n", - " results_dir = os.path.join(base_dir, \"Results\")\n", - " relief_dir = os.path.join(results_dir, \"ReliefF\")\n", - " abs_relief_dir = os.path.join(results_dir, \"ABS_ReliefF\")\n", - " ensure_dir(relief_dir)\n", - " ensure_dir(abs_relief_dir)\n", - " \n", - " # Extract base filename without extension\n", - " base_name = os.path.splitext(os.path.basename(file_path))[0]\n", - " \n", - " # Save the files\n", - " Results.to_csv(os.path.join(relief_dir, f\"{base_name}_Results.txt\"), index=False, sep='\\t')\n", - " ABSResults.to_csv(os.path.join(abs_relief_dir, f\"{base_name}_ABSResults.txt\"), index=False, sep='\\t')\n", - "\n", - "def find_and_relieff(root_dir):\n", - " for dirpath, dirnames, filenames in os.walk(root_dir):\n", - " # Check if 'EDM' is in the directory name directly above the files\n", - " if \"EDM\" in os.path.basename(dirpath):\n", - " #print(f\"Processing in EDM directory: {dirpath}\") # Debugging line\n", - " for filename in filenames:\n", - " if filename.endswith('.txt'): # Ensure it's a .txt file\n", - " file_path = os.path.join(dirpath, filename)\n", - " #print(f\"Processing file: {file_path}\") # Debugging line\n", - " process_relieff(file_path)\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Run ReliefF (100 NN) on directory" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "metadata": {}, - "outputs": [], - "source": [ - "# Run through the directory and perform ReliefF 100 NN.\n", - "find_and_relieff(root_dir)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Define functions for MultiSURF" - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "metadata": {}, - "outputs": [], - "source": [ - "def process_MultiSurf(file_path):\n", - " # Load the genetic data\n", - " genetic_data = pd.read_csv(file_path, sep = '\\t')\n", - " \n", - " # Split the data\n", - " features, labels = genetic_data.drop('Class', axis=1).values, genetic_data['Class'].values\n", - " X_train, X_test, y_train, y_test = train_test_split(features, labels)\n", - " \n", - " # Apply MultiSurf\n", - " fs = MultiSURF()\n", - " fs.fit(X_train, y_train)\n", - " \n", - " temp_list = []\n", - " for feature_name, feature_score in zip(genetic_data.drop('Class', axis=1).columns, fs.feature_importances_):\n", - " temp_list.append([feature_name, feature_score])\n", - " \n", - " # Process results\n", - " Results = pd.DataFrame(temp_list, columns=['Feature', 'Feature_Importance'])\n", - " ABSResults = Results.copy()\n", - " ABSResults['ABS_Feature_Importance'] = ABSResults['Feature_Importance'].abs()\n", - " Results.sort_values(by='Feature_Importance', ascending=False, inplace=True)\n", - " ABSResults.sort_values(by='ABS_Feature_Importance', ascending=False, inplace=True)\n", - " \n", - " # Define directories\n", - " base_dir = os.path.dirname(file_path)\n", - " results_dir = os.path.join(base_dir, \"Results\")\n", - " multisurf_dir = os.path.join(results_dir, \"MultiSURF\")\n", - " abs_multisurf_dir = os.path.join(results_dir, \"ABS_MultiSURF\")\n", - " ensure_dir(multisurf_dir)\n", - " ensure_dir(abs_multisurf_dir)\n", - " \n", - " # Extract base filename without extension\n", - " base_name = os.path.splitext(os.path.basename(file_path))[0]\n", - " \n", - " # Save the files\n", - " Results.to_csv(os.path.join(multisurf_dir, f\"{base_name}_Results.txt\"), index=False, sep='\\t')\n", - " ABSResults.to_csv(os.path.join(abs_multisurf_dir, f\"{base_name}_ABSResults.txt\"), index=False, sep='\\t')\n", - "\n", - "def find_and_MultiSurf(root_dir):\n", - " for dirpath, dirnames, filenames in os.walk(root_dir):\n", - " # Check if 'EDM' is in the directory name directly above the files\n", - " if \"EDM\" in os.path.basename(dirpath):\n", - " #print(f\"Processing in EDM directory: {dirpath}\") # Debugging line\n", - " for filename in filenames:\n", - " if filename.endswith('.txt'): # Ensure it's a .txt file\n", - " file_path = os.path.join(dirpath, filename)\n", - " #print(f\"Processing file: {file_path}\") # Debugging line\n", - " process_MultiSurf(file_path)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Run MultiSURF on directory" - ] - }, - { - "cell_type": "code", - "execution_count": 11, - "metadata": {}, - "outputs": [], - "source": [ - "# Run through the directory and perform MultiSURF.\n", - "find_and_MultiSurf(root_dir)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Define functions for MultiSURFstar" - ] - }, - { - "cell_type": "code", - "execution_count": 12, - "metadata": {}, - "outputs": [], - "source": [ - "def process_MultiSurfstar(file_path):\n", - " # Load the genetic data\n", - " genetic_data = pd.read_csv(file_path, sep = '\\t')\n", - " \n", - " # Split the data\n", - " features, labels = genetic_data.drop('Class', axis=1).values, genetic_data['Class'].values\n", - " X_train, X_test, y_train, y_test = train_test_split(features, labels)\n", - " \n", - " # Apply MultiSurf\n", - " fs = MultiSURFstar()\n", - " fs.fit(X_train, y_train)\n", - " \n", - " temp_list = []\n", - " for feature_name, feature_score in zip(genetic_data.drop('Class', axis=1).columns, fs.feature_importances_):\n", - " temp_list.append([feature_name, feature_score])\n", - " \n", - " # Process results\n", - " Results = pd.DataFrame(temp_list, columns=['Feature', 'Feature_Importance'])\n", - " ABSResults = Results.copy()\n", - " ABSResults['ABS_Feature_Importance'] = ABSResults['Feature_Importance'].abs()\n", - " Results.sort_values(by='Feature_Importance', ascending=False, inplace=True)\n", - " ABSResults.sort_values(by='ABS_Feature_Importance', ascending=False, inplace=True)\n", - " \n", - " # Define directories\n", - " base_dir = os.path.dirname(file_path)\n", - " results_dir = os.path.join(base_dir, \"Results\")\n", - " multisurfstar_dir = os.path.join(results_dir, \"MultiSURFstar\")\n", - " abs_multisurfstar_dir = os.path.join(results_dir, \"ABS_MultiSURFstar\")\n", - " ensure_dir(multisurfstar_dir)\n", - " ensure_dir(abs_multisurfstar_dir)\n", - " \n", - " # Extract base filename without extension\n", - " base_name = os.path.splitext(os.path.basename(file_path))[0]\n", - " \n", - " # Save the files\n", - " Results.to_csv(os.path.join(multisurfstar_dir, f\"{base_name}_Results.txt\"), index=False, sep='\\t')\n", - " ABSResults.to_csv(os.path.join(abs_multisurfstar_dir, f\"{base_name}_ABSResults.txt\"), index=False, sep='\\t')\n", - "\n", - "def find_and_MultiSurfstar(root_dir):\n", - " for dirpath, dirnames, filenames in os.walk(root_dir):\n", - " # Check if 'EDM' is in the directory name directly above the files\n", - " if \"EDM\" in os.path.basename(dirpath):\n", - " #print(f\"Processing in EDM directory: {dirpath}\") # Debugging line\n", - " for filename in filenames:\n", - " if filename.endswith('.txt'): # Ensure it's a .txt file\n", - " file_path = os.path.join(dirpath, filename)\n", - " #print(f\"Processing file: {file_path}\") # Debugging line\n", - " process_MultiSurfstar(file_path)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Run MultiSURFstar on directory" - ] - }, - { - "cell_type": "code", - "execution_count": 13, - "metadata": {}, - "outputs": [], - "source": [ - "# Run through the first directory and perform MultiSURFstar.\n", - "find_and_MultiSurfstar(root_dir)" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "base", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.11.5" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/analysis/higher_order_interactions/Nscoring.ipynb b/analysis/higher_order_interactions/Nscoring.ipynb deleted file mode 100644 index fac3744..0000000 --- a/analysis/higher_order_interactions/Nscoring.ipynb +++ /dev/null @@ -1,153 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "import os\n", - "import pandas as pd\n", - "import re\n", - "\n", - "# Function to process results directory and return a pivot table with feature importance\n", - "def process_results_directory(root_dir, meaningful_parts):\n", - " all_data = [] # List to store all data\n", - " \n", - " # Walk through the directory tree\n", - " for subdir, dirs, files in os.walk(root_dir):\n", - " # Check if subdir contains 'ABS' or 'MutualInformation'\n", - " if 'ABS' in subdir or 'MutualInformation' in subdir:\n", - " if subdir != root_dir: # Ensure not processing the root directory\n", - " method = subdir.split(os.sep)[-1].replace('ABS_', '') # Extract method name from subdir\n", - " file_averages = [] # List to store average importances for each file\n", - " for file in files:\n", - " if file.endswith('.txt'): # Process only .txt files\n", - " file_path = os.path.join(subdir, file) # Construct file path\n", - " try:\n", - " data = pd.read_csv(file_path, delimiter='\\t') # Read data from file\n", - " n_data = data[data['Feature'].str.startswith('N')] # Filter data for features starting with 'N'\n", - " importance_cols = [col for col in data.columns if \"Feature_Importance\" in col] # Find importance columns\n", - "\n", - " # Check if there are 'N' features and importance columns\n", - " if not n_data.empty and importance_cols:\n", - " # Calculate average importance for 'N' features within the current file\n", - " for col in importance_cols:\n", - " avg_importance = n_data[col].mean() # Calculate average importance\n", - " importance_type = col.replace('Feature_Importance', '').strip() # Extract importance type\n", - " method_column_name = f\"{method}_{importance_type}\".rstrip('_') # Create method column name\n", - " \n", - " entry = {\n", - " 'Feature': 'average_N', # Use 'average_N' as the feature name\n", - " 'Method': method_column_name, # Method and importance type\n", - " 'Importance': avg_importance, # Average importance value within the file\n", - " **meaningful_parts # Add meaningful parts\n", - " }\n", - " file_averages.append(entry) # Add entry to file_averages\n", - " else:\n", - " print(f\"No 'N' features or importance columns in {file_path}\")\n", - "\n", - " except Exception as e:\n", - " print(f\"Error reading {file_path}: {e}\") # Print error if reading fails\n", - "\n", - " if file_averages:\n", - " # Aggregate the file-level averages for the current method\n", - " df_file_averages = pd.DataFrame(file_averages)\n", - " method_average = df_file_averages.groupby(['Feature', 'Method', *meaningful_parts.keys()]).mean().reset_index()\n", - " all_data.extend(method_average.to_dict('records')) # Add aggregated data to all_data\n", - " else:\n", - " print(f\"No valid data found in {subdir}\")\n", - "\n", - " if all_data:\n", - " results_df = pd.DataFrame(all_data) # Create DataFrame from all_data\n", - " pivot_df = results_df.pivot_table(index=['Feature', *meaningful_parts.keys()], columns='Method', values='Importance', aggfunc='mean').reset_index()\n", - " # Get the current non-Method columns\n", - " non_method_cols = ['Feature', *meaningful_parts.keys()]\n", - " # Get the current Method columns and sort them as required\n", - " method_cols = [col for col in pivot_df.columns if col not in non_method_cols]\n", - " sorted_method_cols = ['ReliefF10', 'ReliefF10_ABS', 'ReliefF', 'ReliefF_ABS', 'MultiSURF', 'MultiSURF_ABS', 'MultiSURFstar', 'MultiSURFstar_ABS', 'MutualInformation']\n", - " # Combine the non-Method columns with the sorted Method columns\n", - " pivot_df = pivot_df[non_method_cols + sorted_method_cols]\n", - " return pivot_df # Return the pivot table\n", - " else:\n", - " print(\"No data collected from any files\")\n", - " return pd.DataFrame() # Return an empty DataFrame if no data\n", - "\n", - "def extract_numeric_parts(s):\n", - " \"\"\"Extract numeric parts from a string and return as a tuple of integers.\"\"\"\n", - " return tuple(map(int, re.findall(r'\\d+', s)))\n", - "\n", - "def find_and_process_results(start_dir):\n", - " master_df = pd.DataFrame() # Initialize an empty DataFrame to store the master results\n", - " for root, dirs, files in os.walk(start_dir): # Walk through the directory tree\n", - " if 'Results' in dirs: # Check if 'Results' directory exists in the current directory\n", - " path_parts = os.path.relpath(root, start_dir).split(os.sep) # Get the relative path parts\n", - " meaningful_parts = {} # Dictionary to store meaningful parts\n", - " for part in path_parts: # Iterate over path parts - will need to update this for new descriptors if needed\n", - " if 'xor_' in part:\n", - " meaningful_parts['X1'] = part # Order of epistasis with additional descriptors\n", - " elif 'a_' in part:\n", - " meaningful_parts['X2'] = part # Feature count\n", - "\n", - " results_dir = os.path.join(root, 'Results') # Construct the path to the 'Results' directory\n", - " print(f\"Processing 'Results' folder at: {results_dir}\")\n", - " results_df = process_results_directory(results_dir, meaningful_parts) # Process the results directory\n", - " if not results_df.empty: # If the results DataFrame is not empty\n", - " csv_path = os.path.join(results_dir, 'N_average_feature_importance.csv') # Path to save the results CSV\n", - " results_df.to_csv(csv_path, index=False) # Save the results DataFrame to a CSV file\n", - " print(f\"Average feature importance results saved to {csv_path}\")\n", - "\n", - " # Create a numeric tuple for sorting X1\n", - " results_df['X1_numeric'] = results_df['X1'].apply(extract_numeric_parts)\n", - " \n", - " # Append to the master DataFrame\n", - " master_df = pd.concat([master_df, results_df], ignore_index=True)\n", - " else:\n", - " print(f\"No data found in 'Results' folder at: {results_dir}\")\n", - "\n", - " # Sort the master DataFrame\n", - " if not master_df.empty: # If the master DataFrame is not empty\n", - " master_df = master_df.sort_values(by=['X1_numeric', 'Feature']) # Sort by numeric parts of X1 and Feature\n", - " master_df.drop('X1_numeric', axis=1, inplace=True) # Remove the auxiliary column after sorting\n", - "\n", - " # Calculate grand average for all numeric columns and append it as the last row\n", - " numeric_cols = master_df.select_dtypes(include='number').columns\n", - " grand_average = master_df[numeric_cols].mean().to_frame().T\n", - " for col in master_df.columns:\n", - " if col not in numeric_cols:\n", - " grand_average[col] = 'Grand_Average'\n", - " master_df = pd.concat([master_df, grand_average], ignore_index=True)\n", - "\n", - " master_csv_path = os.path.join(start_dir, 'N_master_feature_importance.csv') # Path to save the master CSV\n", - " master_df.to_csv(master_csv_path, index=False) # Save the master DataFrame to a CSV file\n", - " print(f\"Master feature importance results saved to {master_csv_path}\") # Print confirmation\n", - " else:\n", - " print(\"No master data to save\")\n", - "\n", - "# Start the process from the current working directory\n", - "find_and_process_results('.')" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "base", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.11.5" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/analysis/higher_order_interactions/README.txt b/analysis/higher_order_interactions/README.txt deleted file mode 100644 index 7de7760..0000000 --- a/analysis/higher_order_interactions/README.txt +++ /dev/null @@ -1,21 +0,0 @@ -Assessing the Limitations of Relief-Based Algorithms in Detecting Higher-Order Interactions -Freda et al. 2024 - -README: Script descriptions - -MasterRunScript.ipynb: This notebook will run Random Shuffle, Mutual Information, and all RBAs in a designated user directory. -It stores all results, including both standard and absolute rankings for RBAs, in a new directory called 'Results'. -Results will be stored within subdirectories entitled using the names of each method. -This can be run globally but we suggest to run this script within each dataset group (patten of association - See Table 1 in the paper for further information). - -Heatmaps.ipynb: This notebook consolidates all rankings, calculates the percentages of best rankings, and constructs heatmaps for visualization. -This script will need to be run for each dataset configuration within each dataset group (patten of association). - -MScoring.ipynb: This notebook calculates the average feature importances, derived from RBA methods and Mutual Information, for each predictive feature per experiment. -It also produces a master sheet that consolidates all average feature importances for predictive features across all configurations within a dataset group (pattern of association) (e.g., XOR datasets). - -NScoring.ipynb: This notebook does the same as above but for non-predictive features. -Instead of outputting the average scores per predictive feature, this script averages across all non-predictive features within and across experiments. -As with Mscoring.ipynb, this will need to be run for each dataset group (pattern of association) - -Data_feature_set_extender.ipynb: This notebook adds non-predictive features to existing datasets (i.e. from 20 to 100 features) for this study using datasets taken from the original Relief benchmarking paper (Urbanowicz 2018). diff --git a/analysis/job_global_rba_rankings.py b/analysis/job_global_rba_rankings.py new file mode 100644 index 0000000..900c1a8 --- /dev/null +++ b/analysis/job_global_rba_rankings.py @@ -0,0 +1,281 @@ +# job_global_rba_rankings.py +import os +import argparse +import pandas as pd + +def collect_rankings(root_dir, include_subdirs=None): + """ + Collects all rankings_list.csv files from subdirectories under root_dir. + Optionally filter which subdirectories to include. + """ + all_dfs = [] + + for sub in os.listdir(root_dir): + sub_path = os.path.join(root_dir, sub) + if not os.path.isdir(sub_path): + continue + + # If --include is specified, skip subdirs not in the list + if include_subdirs and sub not in include_subdirs: + continue + + if sub == "GAMETES_2.2_dev_peter_XOR": # for XOR, will only use the xor-2 and xor-3 configurations (excluding 4 and 5-way) + # get path to xor-2 and xor-3 rankings_list.csv only (rankings_path1 & rankings_path2), turn it into df1 and df2, then combine them into df + rankings_path_xor2 = os.path.join(sub_path, "xor_2", "a_100", "s_1600", "xor_2_a_100s_1600_EDM-1", "Results", "rankings_list.csv") + rankings_path_xor3 = os.path.join(sub_path, "xor_3", "a_100", "s_1600", "xor_3_a_100s_1600_EDM-1", "Results", "rankings_list.csv") + + if not os.path.exists(rankings_path_xor2) or not os.path.exists(rankings_path_xor3): + print(f"[WARN] rankings_list.csv not found in {sub_path} for xor-2 or xor-3, skipping.") + continue + + try: + df_xor2 = pd.read_csv(rankings_path_xor2, comment='#') # ignore comment line with title + df_xor2['subdir'] = "xor_2" + + df_xor3 = pd.read_csv(rankings_path_xor3, comment='#') # ignore comment line with title + df_xor3['subdir'] = "xor_3" + + df = pd.concat([df_xor2, df_xor3], ignore_index=True) # combining xor-2 and xor-3 into one df + except Exception as e: + print(f"[ERROR] Could not read {rankings_path_xor2} or {rankings_path_xor3}: {e}") + continue + else: + rankings_path = os.path.join(sub_path, 'rankings_list.csv') + + if not os.path.exists(rankings_path): + print(f"[WARN] rankings_list.csv not found in {sub_path}, skipping.") + continue + + try: + df = pd.read_csv(rankings_path, comment='#') # ignore comment line with title + df['subdir'] = sub + except Exception as e: + print(f"[ERROR] Could not read {rankings_path}: {e}") + continue + + if "a_1000/" in rankings_path or "1-feature_1000_" in rankings_path: + df['Rank'] = 1 + (df['Rank'] - 1) * 99 / 999 + elif "a_10000/" in rankings_path or "1-feature_10000_" in rankings_path: + df['Rank'] = 1 + (df['Rank'] - 1) * 99 / 9999 + elif "a_20000/" in rankings_path: + df['Rank'] = 1 + (df['Rank'] - 1) * 99 / 19999 + elif "a_50000/" in rankings_path: + df['Rank'] = 1 + (df['Rank'] - 1) * 99 / 49999 + elif "a_100000/" in rankings_path or "1-feature_100000_" in rankings_path: + df['Rank'] = 1 + (df['Rank'] - 1) * 99 / 99999 + + all_dfs.append(df) + print(f"[INFO] Loaded rankings_list.csv from {sub}") + + if not all_dfs: + print("[ERROR] No valid rankings_list.csv files found.") + return None + + combined_df = pd.concat(all_dfs, ignore_index=True) + return combined_df + +def compute_global_summary(all_rankings_df): + """ + Computes global mean and median rank per RBA. + """ + summary = ( + all_rankings_df.groupby('RBA')['Rank'] + .agg(['mean', 'median']) + .reset_index() + .rename(columns={'mean': 'Mean', 'median': 'Median'}) + ) + summary.sort_values(by=['Mean', 'Median'], inplace=True) + return summary + + +def main(): + parser = argparse.ArgumentParser(description="Generate global rankings from multiple subdirectories.") + parser.add_argument("root_dir", help="Top-level directory containing dataset subdirectories.") + parser.add_argument("--include", nargs="+", default=None, + help="Optional list of subdirectories to include (default: all).") + + args = parser.parse_args() + root_dir = args.root_dir + + # short names -> actual subdirectory names + SHORT_TO_FULL_SUBDIR = { + "maineff": "GAMETES_2.2_dev_peter_mainEff_Datasets_Loc_1_Qnt_2_Pop_100000", + "core2wayepistasis": "GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000", + "xor": "GAMETES_2.2_dev_peter_XOR", + "maineff_2": "GAMETES_2.2_dev_peter_mainEff_additive_2_Datasets_2Het_Loc_1_Qnt_2_Pop_100000", + "maineff_4": "GAMETES_2.2_dev_peter_mainEff_additive_4_Datasets_2Het_Loc_1_Qnt_2_Pop_100000", + "2wayepi": "GAMETES_2.2_dev_peter_2wayEpiHeterogeneity_Datasets_2Het_Loc_2_Qnt_2_Pop_100000", + "epi_order": "GAMETES_2.2_dev_peter_epi_order_Datasets_Loc_3_Qnt_2_Pop_100000", + } + + user_include = args.include + + if user_include: + # map the user-specified short names to actual subdirectory names + include_subdirs = [] + for short_name in user_include: + # full_name = SHORT_TO_FULL_SUBDIR.get(short_name) + full_name = SHORT_TO_FULL_SUBDIR.get(short_name.lower()) + if full_name: + include_subdirs.append(full_name) + else: + print(f"[WARN] No mapping found for '{short_name}', skipping.") + else: + include_subdirs = None # default: include all subdirectories + + print(f"[INFO] Subdirectories to include: {include_subdirs}") + + # NEW: going back up to data directory from AbsVal_Benchmark_Data to then enter Sanity_Check_Data + parent_dir = os.path.dirname(root_dir) + largerfeature_2way_dir = os.path.join( + parent_dir, + "Sanity_Check_Data", + "benchmark-data", + "Simulated_Benchmark_Archive", + "GAMETES_2.2_dev_peter_2wayEpiFeatures_Datasets_Loc_2_Qnt_2_Pop_100000" + ) + include_subdirs_largerfeature_2way = ["a_1000", "a_10000", "a_20000", "a_50000", "a_100000"] + + # now adding larger feature set (main effect) directory + largerfeature_mainEff_dir = os.path.join( + parent_dir, + "mainEff_largerfeatures_data" + ) + + combined_df = collect_rankings(root_dir, include_subdirs) + if combined_df is None: + return + + # getting rankings from a_1000, a_10000, a_20000, a_50000, a_100000 (subdirs of largerfeature_2way_dir) + largerfeature_2way_df = collect_rankings(largerfeature_2way_dir, include_subdirs_largerfeature_2way) + + largerfeature_mainEff_df = collect_rankings(largerfeature_mainEff_dir) # rankings for larger feature mainEff data + + # all rankings from all tested datasets with >= 100 features + final_combined_df = pd.concat([combined_df, largerfeature_2way_df, largerfeature_mainEff_df], ignore_index=True) + + # all univariate effect data + univariate_df = final_combined_df[ + final_combined_df['subdir'].isin(["GAMETES_2.2_dev_peter_mainEff_Datasets_Loc_1_Qnt_2_Pop_100000", # 1-Feature Main Effect + "GAMETES_2.2_dev_peter_mainEff_additive_2_Datasets_2Het_Loc_1_Qnt_2_Pop_100000", # 2-Feature Additive Effect + "GAMETES_2.2_dev_peter_mainEff_additive_4_Datasets_2Het_Loc_1_Qnt_2_Pop_100000", # 4-Feature Additive Effect + "1-feature_1000_Feature_H_0.4_MAF_0.2_EDM-2", # 1,000 total features, main effect + "1-feature_10000_Feature_H_0.4_MAF_0.2_EDM-2", # 10,000 total features, main effect + "1-feature_100000_Feature_H_0.4_MAF_0.2_EDM-2" # 100,000 total features, main effect + ]) + ].reset_index(drop=True) + + # all 2-way interaction data + twoway_df = final_combined_df[ + final_combined_df['subdir'].isin(["GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000", # 2-way Pure Epistasis + "xor_2", # 2-way XOR + "GAMETES_2.2_dev_peter_2wayEpiHeterogeneity_Datasets_2Het_Loc_2_Qnt_2_Pop_100000", # 2-way Epi Heterogeneity + "a_1000", # 1,000 total features, 2-way interaction effect + "a_10000", # 10,000 total features, 2-way interaction effect + "a_20000", # 20,000 total features, 2-way interaction effect + "a_50000", # 50,000 total features, 2-way interaction effect + "a_100000" # 100,000 total features, 2-way interaction effect + ]) + ].reset_index(drop=True) + + # all 3-way interaction data + threeway_df = final_combined_df[ + final_combined_df['subdir'].isin(["GAMETES_2.2_dev_peter_epi_order_Datasets_Loc_3_Qnt_2_Pop_100000", # 3-way Pure Epistasis + "xor_3" # 3-way XOR + ]) + ].reset_index(drop=True) + + # mean and median metrics for each algorithm within each effect type (univariate, 2-way, 3-way) + univariate_summary_df = compute_global_summary(univariate_df) + twoway_summary_df = compute_global_summary(twoway_df) + threeway_summary_df = compute_global_summary(threeway_df) + + # *** Creating global metrics: 2-way only, univariate + 2-way, univariate + 2-way + 3-way + + # creating a combined dataframe with univariate and 2-way metrics + merged_uni_twoway_df = univariate_summary_df.merge( + twoway_summary_df, + on='RBA', + suffixes=('_uni', '_two') + ) + + # creating the final weighted (univariate, 2-way) global metrics + univariate_twoway_final_df = pd.DataFrame({ + 'RBA': merged_uni_twoway_df['RBA'], + 'Avg_Mean': ( + (merged_uni_twoway_df['Mean_uni'] + merged_uni_twoway_df['Mean_two']) / 2 + ), + 'Avg_Median': ( + (merged_uni_twoway_df['Median_uni'] + merged_uni_twoway_df['Median_two']) / 2 + ) + }) + + # sorting this dataframe + univariate_twoway_final_df = ( + univariate_twoway_final_df + .sort_values(by=['Avg_Mean', 'Avg_Median'], ascending=[True, True]) + .reset_index(drop=True) + ) + + # creating a combined dataframe with univariate, 2-way, and 3-way metrics + merged_uni_twoway_threeway_df = merged_uni_twoway_df.merge( + threeway_summary_df, + on='RBA' + ) + # for naming clarity + merged_uni_twoway_threeway_df = merged_uni_twoway_threeway_df.rename(columns={ + 'Mean': 'Mean_three', + 'Median': 'Median_three' + }) + + # creating the final weighted (univariate, 2-way, 3-way) global metrics + univariate_twoway_threeway_final_df = pd.DataFrame({ + 'RBA': merged_uni_twoway_threeway_df['RBA'], + 'Avg_Mean': ( + (merged_uni_twoway_threeway_df['Mean_uni'] + + merged_uni_twoway_threeway_df['Mean_two'] + + merged_uni_twoway_threeway_df['Mean_three']) / 3 + ), + 'Avg_Median': ( + (merged_uni_twoway_threeway_df['Median_uni'] + + merged_uni_twoway_threeway_df['Median_two'] + + merged_uni_twoway_threeway_df['Median_three']) / 3 + ) + }) + # univariate_twoway_threeway_final_df = pd.DataFrame({ + # 'RBA': merged_uni_twoway_threeway_df['RBA'], + # 'Weighted_Mean': ( + # merged_uni_twoway_threeway_df['Mean_uni'] * 0.4 + + # merged_uni_twoway_threeway_df['Mean_two'] * 0.4 + + # merged_uni_twoway_threeway_df['Mean_three'] * 0.2 + # ), + # 'Weighted_Median': ( + # merged_uni_twoway_threeway_df['Median_uni'] * 0.4 + + # merged_uni_twoway_threeway_df['Median_two'] * 0.4 + + # merged_uni_twoway_threeway_df['Median_three'] * 0.2 + # ) + # }) + # sorting this dataframe + univariate_twoway_threeway_final_df = ( + univariate_twoway_threeway_final_df + .sort_values(by=['Avg_Mean', 'Avg_Median'], ascending=[True, True]) + .reset_index(drop=True) + ) + + # --- Save final .csv's with metrics for (2-way only), (univariate + 2-way), (univariate + 2-way + 3-way) --- + twoway_path = os.path.join(parent_dir, 'global_rba_rankings_2wayonly.csv') + univariate_twoway_path = os.path.join(parent_dir, 'global_rba_rankings_uni2way.csv') + univariate_twoway_threeway_path = os.path.join(parent_dir, 'global_rba_rankings_uni2way3way.csv') + + twoway_summary_df.to_csv(twoway_path, index=False) + univariate_twoway_final_df.to_csv(univariate_twoway_path, index=False) + univariate_twoway_threeway_final_df.to_csv(univariate_twoway_threeway_path, index=False) + + print(f"[INFO] Saved (2-way only) rankings to {twoway_path}") + print(f"[INFO] Saved (univariate + 2-way) rankings to {univariate_twoway_path}") + print(f"[INFO] Saved (univariate + 2-way + 3-way) rankings to {univariate_twoway_threeway_path}") + + + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/analysis/job_process_heatmap.py b/analysis/job_process_heatmap.py new file mode 100644 index 0000000..2d8df66 --- /dev/null +++ b/analysis/job_process_heatmap.py @@ -0,0 +1,179 @@ +import os +import sys +import argparse +import pandas as pd +import seaborn as sns +import matplotlib.pyplot as plt +from matplotlib.colors import ListedColormap +import numpy as np + +def process_results_dir(results_dir, prefix=""): + print(f"Processing: {results_dir}") + + all_rankings_df = pd.DataFrame() + total_features_per_rba = {} + + for rba in os.listdir(results_dir): + rba_path = os.path.join(results_dir, rba) + if os.path.isdir(rba_path): + method_feature_counts = [] + for file in os.listdir(rba_path): + if file.endswith('.txt'): + file_path = os.path.join(rba_path, file) + parts = file.split('_') + dataset_id = '_'.join(parts[-2].split('_')[:2]) + + if rba == "RandomShuffle": + df = pd.read_csv(file_path, sep='\t', usecols=['Feature']) + df['Rank'] = df.index + 1 + else: + column_to_use = 'ABS_Feature_Importance' if "ABS" in rba else 'Feature_Importance' + df = pd.read_csv(file_path, sep='\t', usecols=['Feature', column_to_use]) + df.sort_values(by=column_to_use, ascending=False, inplace=True) + df.reset_index(drop=True, inplace=True) + df['Rank'] = df.index + 1 + + predictive_df = df[df['Feature'].str.startswith('M')][['Feature', 'Rank']] + predictive_df['RBA'] = rba + predictive_df['Dataset'] = dataset_id + + all_rankings_df = pd.concat([all_rankings_df, predictive_df], ignore_index=True) + method_feature_counts.append(df['Feature'].nunique()) + + total_features_per_rba[rba] = max(method_feature_counts) + + rankings_path = os.path.join(results_dir, 'consolidated_rankings.csv') + all_rankings_df.to_csv(rankings_path, index=False) + + N = next(iter(total_features_per_rba.values())) + lowest_ranks = all_rankings_df.groupby(['RBA', 'Dataset'])['Rank'].max().reset_index() + percentages = {rba: [0] * N for rba in lowest_ranks['RBA'].unique()} + for rba in percentages: + rba_data = lowest_ranks[lowest_ranks['RBA'] == rba] + for pos in range(1, N + 1): + count_higher = rba_data[rba_data['Rank'] <= pos].shape[0] + percentages[rba][pos - 1] = (count_higher / rba_data.shape[0]) * 100 + + percentages_df = pd.DataFrame(percentages, index=range(1, N + 1)) + perc_path = os.path.join(results_dir, 'percentages_df.csv') + percentages_df.to_csv(perc_path, index_label='Ranking Position') + + # Plot heatmap + # custom_cmap = sns.color_palette('Oranges', n_colors=1000)[:800] + sns.color_palette('Blues', n_colors=1000)[800:] + # ** Heatmap tweaked so that 100% is a distinct purple shade and 0% is a distinct white + colors = sns.color_palette('Oranges', n_colors=1000)[:800] + sns.color_palette('Blues', n_colors=1000)[800:] + colors = np.array(colors) # converting to mutable array + colors[0] = [1.0, 1.0, 1.0] # replacing the lowest value color with white (for 0% on the heatmap) + colors[-1] = [0.5, 0.0, 0.5] # replacing the highest value color with purple (for 100% on the heatmap) + custom_cmap = ListedColormap(colors) + + # Define your preferred order of the RBAs as a list + rba_order = [ + 'RandomShuffle', + 'MutualInfo', + 'ReliefF10', + 'ReliefF100', + 'MuRelief10', + 'MuRelief100', + 'SURF', + 'MultiSURF', + 'SWRF', + 'MultiSWRF', + 'MultiSWRFDB', + 'SURFstar', + 'MultiSURFstar', + 'SWRFstar', + 'MultiSWRFstar', + 'MultiSWRFDBstar', + ] + + # Define a mapping from your RBA order to new descriptive names + rba_descriptive_names = { + 'RandomShuffle': 'Random Shuffle', + 'MutualInfo': 'Mutual Info', + 'ReliefF10': 'ReliefF 10NN', + 'ReliefF100': 'ReliefF 100NN', + 'MuRelief10': 'Mu-Relief 10N', + 'MuRelief100': 'Mu-Relief 100N', + 'SURF': 'SURF', + 'MultiSURF': 'MultiSURF', + 'SWRF': 'SWRF', + 'MultiSWRF': 'MultiSWRF', + 'MultiSWRFDB': 'MultiSWRFDB', + 'SURFstar': 'SURF*', + 'MultiSURFstar': 'MultiSURF*', + 'SWRFstar': 'SWRF*', + 'MultiSWRFstar': 'MultiSWRF*', + 'MultiSWRFDBstar': 'MultiSWRFDB*', + } + + n_pred = all_rankings_df['Feature'].nunique() + percentages_df = percentages_df.iloc[n_pred-1:] + percentages_df_transposed = percentages_df.T + percentages_df_ordered = percentages_df_transposed.loc[[r for r in rba_order if r in percentages_df_transposed.index]] + xtick_labels = ['Optimal', '10%', '20%', '30%', '40%', '50%', '60%', '70%', '80%', '90%', '100%'] + xtick_positions = np.linspace(0, percentages_df_ordered.shape[1] - 0.13, num=len(xtick_labels)) + + plt.figure(figsize=(12, 7)) + print(percentages_df_ordered) + heatmap = sns.heatmap(percentages_df_ordered, annot=False, fmt=".1f", cmap=custom_cmap, vmin=0, vmax=100, cbar_kws={'label': 'Power (Frequency of Success)'}) # explicit 0% and 100% for min and max values that heatmap colorscheme corresponds to + # heatmap = sns.heatmap(percentages_df_ordered, annot=False, fmt=".1f", cmap=custom_cmap, vmin=0, vmax=100, cbar=False) # if no color bar legend is desired + for i in range(percentages_df_ordered.shape[0] - 1): + heatmap.axhline(i + 1, color='black', linewidth=1.5) + + for _, spine in heatmap.spines.items(): + spine.set_visible(True) + spine.set_linewidth(1.5) + spine.set_edgecolor("black") + + cbar = heatmap.collections[0].colorbar + cbar.outline.set_linewidth(1.5) + cbar.outline.set_edgecolor("black") + # Increase label font size + cbar.set_label('Power (Frequency of Success)', fontsize=16) + cbar.ax.yaxis.set_label_coords(3.0, 0.5) # explicitly placing the cbar label closer to the cbar + # Increase tick label size + cbar.ax.tick_params(labelsize=14) + # adding clear labeling of 0% power as white and 100% power as purple + cbar.set_ticks([0, 20, 40, 60, 80, 100]) + cbar.set_ticklabels([ + '0 (white)', + '20', + '40', + '60', + '80', + '100 (purple)' + ]) + + dataset_id = os.path.basename(os.path.dirname(results_dir)) + # heatmap.set_title(prefix + dataset_id, fontsize=16) + heatmap.set_xlabel('Predictive features in top % of ranked features', fontsize=16) + # heatmap.set_ylabel('Method', fontsize=16) + heatmap.set_xticks(xtick_positions) + heatmap.set_xticklabels(xtick_labels, rotation=0, fontsize=16) + new_ytick_labels = [rba_descriptive_names[rba] for rba in percentages_df_ordered.index] + heatmap.set_yticklabels(new_ytick_labels, fontsize=16) + # to remove xticks altogether: + # heatmap.set_xticks([]) + + plt.rcParams['font.sans-serif'] = 'Helvetica' + plt.rcParams['font.family'] = 'sans-serif' + plt.rcParams['pdf.fonttype'] = 42 + plt.tight_layout() + + heatmap.collections[0].set_rasterized(True) # rasterizing the heatmap to improve rendering of PDF with high feature counts + + save_path = os.path.join(results_dir, prefix + dataset_id + '.pdf') + plt.savefig(save_path, format='pdf', dpi=600, bbox_inches='tight') # high dpi for higher resolution/quality rasterized heatmap + plt.close() + + print(f"Completed processing for: {results_dir}") + + +if __name__ == "__main__": + parser = argparse.ArgumentParser() + parser.add_argument("results_dir", help="Path to the Results folder.") + parser.add_argument("--prefix", default="", help="Prefix to add to output heatmap filenames.") + args = parser.parse_args() + + process_results_dir(args.results_dir, prefix=args.prefix) diff --git a/analysis/job_process_heatmap_unified.py b/analysis/job_process_heatmap_unified.py new file mode 100644 index 0000000..25377a3 --- /dev/null +++ b/analysis/job_process_heatmap_unified.py @@ -0,0 +1,358 @@ +import os +import sys +import argparse +import pandas as pd +import seaborn as sns +import matplotlib.pyplot as plt +import numpy as np +import re +import matplotlib.lines as mlines +import matplotlib.gridspec as gridspec +from matplotlib.colors import ListedColormap +import time + +# Helper to create the percentages_df (copied from old job_process_heatmap) +def compute_percentages(results_dir): + all_rankings_df = pd.DataFrame() + total_features_per_rba = {} + + for rba in os.listdir(results_dir): + rba_path = os.path.join(results_dir, rba) + if os.path.isdir(rba_path): + method_feature_counts = [] + for file in os.listdir(rba_path): + if file.endswith('.txt'): + file_path = os.path.join(rba_path, file) + parts = file.split('_') + dataset_id = '_'.join(parts[-2].split('_')[:2]) + + if rba == "RandomShuffle": + df = pd.read_csv(file_path, sep='\t', usecols=['Feature']) + df['Rank'] = df.index + 1 + else: + column_to_use = 'ABS_Feature_Importance' if "ABS" in rba else 'Feature_Importance' + df = pd.read_csv(file_path, sep='\t', usecols=['Feature', column_to_use]) + df.sort_values(by=column_to_use, ascending=False, inplace=True) + df.reset_index(drop=True, inplace=True) + df['Rank'] = df.index + 1 + + predictive_df = df[df['Feature'].str.startswith('M')][['Feature', 'Rank']] + predictive_df['RBA'] = rba + predictive_df['Dataset'] = dataset_id + + all_rankings_df = pd.concat([all_rankings_df, predictive_df], ignore_index=True) + method_feature_counts.append(df['Feature'].nunique()) + + total_features_per_rba[rba] = max(method_feature_counts) if method_feature_counts else 0 + + N = next(iter(total_features_per_rba.values())) + lowest_ranks = all_rankings_df.groupby(['RBA', 'Dataset'])['Rank'].max().reset_index() + percentages = {rba: [0] * N for rba in lowest_ranks['RBA'].unique()} + for rba in percentages: + rba_data = lowest_ranks[lowest_ranks['RBA'] == rba] + for pos in range(1, N + 1): + count_higher = rba_data[rba_data['Rank'] <= pos].shape[0] + percentages[rba][pos - 1] = (count_higher / rba_data.shape[0]) * 100 if rba_data.shape[0] > 0 else 0 + + percentages_df = pd.DataFrame(percentages, index=range(1, N + 1)) + n_pred = all_rankings_df['Feature'].nunique() + # print("N_pred:", n_pred, "\n") + # pd.set_option('display.max_rows', None) + # print(percentages_df["RandomShuffle"]) + # pd.reset_option('display.max_rows') # optional: restore default + return percentages_df.iloc[n_pred-1:] # same trimming + +def main(): + parser = argparse.ArgumentParser() + parser.add_argument("basedir", help="Directory containing multiple Results folders.") + parser.add_argument("--prefix", default="", help="Prefix for unified PDF filename.") + args = parser.parse_args() + + # custom colormap & ordering + # custom_cmap = sns.color_palette('Oranges', n_colors=1000)[:800] + sns.color_palette('Blues', n_colors=1000)[800:] + # ** Heatmap tweaked so that 100% is a distinct purple shade and 0% is a distinct white + colors = sns.color_palette('Oranges', n_colors=1000)[:800] + sns.color_palette('Blues', n_colors=1000)[800:] + colors = np.array(colors) # converting to mutable array + colors[0] = [1.0, 1.0, 1.0] # replacing the lowest value color with white (for 0% on the heatmap) + colors[-1] = [0.5, 0.0, 0.5] # replacing the highest value color with purple (for 100% on the heatmap) + custom_cmap = ListedColormap(colors) + + # MAIN: + rba_order = [ + 'RandomShuffle','MutualInfo','ReliefF10','ReliefF100','MuRelief10','MuRelief100','SURF', + 'MultiSURF','SWRF','MultiSWRF','MultiSWRFDB','SURFstar','MultiSURFstar','SWRFstar','MultiSWRFstar','MultiSWRFDBstar' + ] + + # Grab all Results folders (for 100 feature datasets) + # * can later potentially add the dataset feature lengths you want for the heatmap as a parameter (ex. 100 for a_100 datasets) + results_dirs = [] + for root, dirs, _ in os.walk(args.basedir): + for d in dirs: + if d == 'Results' and 'a_100' in root: + results_dirs.append(os.path.join(root, d)) + + is_core2wayEpistasis = ('core2wayEpistasis' in args.basedir) + is_mainEff = ('mainEff_Datasets' in args.basedir) + + # Build a mapping of (n_instances, heritability, EDMtype) -> percentages_df + pattern_n = re.compile(r"/s_(\d+)") + pattern_h = re.compile(r"her_(\d+\.\d+)__maf") + pattern_edm = re.compile(r"EDM-(\d+)") + + data_dict = {} + for rd in results_dirs: + print("Results directory:", rd) + n_match = pattern_n.search(rd) + h_match = pattern_h.search(rd) + edm_match = pattern_edm.search(rd) + if n_match and h_match and edm_match: + n = int(n_match.group(1)) + h = float(h_match.group(1)) + edm = edm_match.group(1) # '1' or '2' + perc_df = compute_percentages(rd) + perc_df_T = perc_df.T + perc_df_ordered = perc_df_T.loc[[r for r in rba_order if r in perc_df_T.index]] + data_dict[(n, h, edm)] = perc_df_ordered + + n_values = sorted({k[0] for k in data_dict.keys()}) + h_values = sorted({k[1] for k in data_dict.keys()}) + edm_values = sorted({k[2] for k in data_dict.keys()}) + print("Data dictionary:", data_dict, "\n") + print("H values:", h_values, "\n") + print("N values:", n_values, "\n") + + # --- INCREASING SPACING + # only mainEff and core2wayEpistasis have both EDM-1 and EDM-2 + if is_core2wayEpistasis: + total_rows = len(h_values) * 2 + else: + total_rows = len(edm_values) # 2 rows for mainEff + + if is_mainEff: + total_cols = len(h_values) # = 4 + else: + total_cols = len(n_values) + + # Create custom height and width ratios + # --> insert an extra gap between certain rows by slightly enlarging the space below + height_ratios = [] + for i in range(total_rows): + height_ratios.append(1) + if is_core2wayEpistasis: + if i % 2 == 1 and i != total_rows - 1: # after every 2nd row (except last) + # height_ratios.append(0.15) # this adds vertical gap spacing + height_ratios.append(0.05) + else: + if i != total_rows - 1: + if is_mainEff: + height_ratios.append(0.10) + + # For columns, add an extra gap after every column + width_ratios = [] + for j in range(total_cols): + width_ratios.append(1) + if j != total_cols - 1: # after each column except last + # width_ratios.append(0.10) # horizontal gap spacing + if is_core2wayEpistasis or is_mainEff: + width_ratios.append(0.05) + + # Define figure and gridspec with custom spacing + if is_core2wayEpistasis: + fig = plt.figure(figsize=(4*len(n_values) * 1.15, 3*len(h_values)*2 * 1.1)) + elif is_mainEff: + fig = plt.figure(figsize=(4*len(h_values) * 1.15, 4*len(edm_values) * 1.15)) + + if is_core2wayEpistasis: + spacing_value = 0.10 + elif is_mainEff: + spacing_value = 0.05 + gs = gridspec.GridSpec( + nrows=len(height_ratios), + ncols=len(width_ratios), + figure=fig, + height_ratios=height_ratios, + width_ratios=width_ratios, + hspace=spacing_value, # fine-tune base spacing + wspace=spacing_value + ) + + # Build axes array only in the actual plot cells (skip gap cells) + axes = np.empty((total_rows, total_cols), dtype=object) + row_ptr, col_ptr = 0, 0 + for i in range(len(height_ratios)): + if is_core2wayEpistasis: + if i % 3 == 2: # skip gap row + continue + else: + if i % 2 == 1: # skip gap row + continue + col_ptr = 0 + for j in range(len(width_ratios)): + if j % 2 == 1: # skip gap column + continue + axes[row_ptr, col_ptr] = fig.add_subplot(gs[i, j]) + col_ptr += 1 + row_ptr += 1 + + if len(h_values)*2 == 1 and len(n_values) == 1: + axes = np.array([[axes]]) # ensure 2D + + # where to draw black lines separating RBA groups in each heatmap + separators = [2, 6, 11] + if is_core2wayEpistasis: + # flipped so that y-axis is shown in ascending order from bottom to top + for i, h in enumerate(sorted(h_values, reverse=True)): + for j, n in enumerate(n_values): + # top EDM-2 + ax_top = axes[i*2, j] if len(h_values)*2 > 1 else axes[0, j] + ax_bot = axes[i*2+1, j] if len(h_values)*2 > 1 else axes[1, j] + + df2 = data_dict.get((n,h,'2')) + df1 = data_dict.get((n,h,'1')) + + if df2 is not None: + sns.heatmap(df2, ax=ax_top, annot=False, cmap=custom_cmap, cbar=False, xticklabels=False, yticklabels=False, vmin=0, vmax=100) + + for y in separators: + ax_top.axhline(y, color='black', linewidth=1.2) + # outline around each individual heatmap: + for spine in ax_top.spines.values(): + spine.set_visible(True) + spine.set_linewidth(0.1) + spine.set_edgecolor("gray") + else: + ax_top.axis('off') + if df1 is not None: + sns.heatmap(df1, ax=ax_bot, annot=False, cmap=custom_cmap, cbar=False, xticklabels=False, yticklabels=False, vmin=0, vmax=100) + for y in separators: + ax_bot.axhline(y, color='black', linewidth=1.2) + # outline around each individual heatmap: + for spine in ax_bot.spines.values(): + spine.set_visible(True) + spine.set_linewidth(0.1) + spine.set_edgecolor("gray") + else: + ax_bot.axis('off') + + # Put "E" and "H" labels on the right side of the heatmaps in the last column + if j == len(n_values) - 1: + # maybe add if clauses in the event that a dataset does not have EDM-1 or EDM-2 + ax_top.set_ylabel("E", rotation=0, labelpad=20, fontsize=26) + ax_top.yaxis.set_label_position("right") + + ax_bot.set_ylabel("H", rotation=0, labelpad=20, fontsize=26) + ax_bot.yaxis.set_label_position("right") + elif is_mainEff: + for j, edm in enumerate(sorted(edm_values, reverse=True)): + for i, h in enumerate(sorted(h_values)): + ax = axes[j, i] + + # Find the value in the dict corresponding to this n and h (could be either EDM-1 or EDM-2 depending on dataset, but only one of them) + df = next( + data_dict[key] + for key in data_dict + if key[2] == edm and key[1] == h + ) + + if df is not None: + sns.heatmap(df, ax=ax, annot=False, cmap=custom_cmap, cbar=False, xticklabels=False, yticklabels=False, vmin=0, vmax=100) + for y in separators: + ax.axhline(y, color='black', linewidth=1.2) + # outline around each individual heatmap: + for spine in ax.spines.values(): + spine.set_visible(True) + spine.set_linewidth(0.1) + spine.set_edgecolor("gray") + else: + ax.axis('off') + + if i == 0 and edm == '2': # if first column and the EDM = 2 (E) row + ax.set_ylabel("E", rotation=0, labelpad=20, fontsize=30) + ax.yaxis.set_label_position("left") + ax.yaxis.set_label_coords(-0.1, 0.4) + elif i == 0 and edm == '1': # if first column and the EDM = 1 (H) row + ax.set_ylabel("H", rotation=0, labelpad=20, fontsize=30) + ax.yaxis.set_label_position("left") + ax.yaxis.set_label_coords(-0.1, 0.4) + + if is_core2wayEpistasis: + # Set x-axis labels for Number of Training Instances + for j, n in enumerate(n_values): + # Place label centered below the corresponding column (under the last row for that column) + mid_axs = axes[-1, j] if len(h_values)*2 > 1 else axes[1, j] + mid_axs.set_xlabel(str(n), fontsize=26) + mid_axs.xaxis.set_label_coords(0.5, -0.2) # adjust vertical padding + elif is_mainEff: + # Set x-axis labels for Heritability of Model + for i, h in enumerate(h_values): + # Place label centered below the corresponding column (under the last row for that column) + mid_axs = axes[-1, i] if len(edm_values)*2 > 1 else axes[1, i] + mid_axs.set_xlabel(str(h), fontsize=30) + mid_axs.xaxis.set_label_coords(0.5, -0.1) # adjust vertical padding + + if is_core2wayEpistasis: + # Set y-axis labels for Heritability of Model (once per heritability row) + for i, h in enumerate(sorted(h_values, reverse=True)): + # First column only + ax_top = axes[i*2, 0] + ax_bot = axes[i*2 + 1, 0] + + # Position the label in the middle of top and bottom heatmaps + mid_y = 0 # normalized vertical coordinate (0 = bottom of ax, 1 = top of ax) + + # if there is only one column, can't use set_ylabel twice on the same axis (will overwrite the first one, "E"); so use .text instead + if len(n_values) == 1: + ax_top.text(-0.2, mid_y - 0.1, str(h), rotation=0, fontsize=26, va='center', ha='center', transform=ax_top.transAxes) + else: + # Use the top subplot to place the label vertically centered + ax_top.set_ylabel(str(h), rotation=0, fontsize=26) + ax_top.yaxis.set_label_coords(-0.2, mid_y - 0.1) + + # Tight layout with extra spacing + plt.tight_layout(rect=[0.05, 0.05, 0.95, 0.95]) + + # ** LINES BETWEEN INSTANCE/HERITABILITY COMBINATIONS: + # --- DRAW DIVIDER LINES THROUGH GAP COLUMNS AND ROWS --- + # Use figure coordinates (0–1 range) + if is_core2wayEpistasis: + # Vertical dividers after every column + for j in range(total_cols - 1): + # Compute midpoint between the right edge of column j and left edge of next column + left_bbox = axes[0, j].get_position() + right_bbox = axes[0, j+1].get_position() + x_mid = (left_bbox.x1 + right_bbox.x0) / 2 + y_bottom = axes[-1,0].get_position().y0 + y_top = axes[0,0].get_position().y1 + + # Vertical line (spanning entire figure) + line = mlines.Line2D([x_mid, x_mid], [y_bottom, y_top], + transform=fig.transFigure, color='black', linewidth=1.5, alpha=0.3) + + fig.add_artist(line) + + # Horizontal dividers after every heritability block (every 2 rows) + for i in range(1, len(h_values)): + # Get bounding boxes for last heatmap in block i-1 and first in block i + prev_bottom = axes[(i-1)*2 + 1, 0].get_position().y0 # bottom of bottom subplot of previous block + next_top = axes[i*2, 0].get_position().y1 # top of top subplot of next block + y_mid = (prev_bottom + next_top) / 2 + x_left = axes[0,0].get_position().x0 + x_right = axes[0,-1].get_position().x1 + + # Horizontal line (spanning entire figure) + line = mlines.Line2D([x_left, x_right], [y_mid, y_mid], + transform=fig.transFigure, color='black', linewidth=1.5, alpha=0.3) + + fig.add_artist(line) + + + outdir = os.path.basename(os.path.normpath(args.basedir)) + parentdir = os.path.dirname(os.path.normpath(args.basedir)) + # save_path = os.path.join(parentdir, outdir, args.prefix + "unified_heatmaps.pdf") + save_path = os.path.join(parentdir, outdir, args.prefix + "unified_heatmaps_withMuRelief_biggerfont.pdf") + plt.savefig(save_path, format='pdf', bbox_inches='tight') + plt.close() + print(f"Unified heatmap saved to {save_path}") + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/analysis/job_process_mannwhitney.py b/analysis/job_process_mannwhitney.py new file mode 100644 index 0000000..f29e504 --- /dev/null +++ b/analysis/job_process_mannwhitney.py @@ -0,0 +1,85 @@ +# job_process_mannwhitney.py +import os +import argparse +import pandas as pd +import numpy as np +from itertools import combinations +from scipy.stats import mannwhitneyu +from statsmodels.stats.multitest import multipletests + +def permutation_test(x, y, U_obs, n_permutations=10000, seed=42): + np.random.seed(seed) + combined = np.concatenate([x, y]) + count = 0 + n_x = len(x) + expected_U = len(x) * len(y) / 2 + for _ in range(n_permutations): + np.random.shuffle(combined) + new_x = combined[:n_x] + new_y = combined[n_x:] + # U_perm = U score + U_perm = mannwhitneyu(new_x, new_y, alternative="two-sided", method="asymptotic").statistic + + if abs(U_perm - expected_U) >= abs(U_obs - expected_U): + count += 1 + return count / n_permutations + +def process_dir(dir_path, column='rank', exclude_patterns=None): + exclude_patterns = exclude_patterns or [] + df = pd.read_csv(os.path.join(dir_path, 'rankings_list.csv'), comment='#') + + # Normalize column names + col_to_use = 'Rank' if column == 'rank' else 'Normalized_Feature_Importance' + + # Group by RBA + rba_groups = {rba: g[col_to_use].values for rba, g in df.groupby('RBA') + if not any(p.lower() in rba.lower() for p in exclude_patterns)} + + results = [] + + for rba1, rba2 in combinations(rba_groups.keys(), 2): + x = rba_groups[rba1] + y = rba_groups[rba2] + + mannwhitney_res = mannwhitneyu(x, y, alternative="two-sided", method="asymptotic") + row = { + 'RBA1': rba1, + 'RBA2': rba2, + 'mannwhitney_statistic': mannwhitney_res.statistic, + 'mannwhitney_pvalue': mannwhitney_res.pvalue + } + + # Permutation test only for rank + if column == 'rank': + perm_p = permutation_test(x, y, mannwhitney_res.statistic) + row['permutation_pvalue'] = perm_p + + results.append(row) + + results_df = pd.DataFrame(results) + + # Sorting + if column == 'rank': + # Benjamini-Hochberg + results_df['mannwhitney_p_adj'] = multipletests(results_df['mannwhitney_pvalue'], method='fdr_bh')[1] + results_df['permutation_p_adj'] = multipletests(results_df['permutation_pvalue'], method='fdr_bh')[1] + results_df.sort_values(by=['mannwhitney_p_adj', 'permutation_p_adj'], ascending=True, inplace=True) + output_file = os.path.join(dir_path, 'mannwhitney_ranks.csv') + else: + # Benjamini-Hochberg + results_df['mannwhitney_p_adj'] = multipletests(results_df['mannwhitney_pvalue'], method='fdr_bh')[1] + results_df.sort_values(by=['mannwhitney_p_adj'], ascending=True, inplace=True) + # output_file = os.path.join(dir_path, 'mannwhitney_feature_importances.csv') + output_file = os.path.join(dir_path, 'mannwhitney_normalized_feature_importances.csv') + + results_df.to_csv(output_file, index=False) + print(f"Results saved to {output_file}") + +if __name__ == "__main__": + parser = argparse.ArgumentParser() + parser.add_argument("dir_path", help="Directory containing rankings_list.csv") + parser.add_argument("--column", choices=['rank', 'feature_importance'], default='rank', help="Column to test") + parser.add_argument("--exclude", nargs='*', default=[], help="RBA name patterns to exclude (case insensitive)") + args = parser.parse_args() + + process_dir(args.dir_path, column=args.column, exclude_patterns=args.exclude) \ No newline at end of file diff --git a/analysis/job_process_rba_rankings.py b/analysis/job_process_rba_rankings.py new file mode 100644 index 0000000..7fa477c --- /dev/null +++ b/analysis/job_process_rba_rankings.py @@ -0,0 +1,135 @@ +# job_process_rba_rankings.py +import os +import sys +import argparse +import pandas as pd +import numpy as np + +def collect_rba_rankings(root_dir): + print(f"Searching for Results folders under: {root_dir}") + all_rankings_df = pd.DataFrame() + + # dict to create cleaner RBA names in mean/median rank tables + rba_descriptive_names = { + 'RandomShuffle': 'Random Shuffle', + 'MutualInfo': 'Mutual Info', + 'ReliefF10': 'ReliefF 10NN', + 'ReliefF100': 'ReliefF 100NN', + 'SURF': 'SURF', + 'SURFstar': 'SURF*', + 'MultiSURF': 'MultiSURF', + 'MultiSURFstar': 'MultiSURF*', + 'SWRF': 'SWRF', + 'SWRFstar': 'SWRF*', + 'MultiSWRF': 'MultiSWRF', + 'MultiSWRFstar': 'MultiSWRF*', + 'MultiSWRFDB': 'MultiSWRFDB', + 'MultiSWRFDBstar': 'MultiSWRFDB*', + 'MuRelief10': 'Mu-Relief 10N', + 'MuRelief100': 'Mu-Relief 100N', + } + + for subdir, dirs, _ in os.walk(root_dir): + subgroup_rankings_df = pd.DataFrame() + # Only process Results folders that are within these directories + if os.path.basename(subdir) == "Results" and any(x in subdir for x in ["a_100", "a_1000", "a_10000", "a_100000", "mainEff_largerfeatures_data", "a_50000", "a_20000"]): + for rba in os.listdir(subdir): + if rba not in rba_descriptive_names: + continue + rba_path = os.path.join(subdir, rba) + if not os.path.isdir(rba_path): + continue + + for file in os.listdir(rba_path): + if not file.endswith('.txt'): + continue + file_path = os.path.join(rba_path, file) + + if "Shuffle" in rba: + try: + df = pd.read_csv(file_path, sep='\t', usecols=['Feature']) + except Exception as e: + print(f"Skipping {file_path} (error: {e})") + continue + + df['Rank'] = df.index + 1 + df['Feature_Importance'] = np.nan + df['Normalized_Feature_Importance'] = np.nan + else: + try: + df = pd.read_csv(file_path, sep='\t', usecols=['Feature', 'Feature_Importance']) + except Exception as e: + print(f"Skipping {file_path} (error: {e})") + continue + + # Sort by descending feature importance and assign ranks + df.sort_values(by='Feature_Importance', ascending=False, inplace=True) + df.reset_index(drop=True, inplace=True) + df['Rank'] = df.index + 1 + # Normalize feature importance between 0 and 1 + df['Normalized_Feature_Importance'] = (df['Feature_Importance'] - df['Feature_Importance'].min()) / \ + (df['Feature_Importance'].max() - df['Feature_Importance'].min()) + + # Only keep true predictive features + predictive_df = df[df['Feature'].str.startswith('M')][['Feature', 'Feature_Importance', 'Normalized_Feature_Importance', 'Rank']] + predictive_df['RBA'] = rba_descriptive_names[rba] + + # for subgroup ranking (ex. mainEff, her=0.2, EDM-1); i.e. group of 30 replicate dataset files + subgroup_rankings_df = pd.concat([subgroup_rankings_df, predictive_df], ignore_index=True) + # for whole dataset group ranking (ex. mainEff) + all_rankings_df = pd.concat([all_rankings_df, predictive_df], ignore_index=True) + + compute_summary_stats(subgroup_rankings_df, subdir) + + compute_summary_stats(all_rankings_df, root_dir) + + +def compute_summary_stats(rankings_df, save_dir): + if rankings_df.empty: + print("Valid ranking data not found.") + sys.exit(0) + + summary = ( + rankings_df.groupby('RBA')['Rank'] + .agg(['mean', 'median']) + .reset_index() + .rename(columns={'mean': 'Mean', 'median': 'Median'}) + ) + + summary.sort_values(by=['Mean', 'Median'], inplace=True) + + # Get title from basename of save_dir + if os.path.basename(os.path.normpath(save_dir)) == "Results": + title = os.path.basename(os.path.dirname(save_dir)) + else: + title = os.path.basename(os.path.normpath(save_dir)) + + summary_path = os.path.join(save_dir, 'rba_rankings.csv') + + rankings_list_path = os.path.join(save_dir, 'rankings_list.csv') + + # Write summary CSV with title + with open(summary_path, 'w') as f: + f.write(f"# {title}\n") + summary.to_csv(f, index=False) + print(f"Saved summary CSV: {summary_path}") + + # Write detailed rankings CSV with title + with open(rankings_list_path, 'w') as f: + f.write(f"# {title}\n") + rankings_df[['Feature', 'Feature_Importance', 'Normalized_Feature_Importance', 'Rank', 'RBA']].to_csv(f, index=False) + print(f"Saved detailed rankings list: {rankings_list_path}") + + +def main(): + parser = argparse.ArgumentParser(description="Compute global mean and median ranks for RBAs.") + parser.add_argument("root_dir", help="Path to the dataset group directory (e.g., path/to/mainEff).") + args = parser.parse_args() + + collect_rba_rankings(args.root_dir) + + print("Completed processing for:", args.root_dir) + + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/analysis/job_rebate_analysis.py b/analysis/job_rebate_analysis.py new file mode 100644 index 0000000..d42f69b --- /dev/null +++ b/analysis/job_rebate_analysis.py @@ -0,0 +1,207 @@ +import os +import time +import sys +import argparse +import pandas as pd +import numpy as np +from numpy.random import default_rng +from sklearn.model_selection import train_test_split +from sklearn.feature_selection import mutual_info_classif, mutual_info_regression +import hashlib +from functools import partial + +package_path = os.path.abspath(os.path.join("", "..")) +sys.path.insert(0, package_path) +from skrebate import ReliefF, SURF, SURFstar, MultiSURF, MultiSURFstar, SWRFstar, SWRF, MultiSWRFstar, MultiSWRF, MultiSWRFDBstar, MultiSWRFDB, MuRelief + +# NEW: added exist_ok=True +def ensure_dir(directory): + if not os.path.exists(directory): + os.makedirs(directory, exist_ok=True) + +def process_and_save_results(file_path, fs, method_name): + df = pd.read_csv(file_path, sep='\t') + + X, y = df.drop('Class', axis=1).values, df['Class'].values + + # to keep track of runtime for large feature datasets + start_time = time.time() + try: + fs.fit(X, y) + except AttributeError: + scores = fs(X, y) + fs = type('MI', (), {'feature_importances_': scores})() + end_time = time.time() + + temp_list = [] + for feature_name, feature_score in zip(df.drop('Class', axis=1).columns, fs.feature_importances_): + temp_list.append([feature_name, feature_score]) + + Results = pd.DataFrame(temp_list, columns=['Feature', 'Feature_Importance']) + ABSResults = Results.copy() + ABSResults['ABS_Feature_Importance'] = ABSResults['Feature_Importance'].abs() + Results.sort_values(by='Feature_Importance', ascending=False, inplace=True) + ABSResults.sort_values(by='ABS_Feature_Importance', ascending=False, inplace=True) + + base_dir = os.path.dirname(file_path) + results_dir = os.path.join(base_dir, "Results") + method_dir = os.path.join(results_dir, method_name) + abs_method_dir = os.path.join(results_dir, f"ABS_{method_name}") + ensure_dir(method_dir) + ensure_dir(abs_method_dir) + + base_name = os.path.splitext(os.path.basename(file_path))[0] + Results.to_csv(os.path.join(method_dir, f"{base_name}_Results.txt"), index=False, sep='\t') + ABSResults.to_csv(os.path.join(abs_method_dir, f"{base_name}_ABSResults.txt"), index=False, sep='\t') + # Save runtime CSV + runtime = end_time - start_time + runtime_df = pd.DataFrame([{ + "Dataset": base_name, + "Algorithm": method_name, + "Runtime (sec)": round(runtime, 4), + "Runtime (min)": round(runtime / 60, 4) + }]) + runtime_df.to_csv(os.path.join(method_dir, f"{base_name}_runtime_postnanhandling.csv"), index=False) + + # ******** If I uncomment this function, I need to go back and uncomment logging lines within other files + # if method_name in ["SWRFstar", "SWRF", "MultiSWRF", "MultiSWRFstar", "MultiSWRFDB", "MultiSWRFDBstar", "MultiSWRFDBlinear", "MultiSWRFDBlinearstar", "MultiSWRFDBexponential", "MultiSWRFDBexponentialstar", "MultiSWRFDBlinear3SD", "MultiSWRFDBlinear3SDstar", "MultiSWRFDBexponential3SD", "MultiSWRFDBexponential3SDstar", "SURF", "SURFstar", "MultiSURF", "MultiSURFstar", "MuRelief10", "MuRelief100"]: + # fs.plot_distance_weight_map(save_fig=os.path.join(method_dir, f"{base_name}_WeightPlot.png"), show_expected=True) + # # fs.plot_distance_weight_map(save_fig=os.path.join(method_dir, f"{base_name}_WeightPlot.png"), save_file=os.path.join(method_dir, f"{base_name}_stdweightlog.txt"), show_expected=True) + + print(f"Processed {file_path} with {method_name}. Results saved to {method_dir} and {abs_method_dir}.") + +def process_random_shuffle(file_path): + # Define the directory to store results + results_dir = os.path.join(os.path.dirname(file_path), "Results", "RandomShuffle") + ensure_dir(results_dir) + + # Read the file + try: + df = pd.read_csv(file_path, sep='\t') + except Exception as e: + print(f"Error reading {file_path}: {e}") + return + + # Shuffle feature column names (excluding 'Class' if present) + if 'Class' in df.columns: + columns_to_shuffle = sorted(df.drop('Class', axis=1).columns.tolist()) + else: + columns_to_shuffle = sorted(df.columns.tolist()) + + base_name = os.path.splitext(os.path.basename(file_path))[0] + # Take the last 2 characters of base_name (i.e. the file number) + seed_str = base_name[-2:] # example: "01" + # Convert to deterministic integer seed + file_seed = int(hashlib.sha256(seed_str.encode()).hexdigest(), 16) % (2**32) + + for i in range(40): # 40 random shuffles per replicate file (40 X 30 = 1200 random shuffles per configuration) + seed = file_seed + i + # creating a local RNG seeded from the file name + rng = default_rng(seed) + # shuffle columns deterministically for this file + shuffled_columns = rng.permutation(columns_to_shuffle) + + shuffled_df = pd.DataFrame(shuffled_columns, columns=['Feature']) + + output_path = os.path.join(results_dir, f"{base_name}{i}_RandShuffle.txt") + shuffled_df.to_csv(output_path, index=False, sep='\t') + +def process_mutual_info(file_path): + df = pd.read_csv(file_path, sep='\t') + # counting the number of labels in the 'Class' column to determine whether this is a classification or regression problem: + num_labels = df['Class'].nunique() + if num_labels <= 10: + fs = partial(mutual_info_classif, random_state=42) # setting random_state for mutual_info + else: + fs = partial(mutual_info_regression, random_state=42) + process_and_save_results(file_path, fs, "MutualInfo") + +def process_relieff10(file_path): + fs = ReliefF(n_features_to_select=2,n_neighbors=10,n_jobs=1) + process_and_save_results(file_path, fs, "ReliefF10") + +def process_relieff100(file_path): + fs = ReliefF(n_features_to_select=2,n_neighbors=100,n_jobs=16) + process_and_save_results(file_path, fs, "ReliefF100") + +def process_surf(file_path): + fs = SURF(n_jobs=1) + process_and_save_results(file_path, fs, "SURF") + +def process_surfstar(file_path): + fs = SURFstar(n_jobs=16) + process_and_save_results(file_path, fs, "SURFstar") + +def process_multisurf(file_path): + fs = MultiSURF(n_jobs=16) + process_and_save_results(file_path, fs, "MultiSURF") + +def process_multisurfstar(file_path): + fs = MultiSURFstar(n_jobs=16) + process_and_save_results(file_path, fs, "MultiSURFstar") + +def process_swrfstar(file_path): + fs = SWRFstar(n_jobs=1) + process_and_save_results(file_path, fs, "SWRFstar") + +def process_swrf(file_path): + fs = SWRF(n_jobs=16) + process_and_save_results(file_path, fs, "SWRF") + +def process_multiswrfstar(file_path): + fs = MultiSWRFstar(n_jobs=16) + process_and_save_results(file_path, fs, "MultiSWRFstar") + +def process_multiswrf(file_path): + fs = MultiSWRF(n_jobs=16) + process_and_save_results(file_path, fs, "MultiSWRF") + +def process_multiswrfdbstar(file_path): + fs = MultiSWRFDBstar(n_jobs=16) + process_and_save_results(file_path, fs, "MultiSWRFDBstar") + +def process_multiswrfdb(file_path): + fs = MultiSWRFDB(n_jobs=16) + process_and_save_results(file_path, fs, "MultiSWRFDB") + +def process_murelief10(file_path): + fs = MuRelief(n_features_to_select=2,n_neighbors=10,n_jobs=1) + process_and_save_results(file_path, fs, "MuRelief10") + +def process_murelief100(file_path): + fs = MuRelief(n_features_to_select=2,n_neighbors=100,n_jobs=1) + process_and_save_results(file_path, fs, "MuRelief100") + + +def main(): + parser = argparse.ArgumentParser() + parser.add_argument('--algorithm', required=True, help='Algorithm to use') + parser.add_argument('--input_file', required=True, help='Path to the input .txt file') + args = parser.parse_args() + + alg_map = { + 'random': process_random_shuffle, + 'mutual_info': process_mutual_info, + 'relieff10': process_relieff10, + 'relieff100': process_relieff100, + 'surf': process_surf, + 'surfstar': process_surfstar, + 'multisurf': process_multisurf, + 'multisurfstar': process_multisurfstar, + 'swrfstar': process_swrfstar, + 'swrf': process_swrf, + 'multiswrfstar': process_multiswrfstar, + 'multiswrf': process_multiswrf, + 'multiswrfdbstar': process_multiswrfdbstar, + 'multiswrfdb': process_multiswrfdb, + 'murelief10': process_murelief10, + 'murelief100': process_murelief100, + } + + if args.algorithm not in alg_map: + raise ValueError(f"Unsupported algorithm: {args.algorithm}") + + alg_map[args.algorithm](args.input_file) + +if __name__ == "__main__": + main() diff --git a/analysis/higher_order_interactions/Data_feature_set_extender.ipynb b/analysis/oldScripts/Data_feature_set_extender.ipynb similarity index 99% rename from analysis/higher_order_interactions/Data_feature_set_extender.ipynb rename to analysis/oldScripts/Data_feature_set_extender.ipynb index b2dd5df..329df40 100644 --- a/analysis/higher_order_interactions/Data_feature_set_extender.ipynb +++ b/analysis/oldScripts/Data_feature_set_extender.ipynb @@ -42,7 +42,7 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": null, "id": "e58387ad", "metadata": {}, "outputs": [], @@ -52,7 +52,7 @@ "completed = [20,100]\n", "min_MAF = 0.01\n", "max_MAF = 0.5\n", - "folder_path = \"AbsVal Benchmark Data\"\n" + "folder_path = \"../Benchmark Data\"\n" ] }, { diff --git a/analysis/oldScripts/Data_feature_set_extender.py b/analysis/oldScripts/Data_feature_set_extender.py new file mode 100644 index 0000000..068abe3 --- /dev/null +++ b/analysis/oldScripts/Data_feature_set_extender.py @@ -0,0 +1,72 @@ +# %% +import os +import pandas as pd +import numpy as np + +# %% +def hardy_weinberg_equilibrium(freq): + p = np.sqrt(freq) + q = 1 - p + return np.random.choice([0, 1, 2], p=[q**2, 2*p*q, p**2]) + +# %% +def get_max_random_feature(column_names): + column_names = [x for x in column_names if x != 'Class' and x.startswith('N')] + column_names = [x[1:] if x.startswith('N') else x for x in column_names] + max_value = max(int(x) for x in column_names) + return max_value + + +# %% +#total_features = 40 #20, 40, 60, 80, 100 +feature_list = [40,60,80] +completed = [20,100] +min_MAF = 0.01 +max_MAF = 0.5 +folder_path = "../Benchmark Data" + + +# %% +#go through features to generate list one at a time + +def process_files_in_folder(folder_path): + for root, dirs, files in os.walk(folder_path): + print(root) + if 'a_20' in root: + print(root) + for total_features in feature_list: + print(total_features) + + for file in files: + if file.endswith(".txt"): + file_path = os.path.join(root, file) + + # Load the dataset + df = pd.read_csv(file_path, sep='\t') + column_names = df.columns.tolist() + max_value = get_max_random_feature(column_names) + num_columns = df.shape[1] + n = total_features +1 - num_columns + + # Generate a random minor allele frequency between 0.05 and 0.5 + freq = np.random.uniform(min_MAF, max_MAF) + + # Add n new columns with values 0, 1, or 2 based on Hardy-Weinberg equilibrium + for i in range(n): + col_name = 'N'+str(i+max_value+1) + df[col_name] = df.apply(lambda _: hardy_weinberg_equilibrium(freq), axis=1) + + new_root = root.replace('a_20', 'a_'+str(total_features)) + + if not os.path.exists(new_root): + os.makedirs(new_root) + + new_file_path = file_path.replace('a_20', 'a_'+str(total_features)) + + # Save the modified dataset + df.to_csv(new_file_path, sep='\t', index=False) + +# %% +process_files_in_folder(folder_path) + + diff --git a/analysis/oldScripts/Heatmaps.ipynb b/analysis/oldScripts/Heatmaps.ipynb new file mode 100644 index 0000000..4adf85d --- /dev/null +++ b/analysis/oldScripts/Heatmaps.ipynb @@ -0,0 +1,622 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "import pandas as pd\n", + "import seaborn as sns\n", + "import matplotlib.pyplot as plt\n", + "import numpy as np" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Below is the parsing code that goes through all result files and calculates the ranks for each feature for all replicates" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Consolidated rankings saved to: ../core2wayEpistasis/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-1/Results/consolidated_rankings.csv\n" + ] + } + ], + "source": [ + "# Define the path to the 'Results' directory\n", + "results_dir = '../core2wayEpistasis/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-1/Results' # Change this to the path of your 'Results' directory\n", + "\n", + "# Initialize a DataFrame to hold all rankings\n", + "all_rankings_df = pd.DataFrame()\n", + "\n", + "# Initialize a dictionary to hold the total number of features (N) for each RBA method\n", + "total_features_per_rba = {}\n", + "\n", + "# Iterate over each subfolder in the Results directory, each named for an RBA\n", + "for rba in os.listdir(results_dir):\n", + " rba_path = os.path.join(results_dir, rba)\n", + " if os.path.isdir(rba_path): # Ensure it's a directory\n", + " method_feature_counts = [] # To store feature counts for each dataset within this method\n", + " for file in os.listdir(rba_path):\n", + " if file.endswith('.txt'): # Ensure the file is a .txt file\n", + " file_path = os.path.join(rba_path, file)\n", + " \n", + " # Extract the dataset identifier from the file name\n", + " parts = file.split('_')\n", + " dataset_id = '_'.join(parts[-2].split('_')[:2])\n", + " \n", + " # Determine Ranks\n", + " df = pd.read_csv(file_path, sep='\\t', usecols=['Feature'])\n", + " if rba == \"RandomShuffle\":\n", + " df['Rank'] = df.index + 1\n", + " else:\n", + " column_to_use = 'ABS_Feature_Importance' if \"ABS\" in rba else 'Feature_Importance'\n", + " df = pd.read_csv(file_path, sep='\\t', usecols=['Feature', column_to_use])\n", + " df.sort_values(by=column_to_use, ascending=False, inplace=True)\n", + " df.reset_index(drop=True, inplace=True)\n", + " df['Rank'] = df.index + 1\n", + " \n", + " # Store in a dataframe\n", + " predictive_df = df[df['Feature'].str.startswith('M')][['Feature', 'Rank']]\n", + " predictive_df['RBA'] = rba\n", + " predictive_df['Dataset'] = dataset_id\n", + " \n", + " all_rankings_df = pd.concat([all_rankings_df, predictive_df], ignore_index=True)\n", + " \n", + " # Add the feature count of this dataset to the list for this method\n", + " method_feature_counts.append(df['Feature'].nunique())\n", + " \n", + " # Store the maximum feature count encountered for this method as N\n", + " total_features_per_rba[rba] = max(method_feature_counts)\n", + "\n", + "# Now, you have both the rankings and the total number of features (N) for each RBA method\n", + "# You can use total_features_per_rba to access N for each method as needed\n", + "\n", + "# Specify the path to save the consolidated rankings file\n", + "save_path = os.path.join(results_dir, 'consolidated_rankings.csv')\n", + "all_rankings_df.to_csv(save_path, index=False)\n", + "\n", + "print(f\"Consolidated rankings saved to: {save_path}\")\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### This code generates the ranking percentages that are needed to create the heatmaps" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Percentages saved to percentages_df.csv.\n" + ] + } + ], + "source": [ + "# Assuming all_rankings_df is correctly prepared and contains 'RBA', 'Feature', 'Rank', 'Dataset'\n", + "\n", + "# Since all datasets have the same N, we can pick the N from any RBA method from total_features_per_rba\n", + "N = next(iter(total_features_per_rba.values()))\n", + "\n", + "# Step 1: Identify the lowest-ranked predictive feature for each dataset for each RBA\n", + "lowest_ranks = all_rankings_df.groupby(['RBA', 'Dataset'])['Rank'].max().reset_index()\n", + "\n", + "# Initialize a structure to hold the calculated percentages for each RBA method\n", + "percentages = {rba: [0] * N for rba in lowest_ranks['RBA'].unique()}\n", + "\n", + "# Step 2: Calculate percentages for each position for each RBA\n", + "for rba in percentages.keys():\n", + " rba_data = lowest_ranks[lowest_ranks['RBA'] == rba]\n", + " for position in range(1, N + 1):\n", + " # Count how many of the lowest ranks are better (lower number) than the current position\n", + " count_higher = rba_data[rba_data['Rank'] <= (position)].shape[0]\n", + " total_datasets = rba_data.shape[0] # Should be 30 per RBA if there are 30 datasets\n", + " percentages[rba][position - 1] = (count_higher / total_datasets) * 100\n", + "\n", + "# Convert the percentages to a DataFrame for visualization\n", + "percentages_df = pd.DataFrame(percentages, index=range(1, N + 1))\n", + "\n", + "# Save percentages_df to a CSV file\n", + "save_path_percentages = os.path.join(results_dir, 'percentages_df.csv')\n", + "percentages_df.to_csv(save_path_percentages, index_label='Ranking Position')\n", + "\n", + "print(\"Percentages saved to percentages_df.csv.\")\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Plotting code for heatmaps" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n", + "findfont: Generic family 'sans-serif' not found because none of the following families were found: Helvetica\n" + ] + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAABGYAAAKyCAYAAACXNtjwAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguNCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8fJSN1AAAACXBIWXMAAA9hAAAPYQGoP6dpAADlB0lEQVR4nOzdd3hUxfv38c+mFyD0kFBCVUAQkA4BQkeUIqAiIE0QRREEpahUpX5FKaJgoyiIoIIFEATpIEUQpIt0aUIgQPom5/kjT/bHmrLJbjabwPt1Xee6smfO3DPnZEv2zswck2EYhgAAAAAAAJDt3FzdAQAAAAAAgPsViRkAAAAAAAAXITEDAAAAAADgIiRmAAAAAAAAXITEDAAAAAAAgIuQmAEAAAAAAHAREjMAAAAAAAAuQmIGAAAAAADARUjMAAAAAAAAuAiJGQD4j/3792vy5Mlq3ry5AgMD5enpqQIFCqhRo0aaM2eO4uPjXd3FLDNu3DiZTCabW1hYWJa0t2DBAplMJvXu3TtL4knSlStX5OXlJZPJpJo1a9o8vnTp0qmeY548eVStWjWNGjVK169fT7P+vn371LdvX5UvX16+vr7y8/NTSEiIGjZsqNdee02//PJLlp2bs6xevVrjxo1Tu3btFBwcbLkGFy5csFk3Li5OU6dOVbVq1eTv768CBQooLCxM33zzjc26y5cvV1hYmAoUKCB/f39Vq1ZN06ZNy/bXVFRUlH766Se9/PLLqlatmvLmzSsvLy+VLFlSXbt21fbt223GsPdcfv/9dz355JMKDAyUj4+PypQpo0GDBunq1aupHp/8Gh03bpw9p5pjXLlyRS+//LLKlCkjb29vBQYG6sknn9S+ffvsirdlyxZNmjRJnTt3tnpNb9u2LYt7njvt2LFDrVq1UsGCBeXm5iaTyaQFCxbYHS8rX7vZ8Rlr72dbavV8fHxUtGhRVatWTb1799bixYsVExOTZtvJn3Mmk0leXl5pvrYlKTY2VoUKFbIc/84772T6XHktAPcGD1d3AAByErPZrEceeUSSlCdPHtWuXVuBgYG6cOGCdu7cqW3btmnRokVau3at8ufP79rOZqHAwEC1adMmzfKKFStmY28yZ9GiRZY/5Pft26cDBw6oWrVqNus1bNhQ5cuXlyQlJibq4sWL2rFjh6ZMmaJFixZp69atKlu2rFWd2bNna8iQIUpMTFTx4sXVtGlTFShQQP/++6/27dunHTt2aNOmTWrZsmXWn2gW6tatmyIiIjJdLyoqSi1bttSOHTuUP39+tWnTRnfu3NGvv/6qzZs3a9iwYXr33XdTrTtkyBDNnDlTHh4eatasmfLkyaNff/1VI0aM0I8//qh169bJ19fX0VPLkCVLlqh///6SpJCQEDVv3lweHh46cOCAvv76ay1btkxvv/223nzzzSw9l2+++UbPPPOMzGazateurTJlymjv3r364IMPtHz5cm3bts3ynLyXnDhxQo0aNdLVq1dVtmxZdezYUadPn9Y333yjlStXatmyZXriiScyFfOVV17RgQMHnNTj3O3ixYt67LHHFBERodDQUJUuXVpubm52P7ey8rWb3Z+x9n623V0vISFBEREROnbsmBYuXKiFCxdqyJAhmj17trp27Zpu+/Hx8friiy80bNiwVMtXrFih8PDwDJ5N6ngtAPcIAwBgER8fb9SsWdNYtmyZERMTY1V28OBBIygoyJBk9OnTx0U9zFpjx441JBlNmjTJlvZu3rxpHD161Lh48WKWxaxYsaIhyShevLghyRg0aFC6x4eEhBiSjPnz56cou3TpkvHAAw8YkozOnTtblR04cMBwc3MzJBnvv/++YTabrcoTEhKMzZs3GxMnTnT4nJytT58+xqRJk4yff/7ZuHr1qiHJkGScP38+3XqDBw82JBlVq1Y1/v33X8v+vXv3Gnny5DEkGT/++GOKeitWrDAkGXny5DF+//13y/5///3XqFq1qiHJGDZsWNadoA0LFiww+vbta+zbt89qf2JiojF9+nTL9di0aVOKuvaeyz///GP4+fkZkox58+ZZ9pvNZqNHjx6GJKN27dpGYmKiVb3k1+jYsWMdPGvXSExMNGrUqGFIMp599lmr1828efMs1/LSpUuZivvaa68Z48aNM3744QfjwoULltf11q1bs/oUcp358+cbkoxu3bo5HCurX7vZ9Rlr72ebrXonT560vF4lGXPmzElxTPL1f/jhhw1PT0/joYceSrO9li1bWl77koy33347U/01DF4LwL2CxAwAZMIXX3xhSDJ8fX2NuLg4V3fHYdmdmMlq27ZtMyQZBQoUMNauXWtIMgoWLJjiD/67pZeYMQzD+OSTTwxJRv78+a32v/XWW4Yko379+ll5CjlCRhIz4eHhhpeX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GjMuwpUAAAAAAABwERIzAAAAAAAALsJUJgAAAAAAkLTwb7Yt/svqv8kYMQMAAAAAAOAijJgBAAAAAAAs/usiXAkAAAAAAAAXITEDAAAAAADgIkxlAgAAAAAALP7rIoyYAQAAAAAAcBFGzAAAAAAAABb/dRGuBAAAAAAAgIswYgYAAAAAALDGjIswYgYAAAAAAMBF7qvEzLhx42QymSxboUKFFBoaqtWrV2d7X6pXr67evXtne7v/tWbNGjVp0kSFCxeWv7+/ypcvrx49eujEiROWY8LCwvT4449nWZtLlixRhQoV5OnpqerVq0uSTp8+rebNmytv3rwymUz6448/srxdAAAAAEA6kteYya4Nku6zxIwk+fr6aufOndq5c6c++eQTxcTEqF27dtqxY4eru5btvv76a7Vt21ZlypTRwoULtXLlSr3yyis6c+aMjh496pQ279y5o759+yo0NFSbNm3SF198IUkaPXq0Tp06pW+++UY7d+7UAw884JT2AQAAAADISe67NWbc3NxUr149y+O6deuqZMmSWrhwoRo0aODCnmW/2bNnq2nTplqwYIFlX8uWLfXKK68oMTHRKW2eOXNGsbGxevbZZ9WwYUPL/mPHjqlRo0Zq3bq1U9oFAAAAACAnuu9GzPxX8eLFVaRIEZ07d86y79KlS+rbt6/Kli0rX19fVahQQW+88YZiY2Ot6ppMJk2bNk3jxo1TYGCgChcurD59+igyMtLquB07dqhmzZry8fFRlSpVtGbNmlT78t1336l69ery8fFRcHCwhg4dqpiYGEv5pk2bZDKZtHbtWj311FPKkyePSpUqpSVLlkiSZs2apVKlSqlgwYLq169fiv7+140bNxQUFJRqmZtbyqfGN998owcffFB58uRRs2bN9Pfff6fo2969e63qdOzYUWFhYZKSppJVrVpVktS8eXOZTCb17t1bJpNJv//+u7744guZTCaVLl06zT4fPXpUHTp0UEBAgPz9/fXYY49Z9QMAAAAAYCemMrnEfX8l7ty5o/DwcJUpU8ay79q1aypYsKDee+89/fzzzxo+fLgWLlyoF154IUX9Dz74QH/99ZcWLlyoMWPGaMmSJXr77bct5ZcvX1br1q3l7e2tZcuW6fXXX9eLL76of/75xyrODz/8oC5duqhy5cpauXKlhg8frrlz56pHjx4p2nzxxRdVpUoVrVixQvXq1dOzzz6rESNGaO3atZo7d64mTJigRYsWafr06emee82aNfXtt9/qvffe05kzZ9I99o8//tD//vc/TZkyRQsWLNDJkydT7Vt6+vXrp0WLFkmS5syZo507d2r8+PHauXOnKlSooLZt22rnzp1asWJFqvVPnTqlBg0aKDw8XAsWLNCSJUv077//qnnz5jaTUAAAAAAA5ET33VQmSTKbzZKkixcvavjw4cqbN68GDx5sKa9atareffddy+OGDRvK399fvXr10pw5c+Tn52cpCwoK0uLFiyVJbdq00b59+/TNN99oypQpkqQZM2bIZDJpzZo1CggIkCSVLFlSzZs3t+rTuHHjVK9ePcvolzZt2sjPz08DBgzQn3/+aRlpIklPPvmkxowZI0mqU6eOvvvuO3311Vf6+++/5enpKSlpBMvy5cv1xhtvpHkdJk+erCNHjmjYsGEaNmyYgoKC9Nhjj2nQoEF6+OGHrY69efOm9u/fryJFikhKSmj16dNHFy5cUIkSJWxec0kqUaKE5TwqV65smVIWEhIiPz8/FSlSxGqa2X+NHz9eBQsW1C+//CIfHx9JUoMGDVS2bFl99tlnGjhwYIb6AQAAAABIhZspacsOBrfLTnbfjZiJjIyUp6enPD09FRISom+++UZffPGFHnzwQcsxhmFoxowZqly5snx9feXp6anu3bvLbDbr1KlTVvFatmxp9bhy5cq6cOGC5fGuXbvUtGlTS1JGkpo1a6aCBQtaHt+5c0d//PGHunTpYhXr6aefliRt27YtzTYDAgJUtGhRNW7c2JKUkaQHHnhA58+fT/daFC9eXLt379bGjRs1YsQIlS5dWp9//rlq166dYrpV9erVLUmZ5POUZHWuzrZu3Tq1b99eHh4eMpvNMpvNKlCggGrUqKE9e/ZkWz8AAAAAAMgq911ixtfXV3v27NGuXbv05ZdfKigoSD179tSlS5csx8yYMUPDhg1Thw4d9P3332v37t2aM2eOJFmt+SJJ+fPnt3rs5eVlNa3m0qVLKlq0aIp+3L3v5s2bMgxDgYGBVscEBATI29tb4eHhNttMbd9/+5oaNzc3hYWFacqUKdqxY4f27t0rb29vvfnmmzbblFJeD2e6du2aZsyYYUmsJW9bt25NNwkVGxurW7duWTYAAAAAQCpYY8Yl7rupTG5ubqpVq5akpGlADz74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devWVcmSJbVw4UI1aNDA6tjAwECrY5OZzWbly5dPTZo0UdOmTfXPP/+offv2KliwoN555x27+wYAAAAAgCuQmEEKN27cUFBQUKplbm5ZN8iqePHiKlKkiM6dO5fhOh4eHnr55ZfVuXNnNWjQQGfPntWXX36pbt26ZVm/AAAAAOB+xOK/rsFUJqRQs2ZNzZ07V59++qkuX77stHbu3Lmj8PBwlSlTJkWZYRgym82WLSEhQZKUkJCguXPnql27durUqZOaN2+upUuX6rnnnnNomhUAAAAAAK5AYgYpfPjhhypYsKD69++voKAglS1bVoMHD9aZM2ccjp2caDl37pz69eunvHnzavDgwan2wdPT07J5e3tLSkrMhIeHa9OmTWrXrp2KFy+uH374QY899liW9A8AAAAA7lssMuMSTGVCClWqVNHhw4e1fv16rVu3Tps3b9asWbM0f/58bdmyRdWrV7crbmRkpDw9PS2P3d3d9f333+vBBx9McexTTz2l119/3fI4eTidl5eX3njjjRTHd+rUya4+AQAAAADgSiRmkCovLy+1bdtWbdu2lSStXbtWjz32mCZMmKDvvvtOUtJ6L8lTjP4rISHBKgkjJd2VacuWLUpMTNRff/2lkSNHqmfPnjp06FCKNW2KFCmiWrVqpdvHsLAwhYWF2TyX2NhYxcbGSkpKDgEAAAAAUsrOgSwMmPk/TGVChrRu3VrVqlXT0aNHLfuKFCmS5ho0ly5dUtGiRa32ubm5qVatWqpTp466d++uFStW6ObNm5owYYJT+z558mQFBAQoICBAwcHBTm0LAAAAAIDMIDGDFK5cuZJiX3R0tM6fP69ixYpZ9jVp0kSbNm1SRESE1bFbt27V9evX1bhx43TbqVWrlp555hnNnz/fqYsMjxo1ShEREYqIiGCBYAAAAABAjkJiBilUrVpVzz33nJYtW6atW7dq6dKlatmypa5du2a1UO/gwYPl4eGhRo0a6csvv9Svv/6qWbNmqWPHjmrUqJFatmxps63Ro0fLbDZrxowZTjsfb29v5cuXz7IBAAAAAFJKvl12dm1IQmIGKYwbN04XL17U0KFD1aJFCw0bNkx58+bVhg0b1LFjR8txQUFB2rFjhypWrKghQ4aodevWmj59unr27KlVq1bJzc320+vBBx9U165d9dFHH6UYeQMAAAAAwL3OZBiG4epO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7xd3f0e6PrKS/L2yZynayLhEFZpyVFLuunZnz55VqVKlUh0xY69MjZgJCwuzu/G07uADAAAAAACQG4SEhOjmzZv67LPPdPRoUmKpcuXKeu655xQQEGBXzEwlZsaMGZMiMfPbb79p7dq1qlChgho2bKjAwEBduXJFO3bs0IkTJ9S6dWvVq1fPrs4BAAAAAIBskp23sc5Ft8u+2969e9W6dWv5+vqqTp06kqT3339fkyZN0rp16/TII49kOmamEjPjxo2zerx161ZNnjxZH3/8sZ577jmrpI1hGPrkk080ePBgvfnmm5nuGAAAAAAAQE7y6quvqn379vrkk0/k4ZGUUjGbzerXr5+GDBli1xIwDk0eGz16tB577DH169cvxUgak8mk559/Xo8++qhGjx7tSDMAAAAAAMDJTCZTtm650d69ezVixAhLUkaSPDw8NHz4cO3du9eumA4lZn7//XdVqlQp3WMqVapkd+cAAAAAAAByinz58uncuXMp9p8/f1558+a1K6ZDiRkvLy/t378/3WP2798vLy8vR5oBAAAAAABwuaefflrPPfecvv76a50/f17nz5/X0qVL1a9fPz3zzDN2xczUGjP/1apVKy1btkxTpkzR0KFDrRIwcXFxmj59utauXaunn37akWYAAAAAAICzsfivTe+++65MJpN69uwps9ksSfL09NSLL76oKVOm2BXTocTM//73P23dulVvvvmmZs6cqVq1aqlo0aK6evWq9u7dq6tXryo4OFjTpk1zpBkAAAAAAACX8/Ly0syZMzV58mT9/fffkqRy5crJz8/P7pgOJWZKlCihvXv3auTIkVq2bJlWrVplKfPx8dGzzz6rKVOmqFixYo40AwAAAAAAnM1kkkwOrXiSibaM7GnHSfz8/FS1atUsieVQYkaSihUrpgULFuiTTz7R8ePHFRERoYCAAD3wwAOsLQMAAAAAAJAOhxMzyTw9PVWlSpWsCgcAAAAAAHDPy7LEzPbt2/XHH3/o1q1bypcvn6pXr66GDRtmVXgAAAAAAOBEJpNJpmxalDe72skNHE7M7NixQ3369NHJkyclSYZhWC5whQoVNH/+fNWvX9/RZgAAAAAAAFwqMjJS/v7+WRrTocTM4cOH1apVK0VFRally5Zq2rSpgoKCdPnyZW3cuFHr1q1T69at9dtvv6ly5cpZ1WcAAAAAAJDV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iIiIiIgzZmTCliAiIiIiIiIikglnzBARERERERERZ8zIhC1BRERERERERCQTDswQEREREREREcmES5mIiIiIiIiICNBRZB+lVRYB4IwZIiIiIiIiIiLZcMYMEREREREREXHzX5mwJYiIiIiIiIiIZMIZM0RERERERETEGTMyYUsQEREREREREcmEM2aIiIiIiIiIiDNmZMKBGXpnJSUly12F8kuZLncNqAwTytTcE+QVX9Iy8yg/PaV06lFOiXSZf355SUnLPT41j/iiSs0o2fyLKk1ZxPMzi6ceOchML9n8S5oyPUvW8tMyRJHOT8/j/HRlEfMv4vkio2jPH6Es4fufZJXnzzczj99fMwv3/BZZZfy5T+UCB2bonWXrVF/uKhARERFRvg2TuwJERCWCAzNERERERERElE2hkLsG7xwOzNA769n9GzAxMZa7GiSHIi7FynOpDuUur/bLa6lRWZeeVKLZixLOP095lZ/2T+nUo7BSE+QtPyW+ZPNPTSzZ/JPzaL80mftnXlLy6J/JucdnppbsMmhlctHaL6/6KZOL9nxNz2OpXl7xeeafUrJLQpKKuNTMu/qGYqqJdmlFXGqZ+vpVMdWkkPK6//N6fuQltWw+X0RWBtIj1shdDSrnODBD7ywTE2OYmJjIXQ2Sg7Jojz6h5EZlRZJX+ynL+V9p9Ep2jwmhJ/MeHHmVr1PG96BSGMpbvjAo4QL0Szb7rLzyL+O/WmblUb9M3dyjs3KPLyplEf99yczM/XylftGer/qZuZ+vV8Tnt55eyT7/RR71z4tC36iYapJD/kVsP4WezM83ZR4Da7pFfP7plvF/X/41FP87SqssAvi6bCIiIiIiIiIi2ZTxP2sQERERERERUang67JlwZYgIiIiIiIiIpIJB2aIiIiIiIiIiGTCpUxERERERERElP2q7NJ6XTZfyy3hjBkiIiIiIiIiIplwxgwRERERERERIXvuRmnN3+A8ERW2BBERERERERGRTDgwQ0REREREREQkEy5lIiIiIiIiIiJu/isTzpghIiIiIiIiIpIJZ8wQEREREREREWfMyIQzZoiIiIiIiIiIZMIZM0REREREREQEvi5bHmwJIiIiIiIiIiKZcGCGiIiIiIiIiEgmXMpERERERERERNz8VyYcmCEiIiIiIiIiDszIhEuZiIiIiIiIiIhkwoEZIiIiIiIi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888/4+XLlxg3bhyA7Fec9erVC76+vmjXrh1MTU1x48YNfPfdd7CwsFBbU/g2Q0NDqQ21vZKciIiIiIiISC7v/IyZ/Khfvz7WrVuHy5cvw9vbG/v3789zxgcAjB49Gh988AEmTZqEli1bwt/fX2u6CRMmwNLSEvPnz0fXrl3h6+uLmzdv4vfff8fChQuldDo6OggKCsKwYcOwaNEieHl5YerUqahXrx5CQkJgZ2eXZ5309fUxa9YsnDt3DidOnMhvExRIYGAgjI2NMWDAAK3xI0aMQExMjFr5y5cvR5s2bdCmTRsMHz4cCQkJ2LVrF4YOHQoAqF27Nj7++GOcPHkSvr6+8PLywsKFC9GpUydcuHABDg4OJXItRERERERE7w4FsocJSuPgUiYVhSjpzUaIypCkpCRpU+PE5w9gYmIic41IFsq0Ip0ulHkvUaRc5NV+Ss1li+VKesm+JU6kJ+adqCTldX2pZXyTdbnrlxxXsvmn/lOy+Sfn0X6pMvfPvKTk0T55XF9mSnIxVkaTMrlo7ZdX/ZTJRXu+pqdm5BqflpJ7fJ75F/H8vCSlZRXp/C4O24qpJtqlpRTt95PU1y+LqSaFrUAe/Tev50dR85eJyMxA2rX/AgASExPL5feLN78j/XN1L0yMK5ROuckpMGvUG0D5bbvi8s4vZSIiIiIiIiIiAApF9lFaZREALmUiIiIiIiIiIpINZ8wQEREREREREWfMyIQzZoiIiIiIiIiIZMIZM0RERERERESE/39jUmmVRQBbgoiIiIiIiIhINhyYISIiIiIiIiKSCZcyERERERERERE3/5UJZ8wQEREREREREcmEM2aIiIiIiIiIiDNmZMIZM0REREREREREMuGMGSIiIiIiIiICX5ctD7YEEREREREREZFMODBDRERERERERCQTLmUiIiIiIiIiIm7+KxPOmCEiIiIiIiIikglnzBARERERERERoNDJPkqrLALAGTNERERERERERLLhjBkiIiIiIiIiAqD431FaZRHAGTNERERERERERLLhwAwRERERERERkUy4lImIiIiIiIiI+LpsmXDGDBERERERERGRTDhjhoiIiIiIiIj4umyZsCWIiIiIiIiIiGTCgRkiIiIiIiIiIplwKRMRERERERERcfNfmXDGDBERERERERGRTDhjhoiIiIiIiIgAKP53lFZZBHDGDBERERERERGRbDhjht5ZSUnJcleB5KJML9LpQplaTBV5R+XVfpnlvH3TU0o0e5Euc/vkVX5aWunUo7BSZa5fatGeP3nnnyFv/mnKki2/qPKqX1pmrtGZ6bnHF5UyPatI52dm5H6+MkMUKf/0PM5PVxYx/yKen5fkzKLlLzJK9vkrlEV7PhX1/CLLzOP5lld8nvmX8POtkERW2axXofF12bLgwAy9s2yd6stdBSIiIiIqN4bJXQEi+pfiwAwRERERERERgXvMyIMDM/TOenb/BkxMjOWuBpVHRVwKRUVT7peSlff6l/WlZulJuUaLPOKLmv87Lz66aOenxBdPPXKSmliy+RfV6yfylp/yj7zlJ+defmZq7svQlcm535//xDwrcJWKU3oJLzXsYP5brvFpRVzKmVf9s4raf+Tu/3lJ1d6/RFYG0iPWlHJl6N+GAzP0zjIxMYaJiYnc1aDySMlHp5yEspyvRy739S/jf93Sy32PDaFXxD1Cinr+v126YdHOFwbFU48c6Zdw/kVkKPO/L1kyl5+pm3t0Vu7xyjyer1n68j6/9Er4+anQN8o9vojlK/Ryb1+FXhH/cKVb0vd/EenyD3NUcvjtgoiIiIiIiIgAhSL7KK2yCABfl01EREREREREJBvOmCEiIiIiIiKi/+FMltLGGTNERERERERERDLhjBkiIiIiIiIiAlCKe8xwZo6EM2aIiIiIiIiIiGTCgRkiIiIiIiIiIplwYIaIiIiIiIiISCYcmCEiIiIiIiIikgk3/yUiIiIiIiKi7I1/S2vz31LbZLjs44wZIiIiIiIiIiKZcMYMERERERERESH7FdZ8XXZp44wZIiIiIiIiIiKZcGCGiIiIiIiIiEgmXMpERERERERERNz8VyacMUNEREREREREJBPOmCEiIiIiIiIicPNfeXDGDBERERERERGRTDgwQ0REREREREQkEy5lIiIiIiIiIiJu/isTDswQEREREREREbjHjDy4lImIiIiIiIiISCYcmCEiIiIiIiIikgmXMhERERERERER95iRCWfMEBERERERERHJhDNmiIiIiIiIiAjc/FcenDFDRERERERERCQTDszIaNOmTWjVqhUsLCxgbm4OFxcXjBkzBs+fPwcADB8+HPb29hrn9e/fHwqFAsHBwWrhu3btgkKhwPnz5wEAvr6+UCgU0mFra4suXbogNDRU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AUB6hba2NgOAW7duAYBGu6kYGhrC3NxcOoiIiIiIiIjKCr4uWyaurq7o1asXvLy8YGdnh+joaPz000+IjY3FlClT1NK6u7tjwYIFOH36NGbPnq0W5+bmhqCgINSoUQPVq1fPV9n+/v54//33sXbtWowbN67YrulNmzZtgomJCT799FOYmpqqxTVs2BCLFy9GYGAgAgICpPCLFy/CwsICSqUSN2/ehJ+fH2xtbdG3b18AwDfffIMrV65gyJAhaNCgAVJTU3H48GGsWLECffr0gYODQ4lcCxERERER0buBr8uWAwdmZOLv7499+/Zh2rRpePHiBWxsbNCoUSMcO3YMnp6eamnd3d2lqV5ubm5qcW3btsWff/6Z52uy39S5c2e0a9cOCxcuxNixY6Grq1ss16SSkZGBHTt2oG/fvhqDMkD2DJgePXogMDAQ8+fPl8K7du0KANDR0UG1atXQqVMnfPPNN7CysgIAfPjhh0hNTcXy5csRHR0NXV1dODo64ocffsD48eOL9RqIiIiIiIiISoNCCCHkrgRRaUlKSpIGixKfP4CJiYnMNaJySZkmdw3eaUJZcsswS0W5r3+K3DXIXXpSrtEiPbFE83/nxT0u2vnJccVSjRyl/lOy+RfVK5n3wkuRuX2Sc397ZmaK5ssr3qRMzv3+/if6aYGrVJzSUjJKNP+WFhvyKL9ov7+kp6bnGp9V1P4jd//PS6r2/iUyM5B27b8AgMTExHL5/ULtO9Kj6zAxMS6lcpNhWj37hTPlte2KC2fMEBERERERERGgUGQfpVUWAeDmv0REREREREREsuGMGSIiIiIiIiICN/+VB2fMEBERERERERHJhDNmiIiIiIiIiIh7zMiEM2aIiIiIiIiIiGTCGTNEREREREREBO4xIw/OmCEiIiIiIiIikglnzBARERERERER95iRCWfMEBERERERERHJhAMzREREREREREQy4VImIiIiIiIiIgI3/5UHZ8wQEREREREREcmEM2aIiIiIiIiIiJv/yoQzZoiIiIiIiIiIZMKBGSIiIiIiIiIimXApExERERERERGBm//KgzNmiIiIiIiIiIhkwhkzRERERERERMQJMzLhjBkiIiIiIiIiIplwxgwRERERERERgVNm5MEZM0REREREREREMuHADBERERERERGRTLiUiYiIiIiIiIj+t5KplJYYcSWThDNmiIiIiIiIiIhkwhkzRERERERERARu/isPzpghIiIiIiIiIpIJB2aIiIiIiIiIqNz4+eef4ejoCCMjI7Ru3Rrnz5+Xu0pFwoEZIiIiIiIiIsre+Lc0j0LYunUrpk2bBj8/P1y6dAmNGzeGl5cXnj9/XsyNUXo4MENERERERERE5cLixYsxduxYjBw5EvXr18eqVatgbGyM1atXy121QuPmv/ROEUJI/5+UlCxjTahcU6bLXYN3mlCmyl2Foinv9c8s4/VPT8k1WqQXsf5FPf/fLiWtaOenlvDzNTWjZPMvqjTlO15+Zq7Rmem5xyvTs3KNT8oQucaXtHRlyZYvMnJ/Pgll0e5Pocz9/ilq/sgs479fZWq/fpH1/+Fvftcor5KSUlBam/Jml1Uw6enpuHjxImbOnCmF6ejooHPnzggNDS3O6pUqDszQOyU5+f8HY2yd6stYEyIiIiKi4jRM7gq885KTk2Fqaip3NYpEru9ICQkJyMz8/8FXQ0NDGBoaaqSLjY1FZmYmbG1t1cJtbW0RGRlZ4vUsKVzKRERERERERESyqVq1KiwsLKQjICBA7iqVKs6YoXeKjY0N7ty5g9q1ayM6OhoWFhZyV6lcSUhIQNWqVRETEwNzc3O5q1OusO0Kj21XeGy7wmPbFR7brmjYfoXHtis8tl3hxcfHo1q1arhz5w5sbGzkrk6hGBsbIzExUbby09LSoKurC8UbmwFrmy0DZH+f09XVxbNnz9TCnz17hipVqpRoPUsSB2bonaKjo4NKlSoBAExNTWFiYiJzjcoX1fRCExMTtl0Bse0Kj21XeGy7wmPbFR7brmjYfoXHtis8tl3hqdquUqVK0NEpnwtSFAqFrD/3gpRtYGCA5s2b49ixY+jTpw8AICsrC8eOHcPEiRNLqIYljwMzRERERERERFQuTJs2DSNGjECLFi3QqlUrLF26FElJSRg5cqTcVSs0DswQERERERERUbkwaNAgvHjxAnPmzMHTp0/RpEkTHDx4UGND4PKEAzP0zjE0NISfn1+O6xYpZ2y7wmPbFR7brvDYdoXHtis8tl3RsP0Kj21XeGy7wmPbyWPixInleunS2xTi3/CydSIiIiIiIiKicqh87k5ERERERERERPQvwIEZIiIiIiIiIiKZcGCGyoxNmzahbdu2MDMzg6mpKdq0aYMNGzYUKq+lS5di//79GuGOjo6luhZx7dq1UCgUiI2NLbUy8+POnTsYN24cmjRpAj09PTRs2FBrut9//x116tSBkZERGjdujD///FMtPjExET4+PrCwsECTJk0QHh6uFp+RkYF69eph165dJXYtpWn79u3w9vaGvb09TExM0KRJE6xevRpvrwhlu2nav38/PDw8UKlSJRgaGqJmzZqYNm0a4uPj1dLt27cPjRs3hpGREerUqYM1a9aoxSuVSkyaNAlWVlZwdnbGgQMHNMrq1KkTlixZUqLXI6fExETY29tDoVDgwoULanHse+pUz+C3jy+++EItHdstd+vWrUPTpk1hZGQEGxsbdOvWDSkpKVI871tNHTt21Nr3FAoFtmzZIqVj39Nu7969aN26NczMzGBnZ4eBAwfi3r17GunYfpr+/PNPNGvWDIaGhqhevTr8/Pyk1zm/6V2/b4vrd2EAiI+Px+jRo2FlZQUzMzMMGDAAT548UUtz7tw5NGrUCBYWFvjwww+RlJSkFn/y5EnY29sjMTGx+C6SyhdBVAZMnDhRKBQKMXr0aHHgwAFx8OBBMWbMGKFQKMTEiRMLnJ+Dg4OYMGGCRvilS5fE/fv3i6HG+bNmzRoBQLx48aLUysyP3bt3C3t7e9G/f3/h6uoqGjRooJFm8+bNQqFQiC+//FIcP35cfPzxx0JPT0+EhoZKaWbOnCkaN24sDh48KAYPHiwcHR1Fenq6FL9gwQLRuXPnUrmm0uDm5iYGDx4stmzZIo4dOya++OILoaOjI/z9/aU0bDftNmzYIKZPny527NghgoODxfLly4W1tbV4//33pTSnT58Wurq64uOPPxbHjx8XX375pVAoFGL79u1Sml9++UXUqFFD7Nu3T0yZMkWYm5uLly9fSvHbtm0TLi4uIiMjo1SvrzTNmDFD2NraCgAiPDxcCmff06R6Bh88eFCEhoZKx8OHD6U0bLfcffvtt8LMzEwEBASIEydOiB07dohPPvlE/PPPP0II3rc5iYiIUOtzoaGhYtCgQUJPT0/6nYB9T7vg4GCho6MjfH19xZEjR8SWLVtEnTp1RK1atURycrKUju2nKTQ0VOjo6IihQ4eKgwcPikWLFokKFSqITz/9VC0d79vi+11YCCG8vLyEvb292Lp1q9izZ49o2LChaNy4sdQ26enpwsHBQfznP/8R+/btE/b29mL27NnS+UqlUjRq1Ehs3LixZC+ayjQOzJDs9uzZIwAIPz8/jbg5c+YIAGLv3r0FyjOngZnSVlYHZjIzM6X/HzFihNZ/jOrUqSOGDBmiFtamTRvRrVs36XOLFi3Etm3bhBBCPH36VAAQERERQgghnjx5IqysrKTP/wbafo5jx44V5ubmUpuy3fLvv//9rwAgoqOjhRBCdOnSRbRt21YtzZAhQ4SLi4v0ecCAAWLBggVCCCEyMjKEqampCAoKEkIIkZycLGrUqCEOHz5cSldQ+m7evClMTEzEqlWrNAZm2Pc05ecZzHbLWWRkpNDT0xP79+/PMQ3v2/xzcnIS3bt3lz6z72n38ccfCycnJ5GVlSWFHT9+XAAQp06dksLYfpq8vLxEs2bN1MIWLlwo9PX1xdOnT6Uw3rfF97twSEiIACAOHTokhUVGRgqFQiG2bt0qhBDi+vXrwszMTCiVSiGEEN99951o2bKllP6nn34S7u7uxXNhVG5xKRPJbunSpbC0tMRnn32mETd9+nRYWlpi6dKlAABfX180bNgQBw4cQMOGDWFkZITmzZsjLCxMOsfR0RFRUVH4+eefpWnDa9euleLeXMqkyu/o0aNo1KgRKlSoAA8PDzx48ACvXr3CwIEDYW5ujlq1amHr1q1qdQsKCsL777+PypUrw9zcHK1bt8bBgweLv4FKgI5O7rf+vXv3cOvWLQwcOFAtfPDgwTh27BjS0tIAAGlpaahQoQIAwNjYWAoDgM8//xzDhw9H/fr1i7v6srGxsdEIa9q0KRISEpCUlMR2KyBra2sAQHp6OtLS0hAcHIwPPvhALc3gwYNx8+ZNPHjwAIB62+np6cHAwEBqu++++w7NmjXD+++/X3oXUcomTZqEcePGoW7dumrh7HuFw3bL3Zo1a+Dk5IRu3bppjed9m38hISG4f/8+hg4dCoB9LzcZGRkwMzODQqGQwiwsLABAWjrM9tPu8uXL6NKli1qYl5cXMjIycOjQIQC8b1WK63fhAwcOoGLFimptUbduXTRp0kTaViEtLQ0GBgbQ1dUFkN0XVee/fPkS/v7+WL58ebFdG5VPHJghWSmVSoSEhMDT0xOmpqYa8aampvD09ERISAiUSiUA4MmTJxg/fjymT5+Obdu2wdDQEF5eXnj+/DkAYNeuXahSpQoGDBiA0NBQhIaGokePHjnW4enTp/j0008xe/ZsbNq0CXfv3sXQoUMxaNAguLq6YufOnWjevDk+/PBDREVFSefdv38fvXr1woYNG7Bz5064u7uje/fuOHHiRPE2kgwiIyMBAPXq1VMLd3FxQXp6Ou7fvw8AaNmyJX799Ve8fPkSP/74IywsLFCnTh2EhYXh0KFD8Pf3L+2ql7ozZ86gWrVqMDMzY7vlQ2ZmJlJTU3Hp0iV8/fXX6N27NxwdHXH37l1prf+bXFxcAPx/n2zZsiU2bNiAZ8+eYf369YiPj0fTpk0RFRWF5cuXY/HixaV+TaVlx44duHbtGubMmaMRx76XuwYNGkBXVxc1a9ZEQECAtN8C2y13YWFhcHV1xbfffovKlSvDwMAA7u7uOHfuHADwvi2AwMBAmJiYwNvbGwD7Xm58fX1x48YNrFixAvHx8bh37x5mzZqFpk2bwt3dHQDbLyepqakwNDRUC1N9vnnzJgDet/mV3z4WGRmJunXrqg0kqtKp8qhbty4yMjKwceNGPH36FOvXr0fLli0BAF9++SX69euHpk2blvQlURmnJ3cF6N0WGxuLtLQ01KhRI8c0NWrUQGpqKl6+fAkAePXqFbZv345OnToBADw8PFC9enUsWbIEAQEBaNq0KQwNDWFraws3N7c86/Dq1SucPHkSDRo0AADExMRg0qRJ+Pzzz/HVV18ByP7H6Y8//sDu3bsxZcoUAFCbeZOVlQVPT09ERETgv//9Lzp27Fio9igrXr9+DQCoWLGiWrilpSWA7DYDgDlz5qBLly6wsbGBgYEBVq9eDWNjY0yePBnz5s2T/sL1b3XmzBls2bIFixYtAsB2yw8HBwdER0cDALp27YrAwEAA+W+7yZMnIygoCFWqVIFCocB3330HR0dH9O/fHxMmTICTk1MpXUnpSk5OxrRp0zB//nyYm5trxLPvaWdnZ4e5c+eidevWUCgU2Lt3L7788ktER0fjp59+Yrvl4enTp7h48SKuXbuGFStWwNjYGPPnz0eXLl1w+/Zt3rf5pFQqsW3bNvTu3RsmJiYAeM/mpn379ti1axd8fHwwYcIEAECTJk1w8OBBacYB2087Z2dnnD9/Xi1MNatc1Sa8b/Mnv+30+vVrjTSqdKo0JiYmWL58OUaPHo309HTUq1cP/v7++Ouvv7Bjxw5p0IzebZwxQ+WOhYWFNCij+ty5c2fpL3gFVbVqVWlQBgDq1KkDAOjcubMUVrFiRVSuXBmPHj2Swh4/fowRI0agWrVq0NPTg76+Pg4fPoxbt24Vqh7lkYODA27cuIFbt24hNjYWQ4cOld5SNGrUKJw7dw4tWrSAlZUVvL298eLFC7mrXGweP36MQYMGwdPTE5MnTy7Que9yu+3fvx8hISH49ddfcfPmTfTq1Uvr2yJyYmFhgdDQUNy9exexsbGYMWMGjh07hvDwcMycORO3bt1Cx44dYWlpCU9PT9y9e7cEr6b0fPvtt7C1tcXIkSOLlM+71ve8vLwwZ84ceHl5oUuXLvjpp58wbdo0rFq1SuONGbl519pNJSsrC4mJidixYwcGDBiA7t27Y+/evRBC4Keffsp3Pu/qfaty5MgRvHjxAj4+PgU+913seyEhIRg2bBjGjh2L48ePY/v27cjKykKPHj3U3gaWH+9a+40fPx4HDhzAjz/+iFevXuHMmTOYPXs2dHV1NWZ05OVdv2+L2/DhwxEbG4tbt27h+vXrsLe3x6RJkzBnzhzY2Nhg3rx5qF69Ouzt7fH999/LXV2SAQdmSFY2NjYwNDTEw4cPc0zz8OFDGBkZSftRVKpUSSONra1tgX7JftPbo9wGBgY5hqempgLI/mW1d+/eOHPmDL7++msEBwcjPDwc3bp1k9KUZ6q/Brz9KmPVXw+srKykMF1dXTg7O8PMzAzx8fGYPXs2li9fjoyMDPTv3x+DBg3Co0ePoFAoCjyAUVbFxcWhW7dusLa2xs6dO6V1ymy3vDVq1Aht2rTBmDFjsGfPHgQHB2PXrl0FajuFQoGaNWvCysoKSqUSU6ZMwQ8//ABjY2N8+OGHaNSoEaKjo9GgQQN8+OGHpXdxJSQqKgqLFi3C3LlzER8fj7i4OOl1momJiUhMTGTfK4CBAwciMzMTV65cYbvlwdLSEtbW1mjUqJEUZmVlhaZNmyIiIoL3bT4FBgbC2toaXl5eUhj7Xs4mT56MTp06YdGiRfD09MSAAQMQFBSES5cuYcOGDQDYfjnx9fXF1KlT8dlnn8Ha2hrvvfcexo0bBysrK9jZ2QEoWNu9y/dtftvJ0tJSI40q3ZttCQBmZmZwdnaGrq4uNm/ejNevX2P8+PHYv38/Fi5ciCNHjuDo0aOYP3++tCcQvTs4MEOy0tPTQ9u2bXHixAkkJSVpxCclJeHEiRNo27Yt9PSyV95p+2vGs2fPpH9wSsOdO3dw+fJlLF68GKNHj4aHhwdatGhR4L/klFWq9bSqtbEqkZGRMDAwQM2aNbWe5+/vDy8vL7i5uSEyMhLR0dH45JNPYGJigjFjxuDIkSMlXveSlpKSgp49eyI+Ph4HDhxQmwbNdiuYRo0aQV9fH3fu3EGtWrWgr6+vte0AzTXeKj///DNsbGwwaNAgJCQkIDw8HB999BGMjY0xbtw4hIWFSYMY5dX9+/eRnp6OHj16wNLSEpaWlujVqxcAwNPTE507d2bfKyS2W+7enE36ttTUVN63+ZCSkoLdu3fjgw8+gL6+vhTOvpezGzduoEmTJmph9vb2sLGxkWZlsP2009HRwZIlSxAbG4u//voLz549w9ixY/HixQtpeT/v2/zJbx+rV68e/v77b2lj6jfT5dSWSUlJmDFjBpYtWwZdXV0cPXoU7733HurVq4d69erh/fffL/d9kQqOAzMku6lTp+LVq1fSPh1vWrRoEV69eoWpU6dKYfHx8Th+/Lja56NHj6J169ZS2JuzW0qCagBGNbsGyP6r9tmzZ0uszNJUs2ZN1KlTB9u3b1cL37p1K9577z2161a5efMm1q9frzH9Mjk5GUD2P0Jv/6NV3iiVSgwcOBA3b97EwYMHUa1aNbV4tlvBnDt3DhkZGahZsyYMDQ3h6emJHTt2qKXZunUrXFxc4OjoqHH+ixcv8M0332DZsmVq4W+2HZA9w608a9KkCYKDg9WOJUuWAABWrVqFFStWsO8VwJYtW6Crq4umTZuy3fLQs2dPvHz5EleuXJHCXr58iUuXLqF58+a8b/Nh7969SExM1FjGxL6XMwcHB1y6dEktLCoqCrGxsVKfYvvlzsLCAo0aNULFihWxfPlyODk5SUv0ed/mT377WLdu3fD69WscO3ZMSnPr1i1cvnwZ3bt315r3/Pnz4ebmBk9PTylM1ZbAv6svUgGU/hu6iTRNnDhRKBQKMWbMGHHo0CFx6NAh8dFHHwmFQiEmTpwopRsxYoSwsrISjo6OYt26dWLPnj2iTZs2wtTUVDx9+lRK17t3b+Hk5CQOHz4swsPDRWxsrBBCCAcHBzFhwgS1/Bo0aKBWl+DgYAFAhIeHq4W/eW5qaqqwt7cXjRo1Evv27RObN28WderUEY6Ojmr5rVmzRgAQL168KL7GKgZJSUli+/btYvv27aJjx46ievXq0ufnz58LIYQIDAwUCoVCzJkzRwQHB4tx48YJPT09ERISojXP999/XyxYsED6nJqaKqpWrSqGDh0qDh06JBo3biw++OCDUrm+kjJ27FgBQCxatEiEhoaqHampqUIItltO+vbtK+bNmyf27dsnjh49KhYtWiSqVKkiGjVqJNLS0oQQQpw+fVro6uqKTz75RAQHB4s5c+YIhUIhtm3bpjXPMWPGiPHjx6uFNW/eXHTp0kUcPnxYdO7cWbRs2bLEr00O2p5T7HuaunTpIr777jsRFBQkgoKCxMcffywUCoWYOnWqlIbtlrPMzEzRsmVLUatWLbFlyxaxZ88e4ebmJqytrcWTJ0+EELxv89K7d29Ro0YNkZWVpRHHvqfd0qVLBQAxefJkceTIEbFlyxbRsGFDYWtrK/0+JwTbT5tz586JBQsWiMOHD4s9e/aI0aNHCwMDA3Hs2DG1dLxvi/d3YS8vL1G9enWxbds2sXfvXuHq6ioaN24sMjIyNMq9e/eusLS0FFFRUVLYvn37hL6+vvj999/Fb7/9JvT09ERQUFDJNgCVORyYoTJj48aNok2bNsLExESYmJgINzc3sX79erU0qoGUP//8U7i4uAgDAwPRtGlTcfbsWbV0169fF+3btxdmZmYCgFizZo0QovgGZoQQ4vz586Jly5bCyMhIODs7i3Xr1mnkV1YHZu7fvy8AaD2Cg4OldL/99puoXbu2MDAwEK6urmLfvn1a8/vjjz9EnTp1RHp6ulr42bNnRePGjYWpqano1q2biImJKcnLKnEODg45ttv9+/eldGw3TQEBAaJJkybCzMxMmJiYiAYNGoivvvpKxMfHq6Xbs2ePcHV1FQYGBqJ27dri999/15rfhQsXRKVKlcTLly/Vwm/cuCHc3d2FiYmJaNu2rYiMjCyxa5JTTs8p9j11kydPFs7OzqJChQrC0NBQuLq6ih9//FHjSzLbLWcvXrwQH374obCwsBAVKlQQXbp0EREREWppeN9q9+rVK2FgYCBmzJiRYxr2PU1ZWVli5cqVolGjRsLExERUqVJF9O3bV9y8eVMjLdtP3eXLl0Xr1q2FqampMDU1Fe+9916OA1Xv+n1bnL8Lx8XFiVGjRomKFSsKU1NT0a9fPxEdHa213N69ewt/f3+NcH9/f2FraytsbW3F119/XWzXSeWHQgjOk6Lyw9fXFxcuXMD169flrgoRERERERFRkXGPGSIiIiIiIiIimXBghoiIiIiIiIhIJlzKREREREREREQkE86YISIiIiIiIiKSCQdmiIiIiIiIiIhkwoEZIiIiIiIiIiKZcGCGiIiIiIiIiEgmHJghIiIiIiIiIpIJB2aIiCjfHjx4AIVCAV9fX7Xwjh07QqFQlFi5jo6OcHR0LLH8C+rChQt4//33UalSJSgUCjRp0kTuKv0rlHQ/ooIpb/38xIkTUCgU8Pf3L9VyfX19oVAo8ODBg3yfs2zZMjRo0ADGxsZQKBRYunRpidWPiIjKPg7MEBGVQaoBkDcPAwMDVK9eHT4+Prh69arcVSxWhfliI5eEhAT06NED58+fx6BBg+Dn54dx48aVStllbYCqvCmr7ff69WuMHDkStra2qFKlCkaNGoXXr19rTevj44OGDRsiIyOjROskZz//t9uyZQumTJkCQ0NDTJkyBX5+fnBzcyvxcuUauCIiorzpyV0BIiLKWa1atfDhhx8CABITExEWFobNmzfjjz/+wLFjx+Du7i5zDbOtX78eycnJJZb/sWPHSizvgjp//jyeP3+OefPmYdasWXJX51+lpPtRWTVs2DAcPnwYw4cPhxAC69evR2xsLPbu3auWbv/+/di6dSvOnj0LfX39Eq0T+3nJ+fPPP6X/Vq1aVebaEBFRWcCBGSKiMqx27doaf9388ssvMW/ePMyePRsnTpyQpV5vq1GjRonmX6tWrRLNvyBiYmIAgF+oSkBJ96Oy6MmTJwgKCsK3336L2bNnA8ie2TNnzhw8ffoUVapUAZA9MPvJJ59gwoQJpTK7gv285LBtiYjobVzKRERUzkyaNAkAEB4eLoUpFAp07NgR0dHRGD58OKpUqQIdHR21gZtTp06hV69esLGxgaGhIZydnfHll19qnaGQmZmJ77//HrVr14aRkRFq166NgIAAZGVlaa1TbnuD7NmzB126dIG1tTWMjIzg6OiIYcOG4fr16wCyv4SuW7cOAODk5CQt3erYsaOUx9tLUL755hsoFAqsX79ea5l//PEHFAqF9EVX5f79+xgzZgxq1KgBQ0ND2NnZwdfXF1FRUVrzeZtCocCIESMAACNHjpTqunbtWinNP//8Az8/PzRo0AAVKlRAxYoV4eXlhTNnzmjkd/HiRUycOBENGzaEhYUFKlSoAFdXV3z33XdqS1VUS9uioqIQFRWltsRNNXC3du1ajbqo5LSEobj7zc6dO+Hh4YHKlSvDyMgIVatWRefOnbFz5858ta+2fvTmdR0+fBht27aFsbExrK2tMWLECLx8+TLPfPPTfipr1qxB69atYWpqClNTU7Ru3TrPNj1z5gw6duwIMzMzVKxYEf3798edO3fydc2PHj0CADRv3lwKa9GiBQDg4cOHUtisWbMghMD8+fPzla82UVFRGD16NKpVqwYDAwPY29tj9OjRauUA+evn2vj7+0OhUODEiRNYu3YtmjVrBmNjY+lejo+Px/fffw8PDw9UrVoVBgYGqFq1KoYPH467d+/mml9gYCCaNGmCChUqwM7ODlOmTEFKSkq+rjs+Ph4eHh7Q0dHB8uXLpfCC3KsAEBERgZ49e8LMzAwWFhbo3r279BzLD1VfDg4OBgC1fvimq1evYvDgwbCzs4OBgQEcHBwwadIkrX199erV8Pb2hqOjI4yMjGBlZQUvLy+pDBV/f394enoCAObOnatWtmoJaW7PcW3LTd+8N/ft2wd3d3eYmZmpPavT09OxePFiNGvWDCYmJjAzM0P79u01ZoMB2T+nOXPmoH79+jA1NYW5uTlq166NESNG5PsZTURUXnHGDBFROfX2L9AvX75EmzZtYGVlhcGDByM1NRXm5uYAgJUrV2LChAmoWLEievXqhcqVK+PChQuYN28egoODERwcDAMDAymvjz76CKtXr4aTkxMmTJiA1NRULF68GCEhIQWq46efforFixfDysoKffr0QeXKlfHo0SMcPXoUzZs3R8OGDTF16lSsXbsWf/31F6ZMmYKKFSsCQK57gXz44Yfw8/PDxo0bMXz4cI34DRs2AMheIqJy7tw5eHl5ISkpCT179oSzszMePHiATZs24cCBAwgNDUXNmjVzvR4/Pz9cuXIFe/bsgbe3t7QZquq/r169QocOHRAREQF3d3eMGzcOCQkJ2LNnDzw9PbF9+3b06dNHyu/XX3/Fvn370KFDB3Tv3h3Jyck4ceIEZs6cifDwcGlAo2LFivDz85M2CJ06daqUx5sDWIVRXP1m5cqVGD9+POzs7NC3b19YW1vj6dOnOH/+PHbt2oX+/fsXqZ579+5FUFAQevXqhbZt2+LUqVNYv3497t69m+MXaZX8tt/kyZOxfPlyVKtWDaNHjwaQPdg0cuRIXL58GT/++KNG3mFhYQgICEDXrl0xadIkREREYNeuXTh9+jTCwsLy7FPVq1cHAFy+fBldu3YFAFy6dAnA/88gCgsLw88//4y9e/fC1NQ01/xycuvWLbRr1w4vXrxAr1690KBBA1y/fh2rV6/Gvn37cObMGdSpUwdA3v08Lz/88AOCg4Ph7e2NLl26QFdXFwBw8+ZNzJkzB56enujbty9MTEwQGRmJwMBABAUF4dKlS3BwcNDI76effsLBgwfh7e2NTp064eDBg1i2bBliY2OxadOmXOvy5MkTdO3aFZGRkdi8eTMGDRoEoOD36vXr1+Hu7o7ExET069cPzs7OOH/+PNzd3dG4ceN8tUuTJk3g5+eHtWvXIioqCn5+fhpp9u7di4EDB0JHRwfe3t6oXr06bty4gZ9++gmHDh3CuXPnYGlpKaWfMGECGjdujM6dO6NSpUqIjo7G7t270blzZ/zxxx/w9vYGkN3PHzx4gHXr1sHDw0Ot36ueuYW1fft2HD58GD179sT48eORkJAAAEhLS0PXrl1x4sQJNGnSBKNHj0ZGRgaCgoLg7e2N5cuXY+LEiQAAIQS8vLxw7tw5uLu7o2vXrtDR0UFUVBT27t2LYcOGae0bRET/GoKIiMqc+/fvCwDCy8tLI27OnDkCgPD09JTCAAgAYuTIkUKpVKqlj4iIEHp6eqJx48YiNjZWLS4gIEAAEAsXLpTCgoODBQDRuHFjkZiYKIU/fvxY2NjYCABixIgRavl4eHiIt/9J2bdvnwAgXF1dNcrNyMgQT58+lT6PGDFCABD379/X2h4ODg7CwcFBLaxdu3ZCV1dXxMTEqIW/fPlSGBgYiBYtWkhh6enpwtHRUZiZmYlLly6ppT99+rTQ1dUVPXv21Fr229asWSMAiDVr1mjE+fj4CADi119/VQt/9uyZqF69uqhUqZJISUmRwqOiojR+XllZWWLUqFECgDhz5oxanLZ2yE+9VD9TPz8/tfDi7DfNmjUTBgYG4tmzZxrlv31+TrT1I9V16enpqbWHUqkUHTt2FABEaGhovvLPrf1OnjwpAAgXFxcRFxcnhb969UrUqVNHABCnTp2SwlVtCkCsWrVKLa9Vq1YJAPnuU927dxf6+vpizJgxYvTo0UJfX1/06tVLCJHddxs2bCgGDx6cr7xy4unpKQCIX375RS38559/FgBEp06d1MJz60858fPzEwCEiYmJuHr1qkZ8XFycePnypUb48ePHhY6OjhgzZozW/CwsLERkZKQUnpycLOrUqSN0dHREdHS0FP52P//777+l+/7IkSNqeRf0XlX1zY0bN6qlnzlzptQPcnp+vU1bPxci+z4xNzcX1apVEw8ePFCL27x5swAgJk6cqBZ+7949jXxiYmJE1apVhbOzs1p4Ts+BvOolhPZntKqP6OjoaLSvEELMmjVLABBfffWVyMrKksITEhJEixYthIGBgfTzu3r1qgAg+vTpo5FPamqq+Oeff7TWi4jo34JLmYiIyrA7d+7A398f/v7+mD59Ojp06ICvv/4aRkZGmDdvnlpaAwMDLFiwQPrrtMovv/wCpVKJ5cuXw9raWi1uxowZqFSpEjZv3iyFqZYHzZkzByYmJlJ4tWrVMGXKlHzXfcWKFQCAH3/8UaNcPT092Nra5jsvbYYNG4bMzEy1ugPA1q1bkZ6eLm2aDGRvsvngwQNMnz4dTZs2VUvfrl07eHt7Y//+/dJfegsjNjYWW7duRadOnTBmzBi1uMqVK2P69Ol48eIFjh49KoXXqFFD4+elUCgwYcIEAFBLW1KKq98AgL6+vtZNad8+vzB8fHzUNrvW1dWVltu8uayvsFTL6fz9/WFhYSGFW1paSjMbtC3lqVOnDsaOHasWNnbsWDg7OyMoKAgvXrzIs+wNGzZgyJAh2LNnD/bt24ehQ4dK9QkICEBMTAx+/PFHPHv2DH369IGRkREsLS3x6aefIjMzM8/8Hz58iODgYNSvX1+jruPGjUO9evVw/PhxaVlVUX300UdwdXXVCLewsICVlZVGuKenJxo0aJBjf58yZQrq1q0rfa5QoQKGDBmCrKwsXLx4Ues54eHhaNeuHZKSkhAcHIzOnTtLcQW9Vx8+fIiTJ0+iUaNGGDp0qFr6WbNmFXnGicr69euRkJCAgIAAjdkhgwcPRrNmzbBlyxa1cCcnJ4187Ozs0L9/f9y+fbtUlgB5e3urtS8AZGVlYeXKlahVq5a0dErFzMwMc+bMQXp6Ov744w+18ypUqKCRv6GhYaFnihERlRdcykREVIbdvXsXc+fOBZD9pdfW1hY+Pj744osvNL74ODk5wcbGRiOPsLAwAMChQ4e0vt1IX18fkZGR0ue//voLANC+fXuNtNrCcnL+/HkYGhrCw8Mj3+cUxMCBAzF58mRs2LAB06ZNk8I3btwIPT09DBkyRApTtcHff/+t9VWxT58+RVZWFm7duiXt71FQ4eHhyMzMRFpamtYybt++DQCIjIxEz549AWTvv/DTTz9hy5YtiIyMRGJiIoQQ0jmqTUJLUnH1m8GDB2PGjBlo2LAhfHx84OnpiXbt2knLoorqzT1YVOzt7QEAcXFxRc7/8uXLALQvDVPtzXHlyhWNOHd3d+joqP+dS0dHB+7u7rh9+zb++usvjS+tb7OyspIGYt508+ZNzJ8/H6tWrULlypXh5eWFyMhIbNu2DTExMZg6dSpsbW0xY8aMXPNX1dvDw0NjCaSOjg46dOiAyMhIXLlyRVpaVRStWrXKMe7EiRNYunQpzp07h9jYWCiVSinuzeWUbyroz/706dNYtGgRKlWqhEOHDsHZ2VktvqD3quqZ2K5dO420pqamaNKkSbFsxK66586dO6d1z53U1FTExsYiNjZWumfv3buHgIAAHD9+HNHR0UhLS1M7JyYmpsSXAGn7ef/99994/fo1qlatKv0b9ibVgKXqGeLi4oJGjRph8+bNePz4Mfr06YOOHTuiSZMmGvcXEdG/EQdmiIjKMC8vLxw8eDBfaXOagfLq1SsA0Jhhk5P4+Hjo6Oho/bJekFku8fHxqFatWon9Ul2xYkX07NkTO3fuxI0bN1C/fn3cvXsXISEh6N69OypXriylVbVBXvtRJCUlFbo+qjLOnj2Ls2fP5quMAQMGYN++fahTpw4GDRqEypUrQ19fH3Fxcfjxxx81vmSVhOLqN5999hmsra2xcuVKLFq0CAsXLoSenh569OiBJUuWaP3LfkFoG+DR08v+NSY/s0bykpCQAB0dHVSqVEkjztbWFgqFQuuMqpzaTxUeHx9fqPoIITB27Fi0b98evr6+iIyMxOHDh7Fp0yb07t0bQPbm0UuWLMlzYEZV75zqamdnp5auqHIqZ/v27Rg0aBBMTU3h5eUFR0dHGBsbSxvI5jS7o6A/+8uXLyMxMRFdunTRusdPQe9V1c/wzWfKm4o6++/tev3888+5pktKSoKNjQ3u3LmDVq1aISEhAZ6enujVqxfMzc2lDbxPnjwp2zNEdS0RERGIiIjI8VxVG+vp6eH48ePw9/fHzp078emnnwIAKlWqhIkTJ2L27Nkas/qIiP5NODBDRPQvkdPbNFRfahISEmBmZpZnPhYWFsjKykJsbKzGl9Rnz57luz4VK1aUZqKU1ODMsGHDsHPnTmzYsAEBAQHYuHGjFP4mVRvs27dPmq1S3FRlfPrpp1i4cGGe6cPDw7Fv3z54eXkhKChI7UtHWFiY1o1mc6Nq4zdnIKjkNjhQXP1GoVBg1KhRGDVqFF6+fInTp09j8+bN2LZtG27fvo2rV6+W6S9W5ubmyMrKwosXLzS+gD9//hxCCK0DBDndE6rwN5dFFcTKlStx+fJlXLt2DUD2DARAfQPepk2b4rfffkN8fHyu5ajqnVNdnz59qpauqHLqU/7+/jAyMsLFixc1ZrG8vUSnKCZOnIiYmBj8/vvv8PHxwaZNm6SBHKDg96qqbZ8/f641viDPxdyo6nXt2jU0bNgwz/RLlizB69evsWHDBrWlm0D2ErWTJ08WqPw3nyFvthdQ8GeI6lr69++PHTt25Kt8a2trLF++HMuWLUNkZCSOHz+O5cuXw8/PD/r6+pg5c2Z+L4WIqNzh3EAion+51q1bA/j/afJ5Ub1h5PTp0xpx2sJy0qpVK6SlpeXry4HqC3tBZz50794d1tbWCAwMRFZWFjZt2gQzMzPpTSQqqjYIDQ0tUP4F0bJlSygUinyXoVqq0KNHD40Bi5zaWVdXN8c2Ur2pJTo6WiNOtUynIArab95kbW2NPn36SPt43LhxI9+vjy5JubWfau8hbUtSVGHa3kp09uxZjdfIZ2VlISQkBAqFIt9v7HlTdHQ0Zs6ciblz52rM+HhzBoTq/3MaCFFR1fvUqVNqS+WA7Jk5p06dUktXUu7evQsXFxeNQZknT57g3r17xVaOjo4Ofv31V4wdOxbbtm3D0KFD1QYsC3qvqn6G2t7+lZiYqHWJW2EU9Dmleoa8/bwTQmidCZTXczanZ0hWVpa0nCu/XFxcYG5ujgsXLiAjI6NA5yoUCri4uGDChAk4cuQIAGh9vTYR0b8JB2aIiP7lxo8fDz09PUyaNAkPHz7UiI+Li1P74q6abfL111+rLbuJjo4u0CwO1Qa2U6ZMkaa1qyiVSrW/Mqs2BC3o5qP6+voYNGgQHj58iAULFuD27dvo37+/xgaS3t7eqFGjBhYvXix9CX1TRkZGnq9czkuVKlUwcOBAhISE4IcfftD4Agxk7x2RnJwMANK+D2+XGxERgYCAAK1lWFlZITY2FqmpqRpxzZs3h0KhwJYtW9Tib9++XeDZN0DB+82JEyc0rjkjI0P62RsZGRW4DsUtt/ZTbSQ8d+5ctSU98fHx0h4ZqjRvunXrFn799Ve1sF9//RW3bt1Cjx49tC6Nysv48eNRu3Zt/Oc//5HC6tWrBwDYv3+/FLZ//35UrVo1z5kuNWrUgKenJyIiIrB69Wq1uP/+97+4efMmOnXqVCz7y+TGwcEBd+7cUbv3U1NT8cknnxT4y3teFAoFfvnlF3z88cfYtm0bhgwZIg3OFPRerVGjBjp06ICrV69qLIecP39+sexxBAAjR46EmZkZZs+erXX5T3JystpAaU7PkO+++w7Xr1/XOD+v52zLli0BaG5yvXjxYty/fz//F4LspUmffPIJoqKi8Nlnn2n9+V6/fl2ahfTgwQM8ePBAI42qr5SF5wcRUUniUiYion+5hg0bYsWKFfjkk09Qt25ddO/eHbVq1cI///yDe/fu4eTJk/D19cWqVasAZG90OnLkSKxZswaurq7o27cv0tLSsHXrVri5ueHPP//MV7ndu3fHZ599hoULF8LZ2Rl9+/ZF5cqVER0djWPHjuGzzz7D1KlTAQCdOnXCwoUL8dFHH6F///4wMTGBg4ODxpIkbYYNG4YVK1Zgzpw50ue3GRoaYseOHejWrRs8PDzQqVMnuLq6QqFQICoqCqdPn4a1tbXaZraFsWLFCvz999+YMWMGNmzYgDZt2qBixYp49OgRLly4gNu3b+PJkycwNjZGq1at0KpVK2zbtg1PnjyBm5sbHj58iL1796JHjx5ap/936tQJFy5cQLdu3dC+fXsYGBigQ4cO6NChA6pWrYohQ4YgMDAQzZs3R9euXfH8+XPs2rULXbt2xc6dOwt0LQXtN3369IG5uTnc3Nzg4OCAjIwMHDlyBDdu3MCAAQNKfAPS/Mit/Tp06IBJkyZh+fLlaNiwIfr37w8hBHbu3InHjx9j8uTJ6NChg0aeXl5emDx5Mvbv348GDRogIiIC+/btg42NTaEGxLZt24b9+/fj/PnzajOp6tati65du8Lf3x9RUVF48uQJjh49mq+lOED20qh27dph7Nix2LdvH+rXr4+IiAjs3bsXlSpVwsqVKwtc14KaNGkSJk2ahKZNm2LAgAFQKpU4cuQIhBBo3LhxgWdl5EWhUGDlypXQ0dHBypUrIYTAli1boKenV6B7Fcje98Xd3R3Dhw/H7t274ezsjPPnzyM8PBzt27cv0GzCnKjedPbBBx+gcePG6Nq1K+rVq4e0tDQ8ePAAJ0+eRNu2baV9x8aNG4c1a9agf//+GDhwIKytrREWFoZLly6hR48eCAoKUsu/Xr16qFq1KrZs2QJDQ0PY29tDoVBg0qRJsLCwwMiRI7FgwQL4+/vjypUrqFWrFi5cuIDr16/Dw8OjwEuj5s6di0uXLmHZsmUICgpChw4dpH8Drl27hr/++guhoaGoXLkyrly5gn79+qFVq1aoX78+qlSpgujoaOzevRs6Ojpqg5RERP9K8rylm4iIcnP//n0BQHh5eeUrPQDh4eGRa5rz58+LwYMHi6pVqwp9fX1hY2MjmjVrJr744gtx8+ZNtbRKpVIEBASImjVrCgMDA1GzZk0xf/58cefOHQFAjBgxQi29h4eHyOmflJ07dwpPT09hYWEhDA0NhaOjoxg2bJi4fv26WroFCxYIZ2dnoa+vr3E9Dg4OwsHBIcdrc3Z2FgCEvb29yMzMzDHd48ePxZQpU4Szs7MwNDQU5ubmwsXFRYwZM0YcO3Ysx/PetGbNGgFArFmzRmt8cnKyWLBggWjevLkwMTERFSpUEE5OTqJPnz5i/fr1IiMjQ0r7/PlzMWrUKFG1alVhZGQkXF1dxc8//yzu3buntZ3/+ecfMXbsWGFnZyd0dXUFAOHn56dW9uTJk4Wtra0wNDQUjRo1Eps2bRLBwcEaaYUo3n6zYsUK0bt3b+Hg4CCMjIyEtbW1aNWqlVi5cqVIT0/PT9Nq7Ue5tXdO15WTvNpPCCFWr14tWrZsKYyNjYWxsbFo2bKlWL16da5lnz59Wnh4eAgTExNhbm4u+vbtK27fvp2vOr3p1atXwtbWVsyYMUNr/LNnz0S/fv2EsbGxsLa2FjNmzMi1v7/twYMHYuTIkcLOzk7o6ekJOzs7MXLkSPHgwQONtHn1c238/PwEABEcHKw1PisrS6xatUo0aNBAGBkZiSpVqojRo0eL58+fa/3Z55aftvrl1B+ysrLEhAkTBADRr18/qT8W5F4VQohr166J7t27C1NTU2FmZia6desmrl27JkaMGCEAiPv37+ernXJ7XgohRGRkpBg9erRwcHAQBgYGwtLSUri6uorJkyeL8+fPq6UNDg4W7u7uwszMTFSsWFF0795dXLx4Mce2CwsLEx4eHsLMzEwA0Kj3lStXxHvvvSeMjY2Fubm58Pb2Frdv39Z6jfnpI0qlUvzyyy/C3d1dmJubC0NDQ1GjRg3RtWtXsXLlSpGYmCiEEOLRo0fiiy++EG5ubqJy5crCwMBA1KhRQ/Tr10+Ehobmq12JiMozhRBa5m8SERERUY5OnDgBT09P+Pn5aX3lMhEREVF+cY8ZIiIiIiIiIiKZcGCGiIiIiIiIiEgmHJghIiIiIiIiIpIJ95ghIiIiIiIiIpIJZ8wQEREREREREcmEAzNERERERERERDLhwAwRERERERERkUw4MENEREREREREJBMOzBARERERERERyYQDM0REREREREREMuHADBERERERERGRTDgwQ0REREREREQkEw7MEBERERERERHJ5P8A7ccsfsJJ5f0AAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Create custom color scheme\n", + "custom_cmap = sns.color_palette('Oranges', n_colors=1000)[:800] + sns.color_palette('Blues', n_colors=1000)[800:]\n", + "\n", + "# Define your preferred order of the RBAs as a list\n", + "rba_order = [\n", + " 'RandomShuffle',\n", + " 'MutualInfo',\n", + " 'SURFstar',\n", + " 'MultiSURFstar',\n", + " 'SWRFstar',\n", + " 'ABS_SURFstar',\n", + " 'ABS_MultiSURFstar',\n", + " 'ABS_SWRFstar',\n", + "]\n", + "\n", + "# Define a mapping from your RBA order to new descriptive names\n", + "rba_descriptive_names = {\n", + " 'RandomShuffle': 'Random Shuffle',\n", + " 'MutualInfo': 'Mutual Information',\n", + " 'SURFstar': 'SURF*',\n", + " 'SWRFstar': 'SWRF*',\n", + " 'MultiSURFstar': 'MultiSURF*',\n", + " 'ABS_SURFstar': 'SURF* ABS',\n", + " 'ABS_MultiSURFstar': 'MultiSURF* ABS',\n", + " 'ABS_SWRFstar': 'SWRF* ABS',\n", + "}\n", + "\n", + "percentages_df = percentages_df.iloc[1:] # Drop the first row as this will always be 0\n", + "percentages_df_transposed = percentages_df.T # Transpose percentages_df to switch rows and columns for horizontal orientation\n", + "\n", + "# Reorder the DataFrame according to your defined RBA order\n", + "percentages_df_ordered = percentages_df_transposed.loc[rba_order] # The .loc indexer reindexes the DataFrame to the specified order; any missing labels will result in NaN rows\n", + "\n", + "# Define the tick labels as percentages of optimality\n", + "xtick_labels = ['Optimal', '10%', '20%', '30%', '40%', '50%', '60%', '70%', '80%', '90%', '100%']\n", + "# Generate a list of positions at which to place the x-tick labels, assuming they should be placed at even intervals\n", + "xtick_positions = np.linspace(start=0, stop=percentages_df_transposed.shape[1] - 0.13, num=len(xtick_labels))\n", + "\n", + "# Create the heatmap with the reordered DataFrame\n", + "plt.figure(figsize=(12, 7)) # Adjust the size as necessary\n", + "heatmap = sns.heatmap(percentages_df_ordered, annot=False, fmt=\".1f\", cmap=custom_cmap, cbar_kws={'label': 'Power (Frequency of Success)'})\n", + "\n", + "# Add horizontal lines manually between Methods\n", + "for i in range(percentages_df_ordered.shape[0] - 1):\n", + " heatmap.axhline(i + 1, color='black', linewidth=1.5)\n", + "\n", + "# Adding black border around the heatmap\n", + "for _, spine in heatmap.spines.items():\n", + " spine.set_visible(True)\n", + " spine.set_linewidth(1.5)\n", + " spine.set_edgecolor(\"black\")\n", + "\n", + "# Adding black border around the color bar in legend\n", + "cbar = heatmap.collections[0].colorbar\n", + "cbar.outline.set_linewidth(1.5)\n", + "cbar.outline.set_edgecolor(\"black\")\n", + "\n", + "dataset_id = results_dir.split('/')[-2] # Extract the dataset identifier from the results directory path\n", + "\n", + "# Set the title and axis labels appropriately\n", + "heatmap.set_title('core2wayEpi_ABS_' + dataset_id, fontsize = 16)\n", + "heatmap.set_xlabel('Predictive features in top % of ranked features', fontsize = 14)\n", + "heatmap.set_ylabel('Method', fontsize = 14)\n", + "\n", + "# Set the custom x-tick labels, positions, and fontsize\n", + "heatmap.set_xticks(xtick_positions)\n", + "heatmap.set_xticklabels(xtick_labels, rotation=0, fontsize=11)\n", + "\n", + "# Set the custom y-tick labels fontsize\n", + "new_ytick_labels = [rba_descriptive_names[rba] for rba in rba_order]\n", + "heatmap.set_yticklabels(new_ytick_labels, fontsize=11)\n", + "\n", + "# Save and show the Plot\n", + "plt.rcParams['font.sans-serif'] = 'Helvetica'\n", + "plt.rcParams['font.family'] = 'sans-serif'\n", + "plt.rcParams['pdf.fonttype'] = 42\n", + "plt.tight_layout() # Adjust the layout\n", + "save_path = os.path.join(results_dir, 'core2wayEpi_ABS_' + dataset_id + '.pdf') # Save\n", + "plt.savefig(save_path, format='pdf', bbox_inches='tight') # Save\n", + "plt.show() # Display the heatmap" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "slcs", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.19" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/analysis/oldScripts/Heatmaps.py b/analysis/oldScripts/Heatmaps.py new file mode 100644 index 0000000..2e18b1f --- /dev/null +++ b/analysis/oldScripts/Heatmaps.py @@ -0,0 +1,190 @@ +# %% +import os +import pandas as pd +import seaborn as sns +import matplotlib.pyplot as plt +import numpy as np + +# %% [markdown] +# ### Below is the parsing code that goes through all result files and calculates the ranks for each feature for all replicates + +# %% +# Define the path to the 'Results' directory +results_dir = '../core2wayEpistasis/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-1/Results' # Change this to the path of your 'Results' directory + +# Initialize a DataFrame to hold all rankings +all_rankings_df = pd.DataFrame() + +# Initialize a dictionary to hold the total number of features (N) for each RBA method +total_features_per_rba = {} + +# Iterate over each subfolder in the Results directory, each named for an RBA +for rba in os.listdir(results_dir): + rba_path = os.path.join(results_dir, rba) + if os.path.isdir(rba_path): # Ensure it's a directory + method_feature_counts = [] # To store feature counts for each dataset within this method + for file in os.listdir(rba_path): + if file.endswith('.txt'): # Ensure the file is a .txt file + file_path = os.path.join(rba_path, file) + + # Extract the dataset identifier from the file name + parts = file.split('_') + dataset_id = '_'.join(parts[-2].split('_')[:2]) + + # Determine Ranks + df = pd.read_csv(file_path, sep='\t', usecols=['Feature']) + if rba == "RandomShuffle": + df['Rank'] = df.index + 1 + else: + column_to_use = 'ABS_Feature_Importance' if "ABS" in rba else 'Feature_Importance' + df = pd.read_csv(file_path, sep='\t', usecols=['Feature', column_to_use]) + df.sort_values(by=column_to_use, ascending=False, inplace=True) + df.reset_index(drop=True, inplace=True) + df['Rank'] = df.index + 1 + + # Store in a dataframe + predictive_df = df[df['Feature'].str.startswith('M')][['Feature', 'Rank']] + predictive_df['RBA'] = rba + predictive_df['Dataset'] = dataset_id + + all_rankings_df = pd.concat([all_rankings_df, predictive_df], ignore_index=True) + + # Add the feature count of this dataset to the list for this method + method_feature_counts.append(df['Feature'].nunique()) + + # Store the maximum feature count encountered for this method as N + total_features_per_rba[rba] = max(method_feature_counts) + +# Now, you have both the rankings and the total number of features (N) for each RBA method +# You can use total_features_per_rba to access N for each method as needed + +# Specify the path to save the consolidated rankings file +save_path = os.path.join(results_dir, 'consolidated_rankings.csv') +all_rankings_df.to_csv(save_path, index=False) + +print(f"Consolidated rankings saved to: {save_path}") + + +# %% [markdown] +# ### This code generates the ranking percentages that are needed to create the heatmaps + +# %% +# Assuming all_rankings_df is correctly prepared and contains 'RBA', 'Feature', 'Rank', 'Dataset' + +# Since all datasets have the same N, we can pick the N from any RBA method from total_features_per_rba +N = next(iter(total_features_per_rba.values())) + +# Step 1: Identify the lowest-ranked predictive feature for each dataset for each RBA +lowest_ranks = all_rankings_df.groupby(['RBA', 'Dataset'])['Rank'].max().reset_index() + +# Initialize a structure to hold the calculated percentages for each RBA method +percentages = {rba: [0] * N for rba in lowest_ranks['RBA'].unique()} + +# Step 2: Calculate percentages for each position for each RBA +for rba in percentages.keys(): + rba_data = lowest_ranks[lowest_ranks['RBA'] == rba] + for position in range(1, N + 1): + # Count how many of the lowest ranks are better (lower number) than the current position + count_higher = rba_data[rba_data['Rank'] <= (position)].shape[0] + total_datasets = rba_data.shape[0] # Should be 30 per RBA if there are 30 datasets + percentages[rba][position - 1] = (count_higher / total_datasets) * 100 + +# Convert the percentages to a DataFrame for visualization +percentages_df = pd.DataFrame(percentages, index=range(1, N + 1)) + +# Save percentages_df to a CSV file +save_path_percentages = os.path.join(results_dir, 'percentages_df.csv') +percentages_df.to_csv(save_path_percentages, index_label='Ranking Position') + +print("Percentages saved to percentages_df.csv.") + + +# %% [markdown] +# ### Plotting code for heatmaps + +# %% +# Create custom color scheme +custom_cmap = sns.color_palette('Oranges', n_colors=1000)[:800] + sns.color_palette('Blues', n_colors=1000)[800:] + +# Define your preferred order of the RBAs as a list +rba_order = [ + 'RandomShuffle', + 'MutualInfo', + 'SURFstar', + 'MultiSURFstar', + 'SWRFstar', + 'ABS_SURFstar', + 'ABS_MultiSURFstar', + 'ABS_SWRFstar', +] + +# Define a mapping from your RBA order to new descriptive names +rba_descriptive_names = { + 'RandomShuffle': 'Random Shuffle', + 'MutualInfo': 'Mutual Information', + 'SURFstar': 'SURF*', + 'SWRFstar': 'SWRF*', + 'MultiSURFstar': 'MultiSURF*', + 'ABS_SURFstar': 'SURF* ABS', + 'ABS_MultiSURFstar': 'MultiSURF* ABS', + 'ABS_SWRFstar': 'SWRF* ABS', +} + +percentages_df = percentages_df.iloc[1:] # Drop the first row as this will always be 0 +percentages_df_transposed = percentages_df.T # Transpose percentages_df to switch rows and columns for horizontal orientation + +# Reorder the DataFrame according to your defined RBA order +percentages_df_ordered = percentages_df_transposed.loc[rba_order] # The .loc indexer reindexes the DataFrame to the specified order; any missing labels will result in NaN rows + +# Define the tick labels as percentages of optimality +xtick_labels = ['Optimal', '10%', '20%', '30%', '40%', '50%', '60%', '70%', '80%', '90%', '100%'] +# Generate a list of positions at which to place the x-tick labels, assuming they should be placed at even intervals +xtick_positions = np.linspace(start=0, stop=percentages_df_transposed.shape[1] - 0.13, num=len(xtick_labels)) + +# Create the heatmap with the reordered DataFrame +plt.figure(figsize=(12, 7)) # Adjust the size as necessary +heatmap = sns.heatmap(percentages_df_ordered, annot=False, fmt=".1f", cmap=custom_cmap, cbar_kws={'label': 'Power (Frequency of Success)'}) + +# Add horizontal lines manually between Methods +for i in range(percentages_df_ordered.shape[0] - 1): + heatmap.axhline(i + 1, color='black', linewidth=1.5) + +# Adding black border around the heatmap +for _, spine in heatmap.spines.items(): + spine.set_visible(True) + spine.set_linewidth(1.5) + spine.set_edgecolor("black") + +# Adding black border around the color bar in legend +cbar = heatmap.collections[0].colorbar +cbar.outline.set_linewidth(1.5) +cbar.outline.set_edgecolor("black") + +dataset_id = results_dir.split('/')[-2] # Extract the dataset identifier from the results directory path + +# Set the title and axis labels appropriately +heatmap.set_title('core2wayEpi_ABS_' + dataset_id, fontsize = 16) +heatmap.set_xlabel('Predictive features in top % of ranked features', fontsize = 14) +heatmap.set_ylabel('Method', fontsize = 14) + +# Set the custom x-tick labels, positions, and fontsize +heatmap.set_xticks(xtick_positions) +heatmap.set_xticklabels(xtick_labels, rotation=0, fontsize=11) + +# Set the custom y-tick labels fontsize +new_ytick_labels = [rba_descriptive_names[rba] for rba in rba_order] +heatmap.set_yticklabels(new_ytick_labels, fontsize=11) + +# Save and show the Plot +plt.rcParams['font.sans-serif'] = 'Helvetica' +plt.rcParams['font.family'] = 'sans-serif' +plt.rcParams['pdf.fonttype'] = 42 +plt.tight_layout() # Adjust the layout +save_path = os.path.join(results_dir, 'core2wayEpi_ABS_' + dataset_id + '.pdf') # Save +plt.savefig(save_path, format='pdf', bbox_inches='tight') # Save +plt.show() # Display the heatmap + +# %% + + + diff --git a/analysis/oldScripts/MScoring.ipynb b/analysis/oldScripts/MScoring.ipynb new file mode 100644 index 0000000..f4cd23e --- /dev/null +++ b/analysis/oldScripts/MScoring.ipynb @@ -0,0 +1,236 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "import pandas as pd\n", + "import re" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [], + "source": [ + "# Function to process results directory and return a pivot table with feature importance\n", + "def process_results_directory(root_dir, meaningful_parts):\n", + " all_data = [] # List to store all data\n", + " \n", + " # Walk through the directory tree\n", + " for subdir, dirs, files in os.walk(root_dir):\n", + " # Check if subdir contains 'ABS' or 'MutualInfo'\n", + " if 'ABS' in subdir or 'MutualInfo' in subdir:\n", + " if subdir != root_dir: # Ensure not processing the root directory\n", + " method = subdir.split(os.sep)[-1].replace('ABS_', '') # Extract method name from subdir\n", + " subdir_data = [] # List to store data for current subdir\n", + " for file in files:\n", + " if file.endswith('.txt'): # Process only .txt files\n", + " file_path = os.path.join(subdir, file) # Construct file path\n", + " try:\n", + " data = pd.read_csv(file_path, delimiter='\\t') # Read data from file\n", + " m_data = data[data['Feature'].str.startswith('M')] # Filter data for features starting with 'M'\n", + " importance_cols = [col for col in data.columns if \"Feature_Importance\" in col] # Find importance columns\n", + "\n", + " # Iterate over filtered data and importance columns\n", + " for index, row in m_data.iterrows():\n", + " for col in importance_cols:\n", + " importance_type = col.replace('Feature_Importance', '').strip() # Extract importance type\n", + " method_column_name = f\"{method}_{importance_type}\".rstrip('_') # Create method column name\n", + " entry = {\n", + " 'Feature': row['Feature'], # Feature name\n", + " 'Method': method_column_name, # Method and importance type\n", + " 'Importance': row[col], # Importance value\n", + " **meaningful_parts # Add meaningful parts\n", + " }\n", + " subdir_data.append(entry) # Add entry to subdir_data\n", + " except Exception as e:\n", + " print(f\"Error reading {file_path}: {e}\") # Print error if reading fails\n", + "\n", + " if subdir_data:\n", + " all_data.extend(subdir_data) # Add subdir data to all_data\n", + "\n", + " if all_data:\n", + " results_df = pd.DataFrame(all_data) # Create DataFrame from all_data\n", + " pivot_df = results_df.pivot_table(index=['Feature', *meaningful_parts.keys()], columns='Method', values='Importance', aggfunc='mean').reset_index()\n", + " # Get the current non-Method columns\n", + " non_method_cols = ['Feature', *meaningful_parts.keys()]\n", + " # Get the current Method columns and sort them as required\n", + " method_cols = [col for col in pivot_df.columns if col not in non_method_cols]\n", + " # sorted_method_cols = ['ReliefF10', 'ReliefF10_ABS', 'ReliefF', 'ReliefF_ABS', 'MultiSURF', 'MultiSURF_ABS', 'MultiSURFstar', 'MultiSURFstar_ABS', 'MutualInformation']\n", + " sorted_method_cols = ['SURFstar', 'SURFstar_ABS', 'MultiSURFstar', 'MultiSURFstar_ABS', 'SWRFstar','SWRFstar_ABS','MutualInfo'\n", + " '']\n", + " # Combine the non-Method columns with the sorted Method columns\n", + " pivot_df = pivot_df[non_method_cols + sorted_method_cols]\n", + " return pivot_df # Return the pivot table\n", + " else:\n", + " return pd.DataFrame() # Return an empty DataFrame if no data" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [], + "source": [ + "def extract_numeric_parts(s):\n", + " \"\"\"Extract numeric parts from a string and return as a tuple of integers.\"\"\"\n", + " # Use regular expression to find all sequences of digits in the string\n", + " # Convert each sequence of digits to an integer and return them as a tuple\n", + " return tuple(map(int, re.findall(r'\\d+', s)))" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [], + "source": [ + "def find_and_process_results(start_dir):\n", + " master_df = pd.DataFrame() # Initialize an empty DataFrame to store the master results\n", + " for root, dirs, files in os.walk(start_dir): # Walk through the directory tree\n", + " if 'Results' in dirs: # Check if 'Results' directory exists in the current directory\n", + " path_parts = os.path.relpath(root, start_dir).split(os.sep) # Get the relative path parts\n", + " meaningful_parts = {} # Dictionary to store meaningful parts\n", + " for part in path_parts: # Iterate over path parts - will need to update this for new descriptors if needed\n", + " if 'xor_' in part:\n", + " meaningful_parts['X1'] = part # Order of epistasis with additional descriptors\n", + " elif 'a_' in part:\n", + " meaningful_parts['X2'] = part # Feature count\n", + "\n", + " results_dir = os.path.join(root, 'Results') # Construct the path to the 'Results' directory\n", + " print(f\"Processing 'Results' folder at: {results_dir}\")\n", + " results_df = process_results_directory(results_dir, meaningful_parts) # Process the results directory\n", + " if not results_df.empty: # If the results DataFrame is not empty\n", + " csv_path = os.path.join(results_dir, 'M_average_feature_importance.csv') # Path to save the results CSV\n", + " results_df.to_csv(csv_path, index=False) # Save the results DataFrame to a CSV file\n", + " print(f\"Average feature importance results saved to {csv_path}\")\n", + "\n", + " # Create a numeric tuple for sorting X1\n", + " try:\n", + " results_df['Value'] = results_df['X1'].apply(extract_numeric_parts) # Extract numeric parts from X1\n", + " except Exception as e:\n", + " results_df['Value'] = results_df['X2'].apply(extract_numeric_parts)\n", + " # results_df['X1_numeric'] = results_df['X2_numeric'] # Fallback to X2 if X1 extraction fails\n", + " \n", + " # Append to the master DataFrame\n", + " master_df = pd.concat([master_df, results_df], ignore_index=True)\n", + "\n", + " # Sort the master DataFrame\n", + " if not master_df.empty: # If the master DataFrame is not empty\n", + " master_df = master_df.sort_values(by=['Value', 'Feature']) # Sort by numeric parts of X1 and Feature\n", + " master_df.drop('Value', axis=1, inplace=True) # Remove the auxiliary column after sorting\n", + " master_csv_path = os.path.join(start_dir, 'M_master_feature_importance.csv') # Path to save the master CSV\n", + " master_df.to_csv(master_csv_path, index=False) # Save the master DataFrame to a CSV file\n", + " print(f\"Master feature importance results saved to {master_csv_path}\") # Print confirmation" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Processing 'Results' folder at: ../core2wayEpistasis/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-1/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-1/Results/M_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-2/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-2/Results/M_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-2/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-2/Results/M_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-1/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-1/Results/M_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-1/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-1/Results/M_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-2/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-2/Results/M_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-1/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-1/Results/M_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-2/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-2/Results/M_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-1/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-1/Results/M_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-2/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-2/Results/M_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-1/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-1/Results/M_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-2/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-2/Results/M_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-2/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-2/Results/M_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-1/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-1/Results/M_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-1/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-1/Results/M_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-2/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-2/Results/M_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-2/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-2/Results/M_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-1/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-1/Results/M_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-1/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-1/Results/M_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-2/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-2/Results/M_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-1/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-1/Results/M_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-2/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-2/Results/M_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-2/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-2/Results/M_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-1/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-1/Results/M_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-2/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-2/Results/M_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-1/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-1/Results/M_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-1/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-1/Results/M_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-2/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-2/Results/M_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-1/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-1/Results/M_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-2/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-2/Results/M_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-2/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-2/Results/M_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-1/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-1/Results/M_average_feature_importance.csv\n", + "Master feature importance results saved to ../core2wayEpistasis/M_master_feature_importance.csv\n" + ] + } + ], + "source": [ + "# Start the process from the current working directory\n", + "find_and_process_results('../core2wayEpistasis/')" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "slcs", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.19" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/analysis/oldScripts/MScoring.py b/analysis/oldScripts/MScoring.py new file mode 100644 index 0000000..32c1306 --- /dev/null +++ b/analysis/oldScripts/MScoring.py @@ -0,0 +1,110 @@ +# %% +import os +import pandas as pd +import re + +# %% +# Function to process results directory and return a pivot table with feature importance +def process_results_directory(root_dir, meaningful_parts): + all_data = [] # List to store all data + + # Walk through the directory tree + for subdir, dirs, files in os.walk(root_dir): + # Check if subdir contains 'ABS' or 'MutualInfo' + if 'ABS' in subdir or 'MutualInfo' in subdir: + if subdir != root_dir: # Ensure not processing the root directory + method = subdir.split(os.sep)[-1].replace('ABS_', '') # Extract method name from subdir + subdir_data = [] # List to store data for current subdir + for file in files: + if file.endswith('.txt'): # Process only .txt files + file_path = os.path.join(subdir, file) # Construct file path + try: + data = pd.read_csv(file_path, delimiter='\t') # Read data from file + m_data = data[data['Feature'].str.startswith('M')] # Filter data for features starting with 'M' + importance_cols = [col for col in data.columns if "Feature_Importance" in col] # Find importance columns + + # Iterate over filtered data and importance columns + for index, row in m_data.iterrows(): + for col in importance_cols: + importance_type = col.replace('Feature_Importance', '').strip() # Extract importance type + method_column_name = f"{method}_{importance_type}".rstrip('_') # Create method column name + entry = { + 'Feature': row['Feature'], # Feature name + 'Method': method_column_name, # Method and importance type + 'Importance': row[col], # Importance value + **meaningful_parts # Add meaningful parts + } + subdir_data.append(entry) # Add entry to subdir_data + except Exception as e: + print(f"Error reading {file_path}: {e}") # Print error if reading fails + + if subdir_data: + all_data.extend(subdir_data) # Add subdir data to all_data + + if all_data: + results_df = pd.DataFrame(all_data) # Create DataFrame from all_data + pivot_df = results_df.pivot_table(index=['Feature', *meaningful_parts.keys()], columns='Method', values='Importance', aggfunc='mean').reset_index() + # Get the current non-Method columns + non_method_cols = ['Feature', *meaningful_parts.keys()] + # Get the current Method columns and sort them as required + method_cols = [col for col in pivot_df.columns if col not in non_method_cols] + # sorted_method_cols = ['ReliefF10', 'ReliefF10_ABS', 'ReliefF', 'ReliefF_ABS', 'MultiSURF', 'MultiSURF_ABS', 'MultiSURFstar', 'MultiSURFstar_ABS', 'MutualInformation'] + sorted_method_cols = ['SURFstar', 'SURFstar_ABS', 'MultiSURFstar', 'MultiSURFstar_ABS', 'SWRFstar','SWRFstar_ABS','MutualInfo' + ''] + # Combine the non-Method columns with the sorted Method columns + pivot_df = pivot_df[non_method_cols + sorted_method_cols] + return pivot_df # Return the pivot table + else: + return pd.DataFrame() # Return an empty DataFrame if no data + +# %% +def extract_numeric_parts(s): + """Extract numeric parts from a string and return as a tuple of integers.""" + # Use regular expression to find all sequences of digits in the string + # Convert each sequence of digits to an integer and return them as a tuple + return tuple(map(int, re.findall(r'\d+', s))) + +# %% +def find_and_process_results(start_dir): + master_df = pd.DataFrame() # Initialize an empty DataFrame to store the master results + for root, dirs, files in os.walk(start_dir): # Walk through the directory tree + if 'Results' in dirs: # Check if 'Results' directory exists in the current directory + path_parts = os.path.relpath(root, start_dir).split(os.sep) # Get the relative path parts + meaningful_parts = {} # Dictionary to store meaningful parts + for part in path_parts: # Iterate over path parts - will need to update this for new descriptors if needed + if 'xor_' in part: + meaningful_parts['X1'] = part # Order of epistasis with additional descriptors + elif 'a_' in part: + meaningful_parts['X2'] = part # Feature count + + results_dir = os.path.join(root, 'Results') # Construct the path to the 'Results' directory + print(f"Processing 'Results' folder at: {results_dir}") + results_df = process_results_directory(results_dir, meaningful_parts) # Process the results directory + if not results_df.empty: # If the results DataFrame is not empty + csv_path = os.path.join(results_dir, 'M_average_feature_importance.csv') # Path to save the results CSV + results_df.to_csv(csv_path, index=False) # Save the results DataFrame to a CSV file + print(f"Average feature importance results saved to {csv_path}") + + # Create a numeric tuple for sorting X1 + try: + results_df['Value'] = results_df['X1'].apply(extract_numeric_parts) # Extract numeric parts from X1 + except Exception as e: + results_df['Value'] = results_df['X2'].apply(extract_numeric_parts) + # results_df['X1_numeric'] = results_df['X2_numeric'] # Fallback to X2 if X1 extraction fails + + # Append to the master DataFrame + master_df = pd.concat([master_df, results_df], ignore_index=True) + + # Sort the master DataFrame + if not master_df.empty: # If the master DataFrame is not empty + master_df = master_df.sort_values(by=['Value', 'Feature']) # Sort by numeric parts of X1 and Feature + master_df.drop('Value', axis=1, inplace=True) # Remove the auxiliary column after sorting + master_csv_path = os.path.join(start_dir, 'M_master_feature_importance.csv') # Path to save the master CSV + master_df.to_csv(master_csv_path, index=False) # Save the master DataFrame to a CSV file + print(f"Master feature importance results saved to {master_csv_path}") # Print confirmation + +# %% +# Start the process from the current working directory +find_and_process_results('../core2wayEpistasis/') + + diff --git a/analysis/oldScripts/MasterRunScript_Old.ipynb b/analysis/oldScripts/MasterRunScript_Old.ipynb new file mode 100644 index 0000000..ff4e763 --- /dev/null +++ b/analysis/oldScripts/MasterRunScript_Old.ipynb @@ -0,0 +1,2707 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Import necessary packages" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "import os \n", + "import sys\n", + "# Get the absolute path to the directory containing the package\n", + "package_path = os.path.abspath(os.path.join(\"\", \"..\"))\n", + "\n", + "# Add the package path to sys.path\n", + "sys.path.insert(0, package_path)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "import fnmatch\n", + "import pandas as pd\n", + "import numpy as np\n", + "from sklearn.pipeline import make_pipeline\n", + "from skrebate import ReliefF # for reproducibility, need to install skrebate version 0.62\n", + "from skrebate import SURF\n", + "from skrebate import SURFstar\n", + "from skrebate import MultiSURF\n", + "from skrebate import MultiSURFstar\n", + "from skrebate import TURF\n", + "from sklearn.feature_selection import RFE\n", + "from sklearn.ensemble import RandomForestClassifier\n", + "from sklearn.model_selection import cross_val_score\n", + "from sklearn.model_selection import train_test_split\n", + "from sklearn.feature_selection import mutual_info_classif" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Define function for directory maintenance" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "def ensure_dir(directory): # Check if directories exist. If they do not, they will be created in the next function\n", + " if not os.path.exists(directory):\n", + " os.makedirs(directory)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Define functions for random shuffle" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [], + "source": [ + "def random_shuffle(file_path):\n", + " # Define the directory to store results\n", + " results_dir = os.path.join(os.path.dirname(file_path), \"Results\", \"RandomShuffle\")\n", + " ensure_dir(results_dir) # Ensure the Results/RandomShuffle directory exists\n", + "\n", + " # Read the .txt file into a DataFrame\n", + " try:\n", + " df = pd.read_csv(file_path, sep='\\t') # Assuming tab-separated values; adjust the separator as needed\n", + " except Exception as e:\n", + " print(f\"Error reading {file_path}: {e}\")\n", + " return\n", + "\n", + " # Ensure 'Class' column is not included in the shuffle\n", + " if 'Class' in df.columns:\n", + " columns_to_shuffle = df.drop('Class', axis=1).columns.tolist()\n", + " else:\n", + " columns_to_shuffle = df.columns.tolist()\n", + "\n", + " # Shuffle the column names\n", + " shuffled_columns = np.random.permutation(columns_to_shuffle)\n", + "\n", + " # Create a new DataFrame with the shuffled column names\n", + " new_df = pd.DataFrame(shuffled_columns, columns=['Feature'])\n", + "\n", + " # Construct the output file name based on the original file's name\n", + " base_name = os.path.basename(file_path)\n", + " new_file_name = f\"{os.path.splitext(base_name)[0]}_RandShuffle.txt\"\n", + " output_path = os.path.join(results_dir, new_file_name)\n", + "\n", + " # Write the new DataFrame to disk\n", + " new_df.to_csv(output_path, index=False, sep='\\t')\n", + "\n", + "def find_and_random_shuffle(root_dir):\n", + " print(list(os.walk(root_dir)))\n", + " for dirpath, dirnames, filenames in os.walk(root_dir):\n", + " # Check if 'EDM' is in the directory name directly above the files\n", + " if \"EDM\" in os.path.basename(dirpath):\n", + " print(f\"Processing in EDM directory: {dirpath}\") # Debugging line\n", + " for filename in filenames:\n", + " if filename.endswith('.txt'): # Ensure it's a .txt file\n", + " file_path = os.path.join(dirpath, filename)\n", + " print(f\"Processing file: {file_path}\") # Debugging line\n", + " random_shuffle(file_path)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Define current working directory (GAMETES_2.2_dev_peter_XOR)" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [], + "source": [ + "root_dir = '../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/' " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Run random shuffle process on directory" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/', ['a_20', 'a_100'], ['.DS_Store']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20', ['s_400', 's_1600', 's_200', 's_800'], ['.DS_Store']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400', ['her_0.1__maf_0.2', 'her_0.4__maf_0.2', 'her_0.05__maf_0.2', 'her_0.2__maf_0.2'], ['.DS_Store']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2', ['a_20s_400her_0.1__maf_0.2_EDM-2', 'a_20s_400her_0.1__maf_0.2_EDM-1'], []), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-2', [], ['a_20s_400her_0.1__maf_0.2_EDM-2_16.txt', 'a_20s_400her_0.1__maf_0.2_EDM-2_02.txt', 'a_20s_400her_0.1__maf_0.2_EDM-2_03.txt', 'a_20s_400her_0.1__maf_0.2_EDM-2_17.txt', 'a_20s_400her_0.1__maf_0.2_EDM-2_01.txt', 'a_20s_400her_0.1__maf_0.2_EDM-2_15.txt', 'a_20s_400her_0.1__maf_0.2_EDM-2_29.txt', 'a_20s_400her_0.1__maf_0.2_EDM-2_28.txt', 'a_20s_400her_0.1__maf_0.2_EDM-2_14.txt', 'a_20s_400her_0.1__maf_0.2_EDM-2_04.txt', 'a_20s_400her_0.1__maf_0.2_EDM-2_10.txt', 'a_20s_400her_0.1__maf_0.2_EDM-2_11.txt', 'a_20s_400her_0.1__maf_0.2_EDM-2_05.txt', 'a_20s_400her_0.1__maf_0.2_EDM-2_13.txt', 'a_20s_400her_0.1__maf_0.2_EDM-2_07.txt', 'a_20s_400her_0.1__maf_0.2_EDM-2_06.txt', 'a_20s_400her_0.1__maf_0.2_EDM-2_12.txt', 'a_20s_400her_0.1__maf_0.2_EDM-2_23.txt', 'a_20s_400her_0.1__maf_0.2_EDM-2_22.txt', 'a_20s_400her_0.1__maf_0.2_EDM-2_20.txt', 'a_20s_400her_0.1__maf_0.2_EDM-2_08.txt', 'a_20s_400her_0.1__maf_0.2_EDM-2_09.txt', 'a_20s_400her_0.1__maf_0.2_EDM-2_21.txt', 'a_20s_400her_0.1__maf_0.2_EDM-2_19.txt', 'a_20s_400her_0.1__maf_0.2_EDM-2_25.txt', 'a_20s_400her_0.1__maf_0.2_EDM-2_30.txt', 'a_20s_400her_0.1__maf_0.2_EDM-2_24.txt', 'a_20s_400her_0.1__maf_0.2_EDM-2_18.txt', 'a_20s_400her_0.1__maf_0.2_EDM-2_26.txt', 'a_20s_400her_0.1__maf_0.2_EDM-2_27.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-1', [], ['a_20s_400her_0.1__maf_0.2_EDM-1_18.txt', 'a_20s_400her_0.1__maf_0.2_EDM-1_24.txt', 'a_20s_400her_0.1__maf_0.2_EDM-1_30.txt', 'a_20s_400her_0.1__maf_0.2_EDM-1_25.txt', 'a_20s_400her_0.1__maf_0.2_EDM-1_19.txt', 'a_20s_400her_0.1__maf_0.2_EDM-1_27.txt', 'a_20s_400her_0.1__maf_0.2_EDM-1_26.txt', 'a_20s_400her_0.1__maf_0.2_EDM-1_22.txt', 'a_20s_400her_0.1__maf_0.2_EDM-1_23.txt', 'a_20s_400her_0.1__maf_0.2_EDM-1_21.txt', 'a_20s_400her_0.1__maf_0.2_EDM-1_09.txt', 'a_20s_400her_0.1__maf_0.2_EDM-1_08.txt', 'a_20s_400her_0.1__maf_0.2_EDM-1_20.txt', 'a_20s_400her_0.1__maf_0.2_EDM-1_05.txt', 'a_20s_400her_0.1__maf_0.2_EDM-1_11.txt', 'a_20s_400her_0.1__maf_0.2_EDM-1_10.txt', 'a_20s_400her_0.1__maf_0.2_EDM-1_04.txt', 'a_20s_400her_0.1__maf_0.2_EDM-1_12.txt', 'a_20s_400her_0.1__maf_0.2_EDM-1_06.txt', 'a_20s_400her_0.1__maf_0.2_EDM-1_07.txt', 'a_20s_400her_0.1__maf_0.2_EDM-1_13.txt', 'a_20s_400her_0.1__maf_0.2_EDM-1_17.txt', 'a_20s_400her_0.1__maf_0.2_EDM-1_03.txt', 'a_20s_400her_0.1__maf_0.2_EDM-1_02.txt', 'a_20s_400her_0.1__maf_0.2_EDM-1_16.txt', 'a_20s_400her_0.1__maf_0.2_EDM-1_14.txt', 'a_20s_400her_0.1__maf_0.2_EDM-1_28.txt', 'a_20s_400her_0.1__maf_0.2_EDM-1_29.txt', 'a_20s_400her_0.1__maf_0.2_EDM-1_15.txt', 'a_20s_400her_0.1__maf_0.2_EDM-1_01.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2', ['a_20s_400her_0.4__maf_0.2_EDM-2', 'a_20s_400her_0.4__maf_0.2_EDM-1'], ['.DS_Store']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-2', [], ['a_20s_400her_0.4__maf_0.2_EDM-2_23.txt', 'a_20s_400her_0.4__maf_0.2_EDM-2_22.txt', 'a_20s_400her_0.4__maf_0.2_EDM-2_08.txt', 'a_20s_400her_0.4__maf_0.2_EDM-2_20.txt', 'a_20s_400her_0.4__maf_0.2_EDM-2_21.txt', 'a_20s_400her_0.4__maf_0.2_EDM-2_09.txt', 'a_20s_400her_0.4__maf_0.2_EDM-2_25.txt', 'a_20s_400her_0.4__maf_0.2_EDM-2_19.txt', 'a_20s_400her_0.4__maf_0.2_EDM-2_18.txt', 'a_20s_400her_0.4__maf_0.2_EDM-2_30.txt', 'a_20s_400her_0.4__maf_0.2_EDM-2_24.txt', 'a_20s_400her_0.4__maf_0.2_EDM-2_26.txt', 'a_20s_400her_0.4__maf_0.2_EDM-2_27.txt', 'a_20s_400her_0.4__maf_0.2_EDM-2_16.txt', 'a_20s_400her_0.4__maf_0.2_EDM-2_02.txt', 'a_20s_400her_0.4__maf_0.2_EDM-2_03.txt', 'a_20s_400her_0.4__maf_0.2_EDM-2_17.txt', 'a_20s_400her_0.4__maf_0.2_EDM-2_29.txt', 'a_20s_400her_0.4__maf_0.2_EDM-2_01.txt', 'a_20s_400her_0.4__maf_0.2_EDM-2_15.txt', 'a_20s_400her_0.4__maf_0.2_EDM-2_14.txt', 'a_20s_400her_0.4__maf_0.2_EDM-2_28.txt', 'a_20s_400her_0.4__maf_0.2_EDM-2_04.txt', 'a_20s_400her_0.4__maf_0.2_EDM-2_10.txt', 'a_20s_400her_0.4__maf_0.2_EDM-2_11.txt', 'a_20s_400her_0.4__maf_0.2_EDM-2_05.txt', 'a_20s_400her_0.4__maf_0.2_EDM-2_13.txt', 'a_20s_400her_0.4__maf_0.2_EDM-2_07.txt', 'a_20s_400her_0.4__maf_0.2_EDM-2_06.txt', 'a_20s_400her_0.4__maf_0.2_EDM-2_12.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-1', [], ['a_20s_400her_0.4__maf_0.2_EDM-1_05.txt', 'a_20s_400her_0.4__maf_0.2_EDM-1_11.txt', 'a_20s_400her_0.4__maf_0.2_EDM-1_10.txt', 'a_20s_400her_0.4__maf_0.2_EDM-1_04.txt', 'a_20s_400her_0.4__maf_0.2_EDM-1_12.txt', 'a_20s_400her_0.4__maf_0.2_EDM-1_06.txt', 'a_20s_400her_0.4__maf_0.2_EDM-1_07.txt', 'a_20s_400her_0.4__maf_0.2_EDM-1_13.txt', 'a_20s_400her_0.4__maf_0.2_EDM-1_17.txt', 'a_20s_400her_0.4__maf_0.2_EDM-1_03.txt', 'a_20s_400her_0.4__maf_0.2_EDM-1_02.txt', 'a_20s_400her_0.4__maf_0.2_EDM-1_16.txt', 'a_20s_400her_0.4__maf_0.2_EDM-1_28.txt', 'a_20s_400her_0.4__maf_0.2_EDM-1_14.txt', 'a_20s_400her_0.4__maf_0.2_EDM-1_15.txt', 'a_20s_400her_0.4__maf_0.2_EDM-1_01.txt', 'a_20s_400her_0.4__maf_0.2_EDM-1_29.txt', 'a_20s_400her_0.4__maf_0.2_EDM-1_24.txt', 'a_20s_400her_0.4__maf_0.2_EDM-1_30.txt', 'a_20s_400her_0.4__maf_0.2_EDM-1_18.txt', 'a_20s_400her_0.4__maf_0.2_EDM-1_19.txt', 'a_20s_400her_0.4__maf_0.2_EDM-1_25.txt', 'a_20s_400her_0.4__maf_0.2_EDM-1_27.txt', 'a_20s_400her_0.4__maf_0.2_EDM-1_26.txt', 'a_20s_400her_0.4__maf_0.2_EDM-1_22.txt', 'a_20s_400her_0.4__maf_0.2_EDM-1_23.txt', 'a_20s_400her_0.4__maf_0.2_EDM-1_09.txt', 'a_20s_400her_0.4__maf_0.2_EDM-1_21.txt', 'a_20s_400her_0.4__maf_0.2_EDM-1_20.txt', 'a_20s_400her_0.4__maf_0.2_EDM-1_08.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2', ['a_20s_400her_0.05__maf_0.2_EDM-2', 'a_20s_400her_0.05__maf_0.2_EDM-1'], []), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-2', [], ['a_20s_400her_0.05__maf_0.2_EDM-2_17.txt', 'a_20s_400her_0.05__maf_0.2_EDM-2_03.txt', 'a_20s_400her_0.05__maf_0.2_EDM-2_02.txt', 'a_20s_400her_0.05__maf_0.2_EDM-2_16.txt', 'a_20s_400her_0.05__maf_0.2_EDM-2_14.txt', 'a_20s_400her_0.05__maf_0.2_EDM-2_28.txt', 'a_20s_400her_0.05__maf_0.2_EDM-2_29.txt', 'a_20s_400her_0.05__maf_0.2_EDM-2_15.txt', 'a_20s_400her_0.05__maf_0.2_EDM-2_01.txt', 'a_20s_400her_0.05__maf_0.2_EDM-2_05.txt', 'a_20s_400her_0.05__maf_0.2_EDM-2_11.txt', 'a_20s_400her_0.05__maf_0.2_EDM-2_10.txt', 'a_20s_400her_0.05__maf_0.2_EDM-2_04.txt', 'a_20s_400her_0.05__maf_0.2_EDM-2_12.txt', 'a_20s_400her_0.05__maf_0.2_EDM-2_06.txt', 'a_20s_400her_0.05__maf_0.2_EDM-2_07.txt', 'a_20s_400her_0.05__maf_0.2_EDM-2_13.txt', 'a_20s_400her_0.05__maf_0.2_EDM-2_22.txt', 'a_20s_400her_0.05__maf_0.2_EDM-2_23.txt', 'a_20s_400her_0.05__maf_0.2_EDM-2_21.txt', 'a_20s_400her_0.05__maf_0.2_EDM-2_09.txt', 'a_20s_400her_0.05__maf_0.2_EDM-2_08.txt', 'a_20s_400her_0.05__maf_0.2_EDM-2_20.txt', 'a_20s_400her_0.05__maf_0.2_EDM-2_18.txt', 'a_20s_400her_0.05__maf_0.2_EDM-2_24.txt', 'a_20s_400her_0.05__maf_0.2_EDM-2_30.txt', 'a_20s_400her_0.05__maf_0.2_EDM-2_25.txt', 'a_20s_400her_0.05__maf_0.2_EDM-2_19.txt', 'a_20s_400her_0.05__maf_0.2_EDM-2_27.txt', 'a_20s_400her_0.05__maf_0.2_EDM-2_26.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-1', [], ['a_20s_400her_0.05__maf_0.2_EDM-1_19.txt', 'a_20s_400her_0.05__maf_0.2_EDM-1_25.txt', 'a_20s_400her_0.05__maf_0.2_EDM-1_30.txt', 'a_20s_400her_0.05__maf_0.2_EDM-1_24.txt', 'a_20s_400her_0.05__maf_0.2_EDM-1_18.txt', 'a_20s_400her_0.05__maf_0.2_EDM-1_26.txt', 'a_20s_400her_0.05__maf_0.2_EDM-1_27.txt', 'a_20s_400her_0.05__maf_0.2_EDM-1_23.txt', 'a_20s_400her_0.05__maf_0.2_EDM-1_22.txt', 'a_20s_400her_0.05__maf_0.2_EDM-1_20.txt', 'a_20s_400her_0.05__maf_0.2_EDM-1_08.txt', 'a_20s_400her_0.05__maf_0.2_EDM-1_09.txt', 'a_20s_400her_0.05__maf_0.2_EDM-1_21.txt', 'a_20s_400her_0.05__maf_0.2_EDM-1_04.txt', 'a_20s_400her_0.05__maf_0.2_EDM-1_10.txt', 'a_20s_400her_0.05__maf_0.2_EDM-1_11.txt', 'a_20s_400her_0.05__maf_0.2_EDM-1_05.txt', 'a_20s_400her_0.05__maf_0.2_EDM-1_13.txt', 'a_20s_400her_0.05__maf_0.2_EDM-1_07.txt', 'a_20s_400her_0.05__maf_0.2_EDM-1_06.txt', 'a_20s_400her_0.05__maf_0.2_EDM-1_12.txt', 'a_20s_400her_0.05__maf_0.2_EDM-1_16.txt', 'a_20s_400her_0.05__maf_0.2_EDM-1_02.txt', 'a_20s_400her_0.05__maf_0.2_EDM-1_03.txt', 'a_20s_400her_0.05__maf_0.2_EDM-1_17.txt', 'a_20s_400her_0.05__maf_0.2_EDM-1_01.txt', 'a_20s_400her_0.05__maf_0.2_EDM-1_15.txt', 'a_20s_400her_0.05__maf_0.2_EDM-1_29.txt', 'a_20s_400her_0.05__maf_0.2_EDM-1_28.txt', 'a_20s_400her_0.05__maf_0.2_EDM-1_14.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2', ['a_20s_400her_0.2__maf_0.2_EDM-2', 'a_20s_400her_0.2__maf_0.2_EDM-1'], []), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-2', [], ['a_20s_400her_0.2__maf_0.2_EDM-2_27.txt', 'a_20s_400her_0.2__maf_0.2_EDM-2_26.txt', 'a_20s_400her_0.2__maf_0.2_EDM-2_24.txt', 'a_20s_400her_0.2__maf_0.2_EDM-2_30.txt', 'a_20s_400her_0.2__maf_0.2_EDM-2_18.txt', 'a_20s_400her_0.2__maf_0.2_EDM-2_19.txt', 'a_20s_400her_0.2__maf_0.2_EDM-2_25.txt', 'a_20s_400her_0.2__maf_0.2_EDM-2_09.txt', 'a_20s_400her_0.2__maf_0.2_EDM-2_21.txt', 'a_20s_400her_0.2__maf_0.2_EDM-2_20.txt', 'a_20s_400her_0.2__maf_0.2_EDM-2_08.txt', 'a_20s_400her_0.2__maf_0.2_EDM-2_22.txt', 'a_20s_400her_0.2__maf_0.2_EDM-2_23.txt', 'a_20s_400her_0.2__maf_0.2_EDM-2_12.txt', 'a_20s_400her_0.2__maf_0.2_EDM-2_06.txt', 'a_20s_400her_0.2__maf_0.2_EDM-2_07.txt', 'a_20s_400her_0.2__maf_0.2_EDM-2_13.txt', 'a_20s_400her_0.2__maf_0.2_EDM-2_05.txt', 'a_20s_400her_0.2__maf_0.2_EDM-2_11.txt', 'a_20s_400her_0.2__maf_0.2_EDM-2_10.txt', 'a_20s_400her_0.2__maf_0.2_EDM-2_04.txt', 'a_20s_400her_0.2__maf_0.2_EDM-2_28.txt', 'a_20s_400her_0.2__maf_0.2_EDM-2_14.txt', 'a_20s_400her_0.2__maf_0.2_EDM-2_15.txt', 'a_20s_400her_0.2__maf_0.2_EDM-2_01.txt', 'a_20s_400her_0.2__maf_0.2_EDM-2_29.txt', 'a_20s_400her_0.2__maf_0.2_EDM-2_17.txt', 'a_20s_400her_0.2__maf_0.2_EDM-2_03.txt', 'a_20s_400her_0.2__maf_0.2_EDM-2_02.txt', 'a_20s_400her_0.2__maf_0.2_EDM-2_16.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-1', [], ['a_20s_400her_0.2__maf_0.2_EDM-1_29.txt', 'a_20s_400her_0.2__maf_0.2_EDM-1_01.txt', 'a_20s_400her_0.2__maf_0.2_EDM-1_15.txt', 'a_20s_400her_0.2__maf_0.2_EDM-1_14.txt', 'a_20s_400her_0.2__maf_0.2_EDM-1_28.txt', 'a_20s_400her_0.2__maf_0.2_EDM-1_16.txt', 'a_20s_400her_0.2__maf_0.2_EDM-1_02.txt', 'a_20s_400her_0.2__maf_0.2_EDM-1_03.txt', 'a_20s_400her_0.2__maf_0.2_EDM-1_17.txt', 'a_20s_400her_0.2__maf_0.2_EDM-1_13.txt', 'a_20s_400her_0.2__maf_0.2_EDM-1_07.txt', 'a_20s_400her_0.2__maf_0.2_EDM-1_06.txt', 'a_20s_400her_0.2__maf_0.2_EDM-1_12.txt', 'a_20s_400her_0.2__maf_0.2_EDM-1_04.txt', 'a_20s_400her_0.2__maf_0.2_EDM-1_10.txt', 'a_20s_400her_0.2__maf_0.2_EDM-1_11.txt', 'a_20s_400her_0.2__maf_0.2_EDM-1_05.txt', 'a_20s_400her_0.2__maf_0.2_EDM-1_08.txt', 'a_20s_400her_0.2__maf_0.2_EDM-1_20.txt', 'a_20s_400her_0.2__maf_0.2_EDM-1_21.txt', 'a_20s_400her_0.2__maf_0.2_EDM-1_09.txt', 'a_20s_400her_0.2__maf_0.2_EDM-1_23.txt', 'a_20s_400her_0.2__maf_0.2_EDM-1_22.txt', 'a_20s_400her_0.2__maf_0.2_EDM-1_26.txt', 'a_20s_400her_0.2__maf_0.2_EDM-1_27.txt', 'a_20s_400her_0.2__maf_0.2_EDM-1_25.txt', 'a_20s_400her_0.2__maf_0.2_EDM-1_19.txt', 'a_20s_400her_0.2__maf_0.2_EDM-1_18.txt', 'a_20s_400her_0.2__maf_0.2_EDM-1_30.txt', 'a_20s_400her_0.2__maf_0.2_EDM-1_24.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600', ['her_0.1__maf_0.2', 'her_0.4__maf_0.2', 'her_0.05__maf_0.2', 'her_0.2__maf_0.2'], []), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2', ['a_20s_1600her_0.1__maf_0.2_EDM-1', 'a_20s_1600her_0.1__maf_0.2_EDM-2'], []), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-1', [], ['a_20s_1600her_0.1__maf_0.2_EDM-1_06.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-1_12.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-1_13.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-1_07.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-1_11.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-1_05.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-1_04.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-1_10.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-1_14.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-1_28.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-1_29.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-1_01.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-1_15.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-1_03.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-1_17.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-1_16.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-1_02.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-1_27.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-1_26.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-1_18.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-1_30.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-1_24.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-1_25.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-1_19.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-1_21.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-1_09.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-1_08.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-1_20.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-1_22.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-1_23.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-2', [], ['a_20s_1600her_0.1__maf_0.2_EDM-2_20.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-2_08.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-2_09.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-2_21.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-2_23.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-2_22.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-2_26.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-2_27.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-2_19.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-2_25.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-2_24.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-2_30.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-2_18.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-2_15.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-2_01.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-2_29.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-2_28.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-2_14.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-2_02.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-2_16.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-2_17.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-2_03.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-2_07.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-2_13.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-2_12.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-2_06.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-2_10.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-2_04.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-2_05.txt', 'a_20s_1600her_0.1__maf_0.2_EDM-2_11.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2', ['a_20s_1600her_0.4__maf_0.2_EDM-1', 'a_20s_1600her_0.4__maf_0.2_EDM-2'], []), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-1', [], ['a_20s_1600her_0.4__maf_0.2_EDM-1_27.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-1_26.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-1_30.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-1_24.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-1_18.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-1_19.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-1_25.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-1_09.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-1_21.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-1_20.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-1_08.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-1_22.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-1_23.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-1_06.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-1_12.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-1_13.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-1_07.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-1_11.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-1_05.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-1_04.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-1_10.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-1_28.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-1_14.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-1_01.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-1_15.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-1_29.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-1_03.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-1_17.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-1_16.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-1_02.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-2', [], ['a_20s_1600her_0.4__maf_0.2_EDM-2_29.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-2_15.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-2_01.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-2_14.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-2_28.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-2_02.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-2_16.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-2_17.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-2_03.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-2_07.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-2_13.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-2_12.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-2_06.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-2_10.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-2_04.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-2_05.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-2_11.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-2_08.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-2_20.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-2_21.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-2_09.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-2_23.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-2_22.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-2_26.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-2_27.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-2_25.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-2_19.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-2_18.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-2_24.txt', 'a_20s_1600her_0.4__maf_0.2_EDM-2_30.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2', ['a_20s_1600her_0.05__maf_0.2_EDM-1', 'a_20s_1600her_0.05__maf_0.2_EDM-2'], []), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-1', [], ['a_20s_1600her_0.05__maf_0.2_EDM-1_18.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-1_24.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-1_30.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-1_25.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-1_19.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-1_27.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-1_26.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-1_22.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-1_23.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-1_21.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-1_09.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-1_08.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-1_20.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-1_05.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-1_11.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-1_10.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-1_04.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-1_12.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-1_06.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-1_07.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-1_13.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-1_17.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-1_03.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-1_02.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-1_16.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-1_14.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-1_28.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-1_29.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-1_15.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-1_01.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-2', [], ['a_20s_1600her_0.05__maf_0.2_EDM-2_16.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-2_02.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-2_03.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-2_17.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-2_01.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-2_15.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-2_29.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-2_28.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-2_14.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-2_04.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-2_10.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-2_11.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-2_05.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-2_13.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-2_07.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-2_06.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-2_12.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-2_23.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-2_22.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-2_20.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-2_08.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-2_09.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-2_21.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-2_19.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-2_25.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-2_30.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-2_24.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-2_18.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-2_26.txt', 'a_20s_1600her_0.05__maf_0.2_EDM-2_27.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2', ['a_20s_1600her_0.2__maf_0.2_EDM-1', 'a_20s_1600her_0.2__maf_0.2_EDM-2'], []), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-1', [], ['a_20s_1600her_0.2__maf_0.2_EDM-1_23.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-1_22.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-1_08.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-1_20.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-1_21.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-1_09.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-1_25.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-1_19.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-1_18.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-1_24.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-1_30.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-1_26.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-1_27.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-1_02.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-1_16.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-1_17.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-1_03.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-1_29.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-1_15.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-1_01.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-1_14.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-1_28.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-1_10.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-1_04.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-1_05.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-1_11.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-1_07.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-1_13.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-1_12.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-1_06.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-2', [], ['a_20s_1600her_0.2__maf_0.2_EDM-2_11.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-2_05.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-2_04.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-2_10.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-2_06.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-2_12.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-2_13.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-2_07.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-2_03.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-2_17.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-2_16.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-2_02.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-2_28.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-2_14.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-2_01.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-2_15.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-2_29.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-2_30.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-2_24.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-2_18.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-2_19.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-2_25.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-2_27.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-2_26.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-2_22.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-2_23.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-2_09.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-2_21.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-2_20.txt', 'a_20s_1600her_0.2__maf_0.2_EDM-2_08.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200', ['her_0.1__maf_0.2', 'her_0.4__maf_0.2', 'her_0.05__maf_0.2', 'her_0.2__maf_0.2'], []), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2', ['a_20s_200her_0.1__maf_0.2_EDM-1', 'a_20s_200her_0.1__maf_0.2_EDM-2'], []), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-1', [], ['a_20s_200her_0.1__maf_0.2_EDM-1_25.txt', 'a_20s_200her_0.1__maf_0.2_EDM-1_19.txt', 'a_20s_200her_0.1__maf_0.2_EDM-1_18.txt', 'a_20s_200her_0.1__maf_0.2_EDM-1_30.txt', 'a_20s_200her_0.1__maf_0.2_EDM-1_24.txt', 'a_20s_200her_0.1__maf_0.2_EDM-1_26.txt', 'a_20s_200her_0.1__maf_0.2_EDM-1_27.txt', 'a_20s_200her_0.1__maf_0.2_EDM-1_23.txt', 'a_20s_200her_0.1__maf_0.2_EDM-1_22.txt', 'a_20s_200her_0.1__maf_0.2_EDM-1_08.txt', 'a_20s_200her_0.1__maf_0.2_EDM-1_20.txt', 'a_20s_200her_0.1__maf_0.2_EDM-1_21.txt', 'a_20s_200her_0.1__maf_0.2_EDM-1_09.txt', 'a_20s_200her_0.1__maf_0.2_EDM-1_04.txt', 'a_20s_200her_0.1__maf_0.2_EDM-1_10.txt', 'a_20s_200her_0.1__maf_0.2_EDM-1_11.txt', 'a_20s_200her_0.1__maf_0.2_EDM-1_05.txt', 'a_20s_200her_0.1__maf_0.2_EDM-1_13.txt', 'a_20s_200her_0.1__maf_0.2_EDM-1_07.txt', 'a_20s_200her_0.1__maf_0.2_EDM-1_06.txt', 'a_20s_200her_0.1__maf_0.2_EDM-1_12.txt', 'a_20s_200her_0.1__maf_0.2_EDM-1_16.txt', 'a_20s_200her_0.1__maf_0.2_EDM-1_02.txt', 'a_20s_200her_0.1__maf_0.2_EDM-1_03.txt', 'a_20s_200her_0.1__maf_0.2_EDM-1_17.txt', 'a_20s_200her_0.1__maf_0.2_EDM-1_29.txt', 'a_20s_200her_0.1__maf_0.2_EDM-1_01.txt', 'a_20s_200her_0.1__maf_0.2_EDM-1_15.txt', 'a_20s_200her_0.1__maf_0.2_EDM-1_14.txt', 'a_20s_200her_0.1__maf_0.2_EDM-1_28.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-2', [], ['a_20s_200her_0.1__maf_0.2_EDM-2_17.txt', 'a_20s_200her_0.1__maf_0.2_EDM-2_03.txt', 'a_20s_200her_0.1__maf_0.2_EDM-2_02.txt', 'a_20s_200her_0.1__maf_0.2_EDM-2_16.txt', 'a_20s_200her_0.1__maf_0.2_EDM-2_28.txt', 'a_20s_200her_0.1__maf_0.2_EDM-2_14.txt', 'a_20s_200her_0.1__maf_0.2_EDM-2_15.txt', 'a_20s_200her_0.1__maf_0.2_EDM-2_01.txt', 'a_20s_200her_0.1__maf_0.2_EDM-2_29.txt', 'a_20s_200her_0.1__maf_0.2_EDM-2_05.txt', 'a_20s_200her_0.1__maf_0.2_EDM-2_11.txt', 'a_20s_200her_0.1__maf_0.2_EDM-2_10.txt', 'a_20s_200her_0.1__maf_0.2_EDM-2_04.txt', 'a_20s_200her_0.1__maf_0.2_EDM-2_12.txt', 'a_20s_200her_0.1__maf_0.2_EDM-2_06.txt', 'a_20s_200her_0.1__maf_0.2_EDM-2_07.txt', 'a_20s_200her_0.1__maf_0.2_EDM-2_13.txt', 'a_20s_200her_0.1__maf_0.2_EDM-2_22.txt', 'a_20s_200her_0.1__maf_0.2_EDM-2_23.txt', 'a_20s_200her_0.1__maf_0.2_EDM-2_09.txt', 'a_20s_200her_0.1__maf_0.2_EDM-2_21.txt', 'a_20s_200her_0.1__maf_0.2_EDM-2_20.txt', 'a_20s_200her_0.1__maf_0.2_EDM-2_08.txt', 'a_20s_200her_0.1__maf_0.2_EDM-2_24.txt', 'a_20s_200her_0.1__maf_0.2_EDM-2_30.txt', 'a_20s_200her_0.1__maf_0.2_EDM-2_18.txt', 'a_20s_200her_0.1__maf_0.2_EDM-2_19.txt', 'a_20s_200her_0.1__maf_0.2_EDM-2_25.txt', 'a_20s_200her_0.1__maf_0.2_EDM-2_27.txt', 'a_20s_200her_0.1__maf_0.2_EDM-2_26.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2', ['a_20s_200her_0.4__maf_0.2_EDM-1', 'a_20s_200her_0.4__maf_0.2_EDM-2'], []), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-1', [], ['a_20s_200her_0.4__maf_0.2_EDM-1_04.txt', 'a_20s_200her_0.4__maf_0.2_EDM-1_10.txt', 'a_20s_200her_0.4__maf_0.2_EDM-1_11.txt', 'a_20s_200her_0.4__maf_0.2_EDM-1_05.txt', 'a_20s_200her_0.4__maf_0.2_EDM-1_13.txt', 'a_20s_200her_0.4__maf_0.2_EDM-1_07.txt', 'a_20s_200her_0.4__maf_0.2_EDM-1_06.txt', 'a_20s_200her_0.4__maf_0.2_EDM-1_12.txt', 'a_20s_200her_0.4__maf_0.2_EDM-1_16.txt', 'a_20s_200her_0.4__maf_0.2_EDM-1_02.txt', 'a_20s_200her_0.4__maf_0.2_EDM-1_03.txt', 'a_20s_200her_0.4__maf_0.2_EDM-1_17.txt', 'a_20s_200her_0.4__maf_0.2_EDM-1_01.txt', 'a_20s_200her_0.4__maf_0.2_EDM-1_15.txt', 'a_20s_200her_0.4__maf_0.2_EDM-1_29.txt', 'a_20s_200her_0.4__maf_0.2_EDM-1_28.txt', 'a_20s_200her_0.4__maf_0.2_EDM-1_14.txt', 'a_20s_200her_0.4__maf_0.2_EDM-1_19.txt', 'a_20s_200her_0.4__maf_0.2_EDM-1_25.txt', 'a_20s_200her_0.4__maf_0.2_EDM-1_30.txt', 'a_20s_200her_0.4__maf_0.2_EDM-1_24.txt', 'a_20s_200her_0.4__maf_0.2_EDM-1_18.txt', 'a_20s_200her_0.4__maf_0.2_EDM-1_26.txt', 'a_20s_200her_0.4__maf_0.2_EDM-1_27.txt', 'a_20s_200her_0.4__maf_0.2_EDM-1_23.txt', 'a_20s_200her_0.4__maf_0.2_EDM-1_22.txt', 'a_20s_200her_0.4__maf_0.2_EDM-1_20.txt', 'a_20s_200her_0.4__maf_0.2_EDM-1_08.txt', 'a_20s_200her_0.4__maf_0.2_EDM-1_09.txt', 'a_20s_200her_0.4__maf_0.2_EDM-1_21.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-2', [], ['a_20s_200her_0.4__maf_0.2_EDM-2_22.txt', 'a_20s_200her_0.4__maf_0.2_EDM-2_23.txt', 'a_20s_200her_0.4__maf_0.2_EDM-2_21.txt', 'a_20s_200her_0.4__maf_0.2_EDM-2_09.txt', 'a_20s_200her_0.4__maf_0.2_EDM-2_08.txt', 'a_20s_200her_0.4__maf_0.2_EDM-2_20.txt', 'a_20s_200her_0.4__maf_0.2_EDM-2_18.txt', 'a_20s_200her_0.4__maf_0.2_EDM-2_24.txt', 'a_20s_200her_0.4__maf_0.2_EDM-2_30.txt', 'a_20s_200her_0.4__maf_0.2_EDM-2_25.txt', 'a_20s_200her_0.4__maf_0.2_EDM-2_19.txt', 'a_20s_200her_0.4__maf_0.2_EDM-2_27.txt', 'a_20s_200her_0.4__maf_0.2_EDM-2_26.txt', 'a_20s_200her_0.4__maf_0.2_EDM-2_17.txt', 'a_20s_200her_0.4__maf_0.2_EDM-2_03.txt', 'a_20s_200her_0.4__maf_0.2_EDM-2_02.txt', 'a_20s_200her_0.4__maf_0.2_EDM-2_16.txt', 'a_20s_200her_0.4__maf_0.2_EDM-2_14.txt', 'a_20s_200her_0.4__maf_0.2_EDM-2_28.txt', 'a_20s_200her_0.4__maf_0.2_EDM-2_29.txt', 'a_20s_200her_0.4__maf_0.2_EDM-2_15.txt', 'a_20s_200her_0.4__maf_0.2_EDM-2_01.txt', 'a_20s_200her_0.4__maf_0.2_EDM-2_05.txt', 'a_20s_200her_0.4__maf_0.2_EDM-2_11.txt', 'a_20s_200her_0.4__maf_0.2_EDM-2_10.txt', 'a_20s_200her_0.4__maf_0.2_EDM-2_04.txt', 'a_20s_200her_0.4__maf_0.2_EDM-2_12.txt', 'a_20s_200her_0.4__maf_0.2_EDM-2_06.txt', 'a_20s_200her_0.4__maf_0.2_EDM-2_07.txt', 'a_20s_200her_0.4__maf_0.2_EDM-2_13.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2', ['a_20s_200her_0.05__maf_0.2_EDM-1', 'a_20s_200her_0.05__maf_0.2_EDM-2'], []), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-1', [], ['a_20s_200her_0.05__maf_0.2_EDM-1_20.txt', 'a_20s_200her_0.05__maf_0.2_EDM-1_08.txt', 'a_20s_200her_0.05__maf_0.2_EDM-1_09.txt', 'a_20s_200her_0.05__maf_0.2_EDM-1_21.txt', 'a_20s_200her_0.05__maf_0.2_EDM-1_23.txt', 'a_20s_200her_0.05__maf_0.2_EDM-1_22.txt', 'a_20s_200her_0.05__maf_0.2_EDM-1_26.txt', 'a_20s_200her_0.05__maf_0.2_EDM-1_27.txt', 'a_20s_200her_0.05__maf_0.2_EDM-1_19.txt', 'a_20s_200her_0.05__maf_0.2_EDM-1_25.txt', 'a_20s_200her_0.05__maf_0.2_EDM-1_24.txt', 'a_20s_200her_0.05__maf_0.2_EDM-1_30.txt', 'a_20s_200her_0.05__maf_0.2_EDM-1_18.txt', 'a_20s_200her_0.05__maf_0.2_EDM-1_15.txt', 'a_20s_200her_0.05__maf_0.2_EDM-1_01.txt', 'a_20s_200her_0.05__maf_0.2_EDM-1_29.txt', 'a_20s_200her_0.05__maf_0.2_EDM-1_28.txt', 'a_20s_200her_0.05__maf_0.2_EDM-1_14.txt', 'a_20s_200her_0.05__maf_0.2_EDM-1_02.txt', 'a_20s_200her_0.05__maf_0.2_EDM-1_16.txt', 'a_20s_200her_0.05__maf_0.2_EDM-1_17.txt', 'a_20s_200her_0.05__maf_0.2_EDM-1_03.txt', 'a_20s_200her_0.05__maf_0.2_EDM-1_07.txt', 'a_20s_200her_0.05__maf_0.2_EDM-1_13.txt', 'a_20s_200her_0.05__maf_0.2_EDM-1_12.txt', 'a_20s_200her_0.05__maf_0.2_EDM-1_06.txt', 'a_20s_200her_0.05__maf_0.2_EDM-1_10.txt', 'a_20s_200her_0.05__maf_0.2_EDM-1_04.txt', 'a_20s_200her_0.05__maf_0.2_EDM-1_05.txt', 'a_20s_200her_0.05__maf_0.2_EDM-1_11.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-2', [], ['a_20s_200her_0.05__maf_0.2_EDM-2_06.txt', 'a_20s_200her_0.05__maf_0.2_EDM-2_12.txt', 'a_20s_200her_0.05__maf_0.2_EDM-2_13.txt', 'a_20s_200her_0.05__maf_0.2_EDM-2_07.txt', 'a_20s_200her_0.05__maf_0.2_EDM-2_11.txt', 'a_20s_200her_0.05__maf_0.2_EDM-2_05.txt', 'a_20s_200her_0.05__maf_0.2_EDM-2_04.txt', 'a_20s_200her_0.05__maf_0.2_EDM-2_10.txt', 'a_20s_200her_0.05__maf_0.2_EDM-2_14.txt', 'a_20s_200her_0.05__maf_0.2_EDM-2_28.txt', 'a_20s_200her_0.05__maf_0.2_EDM-2_29.txt', 'a_20s_200her_0.05__maf_0.2_EDM-2_01.txt', 'a_20s_200her_0.05__maf_0.2_EDM-2_15.txt', 'a_20s_200her_0.05__maf_0.2_EDM-2_03.txt', 'a_20s_200her_0.05__maf_0.2_EDM-2_17.txt', 'a_20s_200her_0.05__maf_0.2_EDM-2_16.txt', 'a_20s_200her_0.05__maf_0.2_EDM-2_02.txt', 'a_20s_200her_0.05__maf_0.2_EDM-2_27.txt', 'a_20s_200her_0.05__maf_0.2_EDM-2_26.txt', 'a_20s_200her_0.05__maf_0.2_EDM-2_18.txt', 'a_20s_200her_0.05__maf_0.2_EDM-2_30.txt', 'a_20s_200her_0.05__maf_0.2_EDM-2_24.txt', 'a_20s_200her_0.05__maf_0.2_EDM-2_25.txt', 'a_20s_200her_0.05__maf_0.2_EDM-2_19.txt', 'a_20s_200her_0.05__maf_0.2_EDM-2_21.txt', 'a_20s_200her_0.05__maf_0.2_EDM-2_09.txt', 'a_20s_200her_0.05__maf_0.2_EDM-2_08.txt', 'a_20s_200her_0.05__maf_0.2_EDM-2_20.txt', 'a_20s_200her_0.05__maf_0.2_EDM-2_22.txt', 'a_20s_200her_0.05__maf_0.2_EDM-2_23.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2', ['a_20s_200her_0.2__maf_0.2_EDM-1', 'a_20s_200her_0.2__maf_0.2_EDM-2'], []), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-1', [], ['a_20s_200her_0.2__maf_0.2_EDM-1_14.txt', 'a_20s_200her_0.2__maf_0.2_EDM-1_28.txt', 'a_20s_200her_0.2__maf_0.2_EDM-1_29.txt', 'a_20s_200her_0.2__maf_0.2_EDM-1_15.txt', 'a_20s_200her_0.2__maf_0.2_EDM-1_01.txt', 'a_20s_200her_0.2__maf_0.2_EDM-1_17.txt', 'a_20s_200her_0.2__maf_0.2_EDM-1_03.txt', 'a_20s_200her_0.2__maf_0.2_EDM-1_02.txt', 'a_20s_200her_0.2__maf_0.2_EDM-1_16.txt', 'a_20s_200her_0.2__maf_0.2_EDM-1_12.txt', 'a_20s_200her_0.2__maf_0.2_EDM-1_06.txt', 'a_20s_200her_0.2__maf_0.2_EDM-1_07.txt', 'a_20s_200her_0.2__maf_0.2_EDM-1_13.txt', 'a_20s_200her_0.2__maf_0.2_EDM-1_05.txt', 'a_20s_200her_0.2__maf_0.2_EDM-1_11.txt', 'a_20s_200her_0.2__maf_0.2_EDM-1_10.txt', 'a_20s_200her_0.2__maf_0.2_EDM-1_04.txt', 'a_20s_200her_0.2__maf_0.2_EDM-1_21.txt', 'a_20s_200her_0.2__maf_0.2_EDM-1_09.txt', 'a_20s_200her_0.2__maf_0.2_EDM-1_08.txt', 'a_20s_200her_0.2__maf_0.2_EDM-1_20.txt', 'a_20s_200her_0.2__maf_0.2_EDM-1_22.txt', 'a_20s_200her_0.2__maf_0.2_EDM-1_23.txt', 'a_20s_200her_0.2__maf_0.2_EDM-1_27.txt', 'a_20s_200her_0.2__maf_0.2_EDM-1_26.txt', 'a_20s_200her_0.2__maf_0.2_EDM-1_18.txt', 'a_20s_200her_0.2__maf_0.2_EDM-1_24.txt', 'a_20s_200her_0.2__maf_0.2_EDM-1_30.txt', 'a_20s_200her_0.2__maf_0.2_EDM-1_25.txt', 'a_20s_200her_0.2__maf_0.2_EDM-1_19.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-2', [], ['a_20s_200her_0.2__maf_0.2_EDM-2_26.txt', 'a_20s_200her_0.2__maf_0.2_EDM-2_27.txt', 'a_20s_200her_0.2__maf_0.2_EDM-2_19.txt', 'a_20s_200her_0.2__maf_0.2_EDM-2_25.txt', 'a_20s_200her_0.2__maf_0.2_EDM-2_30.txt', 'a_20s_200her_0.2__maf_0.2_EDM-2_24.txt', 'a_20s_200her_0.2__maf_0.2_EDM-2_18.txt', 'a_20s_200her_0.2__maf_0.2_EDM-2_20.txt', 'a_20s_200her_0.2__maf_0.2_EDM-2_08.txt', 'a_20s_200her_0.2__maf_0.2_EDM-2_09.txt', 'a_20s_200her_0.2__maf_0.2_EDM-2_21.txt', 'a_20s_200her_0.2__maf_0.2_EDM-2_23.txt', 'a_20s_200her_0.2__maf_0.2_EDM-2_22.txt', 'a_20s_200her_0.2__maf_0.2_EDM-2_13.txt', 'a_20s_200her_0.2__maf_0.2_EDM-2_07.txt', 'a_20s_200her_0.2__maf_0.2_EDM-2_06.txt', 'a_20s_200her_0.2__maf_0.2_EDM-2_12.txt', 'a_20s_200her_0.2__maf_0.2_EDM-2_04.txt', 'a_20s_200her_0.2__maf_0.2_EDM-2_10.txt', 'a_20s_200her_0.2__maf_0.2_EDM-2_11.txt', 'a_20s_200her_0.2__maf_0.2_EDM-2_05.txt', 'a_20s_200her_0.2__maf_0.2_EDM-2_01.txt', 'a_20s_200her_0.2__maf_0.2_EDM-2_15.txt', 'a_20s_200her_0.2__maf_0.2_EDM-2_29.txt', 'a_20s_200her_0.2__maf_0.2_EDM-2_28.txt', 'a_20s_200her_0.2__maf_0.2_EDM-2_14.txt', 'a_20s_200her_0.2__maf_0.2_EDM-2_16.txt', 'a_20s_200her_0.2__maf_0.2_EDM-2_02.txt', 'a_20s_200her_0.2__maf_0.2_EDM-2_03.txt', 'a_20s_200her_0.2__maf_0.2_EDM-2_17.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800', ['her_0.1__maf_0.2', 'her_0.4__maf_0.2', 'her_0.05__maf_0.2', 'her_0.2__maf_0.2'], ['.DS_Store']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2', ['a_20s_800her_0.1__maf_0.2_EDM-2', 'a_20s_800her_0.1__maf_0.2_EDM-1'], []), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-2', [], ['a_20s_800her_0.1__maf_0.2_EDM-2_29.txt', 'a_20s_800her_0.1__maf_0.2_EDM-2_01.txt', 'a_20s_800her_0.1__maf_0.2_EDM-2_15.txt', 'a_20s_800her_0.1__maf_0.2_EDM-2_14.txt', 'a_20s_800her_0.1__maf_0.2_EDM-2_28.txt', 'a_20s_800her_0.1__maf_0.2_EDM-2_16.txt', 'a_20s_800her_0.1__maf_0.2_EDM-2_02.txt', 'a_20s_800her_0.1__maf_0.2_EDM-2_03.txt', 'a_20s_800her_0.1__maf_0.2_EDM-2_17.txt', 'a_20s_800her_0.1__maf_0.2_EDM-2_13.txt', 'a_20s_800her_0.1__maf_0.2_EDM-2_07.txt', 'a_20s_800her_0.1__maf_0.2_EDM-2_06.txt', 'a_20s_800her_0.1__maf_0.2_EDM-2_12.txt', 'a_20s_800her_0.1__maf_0.2_EDM-2_04.txt', 'a_20s_800her_0.1__maf_0.2_EDM-2_10.txt', 'a_20s_800her_0.1__maf_0.2_EDM-2_11.txt', 'a_20s_800her_0.1__maf_0.2_EDM-2_05.txt', 'a_20s_800her_0.1__maf_0.2_EDM-2_08.txt', 'a_20s_800her_0.1__maf_0.2_EDM-2_20.txt', 'a_20s_800her_0.1__maf_0.2_EDM-2_21.txt', 'a_20s_800her_0.1__maf_0.2_EDM-2_09.txt', 'a_20s_800her_0.1__maf_0.2_EDM-2_23.txt', 'a_20s_800her_0.1__maf_0.2_EDM-2_22.txt', 'a_20s_800her_0.1__maf_0.2_EDM-2_26.txt', 'a_20s_800her_0.1__maf_0.2_EDM-2_27.txt', 'a_20s_800her_0.1__maf_0.2_EDM-2_25.txt', 'a_20s_800her_0.1__maf_0.2_EDM-2_19.txt', 'a_20s_800her_0.1__maf_0.2_EDM-2_18.txt', 'a_20s_800her_0.1__maf_0.2_EDM-2_30.txt', 'a_20s_800her_0.1__maf_0.2_EDM-2_24.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-1', [], ['a_20s_800her_0.1__maf_0.2_EDM-1_27.txt', 'a_20s_800her_0.1__maf_0.2_EDM-1_26.txt', 'a_20s_800her_0.1__maf_0.2_EDM-1_24.txt', 'a_20s_800her_0.1__maf_0.2_EDM-1_30.txt', 'a_20s_800her_0.1__maf_0.2_EDM-1_18.txt', 'a_20s_800her_0.1__maf_0.2_EDM-1_19.txt', 'a_20s_800her_0.1__maf_0.2_EDM-1_25.txt', 'a_20s_800her_0.1__maf_0.2_EDM-1_09.txt', 'a_20s_800her_0.1__maf_0.2_EDM-1_21.txt', 'a_20s_800her_0.1__maf_0.2_EDM-1_20.txt', 'a_20s_800her_0.1__maf_0.2_EDM-1_08.txt', 'a_20s_800her_0.1__maf_0.2_EDM-1_22.txt', 'a_20s_800her_0.1__maf_0.2_EDM-1_23.txt', 'a_20s_800her_0.1__maf_0.2_EDM-1_12.txt', 'a_20s_800her_0.1__maf_0.2_EDM-1_06.txt', 'a_20s_800her_0.1__maf_0.2_EDM-1_07.txt', 'a_20s_800her_0.1__maf_0.2_EDM-1_13.txt', 'a_20s_800her_0.1__maf_0.2_EDM-1_05.txt', 'a_20s_800her_0.1__maf_0.2_EDM-1_11.txt', 'a_20s_800her_0.1__maf_0.2_EDM-1_10.txt', 'a_20s_800her_0.1__maf_0.2_EDM-1_04.txt', 'a_20s_800her_0.1__maf_0.2_EDM-1_28.txt', 'a_20s_800her_0.1__maf_0.2_EDM-1_14.txt', 'a_20s_800her_0.1__maf_0.2_EDM-1_15.txt', 'a_20s_800her_0.1__maf_0.2_EDM-1_01.txt', 'a_20s_800her_0.1__maf_0.2_EDM-1_29.txt', 'a_20s_800her_0.1__maf_0.2_EDM-1_17.txt', 'a_20s_800her_0.1__maf_0.2_EDM-1_03.txt', 'a_20s_800her_0.1__maf_0.2_EDM-1_02.txt', 'a_20s_800her_0.1__maf_0.2_EDM-1_16.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2', ['a_20s_800her_0.4__maf_0.2_EDM-2', 'a_20s_800her_0.4__maf_0.2_EDM-1'], ['.DS_Store']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-2', [], ['a_20s_800her_0.4__maf_0.2_EDM-2_20.txt', 'a_20s_800her_0.4__maf_0.2_EDM-2_08.txt', 'a_20s_800her_0.4__maf_0.2_EDM-2_09.txt', 'a_20s_800her_0.4__maf_0.2_EDM-2_21.txt', 'a_20s_800her_0.4__maf_0.2_EDM-2_23.txt', 'a_20s_800her_0.4__maf_0.2_EDM-2_22.txt', 'a_20s_800her_0.4__maf_0.2_EDM-2_26.txt', 'a_20s_800her_0.4__maf_0.2_EDM-2_27.txt', 'a_20s_800her_0.4__maf_0.2_EDM-2_19.txt', 'a_20s_800her_0.4__maf_0.2_EDM-2_25.txt', 'a_20s_800her_0.4__maf_0.2_EDM-2_30.txt', 'a_20s_800her_0.4__maf_0.2_EDM-2_24.txt', 'a_20s_800her_0.4__maf_0.2_EDM-2_18.txt', 'a_20s_800her_0.4__maf_0.2_EDM-2_01.txt', 'a_20s_800her_0.4__maf_0.2_EDM-2_15.txt', 'a_20s_800her_0.4__maf_0.2_EDM-2_29.txt', 'a_20s_800her_0.4__maf_0.2_EDM-2_28.txt', 'a_20s_800her_0.4__maf_0.2_EDM-2_14.txt', 'a_20s_800her_0.4__maf_0.2_EDM-2_16.txt', 'a_20s_800her_0.4__maf_0.2_EDM-2_02.txt', 'a_20s_800her_0.4__maf_0.2_EDM-2_03.txt', 'a_20s_800her_0.4__maf_0.2_EDM-2_17.txt', 'a_20s_800her_0.4__maf_0.2_EDM-2_13.txt', 'a_20s_800her_0.4__maf_0.2_EDM-2_07.txt', 'a_20s_800her_0.4__maf_0.2_EDM-2_06.txt', 'a_20s_800her_0.4__maf_0.2_EDM-2_12.txt', 'a_20s_800her_0.4__maf_0.2_EDM-2_04.txt', 'a_20s_800her_0.4__maf_0.2_EDM-2_10.txt', 'a_20s_800her_0.4__maf_0.2_EDM-2_11.txt', 'a_20s_800her_0.4__maf_0.2_EDM-2_05.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-1', [], ['a_20s_800her_0.4__maf_0.2_EDM-1_12.txt', 'a_20s_800her_0.4__maf_0.2_EDM-1_06.txt', 'a_20s_800her_0.4__maf_0.2_EDM-1_07.txt', 'a_20s_800her_0.4__maf_0.2_EDM-1_13.txt', 'a_20s_800her_0.4__maf_0.2_EDM-1_05.txt', 'a_20s_800her_0.4__maf_0.2_EDM-1_11.txt', 'a_20s_800her_0.4__maf_0.2_EDM-1_10.txt', 'a_20s_800her_0.4__maf_0.2_EDM-1_04.txt', 'a_20s_800her_0.4__maf_0.2_EDM-1_14.txt', 'a_20s_800her_0.4__maf_0.2_EDM-1_28.txt', 'a_20s_800her_0.4__maf_0.2_EDM-1_29.txt', 'a_20s_800her_0.4__maf_0.2_EDM-1_15.txt', 'a_20s_800her_0.4__maf_0.2_EDM-1_01.txt', 'a_20s_800her_0.4__maf_0.2_EDM-1_17.txt', 'a_20s_800her_0.4__maf_0.2_EDM-1_03.txt', 'a_20s_800her_0.4__maf_0.2_EDM-1_02.txt', 'a_20s_800her_0.4__maf_0.2_EDM-1_16.txt', 'a_20s_800her_0.4__maf_0.2_EDM-1_27.txt', 'a_20s_800her_0.4__maf_0.2_EDM-1_26.txt', 'a_20s_800her_0.4__maf_0.2_EDM-1_18.txt', 'a_20s_800her_0.4__maf_0.2_EDM-1_24.txt', 'a_20s_800her_0.4__maf_0.2_EDM-1_30.txt', 'a_20s_800her_0.4__maf_0.2_EDM-1_25.txt', 'a_20s_800her_0.4__maf_0.2_EDM-1_19.txt', 'a_20s_800her_0.4__maf_0.2_EDM-1_21.txt', 'a_20s_800her_0.4__maf_0.2_EDM-1_09.txt', 'a_20s_800her_0.4__maf_0.2_EDM-1_08.txt', 'a_20s_800her_0.4__maf_0.2_EDM-1_20.txt', 'a_20s_800her_0.4__maf_0.2_EDM-1_22.txt', 'a_20s_800her_0.4__maf_0.2_EDM-1_23.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2', ['a_20s_800her_0.05__maf_0.2_EDM-2', 'a_20s_800her_0.05__maf_0.2_EDM-1'], []), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-2', [], ['a_20s_800her_0.05__maf_0.2_EDM-2_19.txt', 'a_20s_800her_0.05__maf_0.2_EDM-2_25.txt', 'a_20s_800her_0.05__maf_0.2_EDM-2_30.txt', 'a_20s_800her_0.05__maf_0.2_EDM-2_24.txt', 'a_20s_800her_0.05__maf_0.2_EDM-2_18.txt', 'a_20s_800her_0.05__maf_0.2_EDM-2_26.txt', 'a_20s_800her_0.05__maf_0.2_EDM-2_27.txt', 'a_20s_800her_0.05__maf_0.2_EDM-2_23.txt', 'a_20s_800her_0.05__maf_0.2_EDM-2_22.txt', 'a_20s_800her_0.05__maf_0.2_EDM-2_20.txt', 'a_20s_800her_0.05__maf_0.2_EDM-2_08.txt', 'a_20s_800her_0.05__maf_0.2_EDM-2_09.txt', 'a_20s_800her_0.05__maf_0.2_EDM-2_21.txt', 'a_20s_800her_0.05__maf_0.2_EDM-2_04.txt', 'a_20s_800her_0.05__maf_0.2_EDM-2_10.txt', 'a_20s_800her_0.05__maf_0.2_EDM-2_11.txt', 'a_20s_800her_0.05__maf_0.2_EDM-2_05.txt', 'a_20s_800her_0.05__maf_0.2_EDM-2_13.txt', 'a_20s_800her_0.05__maf_0.2_EDM-2_07.txt', 'a_20s_800her_0.05__maf_0.2_EDM-2_06.txt', 'a_20s_800her_0.05__maf_0.2_EDM-2_12.txt', 'a_20s_800her_0.05__maf_0.2_EDM-2_16.txt', 'a_20s_800her_0.05__maf_0.2_EDM-2_02.txt', 'a_20s_800her_0.05__maf_0.2_EDM-2_03.txt', 'a_20s_800her_0.05__maf_0.2_EDM-2_17.txt', 'a_20s_800her_0.05__maf_0.2_EDM-2_01.txt', 'a_20s_800her_0.05__maf_0.2_EDM-2_15.txt', 'a_20s_800her_0.05__maf_0.2_EDM-2_29.txt', 'a_20s_800her_0.05__maf_0.2_EDM-2_28.txt', 'a_20s_800her_0.05__maf_0.2_EDM-2_14.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-1', [], ['a_20s_800her_0.05__maf_0.2_EDM-1_17.txt', 'a_20s_800her_0.05__maf_0.2_EDM-1_03.txt', 'a_20s_800her_0.05__maf_0.2_EDM-1_02.txt', 'a_20s_800her_0.05__maf_0.2_EDM-1_16.txt', 'a_20s_800her_0.05__maf_0.2_EDM-1_14.txt', 'a_20s_800her_0.05__maf_0.2_EDM-1_28.txt', 'a_20s_800her_0.05__maf_0.2_EDM-1_29.txt', 'a_20s_800her_0.05__maf_0.2_EDM-1_15.txt', 'a_20s_800her_0.05__maf_0.2_EDM-1_01.txt', 'a_20s_800her_0.05__maf_0.2_EDM-1_05.txt', 'a_20s_800her_0.05__maf_0.2_EDM-1_11.txt', 'a_20s_800her_0.05__maf_0.2_EDM-1_10.txt', 'a_20s_800her_0.05__maf_0.2_EDM-1_04.txt', 'a_20s_800her_0.05__maf_0.2_EDM-1_12.txt', 'a_20s_800her_0.05__maf_0.2_EDM-1_06.txt', 'a_20s_800her_0.05__maf_0.2_EDM-1_07.txt', 'a_20s_800her_0.05__maf_0.2_EDM-1_13.txt', 'a_20s_800her_0.05__maf_0.2_EDM-1_22.txt', 'a_20s_800her_0.05__maf_0.2_EDM-1_23.txt', 'a_20s_800her_0.05__maf_0.2_EDM-1_21.txt', 'a_20s_800her_0.05__maf_0.2_EDM-1_09.txt', 'a_20s_800her_0.05__maf_0.2_EDM-1_08.txt', 'a_20s_800her_0.05__maf_0.2_EDM-1_20.txt', 'a_20s_800her_0.05__maf_0.2_EDM-1_18.txt', 'a_20s_800her_0.05__maf_0.2_EDM-1_24.txt', 'a_20s_800her_0.05__maf_0.2_EDM-1_30.txt', 'a_20s_800her_0.05__maf_0.2_EDM-1_25.txt', 'a_20s_800her_0.05__maf_0.2_EDM-1_19.txt', 'a_20s_800her_0.05__maf_0.2_EDM-1_27.txt', 'a_20s_800her_0.05__maf_0.2_EDM-1_26.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2', ['a_20s_800her_0.2__maf_0.2_EDM-2', 'a_20s_800her_0.2__maf_0.2_EDM-1'], []), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-2', [], ['a_20s_800her_0.2__maf_0.2_EDM-2_18.txt', 'a_20s_800her_0.2__maf_0.2_EDM-2_24.txt', 'a_20s_800her_0.2__maf_0.2_EDM-2_30.txt', 'a_20s_800her_0.2__maf_0.2_EDM-2_25.txt', 'a_20s_800her_0.2__maf_0.2_EDM-2_19.txt', 'a_20s_800her_0.2__maf_0.2_EDM-2_27.txt', 'a_20s_800her_0.2__maf_0.2_EDM-2_26.txt', 'a_20s_800her_0.2__maf_0.2_EDM-2_22.txt', 'a_20s_800her_0.2__maf_0.2_EDM-2_23.txt', 'a_20s_800her_0.2__maf_0.2_EDM-2_21.txt', 'a_20s_800her_0.2__maf_0.2_EDM-2_09.txt', 'a_20s_800her_0.2__maf_0.2_EDM-2_08.txt', 'a_20s_800her_0.2__maf_0.2_EDM-2_20.txt', 'a_20s_800her_0.2__maf_0.2_EDM-2_05.txt', 'a_20s_800her_0.2__maf_0.2_EDM-2_11.txt', 'a_20s_800her_0.2__maf_0.2_EDM-2_10.txt', 'a_20s_800her_0.2__maf_0.2_EDM-2_04.txt', 'a_20s_800her_0.2__maf_0.2_EDM-2_12.txt', 'a_20s_800her_0.2__maf_0.2_EDM-2_06.txt', 'a_20s_800her_0.2__maf_0.2_EDM-2_07.txt', 'a_20s_800her_0.2__maf_0.2_EDM-2_13.txt', 'a_20s_800her_0.2__maf_0.2_EDM-2_17.txt', 'a_20s_800her_0.2__maf_0.2_EDM-2_03.txt', 'a_20s_800her_0.2__maf_0.2_EDM-2_02.txt', 'a_20s_800her_0.2__maf_0.2_EDM-2_16.txt', 'a_20s_800her_0.2__maf_0.2_EDM-2_14.txt', 'a_20s_800her_0.2__maf_0.2_EDM-2_28.txt', 'a_20s_800her_0.2__maf_0.2_EDM-2_29.txt', 'a_20s_800her_0.2__maf_0.2_EDM-2_15.txt', 'a_20s_800her_0.2__maf_0.2_EDM-2_01.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-1', [], ['a_20s_800her_0.2__maf_0.2_EDM-1_16.txt', 'a_20s_800her_0.2__maf_0.2_EDM-1_02.txt', 'a_20s_800her_0.2__maf_0.2_EDM-1_03.txt', 'a_20s_800her_0.2__maf_0.2_EDM-1_17.txt', 'a_20s_800her_0.2__maf_0.2_EDM-1_01.txt', 'a_20s_800her_0.2__maf_0.2_EDM-1_15.txt', 'a_20s_800her_0.2__maf_0.2_EDM-1_29.txt', 'a_20s_800her_0.2__maf_0.2_EDM-1_28.txt', 'a_20s_800her_0.2__maf_0.2_EDM-1_14.txt', 'a_20s_800her_0.2__maf_0.2_EDM-1_04.txt', 'a_20s_800her_0.2__maf_0.2_EDM-1_10.txt', 'a_20s_800her_0.2__maf_0.2_EDM-1_11.txt', 'a_20s_800her_0.2__maf_0.2_EDM-1_05.txt', 'a_20s_800her_0.2__maf_0.2_EDM-1_13.txt', 'a_20s_800her_0.2__maf_0.2_EDM-1_07.txt', 'a_20s_800her_0.2__maf_0.2_EDM-1_06.txt', 'a_20s_800her_0.2__maf_0.2_EDM-1_12.txt', 'a_20s_800her_0.2__maf_0.2_EDM-1_23.txt', 'a_20s_800her_0.2__maf_0.2_EDM-1_22.txt', 'a_20s_800her_0.2__maf_0.2_EDM-1_20.txt', 'a_20s_800her_0.2__maf_0.2_EDM-1_08.txt', 'a_20s_800her_0.2__maf_0.2_EDM-1_09.txt', 'a_20s_800her_0.2__maf_0.2_EDM-1_21.txt', 'a_20s_800her_0.2__maf_0.2_EDM-1_19.txt', 'a_20s_800her_0.2__maf_0.2_EDM-1_25.txt', 'a_20s_800her_0.2__maf_0.2_EDM-1_30.txt', 'a_20s_800her_0.2__maf_0.2_EDM-1_24.txt', 'a_20s_800her_0.2__maf_0.2_EDM-1_18.txt', 'a_20s_800her_0.2__maf_0.2_EDM-1_26.txt', 'a_20s_800her_0.2__maf_0.2_EDM-1_27.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100', ['s_400', 's_1600', 's_200', 's_800'], ['.DS_Store']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400', ['her_0.1__maf_0.2', 'her_0.4__maf_0.2', 'her_0.05__maf_0.2', 'her_0.2__maf_0.2'], []), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2', ['a_100s_400her_0.1__maf_0.2_EDM-2', 'a_100s_400her_0.1__maf_0.2_EDM-1'], []), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-2', [], ['a_100s_400her_0.1__maf_0.2_EDM-2_01.txt', 'a_100s_400her_0.1__maf_0.2_EDM-2_15.txt', 'a_100s_400her_0.1__maf_0.2_EDM-2_29.txt', 'a_100s_400her_0.1__maf_0.2_EDM-2_28.txt', 'a_100s_400her_0.1__maf_0.2_EDM-2_14.txt', 'a_100s_400her_0.1__maf_0.2_EDM-2_16.txt', 'a_100s_400her_0.1__maf_0.2_EDM-2_02.txt', 'a_100s_400her_0.1__maf_0.2_EDM-2_03.txt', 'a_100s_400her_0.1__maf_0.2_EDM-2_17.txt', 'a_100s_400her_0.1__maf_0.2_EDM-2_13.txt', 'a_100s_400her_0.1__maf_0.2_EDM-2_07.txt', 'a_100s_400her_0.1__maf_0.2_EDM-2_06.txt', 'a_100s_400her_0.1__maf_0.2_EDM-2_12.txt', 'a_100s_400her_0.1__maf_0.2_EDM-2_04.txt', 'a_100s_400her_0.1__maf_0.2_EDM-2_10.txt', 'a_100s_400her_0.1__maf_0.2_EDM-2_11.txt', 'a_100s_400her_0.1__maf_0.2_EDM-2_05.txt', 'a_100s_400her_0.1__maf_0.2_EDM-2_20.txt', 'a_100s_400her_0.1__maf_0.2_EDM-2_08.txt', 'a_100s_400her_0.1__maf_0.2_EDM-2_09.txt', 'a_100s_400her_0.1__maf_0.2_EDM-2_21.txt', 'a_100s_400her_0.1__maf_0.2_EDM-2_23.txt', 'a_100s_400her_0.1__maf_0.2_EDM-2_22.txt', 'a_100s_400her_0.1__maf_0.2_EDM-2_26.txt', 'a_100s_400her_0.1__maf_0.2_EDM-2_27.txt', 'a_100s_400her_0.1__maf_0.2_EDM-2_19.txt', 'a_100s_400her_0.1__maf_0.2_EDM-2_25.txt', 'a_100s_400her_0.1__maf_0.2_EDM-2_30.txt', 'a_100s_400her_0.1__maf_0.2_EDM-2_24.txt', 'a_100s_400her_0.1__maf_0.2_EDM-2_18.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-1', [], ['a_100s_400her_0.1__maf_0.2_EDM-1_27.txt', 'a_100s_400her_0.1__maf_0.2_EDM-1_26.txt', 'a_100s_400her_0.1__maf_0.2_EDM-1_18.txt', 'a_100s_400her_0.1__maf_0.2_EDM-1_24.txt', 'a_100s_400her_0.1__maf_0.2_EDM-1_30.txt', 'a_100s_400her_0.1__maf_0.2_EDM-1_25.txt', 'a_100s_400her_0.1__maf_0.2_EDM-1_19.txt', 'a_100s_400her_0.1__maf_0.2_EDM-1_21.txt', 'a_100s_400her_0.1__maf_0.2_EDM-1_09.txt', 'a_100s_400her_0.1__maf_0.2_EDM-1_08.txt', 'a_100s_400her_0.1__maf_0.2_EDM-1_20.txt', 'a_100s_400her_0.1__maf_0.2_EDM-1_22.txt', 'a_100s_400her_0.1__maf_0.2_EDM-1_23.txt', 'a_100s_400her_0.1__maf_0.2_EDM-1_12.txt', 'a_100s_400her_0.1__maf_0.2_EDM-1_06.txt', 'a_100s_400her_0.1__maf_0.2_EDM-1_07.txt', 'a_100s_400her_0.1__maf_0.2_EDM-1_13.txt', 'a_100s_400her_0.1__maf_0.2_EDM-1_05.txt', 'a_100s_400her_0.1__maf_0.2_EDM-1_11.txt', 'a_100s_400her_0.1__maf_0.2_EDM-1_10.txt', 'a_100s_400her_0.1__maf_0.2_EDM-1_04.txt', 'a_100s_400her_0.1__maf_0.2_EDM-1_14.txt', 'a_100s_400her_0.1__maf_0.2_EDM-1_28.txt', 'a_100s_400her_0.1__maf_0.2_EDM-1_29.txt', 'a_100s_400her_0.1__maf_0.2_EDM-1_15.txt', 'a_100s_400her_0.1__maf_0.2_EDM-1_01.txt', 'a_100s_400her_0.1__maf_0.2_EDM-1_17.txt', 'a_100s_400her_0.1__maf_0.2_EDM-1_03.txt', 'a_100s_400her_0.1__maf_0.2_EDM-1_02.txt', 'a_100s_400her_0.1__maf_0.2_EDM-1_16.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2', ['a_100s_400her_0.4__maf_0.2_EDM-2', 'a_100s_400her_0.4__maf_0.2_EDM-1'], []), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-2', [], ['a_100s_400her_0.4__maf_0.2_EDM-2_08.txt', 'a_100s_400her_0.4__maf_0.2_EDM-2_20.txt', 'a_100s_400her_0.4__maf_0.2_EDM-2_21.txt', 'a_100s_400her_0.4__maf_0.2_EDM-2_09.txt', 'a_100s_400her_0.4__maf_0.2_EDM-2_23.txt', 'a_100s_400her_0.4__maf_0.2_EDM-2_22.txt', 'a_100s_400her_0.4__maf_0.2_EDM-2_26.txt', 'a_100s_400her_0.4__maf_0.2_EDM-2_27.txt', 'a_100s_400her_0.4__maf_0.2_EDM-2_25.txt', 'a_100s_400her_0.4__maf_0.2_EDM-2_19.txt', 'a_100s_400her_0.4__maf_0.2_EDM-2_18.txt', 'a_100s_400her_0.4__maf_0.2_EDM-2_30.txt', 'a_100s_400her_0.4__maf_0.2_EDM-2_24.txt', 'a_100s_400her_0.4__maf_0.2_EDM-2_29.txt', 'a_100s_400her_0.4__maf_0.2_EDM-2_01.txt', 'a_100s_400her_0.4__maf_0.2_EDM-2_15.txt', 'a_100s_400her_0.4__maf_0.2_EDM-2_14.txt', 'a_100s_400her_0.4__maf_0.2_EDM-2_28.txt', 'a_100s_400her_0.4__maf_0.2_EDM-2_16.txt', 'a_100s_400her_0.4__maf_0.2_EDM-2_02.txt', 'a_100s_400her_0.4__maf_0.2_EDM-2_03.txt', 'a_100s_400her_0.4__maf_0.2_EDM-2_17.txt', 'a_100s_400her_0.4__maf_0.2_EDM-2_13.txt', 'a_100s_400her_0.4__maf_0.2_EDM-2_07.txt', 'a_100s_400her_0.4__maf_0.2_EDM-2_06.txt', 'a_100s_400her_0.4__maf_0.2_EDM-2_12.txt', 'a_100s_400her_0.4__maf_0.2_EDM-2_04.txt', 'a_100s_400her_0.4__maf_0.2_EDM-2_10.txt', 'a_100s_400her_0.4__maf_0.2_EDM-2_11.txt', 'a_100s_400her_0.4__maf_0.2_EDM-2_05.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-1', [], ['a_100s_400her_0.4__maf_0.2_EDM-1_12.txt', 'a_100s_400her_0.4__maf_0.2_EDM-1_06.txt', 'a_100s_400her_0.4__maf_0.2_EDM-1_07.txt', 'a_100s_400her_0.4__maf_0.2_EDM-1_13.txt', 'a_100s_400her_0.4__maf_0.2_EDM-1_05.txt', 'a_100s_400her_0.4__maf_0.2_EDM-1_11.txt', 'a_100s_400her_0.4__maf_0.2_EDM-1_10.txt', 'a_100s_400her_0.4__maf_0.2_EDM-1_04.txt', 'a_100s_400her_0.4__maf_0.2_EDM-1_28.txt', 'a_100s_400her_0.4__maf_0.2_EDM-1_14.txt', 'a_100s_400her_0.4__maf_0.2_EDM-1_15.txt', 'a_100s_400her_0.4__maf_0.2_EDM-1_01.txt', 'a_100s_400her_0.4__maf_0.2_EDM-1_29.txt', 'a_100s_400her_0.4__maf_0.2_EDM-1_17.txt', 'a_100s_400her_0.4__maf_0.2_EDM-1_03.txt', 'a_100s_400her_0.4__maf_0.2_EDM-1_02.txt', 'a_100s_400her_0.4__maf_0.2_EDM-1_16.txt', 'a_100s_400her_0.4__maf_0.2_EDM-1_27.txt', 'a_100s_400her_0.4__maf_0.2_EDM-1_26.txt', 'a_100s_400her_0.4__maf_0.2_EDM-1_24.txt', 'a_100s_400her_0.4__maf_0.2_EDM-1_30.txt', 'a_100s_400her_0.4__maf_0.2_EDM-1_18.txt', 'a_100s_400her_0.4__maf_0.2_EDM-1_19.txt', 'a_100s_400her_0.4__maf_0.2_EDM-1_25.txt', 'a_100s_400her_0.4__maf_0.2_EDM-1_09.txt', 'a_100s_400her_0.4__maf_0.2_EDM-1_21.txt', 'a_100s_400her_0.4__maf_0.2_EDM-1_20.txt', 'a_100s_400her_0.4__maf_0.2_EDM-1_08.txt', 'a_100s_400her_0.4__maf_0.2_EDM-1_22.txt', 'a_100s_400her_0.4__maf_0.2_EDM-1_23.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2', ['a_100s_400her_0.05__maf_0.2_EDM-2', 'a_100s_400her_0.05__maf_0.2_EDM-1'], []), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-2', [], ['a_100s_400her_0.05__maf_0.2_EDM-2_29.txt', 'a_100s_400her_0.05__maf_0.2_EDM-2_15.txt', 'a_100s_400her_0.05__maf_0.2_EDM-2_01.txt', 'a_100s_400her_0.05__maf_0.2_EDM-2_14.txt', 'a_100s_400her_0.05__maf_0.2_EDM-2_28.txt', 'a_100s_400her_0.05__maf_0.2_EDM-2_02.txt', 'a_100s_400her_0.05__maf_0.2_EDM-2_16.txt', 'a_100s_400her_0.05__maf_0.2_EDM-2_17.txt', 'a_100s_400her_0.05__maf_0.2_EDM-2_03.txt', 'a_100s_400her_0.05__maf_0.2_EDM-2_07.txt', 'a_100s_400her_0.05__maf_0.2_EDM-2_13.txt', 'a_100s_400her_0.05__maf_0.2_EDM-2_12.txt', 'a_100s_400her_0.05__maf_0.2_EDM-2_06.txt', 'a_100s_400her_0.05__maf_0.2_EDM-2_10.txt', 'a_100s_400her_0.05__maf_0.2_EDM-2_04.txt', 'a_100s_400her_0.05__maf_0.2_EDM-2_05.txt', 'a_100s_400her_0.05__maf_0.2_EDM-2_11.txt', 'a_100s_400her_0.05__maf_0.2_EDM-2_08.txt', 'a_100s_400her_0.05__maf_0.2_EDM-2_20.txt', 'a_100s_400her_0.05__maf_0.2_EDM-2_21.txt', 'a_100s_400her_0.05__maf_0.2_EDM-2_09.txt', 'a_100s_400her_0.05__maf_0.2_EDM-2_23.txt', 'a_100s_400her_0.05__maf_0.2_EDM-2_22.txt', 'a_100s_400her_0.05__maf_0.2_EDM-2_26.txt', 'a_100s_400her_0.05__maf_0.2_EDM-2_27.txt', 'a_100s_400her_0.05__maf_0.2_EDM-2_25.txt', 'a_100s_400her_0.05__maf_0.2_EDM-2_19.txt', 'a_100s_400her_0.05__maf_0.2_EDM-2_18.txt', 'a_100s_400her_0.05__maf_0.2_EDM-2_24.txt', 'a_100s_400her_0.05__maf_0.2_EDM-2_30.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-1', [], ['a_100s_400her_0.05__maf_0.2_EDM-1_27.txt', 'a_100s_400her_0.05__maf_0.2_EDM-1_26.txt', 'a_100s_400her_0.05__maf_0.2_EDM-1_30.txt', 'a_100s_400her_0.05__maf_0.2_EDM-1_24.txt', 'a_100s_400her_0.05__maf_0.2_EDM-1_18.txt', 'a_100s_400her_0.05__maf_0.2_EDM-1_19.txt', 'a_100s_400her_0.05__maf_0.2_EDM-1_25.txt', 'a_100s_400her_0.05__maf_0.2_EDM-1_09.txt', 'a_100s_400her_0.05__maf_0.2_EDM-1_21.txt', 'a_100s_400her_0.05__maf_0.2_EDM-1_20.txt', 'a_100s_400her_0.05__maf_0.2_EDM-1_08.txt', 'a_100s_400her_0.05__maf_0.2_EDM-1_22.txt', 'a_100s_400her_0.05__maf_0.2_EDM-1_23.txt', 'a_100s_400her_0.05__maf_0.2_EDM-1_06.txt', 'a_100s_400her_0.05__maf_0.2_EDM-1_12.txt', 'a_100s_400her_0.05__maf_0.2_EDM-1_13.txt', 'a_100s_400her_0.05__maf_0.2_EDM-1_07.txt', 'a_100s_400her_0.05__maf_0.2_EDM-1_11.txt', 'a_100s_400her_0.05__maf_0.2_EDM-1_05.txt', 'a_100s_400her_0.05__maf_0.2_EDM-1_04.txt', 'a_100s_400her_0.05__maf_0.2_EDM-1_10.txt', 'a_100s_400her_0.05__maf_0.2_EDM-1_28.txt', 'a_100s_400her_0.05__maf_0.2_EDM-1_14.txt', 'a_100s_400her_0.05__maf_0.2_EDM-1_01.txt', 'a_100s_400her_0.05__maf_0.2_EDM-1_15.txt', 'a_100s_400her_0.05__maf_0.2_EDM-1_29.txt', 'a_100s_400her_0.05__maf_0.2_EDM-1_03.txt', 'a_100s_400her_0.05__maf_0.2_EDM-1_17.txt', 'a_100s_400her_0.05__maf_0.2_EDM-1_16.txt', 'a_100s_400her_0.05__maf_0.2_EDM-1_02.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2', ['a_100s_400her_0.2__maf_0.2_EDM-2', 'a_100s_400her_0.2__maf_0.2_EDM-1'], []), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-2', [], ['a_100s_400her_0.2__maf_0.2_EDM-2_24.txt', 'a_100s_400her_0.2__maf_0.2_EDM-2_30.txt', 'a_100s_400her_0.2__maf_0.2_EDM-2_18.txt', 'a_100s_400her_0.2__maf_0.2_EDM-2_19.txt', 'a_100s_400her_0.2__maf_0.2_EDM-2_25.txt', 'a_100s_400her_0.2__maf_0.2_EDM-2_27.txt', 'a_100s_400her_0.2__maf_0.2_EDM-2_26.txt', 'a_100s_400her_0.2__maf_0.2_EDM-2_22.txt', 'a_100s_400her_0.2__maf_0.2_EDM-2_23.txt', 'a_100s_400her_0.2__maf_0.2_EDM-2_09.txt', 'a_100s_400her_0.2__maf_0.2_EDM-2_21.txt', 'a_100s_400her_0.2__maf_0.2_EDM-2_20.txt', 'a_100s_400her_0.2__maf_0.2_EDM-2_08.txt', 'a_100s_400her_0.2__maf_0.2_EDM-2_05.txt', 'a_100s_400her_0.2__maf_0.2_EDM-2_11.txt', 'a_100s_400her_0.2__maf_0.2_EDM-2_10.txt', 'a_100s_400her_0.2__maf_0.2_EDM-2_04.txt', 'a_100s_400her_0.2__maf_0.2_EDM-2_12.txt', 'a_100s_400her_0.2__maf_0.2_EDM-2_06.txt', 'a_100s_400her_0.2__maf_0.2_EDM-2_07.txt', 'a_100s_400her_0.2__maf_0.2_EDM-2_13.txt', 'a_100s_400her_0.2__maf_0.2_EDM-2_17.txt', 'a_100s_400her_0.2__maf_0.2_EDM-2_03.txt', 'a_100s_400her_0.2__maf_0.2_EDM-2_02.txt', 'a_100s_400her_0.2__maf_0.2_EDM-2_16.txt', 'a_100s_400her_0.2__maf_0.2_EDM-2_28.txt', 'a_100s_400her_0.2__maf_0.2_EDM-2_14.txt', 'a_100s_400her_0.2__maf_0.2_EDM-2_15.txt', 'a_100s_400her_0.2__maf_0.2_EDM-2_01.txt', 'a_100s_400her_0.2__maf_0.2_EDM-2_29.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-1', [], ['a_100s_400her_0.2__maf_0.2_EDM-1_16.txt', 'a_100s_400her_0.2__maf_0.2_EDM-1_02.txt', 'a_100s_400her_0.2__maf_0.2_EDM-1_03.txt', 'a_100s_400her_0.2__maf_0.2_EDM-1_17.txt', 'a_100s_400her_0.2__maf_0.2_EDM-1_29.txt', 'a_100s_400her_0.2__maf_0.2_EDM-1_01.txt', 'a_100s_400her_0.2__maf_0.2_EDM-1_15.txt', 'a_100s_400her_0.2__maf_0.2_EDM-1_14.txt', 'a_100s_400her_0.2__maf_0.2_EDM-1_28.txt', 'a_100s_400her_0.2__maf_0.2_EDM-1_04.txt', 'a_100s_400her_0.2__maf_0.2_EDM-1_10.txt', 'a_100s_400her_0.2__maf_0.2_EDM-1_11.txt', 'a_100s_400her_0.2__maf_0.2_EDM-1_05.txt', 'a_100s_400her_0.2__maf_0.2_EDM-1_13.txt', 'a_100s_400her_0.2__maf_0.2_EDM-1_07.txt', 'a_100s_400her_0.2__maf_0.2_EDM-1_06.txt', 'a_100s_400her_0.2__maf_0.2_EDM-1_12.txt', 'a_100s_400her_0.2__maf_0.2_EDM-1_23.txt', 'a_100s_400her_0.2__maf_0.2_EDM-1_22.txt', 'a_100s_400her_0.2__maf_0.2_EDM-1_08.txt', 'a_100s_400her_0.2__maf_0.2_EDM-1_20.txt', 'a_100s_400her_0.2__maf_0.2_EDM-1_21.txt', 'a_100s_400her_0.2__maf_0.2_EDM-1_09.txt', 'a_100s_400her_0.2__maf_0.2_EDM-1_25.txt', 'a_100s_400her_0.2__maf_0.2_EDM-1_19.txt', 'a_100s_400her_0.2__maf_0.2_EDM-1_18.txt', 'a_100s_400her_0.2__maf_0.2_EDM-1_30.txt', 'a_100s_400her_0.2__maf_0.2_EDM-1_24.txt', 'a_100s_400her_0.2__maf_0.2_EDM-1_26.txt', 'a_100s_400her_0.2__maf_0.2_EDM-1_27.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600', ['her_0.1__maf_0.2', 'her_0.4__maf_0.2', 'her_0.05__maf_0.2', 'her_0.2__maf_0.2'], []), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2', ['a_100s_1600her_0.1__maf_0.2_EDM-1', 'a_100s_1600her_0.1__maf_0.2_EDM-2'], []), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-1', [], ['a_100s_1600her_0.1__maf_0.2_EDM-1_04.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-1_10.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-1_11.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-1_05.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-1_13.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-1_07.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-1_06.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-1_12.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-1_16.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-1_02.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-1_03.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-1_17.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-1_29.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-1_01.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-1_15.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-1_14.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-1_28.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-1_25.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-1_19.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-1_18.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-1_30.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-1_24.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-1_26.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-1_27.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-1_23.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-1_22.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-1_08.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-1_20.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-1_21.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-1_09.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-2', [], ['a_100s_1600her_0.1__maf_0.2_EDM-2_22.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-2_23.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-2_09.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-2_21.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-2_20.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-2_08.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-2_24.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-2_30.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-2_18.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-2_19.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-2_25.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-2_27.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-2_26.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-2_17.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-2_03.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-2_02.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-2_16.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-2_28.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-2_14.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-2_15.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-2_01.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-2_29.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-2_05.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-2_11.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-2_10.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-2_04.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-2_12.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-2_06.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-2_07.txt', 'a_100s_1600her_0.1__maf_0.2_EDM-2_13.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2', ['a_100s_1600her_0.4__maf_0.2_EDM-1', 'a_100s_1600her_0.4__maf_0.2_EDM-2'], []), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-1', [], ['a_100s_1600her_0.4__maf_0.2_EDM-1_19.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-1_25.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-1_30.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-1_24.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-1_18.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-1_26.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-1_27.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-1_23.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-1_22.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-1_20.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-1_08.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-1_09.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-1_21.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-1_04.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-1_10.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-1_11.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-1_05.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-1_13.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-1_07.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-1_06.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-1_12.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-1_16.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-1_02.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-1_03.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-1_17.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-1_01.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-1_15.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-1_29.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-1_28.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-1_14.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-2', [], ['a_100s_1600her_0.4__maf_0.2_EDM-2_17.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-2_03.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-2_02.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-2_16.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-2_14.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-2_28.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-2_29.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-2_15.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-2_01.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-2_05.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-2_11.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-2_10.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-2_04.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-2_12.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-2_06.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-2_07.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-2_13.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-2_22.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-2_23.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-2_21.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-2_09.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-2_08.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-2_20.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-2_18.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-2_24.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-2_30.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-2_25.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-2_19.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-2_27.txt', 'a_100s_1600her_0.4__maf_0.2_EDM-2_26.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2', ['a_100s_1600her_0.05__maf_0.2_EDM-1', 'a_100s_1600her_0.05__maf_0.2_EDM-2'], []), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-1', [], ['a_100s_1600her_0.05__maf_0.2_EDM-1_26.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-1_27.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-1_19.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-1_25.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-1_30.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-1_24.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-1_18.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-1_20.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-1_08.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-1_09.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-1_21.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-1_23.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-1_22.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-1_13.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-1_07.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-1_06.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-1_12.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-1_04.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-1_10.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-1_11.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-1_05.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-1_01.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-1_15.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-1_29.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-1_28.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-1_14.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-1_16.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-1_02.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-1_03.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-1_17.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-2', [], ['a_100s_1600her_0.05__maf_0.2_EDM-2_14.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-2_28.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-2_29.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-2_15.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-2_01.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-2_17.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-2_03.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-2_02.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-2_16.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-2_12.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-2_06.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-2_07.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-2_13.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-2_05.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-2_11.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-2_10.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-2_04.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-2_21.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-2_09.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-2_08.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-2_20.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-2_22.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-2_23.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-2_27.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-2_26.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-2_18.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-2_24.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-2_30.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-2_25.txt', 'a_100s_1600her_0.05__maf_0.2_EDM-2_19.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2', ['a_100s_1600her_0.2__maf_0.2_EDM-1', 'a_100s_1600her_0.2__maf_0.2_EDM-2'], []), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-1', [], ['a_100s_1600her_0.2__maf_0.2_EDM-1_21.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-1_09.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-1_08.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-1_20.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-1_22.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-1_23.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-1_27.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-1_26.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-1_18.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-1_24.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-1_30.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-1_25.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-1_19.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-1_14.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-1_28.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-1_29.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-1_15.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-1_01.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-1_17.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-1_03.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-1_02.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-1_16.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-1_12.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-1_06.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-1_07.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-1_13.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-1_05.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-1_11.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-1_10.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-1_04.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-2', [], ['a_100s_1600her_0.2__maf_0.2_EDM-2_13.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-2_07.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-2_06.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-2_12.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-2_04.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-2_10.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-2_11.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-2_05.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-2_01.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-2_15.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-2_29.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-2_28.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-2_14.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-2_16.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-2_02.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-2_03.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-2_17.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-2_26.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-2_27.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-2_19.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-2_25.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-2_30.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-2_24.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-2_18.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-2_20.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-2_08.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-2_09.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-2_21.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-2_23.txt', 'a_100s_1600her_0.2__maf_0.2_EDM-2_22.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200', ['her_0.1__maf_0.2', 'her_0.4__maf_0.2', 'her_0.05__maf_0.2', 'her_0.2__maf_0.2'], []), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2', ['a_100s_200her_0.1__maf_0.2_EDM-1', 'a_100s_200her_0.1__maf_0.2_EDM-2'], []), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-1', [], ['a_100s_200her_0.1__maf_0.2_EDM-1_26.txt', 'a_100s_200her_0.1__maf_0.2_EDM-1_27.txt', 'a_100s_200her_0.1__maf_0.2_EDM-1_25.txt', 'a_100s_200her_0.1__maf_0.2_EDM-1_19.txt', 'a_100s_200her_0.1__maf_0.2_EDM-1_18.txt', 'a_100s_200her_0.1__maf_0.2_EDM-1_30.txt', 'a_100s_200her_0.1__maf_0.2_EDM-1_24.txt', 'a_100s_200her_0.1__maf_0.2_EDM-1_08.txt', 'a_100s_200her_0.1__maf_0.2_EDM-1_20.txt', 'a_100s_200her_0.1__maf_0.2_EDM-1_21.txt', 'a_100s_200her_0.1__maf_0.2_EDM-1_09.txt', 'a_100s_200her_0.1__maf_0.2_EDM-1_23.txt', 'a_100s_200her_0.1__maf_0.2_EDM-1_22.txt', 'a_100s_200her_0.1__maf_0.2_EDM-1_13.txt', 'a_100s_200her_0.1__maf_0.2_EDM-1_07.txt', 'a_100s_200her_0.1__maf_0.2_EDM-1_06.txt', 'a_100s_200her_0.1__maf_0.2_EDM-1_12.txt', 'a_100s_200her_0.1__maf_0.2_EDM-1_04.txt', 'a_100s_200her_0.1__maf_0.2_EDM-1_10.txt', 'a_100s_200her_0.1__maf_0.2_EDM-1_11.txt', 'a_100s_200her_0.1__maf_0.2_EDM-1_05.txt', 'a_100s_200her_0.1__maf_0.2_EDM-1_29.txt', 'a_100s_200her_0.1__maf_0.2_EDM-1_01.txt', 'a_100s_200her_0.1__maf_0.2_EDM-1_15.txt', 'a_100s_200her_0.1__maf_0.2_EDM-1_14.txt', 'a_100s_200her_0.1__maf_0.2_EDM-1_28.txt', 'a_100s_200her_0.1__maf_0.2_EDM-1_16.txt', 'a_100s_200her_0.1__maf_0.2_EDM-1_02.txt', 'a_100s_200her_0.1__maf_0.2_EDM-1_03.txt', 'a_100s_200her_0.1__maf_0.2_EDM-1_17.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-2', [], ['a_100s_200her_0.1__maf_0.2_EDM-2_28.txt', 'a_100s_200her_0.1__maf_0.2_EDM-2_14.txt', 'a_100s_200her_0.1__maf_0.2_EDM-2_15.txt', 'a_100s_200her_0.1__maf_0.2_EDM-2_01.txt', 'a_100s_200her_0.1__maf_0.2_EDM-2_29.txt', 'a_100s_200her_0.1__maf_0.2_EDM-2_17.txt', 'a_100s_200her_0.1__maf_0.2_EDM-2_03.txt', 'a_100s_200her_0.1__maf_0.2_EDM-2_02.txt', 'a_100s_200her_0.1__maf_0.2_EDM-2_16.txt', 'a_100s_200her_0.1__maf_0.2_EDM-2_12.txt', 'a_100s_200her_0.1__maf_0.2_EDM-2_06.txt', 'a_100s_200her_0.1__maf_0.2_EDM-2_07.txt', 'a_100s_200her_0.1__maf_0.2_EDM-2_13.txt', 'a_100s_200her_0.1__maf_0.2_EDM-2_05.txt', 'a_100s_200her_0.1__maf_0.2_EDM-2_11.txt', 'a_100s_200her_0.1__maf_0.2_EDM-2_10.txt', 'a_100s_200her_0.1__maf_0.2_EDM-2_04.txt', 'a_100s_200her_0.1__maf_0.2_EDM-2_09.txt', 'a_100s_200her_0.1__maf_0.2_EDM-2_21.txt', 'a_100s_200her_0.1__maf_0.2_EDM-2_20.txt', 'a_100s_200her_0.1__maf_0.2_EDM-2_08.txt', 'a_100s_200her_0.1__maf_0.2_EDM-2_22.txt', 'a_100s_200her_0.1__maf_0.2_EDM-2_23.txt', 'a_100s_200her_0.1__maf_0.2_EDM-2_27.txt', 'a_100s_200her_0.1__maf_0.2_EDM-2_26.txt', 'a_100s_200her_0.1__maf_0.2_EDM-2_24.txt', 'a_100s_200her_0.1__maf_0.2_EDM-2_30.txt', 'a_100s_200her_0.1__maf_0.2_EDM-2_18.txt', 'a_100s_200her_0.1__maf_0.2_EDM-2_19.txt', 'a_100s_200her_0.1__maf_0.2_EDM-2_25.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2', ['a_100s_200her_0.4__maf_0.2_EDM-1', 'a_100s_200her_0.4__maf_0.2_EDM-2'], []), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-1', [], ['a_100s_200her_0.4__maf_0.2_EDM-1_13.txt', 'a_100s_200her_0.4__maf_0.2_EDM-1_07.txt', 'a_100s_200her_0.4__maf_0.2_EDM-1_06.txt', 'a_100s_200her_0.4__maf_0.2_EDM-1_12.txt', 'a_100s_200her_0.4__maf_0.2_EDM-1_04.txt', 'a_100s_200her_0.4__maf_0.2_EDM-1_10.txt', 'a_100s_200her_0.4__maf_0.2_EDM-1_11.txt', 'a_100s_200her_0.4__maf_0.2_EDM-1_05.txt', 'a_100s_200her_0.4__maf_0.2_EDM-1_01.txt', 'a_100s_200her_0.4__maf_0.2_EDM-1_15.txt', 'a_100s_200her_0.4__maf_0.2_EDM-1_29.txt', 'a_100s_200her_0.4__maf_0.2_EDM-1_28.txt', 'a_100s_200her_0.4__maf_0.2_EDM-1_14.txt', 'a_100s_200her_0.4__maf_0.2_EDM-1_16.txt', 'a_100s_200her_0.4__maf_0.2_EDM-1_02.txt', 'a_100s_200her_0.4__maf_0.2_EDM-1_03.txt', 'a_100s_200her_0.4__maf_0.2_EDM-1_17.txt', 'a_100s_200her_0.4__maf_0.2_EDM-1_26.txt', 'a_100s_200her_0.4__maf_0.2_EDM-1_27.txt', 'a_100s_200her_0.4__maf_0.2_EDM-1_19.txt', 'a_100s_200her_0.4__maf_0.2_EDM-1_25.txt', 'a_100s_200her_0.4__maf_0.2_EDM-1_30.txt', 'a_100s_200her_0.4__maf_0.2_EDM-1_24.txt', 'a_100s_200her_0.4__maf_0.2_EDM-1_18.txt', 'a_100s_200her_0.4__maf_0.2_EDM-1_20.txt', 'a_100s_200her_0.4__maf_0.2_EDM-1_08.txt', 'a_100s_200her_0.4__maf_0.2_EDM-1_09.txt', 'a_100s_200her_0.4__maf_0.2_EDM-1_21.txt', 'a_100s_200her_0.4__maf_0.2_EDM-1_23.txt', 'a_100s_200her_0.4__maf_0.2_EDM-1_22.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-2', [], ['a_100s_200her_0.4__maf_0.2_EDM-2_21.txt', 'a_100s_200her_0.4__maf_0.2_EDM-2_09.txt', 'a_100s_200her_0.4__maf_0.2_EDM-2_08.txt', 'a_100s_200her_0.4__maf_0.2_EDM-2_20.txt', 'a_100s_200her_0.4__maf_0.2_EDM-2_22.txt', 'a_100s_200her_0.4__maf_0.2_EDM-2_23.txt', 'a_100s_200her_0.4__maf_0.2_EDM-2_27.txt', 'a_100s_200her_0.4__maf_0.2_EDM-2_26.txt', 'a_100s_200her_0.4__maf_0.2_EDM-2_18.txt', 'a_100s_200her_0.4__maf_0.2_EDM-2_24.txt', 'a_100s_200her_0.4__maf_0.2_EDM-2_30.txt', 'a_100s_200her_0.4__maf_0.2_EDM-2_25.txt', 'a_100s_200her_0.4__maf_0.2_EDM-2_19.txt', 'a_100s_200her_0.4__maf_0.2_EDM-2_14.txt', 'a_100s_200her_0.4__maf_0.2_EDM-2_28.txt', 'a_100s_200her_0.4__maf_0.2_EDM-2_29.txt', 'a_100s_200her_0.4__maf_0.2_EDM-2_15.txt', 'a_100s_200her_0.4__maf_0.2_EDM-2_01.txt', 'a_100s_200her_0.4__maf_0.2_EDM-2_17.txt', 'a_100s_200her_0.4__maf_0.2_EDM-2_03.txt', 'a_100s_200her_0.4__maf_0.2_EDM-2_02.txt', 'a_100s_200her_0.4__maf_0.2_EDM-2_16.txt', 'a_100s_200her_0.4__maf_0.2_EDM-2_12.txt', 'a_100s_200her_0.4__maf_0.2_EDM-2_06.txt', 'a_100s_200her_0.4__maf_0.2_EDM-2_07.txt', 'a_100s_200her_0.4__maf_0.2_EDM-2_13.txt', 'a_100s_200her_0.4__maf_0.2_EDM-2_05.txt', 'a_100s_200her_0.4__maf_0.2_EDM-2_11.txt', 'a_100s_200her_0.4__maf_0.2_EDM-2_10.txt', 'a_100s_200her_0.4__maf_0.2_EDM-2_04.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2', ['a_100s_200her_0.05__maf_0.2_EDM-1', 'a_100s_200her_0.05__maf_0.2_EDM-2'], []), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-1', [], ['a_100s_200her_0.05__maf_0.2_EDM-1_22.txt', 'a_100s_200her_0.05__maf_0.2_EDM-1_23.txt', 'a_100s_200her_0.05__maf_0.2_EDM-1_09.txt', 'a_100s_200her_0.05__maf_0.2_EDM-1_21.txt', 'a_100s_200her_0.05__maf_0.2_EDM-1_20.txt', 'a_100s_200her_0.05__maf_0.2_EDM-1_08.txt', 'a_100s_200her_0.05__maf_0.2_EDM-1_24.txt', 'a_100s_200her_0.05__maf_0.2_EDM-1_30.txt', 'a_100s_200her_0.05__maf_0.2_EDM-1_18.txt', 'a_100s_200her_0.05__maf_0.2_EDM-1_19.txt', 'a_100s_200her_0.05__maf_0.2_EDM-1_25.txt', 'a_100s_200her_0.05__maf_0.2_EDM-1_27.txt', 'a_100s_200her_0.05__maf_0.2_EDM-1_26.txt', 'a_100s_200her_0.05__maf_0.2_EDM-1_17.txt', 'a_100s_200her_0.05__maf_0.2_EDM-1_03.txt', 'a_100s_200her_0.05__maf_0.2_EDM-1_02.txt', 'a_100s_200her_0.05__maf_0.2_EDM-1_16.txt', 'a_100s_200her_0.05__maf_0.2_EDM-1_28.txt', 'a_100s_200her_0.05__maf_0.2_EDM-1_14.txt', 'a_100s_200her_0.05__maf_0.2_EDM-1_15.txt', 'a_100s_200her_0.05__maf_0.2_EDM-1_01.txt', 'a_100s_200her_0.05__maf_0.2_EDM-1_29.txt', 'a_100s_200her_0.05__maf_0.2_EDM-1_05.txt', 'a_100s_200her_0.05__maf_0.2_EDM-1_11.txt', 'a_100s_200her_0.05__maf_0.2_EDM-1_10.txt', 'a_100s_200her_0.05__maf_0.2_EDM-1_04.txt', 'a_100s_200her_0.05__maf_0.2_EDM-1_12.txt', 'a_100s_200her_0.05__maf_0.2_EDM-1_06.txt', 'a_100s_200her_0.05__maf_0.2_EDM-1_07.txt', 'a_100s_200her_0.05__maf_0.2_EDM-1_13.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-2', [], ['a_100s_200her_0.05__maf_0.2_EDM-2_04.txt', 'a_100s_200her_0.05__maf_0.2_EDM-2_10.txt', 'a_100s_200her_0.05__maf_0.2_EDM-2_11.txt', 'a_100s_200her_0.05__maf_0.2_EDM-2_05.txt', 'a_100s_200her_0.05__maf_0.2_EDM-2_13.txt', 'a_100s_200her_0.05__maf_0.2_EDM-2_07.txt', 'a_100s_200her_0.05__maf_0.2_EDM-2_06.txt', 'a_100s_200her_0.05__maf_0.2_EDM-2_12.txt', 'a_100s_200her_0.05__maf_0.2_EDM-2_16.txt', 'a_100s_200her_0.05__maf_0.2_EDM-2_02.txt', 'a_100s_200her_0.05__maf_0.2_EDM-2_03.txt', 'a_100s_200her_0.05__maf_0.2_EDM-2_17.txt', 'a_100s_200her_0.05__maf_0.2_EDM-2_29.txt', 'a_100s_200her_0.05__maf_0.2_EDM-2_01.txt', 'a_100s_200her_0.05__maf_0.2_EDM-2_15.txt', 'a_100s_200her_0.05__maf_0.2_EDM-2_14.txt', 'a_100s_200her_0.05__maf_0.2_EDM-2_28.txt', 'a_100s_200her_0.05__maf_0.2_EDM-2_25.txt', 'a_100s_200her_0.05__maf_0.2_EDM-2_19.txt', 'a_100s_200her_0.05__maf_0.2_EDM-2_18.txt', 'a_100s_200her_0.05__maf_0.2_EDM-2_30.txt', 'a_100s_200her_0.05__maf_0.2_EDM-2_24.txt', 'a_100s_200her_0.05__maf_0.2_EDM-2_26.txt', 'a_100s_200her_0.05__maf_0.2_EDM-2_27.txt', 'a_100s_200her_0.05__maf_0.2_EDM-2_23.txt', 'a_100s_200her_0.05__maf_0.2_EDM-2_22.txt', 'a_100s_200her_0.05__maf_0.2_EDM-2_08.txt', 'a_100s_200her_0.05__maf_0.2_EDM-2_20.txt', 'a_100s_200her_0.05__maf_0.2_EDM-2_21.txt', 'a_100s_200her_0.05__maf_0.2_EDM-2_09.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2', ['a_100s_200her_0.2__maf_0.2_EDM-1', 'a_100s_200her_0.2__maf_0.2_EDM-2'], []), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-1', [], ['a_100s_200her_0.2__maf_0.2_EDM-1_17.txt', 'a_100s_200her_0.2__maf_0.2_EDM-1_03.txt', 'a_100s_200her_0.2__maf_0.2_EDM-1_02.txt', 'a_100s_200her_0.2__maf_0.2_EDM-1_16.txt', 'a_100s_200her_0.2__maf_0.2_EDM-1_14.txt', 'a_100s_200her_0.2__maf_0.2_EDM-1_28.txt', 'a_100s_200her_0.2__maf_0.2_EDM-1_29.txt', 'a_100s_200her_0.2__maf_0.2_EDM-1_15.txt', 'a_100s_200her_0.2__maf_0.2_EDM-1_01.txt', 'a_100s_200her_0.2__maf_0.2_EDM-1_05.txt', 'a_100s_200her_0.2__maf_0.2_EDM-1_11.txt', 'a_100s_200her_0.2__maf_0.2_EDM-1_10.txt', 'a_100s_200her_0.2__maf_0.2_EDM-1_04.txt', 'a_100s_200her_0.2__maf_0.2_EDM-1_12.txt', 'a_100s_200her_0.2__maf_0.2_EDM-1_06.txt', 'a_100s_200her_0.2__maf_0.2_EDM-1_07.txt', 'a_100s_200her_0.2__maf_0.2_EDM-1_13.txt', 'a_100s_200her_0.2__maf_0.2_EDM-1_22.txt', 'a_100s_200her_0.2__maf_0.2_EDM-1_23.txt', 'a_100s_200her_0.2__maf_0.2_EDM-1_21.txt', 'a_100s_200her_0.2__maf_0.2_EDM-1_09.txt', 'a_100s_200her_0.2__maf_0.2_EDM-1_08.txt', 'a_100s_200her_0.2__maf_0.2_EDM-1_20.txt', 'a_100s_200her_0.2__maf_0.2_EDM-1_18.txt', 'a_100s_200her_0.2__maf_0.2_EDM-1_24.txt', 'a_100s_200her_0.2__maf_0.2_EDM-1_30.txt', 'a_100s_200her_0.2__maf_0.2_EDM-1_25.txt', 'a_100s_200her_0.2__maf_0.2_EDM-1_19.txt', 'a_100s_200her_0.2__maf_0.2_EDM-1_27.txt', 'a_100s_200her_0.2__maf_0.2_EDM-1_26.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-2', [], ['a_100s_200her_0.2__maf_0.2_EDM-2_19.txt', 'a_100s_200her_0.2__maf_0.2_EDM-2_25.txt', 'a_100s_200her_0.2__maf_0.2_EDM-2_30.txt', 'a_100s_200her_0.2__maf_0.2_EDM-2_24.txt', 'a_100s_200her_0.2__maf_0.2_EDM-2_18.txt', 'a_100s_200her_0.2__maf_0.2_EDM-2_26.txt', 'a_100s_200her_0.2__maf_0.2_EDM-2_27.txt', 'a_100s_200her_0.2__maf_0.2_EDM-2_23.txt', 'a_100s_200her_0.2__maf_0.2_EDM-2_22.txt', 'a_100s_200her_0.2__maf_0.2_EDM-2_20.txt', 'a_100s_200her_0.2__maf_0.2_EDM-2_08.txt', 'a_100s_200her_0.2__maf_0.2_EDM-2_09.txt', 'a_100s_200her_0.2__maf_0.2_EDM-2_21.txt', 'a_100s_200her_0.2__maf_0.2_EDM-2_04.txt', 'a_100s_200her_0.2__maf_0.2_EDM-2_10.txt', 'a_100s_200her_0.2__maf_0.2_EDM-2_11.txt', 'a_100s_200her_0.2__maf_0.2_EDM-2_05.txt', 'a_100s_200her_0.2__maf_0.2_EDM-2_13.txt', 'a_100s_200her_0.2__maf_0.2_EDM-2_07.txt', 'a_100s_200her_0.2__maf_0.2_EDM-2_06.txt', 'a_100s_200her_0.2__maf_0.2_EDM-2_12.txt', 'a_100s_200her_0.2__maf_0.2_EDM-2_16.txt', 'a_100s_200her_0.2__maf_0.2_EDM-2_02.txt', 'a_100s_200her_0.2__maf_0.2_EDM-2_03.txt', 'a_100s_200her_0.2__maf_0.2_EDM-2_17.txt', 'a_100s_200her_0.2__maf_0.2_EDM-2_01.txt', 'a_100s_200her_0.2__maf_0.2_EDM-2_15.txt', 'a_100s_200her_0.2__maf_0.2_EDM-2_29.txt', 'a_100s_200her_0.2__maf_0.2_EDM-2_28.txt', 'a_100s_200her_0.2__maf_0.2_EDM-2_14.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800', ['her_0.1__maf_0.2', 'her_0.4__maf_0.2', 'her_0.05__maf_0.2', 'her_0.2__maf_0.2'], []), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2', ['a_100s_800her_0.1__maf_0.2_EDM-2', 'a_100s_800her_0.1__maf_0.2_EDM-1'], []), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-2', [], ['a_100s_800her_0.1__maf_0.2_EDM-2_16.txt', 'a_100s_800her_0.1__maf_0.2_EDM-2_02.txt', 'a_100s_800her_0.1__maf_0.2_EDM-2_03.txt', 'a_100s_800her_0.1__maf_0.2_EDM-2_17.txt', 'a_100s_800her_0.1__maf_0.2_EDM-2_29.txt', 'a_100s_800her_0.1__maf_0.2_EDM-2_01.txt', 'a_100s_800her_0.1__maf_0.2_EDM-2_15.txt', 'a_100s_800her_0.1__maf_0.2_EDM-2_14.txt', 'a_100s_800her_0.1__maf_0.2_EDM-2_28.txt', 'a_100s_800her_0.1__maf_0.2_EDM-2_04.txt', 'a_100s_800her_0.1__maf_0.2_EDM-2_10.txt', 'a_100s_800her_0.1__maf_0.2_EDM-2_11.txt', 'a_100s_800her_0.1__maf_0.2_EDM-2_05.txt', 'a_100s_800her_0.1__maf_0.2_EDM-2_13.txt', 'a_100s_800her_0.1__maf_0.2_EDM-2_07.txt', 'a_100s_800her_0.1__maf_0.2_EDM-2_06.txt', 'a_100s_800her_0.1__maf_0.2_EDM-2_12.txt', 'a_100s_800her_0.1__maf_0.2_EDM-2_23.txt', 'a_100s_800her_0.1__maf_0.2_EDM-2_22.txt', 'a_100s_800her_0.1__maf_0.2_EDM-2_08.txt', 'a_100s_800her_0.1__maf_0.2_EDM-2_20.txt', 'a_100s_800her_0.1__maf_0.2_EDM-2_21.txt', 'a_100s_800her_0.1__maf_0.2_EDM-2_09.txt', 'a_100s_800her_0.1__maf_0.2_EDM-2_25.txt', 'a_100s_800her_0.1__maf_0.2_EDM-2_19.txt', 'a_100s_800her_0.1__maf_0.2_EDM-2_18.txt', 'a_100s_800her_0.1__maf_0.2_EDM-2_30.txt', 'a_100s_800her_0.1__maf_0.2_EDM-2_24.txt', 'a_100s_800her_0.1__maf_0.2_EDM-2_26.txt', 'a_100s_800her_0.1__maf_0.2_EDM-2_27.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-1', [], ['a_100s_800her_0.1__maf_0.2_EDM-1_24.txt', 'a_100s_800her_0.1__maf_0.2_EDM-1_30.txt', 'a_100s_800her_0.1__maf_0.2_EDM-1_18.txt', 'a_100s_800her_0.1__maf_0.2_EDM-1_19.txt', 'a_100s_800her_0.1__maf_0.2_EDM-1_25.txt', 'a_100s_800her_0.1__maf_0.2_EDM-1_27.txt', 'a_100s_800her_0.1__maf_0.2_EDM-1_26.txt', 'a_100s_800her_0.1__maf_0.2_EDM-1_22.txt', 'a_100s_800her_0.1__maf_0.2_EDM-1_23.txt', 'a_100s_800her_0.1__maf_0.2_EDM-1_09.txt', 'a_100s_800her_0.1__maf_0.2_EDM-1_21.txt', 'a_100s_800her_0.1__maf_0.2_EDM-1_20.txt', 'a_100s_800her_0.1__maf_0.2_EDM-1_08.txt', 'a_100s_800her_0.1__maf_0.2_EDM-1_05.txt', 'a_100s_800her_0.1__maf_0.2_EDM-1_11.txt', 'a_100s_800her_0.1__maf_0.2_EDM-1_10.txt', 'a_100s_800her_0.1__maf_0.2_EDM-1_04.txt', 'a_100s_800her_0.1__maf_0.2_EDM-1_12.txt', 'a_100s_800her_0.1__maf_0.2_EDM-1_06.txt', 'a_100s_800her_0.1__maf_0.2_EDM-1_07.txt', 'a_100s_800her_0.1__maf_0.2_EDM-1_13.txt', 'a_100s_800her_0.1__maf_0.2_EDM-1_17.txt', 'a_100s_800her_0.1__maf_0.2_EDM-1_03.txt', 'a_100s_800her_0.1__maf_0.2_EDM-1_02.txt', 'a_100s_800her_0.1__maf_0.2_EDM-1_16.txt', 'a_100s_800her_0.1__maf_0.2_EDM-1_28.txt', 'a_100s_800her_0.1__maf_0.2_EDM-1_14.txt', 'a_100s_800her_0.1__maf_0.2_EDM-1_15.txt', 'a_100s_800her_0.1__maf_0.2_EDM-1_01.txt', 'a_100s_800her_0.1__maf_0.2_EDM-1_29.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2', ['a_100s_800her_0.4__maf_0.2_EDM-2', 'a_100s_800her_0.4__maf_0.2_EDM-1'], []), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-2', [], ['a_100s_800her_0.4__maf_0.2_EDM-2_23.txt', 'a_100s_800her_0.4__maf_0.2_EDM-2_22.txt', 'a_100s_800her_0.4__maf_0.2_EDM-2_20.txt', 'a_100s_800her_0.4__maf_0.2_EDM-2_08.txt', 'a_100s_800her_0.4__maf_0.2_EDM-2_09.txt', 'a_100s_800her_0.4__maf_0.2_EDM-2_21.txt', 'a_100s_800her_0.4__maf_0.2_EDM-2_19.txt', 'a_100s_800her_0.4__maf_0.2_EDM-2_25.txt', 'a_100s_800her_0.4__maf_0.2_EDM-2_30.txt', 'a_100s_800her_0.4__maf_0.2_EDM-2_24.txt', 'a_100s_800her_0.4__maf_0.2_EDM-2_18.txt', 'a_100s_800her_0.4__maf_0.2_EDM-2_26.txt', 'a_100s_800her_0.4__maf_0.2_EDM-2_27.txt', 'a_100s_800her_0.4__maf_0.2_EDM-2_16.txt', 'a_100s_800her_0.4__maf_0.2_EDM-2_02.txt', 'a_100s_800her_0.4__maf_0.2_EDM-2_03.txt', 'a_100s_800her_0.4__maf_0.2_EDM-2_17.txt', 'a_100s_800her_0.4__maf_0.2_EDM-2_01.txt', 'a_100s_800her_0.4__maf_0.2_EDM-2_15.txt', 'a_100s_800her_0.4__maf_0.2_EDM-2_29.txt', 'a_100s_800her_0.4__maf_0.2_EDM-2_28.txt', 'a_100s_800her_0.4__maf_0.2_EDM-2_14.txt', 'a_100s_800her_0.4__maf_0.2_EDM-2_04.txt', 'a_100s_800her_0.4__maf_0.2_EDM-2_10.txt', 'a_100s_800her_0.4__maf_0.2_EDM-2_11.txt', 'a_100s_800her_0.4__maf_0.2_EDM-2_05.txt', 'a_100s_800her_0.4__maf_0.2_EDM-2_13.txt', 'a_100s_800her_0.4__maf_0.2_EDM-2_07.txt', 'a_100s_800her_0.4__maf_0.2_EDM-2_06.txt', 'a_100s_800her_0.4__maf_0.2_EDM-2_12.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-1', [], ['a_100s_800her_0.4__maf_0.2_EDM-1_05.txt', 'a_100s_800her_0.4__maf_0.2_EDM-1_11.txt', 'a_100s_800her_0.4__maf_0.2_EDM-1_10.txt', 'a_100s_800her_0.4__maf_0.2_EDM-1_04.txt', 'a_100s_800her_0.4__maf_0.2_EDM-1_12.txt', 'a_100s_800her_0.4__maf_0.2_EDM-1_06.txt', 'a_100s_800her_0.4__maf_0.2_EDM-1_07.txt', 'a_100s_800her_0.4__maf_0.2_EDM-1_13.txt', 'a_100s_800her_0.4__maf_0.2_EDM-1_17.txt', 'a_100s_800her_0.4__maf_0.2_EDM-1_03.txt', 'a_100s_800her_0.4__maf_0.2_EDM-1_02.txt', 'a_100s_800her_0.4__maf_0.2_EDM-1_16.txt', 'a_100s_800her_0.4__maf_0.2_EDM-1_14.txt', 'a_100s_800her_0.4__maf_0.2_EDM-1_28.txt', 'a_100s_800her_0.4__maf_0.2_EDM-1_29.txt', 'a_100s_800her_0.4__maf_0.2_EDM-1_15.txt', 'a_100s_800her_0.4__maf_0.2_EDM-1_01.txt', 'a_100s_800her_0.4__maf_0.2_EDM-1_18.txt', 'a_100s_800her_0.4__maf_0.2_EDM-1_24.txt', 'a_100s_800her_0.4__maf_0.2_EDM-1_30.txt', 'a_100s_800her_0.4__maf_0.2_EDM-1_25.txt', 'a_100s_800her_0.4__maf_0.2_EDM-1_19.txt', 'a_100s_800her_0.4__maf_0.2_EDM-1_27.txt', 'a_100s_800her_0.4__maf_0.2_EDM-1_26.txt', 'a_100s_800her_0.4__maf_0.2_EDM-1_22.txt', 'a_100s_800her_0.4__maf_0.2_EDM-1_23.txt', 'a_100s_800her_0.4__maf_0.2_EDM-1_21.txt', 'a_100s_800her_0.4__maf_0.2_EDM-1_09.txt', 'a_100s_800her_0.4__maf_0.2_EDM-1_08.txt', 'a_100s_800her_0.4__maf_0.2_EDM-1_20.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2', ['a_100s_800her_0.05__maf_0.2_EDM-2', 'a_100s_800her_0.05__maf_0.2_EDM-1'], []), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-2', [], ['a_100s_800her_0.05__maf_0.2_EDM-2_27.txt', 'a_100s_800her_0.05__maf_0.2_EDM-2_26.txt', 'a_100s_800her_0.05__maf_0.2_EDM-2_30.txt', 'a_100s_800her_0.05__maf_0.2_EDM-2_24.txt', 'a_100s_800her_0.05__maf_0.2_EDM-2_18.txt', 'a_100s_800her_0.05__maf_0.2_EDM-2_19.txt', 'a_100s_800her_0.05__maf_0.2_EDM-2_25.txt', 'a_100s_800her_0.05__maf_0.2_EDM-2_09.txt', 'a_100s_800her_0.05__maf_0.2_EDM-2_21.txt', 'a_100s_800her_0.05__maf_0.2_EDM-2_20.txt', 'a_100s_800her_0.05__maf_0.2_EDM-2_08.txt', 'a_100s_800her_0.05__maf_0.2_EDM-2_22.txt', 'a_100s_800her_0.05__maf_0.2_EDM-2_23.txt', 'a_100s_800her_0.05__maf_0.2_EDM-2_06.txt', 'a_100s_800her_0.05__maf_0.2_EDM-2_12.txt', 'a_100s_800her_0.05__maf_0.2_EDM-2_13.txt', 'a_100s_800her_0.05__maf_0.2_EDM-2_07.txt', 'a_100s_800her_0.05__maf_0.2_EDM-2_11.txt', 'a_100s_800her_0.05__maf_0.2_EDM-2_05.txt', 'a_100s_800her_0.05__maf_0.2_EDM-2_04.txt', 'a_100s_800her_0.05__maf_0.2_EDM-2_10.txt', 'a_100s_800her_0.05__maf_0.2_EDM-2_28.txt', 'a_100s_800her_0.05__maf_0.2_EDM-2_14.txt', 'a_100s_800her_0.05__maf_0.2_EDM-2_01.txt', 'a_100s_800her_0.05__maf_0.2_EDM-2_15.txt', 'a_100s_800her_0.05__maf_0.2_EDM-2_29.txt', 'a_100s_800her_0.05__maf_0.2_EDM-2_03.txt', 'a_100s_800her_0.05__maf_0.2_EDM-2_17.txt', 'a_100s_800her_0.05__maf_0.2_EDM-2_16.txt', 'a_100s_800her_0.05__maf_0.2_EDM-2_02.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-1', [], ['a_100s_800her_0.05__maf_0.2_EDM-1_29.txt', 'a_100s_800her_0.05__maf_0.2_EDM-1_15.txt', 'a_100s_800her_0.05__maf_0.2_EDM-1_01.txt', 'a_100s_800her_0.05__maf_0.2_EDM-1_14.txt', 'a_100s_800her_0.05__maf_0.2_EDM-1_28.txt', 'a_100s_800her_0.05__maf_0.2_EDM-1_02.txt', 'a_100s_800her_0.05__maf_0.2_EDM-1_16.txt', 'a_100s_800her_0.05__maf_0.2_EDM-1_17.txt', 'a_100s_800her_0.05__maf_0.2_EDM-1_03.txt', 'a_100s_800her_0.05__maf_0.2_EDM-1_07.txt', 'a_100s_800her_0.05__maf_0.2_EDM-1_13.txt', 'a_100s_800her_0.05__maf_0.2_EDM-1_12.txt', 'a_100s_800her_0.05__maf_0.2_EDM-1_06.txt', 'a_100s_800her_0.05__maf_0.2_EDM-1_10.txt', 'a_100s_800her_0.05__maf_0.2_EDM-1_04.txt', 'a_100s_800her_0.05__maf_0.2_EDM-1_05.txt', 'a_100s_800her_0.05__maf_0.2_EDM-1_11.txt', 'a_100s_800her_0.05__maf_0.2_EDM-1_08.txt', 'a_100s_800her_0.05__maf_0.2_EDM-1_20.txt', 'a_100s_800her_0.05__maf_0.2_EDM-1_21.txt', 'a_100s_800her_0.05__maf_0.2_EDM-1_09.txt', 'a_100s_800her_0.05__maf_0.2_EDM-1_23.txt', 'a_100s_800her_0.05__maf_0.2_EDM-1_22.txt', 'a_100s_800her_0.05__maf_0.2_EDM-1_26.txt', 'a_100s_800her_0.05__maf_0.2_EDM-1_27.txt', 'a_100s_800her_0.05__maf_0.2_EDM-1_25.txt', 'a_100s_800her_0.05__maf_0.2_EDM-1_19.txt', 'a_100s_800her_0.05__maf_0.2_EDM-1_18.txt', 'a_100s_800her_0.05__maf_0.2_EDM-1_24.txt', 'a_100s_800her_0.05__maf_0.2_EDM-1_30.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2', ['a_100s_800her_0.2__maf_0.2_EDM-2', 'a_100s_800her_0.2__maf_0.2_EDM-1'], []), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-2', [], ['a_100s_800her_0.2__maf_0.2_EDM-2_27.txt', 'a_100s_800her_0.2__maf_0.2_EDM-2_26.txt', 'a_100s_800her_0.2__maf_0.2_EDM-2_18.txt', 'a_100s_800her_0.2__maf_0.2_EDM-2_24.txt', 'a_100s_800her_0.2__maf_0.2_EDM-2_30.txt', 'a_100s_800her_0.2__maf_0.2_EDM-2_25.txt', 'a_100s_800her_0.2__maf_0.2_EDM-2_19.txt', 'a_100s_800her_0.2__maf_0.2_EDM-2_21.txt', 'a_100s_800her_0.2__maf_0.2_EDM-2_09.txt', 'a_100s_800her_0.2__maf_0.2_EDM-2_08.txt', 'a_100s_800her_0.2__maf_0.2_EDM-2_20.txt', 'a_100s_800her_0.2__maf_0.2_EDM-2_22.txt', 'a_100s_800her_0.2__maf_0.2_EDM-2_23.txt', 'a_100s_800her_0.2__maf_0.2_EDM-2_12.txt', 'a_100s_800her_0.2__maf_0.2_EDM-2_06.txt', 'a_100s_800her_0.2__maf_0.2_EDM-2_07.txt', 'a_100s_800her_0.2__maf_0.2_EDM-2_13.txt', 'a_100s_800her_0.2__maf_0.2_EDM-2_05.txt', 'a_100s_800her_0.2__maf_0.2_EDM-2_11.txt', 'a_100s_800her_0.2__maf_0.2_EDM-2_10.txt', 'a_100s_800her_0.2__maf_0.2_EDM-2_04.txt', 'a_100s_800her_0.2__maf_0.2_EDM-2_14.txt', 'a_100s_800her_0.2__maf_0.2_EDM-2_28.txt', 'a_100s_800her_0.2__maf_0.2_EDM-2_29.txt', 'a_100s_800her_0.2__maf_0.2_EDM-2_15.txt', 'a_100s_800her_0.2__maf_0.2_EDM-2_01.txt', 'a_100s_800her_0.2__maf_0.2_EDM-2_17.txt', 'a_100s_800her_0.2__maf_0.2_EDM-2_03.txt', 'a_100s_800her_0.2__maf_0.2_EDM-2_02.txt', 'a_100s_800her_0.2__maf_0.2_EDM-2_16.txt']), ('../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-1', [], ['a_100s_800her_0.2__maf_0.2_EDM-1_01.txt', 'a_100s_800her_0.2__maf_0.2_EDM-1_15.txt', 'a_100s_800her_0.2__maf_0.2_EDM-1_29.txt', 'a_100s_800her_0.2__maf_0.2_EDM-1_28.txt', 'a_100s_800her_0.2__maf_0.2_EDM-1_14.txt', 'a_100s_800her_0.2__maf_0.2_EDM-1_16.txt', 'a_100s_800her_0.2__maf_0.2_EDM-1_02.txt', 'a_100s_800her_0.2__maf_0.2_EDM-1_03.txt', 'a_100s_800her_0.2__maf_0.2_EDM-1_17.txt', 'a_100s_800her_0.2__maf_0.2_EDM-1_13.txt', 'a_100s_800her_0.2__maf_0.2_EDM-1_07.txt', 'a_100s_800her_0.2__maf_0.2_EDM-1_06.txt', 'a_100s_800her_0.2__maf_0.2_EDM-1_12.txt', 'a_100s_800her_0.2__maf_0.2_EDM-1_04.txt', 'a_100s_800her_0.2__maf_0.2_EDM-1_10.txt', 'a_100s_800her_0.2__maf_0.2_EDM-1_11.txt', 'a_100s_800her_0.2__maf_0.2_EDM-1_05.txt', 'a_100s_800her_0.2__maf_0.2_EDM-1_20.txt', 'a_100s_800her_0.2__maf_0.2_EDM-1_08.txt', 'a_100s_800her_0.2__maf_0.2_EDM-1_09.txt', 'a_100s_800her_0.2__maf_0.2_EDM-1_21.txt', 'a_100s_800her_0.2__maf_0.2_EDM-1_23.txt', 'a_100s_800her_0.2__maf_0.2_EDM-1_22.txt', 'a_100s_800her_0.2__maf_0.2_EDM-1_26.txt', 'a_100s_800her_0.2__maf_0.2_EDM-1_27.txt', 'a_100s_800her_0.2__maf_0.2_EDM-1_19.txt', 'a_100s_800her_0.2__maf_0.2_EDM-1_25.txt', 'a_100s_800her_0.2__maf_0.2_EDM-1_30.txt', 'a_100s_800her_0.2__maf_0.2_EDM-1_24.txt', 'a_100s_800her_0.2__maf_0.2_EDM-1_18.txt'])]\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-2\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-2/a_20s_400her_0.1__maf_0.2_EDM-2_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-2/a_20s_400her_0.1__maf_0.2_EDM-2_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-2/a_20s_400her_0.1__maf_0.2_EDM-2_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-2/a_20s_400her_0.1__maf_0.2_EDM-2_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-2/a_20s_400her_0.1__maf_0.2_EDM-2_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-2/a_20s_400her_0.1__maf_0.2_EDM-2_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-2/a_20s_400her_0.1__maf_0.2_EDM-2_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-2/a_20s_400her_0.1__maf_0.2_EDM-2_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-2/a_20s_400her_0.1__maf_0.2_EDM-2_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-2/a_20s_400her_0.1__maf_0.2_EDM-2_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-2/a_20s_400her_0.1__maf_0.2_EDM-2_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-2/a_20s_400her_0.1__maf_0.2_EDM-2_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-2/a_20s_400her_0.1__maf_0.2_EDM-2_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-2/a_20s_400her_0.1__maf_0.2_EDM-2_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-2/a_20s_400her_0.1__maf_0.2_EDM-2_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-2/a_20s_400her_0.1__maf_0.2_EDM-2_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-2/a_20s_400her_0.1__maf_0.2_EDM-2_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-2/a_20s_400her_0.1__maf_0.2_EDM-2_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-2/a_20s_400her_0.1__maf_0.2_EDM-2_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-2/a_20s_400her_0.1__maf_0.2_EDM-2_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-2/a_20s_400her_0.1__maf_0.2_EDM-2_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-2/a_20s_400her_0.1__maf_0.2_EDM-2_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-2/a_20s_400her_0.1__maf_0.2_EDM-2_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-2/a_20s_400her_0.1__maf_0.2_EDM-2_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-2/a_20s_400her_0.1__maf_0.2_EDM-2_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-2/a_20s_400her_0.1__maf_0.2_EDM-2_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-2/a_20s_400her_0.1__maf_0.2_EDM-2_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-2/a_20s_400her_0.1__maf_0.2_EDM-2_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-2/a_20s_400her_0.1__maf_0.2_EDM-2_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-2/a_20s_400her_0.1__maf_0.2_EDM-2_27.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-1\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-1/a_20s_400her_0.1__maf_0.2_EDM-1_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-1/a_20s_400her_0.1__maf_0.2_EDM-1_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-1/a_20s_400her_0.1__maf_0.2_EDM-1_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-1/a_20s_400her_0.1__maf_0.2_EDM-1_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-1/a_20s_400her_0.1__maf_0.2_EDM-1_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-1/a_20s_400her_0.1__maf_0.2_EDM-1_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-1/a_20s_400her_0.1__maf_0.2_EDM-1_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-1/a_20s_400her_0.1__maf_0.2_EDM-1_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-1/a_20s_400her_0.1__maf_0.2_EDM-1_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-1/a_20s_400her_0.1__maf_0.2_EDM-1_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-1/a_20s_400her_0.1__maf_0.2_EDM-1_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-1/a_20s_400her_0.1__maf_0.2_EDM-1_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-1/a_20s_400her_0.1__maf_0.2_EDM-1_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-1/a_20s_400her_0.1__maf_0.2_EDM-1_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-1/a_20s_400her_0.1__maf_0.2_EDM-1_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-1/a_20s_400her_0.1__maf_0.2_EDM-1_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-1/a_20s_400her_0.1__maf_0.2_EDM-1_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-1/a_20s_400her_0.1__maf_0.2_EDM-1_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-1/a_20s_400her_0.1__maf_0.2_EDM-1_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-1/a_20s_400her_0.1__maf_0.2_EDM-1_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-1/a_20s_400her_0.1__maf_0.2_EDM-1_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-1/a_20s_400her_0.1__maf_0.2_EDM-1_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-1/a_20s_400her_0.1__maf_0.2_EDM-1_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-1/a_20s_400her_0.1__maf_0.2_EDM-1_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-1/a_20s_400her_0.1__maf_0.2_EDM-1_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-1/a_20s_400her_0.1__maf_0.2_EDM-1_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-1/a_20s_400her_0.1__maf_0.2_EDM-1_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-1/a_20s_400her_0.1__maf_0.2_EDM-1_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-1/a_20s_400her_0.1__maf_0.2_EDM-1_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.1__maf_0.2/a_20s_400her_0.1__maf_0.2_EDM-1/a_20s_400her_0.1__maf_0.2_EDM-1_01.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-2\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-2/a_20s_400her_0.4__maf_0.2_EDM-2_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-2/a_20s_400her_0.4__maf_0.2_EDM-2_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-2/a_20s_400her_0.4__maf_0.2_EDM-2_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-2/a_20s_400her_0.4__maf_0.2_EDM-2_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-2/a_20s_400her_0.4__maf_0.2_EDM-2_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-2/a_20s_400her_0.4__maf_0.2_EDM-2_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-2/a_20s_400her_0.4__maf_0.2_EDM-2_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-2/a_20s_400her_0.4__maf_0.2_EDM-2_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-2/a_20s_400her_0.4__maf_0.2_EDM-2_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-2/a_20s_400her_0.4__maf_0.2_EDM-2_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-2/a_20s_400her_0.4__maf_0.2_EDM-2_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-2/a_20s_400her_0.4__maf_0.2_EDM-2_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-2/a_20s_400her_0.4__maf_0.2_EDM-2_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-2/a_20s_400her_0.4__maf_0.2_EDM-2_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-2/a_20s_400her_0.4__maf_0.2_EDM-2_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-2/a_20s_400her_0.4__maf_0.2_EDM-2_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-2/a_20s_400her_0.4__maf_0.2_EDM-2_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-2/a_20s_400her_0.4__maf_0.2_EDM-2_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-2/a_20s_400her_0.4__maf_0.2_EDM-2_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-2/a_20s_400her_0.4__maf_0.2_EDM-2_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-2/a_20s_400her_0.4__maf_0.2_EDM-2_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-2/a_20s_400her_0.4__maf_0.2_EDM-2_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-2/a_20s_400her_0.4__maf_0.2_EDM-2_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-2/a_20s_400her_0.4__maf_0.2_EDM-2_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-2/a_20s_400her_0.4__maf_0.2_EDM-2_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-2/a_20s_400her_0.4__maf_0.2_EDM-2_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-2/a_20s_400her_0.4__maf_0.2_EDM-2_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-2/a_20s_400her_0.4__maf_0.2_EDM-2_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-2/a_20s_400her_0.4__maf_0.2_EDM-2_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-2/a_20s_400her_0.4__maf_0.2_EDM-2_12.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-1\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-1/a_20s_400her_0.4__maf_0.2_EDM-1_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-1/a_20s_400her_0.4__maf_0.2_EDM-1_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-1/a_20s_400her_0.4__maf_0.2_EDM-1_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-1/a_20s_400her_0.4__maf_0.2_EDM-1_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-1/a_20s_400her_0.4__maf_0.2_EDM-1_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-1/a_20s_400her_0.4__maf_0.2_EDM-1_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-1/a_20s_400her_0.4__maf_0.2_EDM-1_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-1/a_20s_400her_0.4__maf_0.2_EDM-1_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-1/a_20s_400her_0.4__maf_0.2_EDM-1_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-1/a_20s_400her_0.4__maf_0.2_EDM-1_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-1/a_20s_400her_0.4__maf_0.2_EDM-1_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-1/a_20s_400her_0.4__maf_0.2_EDM-1_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-1/a_20s_400her_0.4__maf_0.2_EDM-1_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-1/a_20s_400her_0.4__maf_0.2_EDM-1_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-1/a_20s_400her_0.4__maf_0.2_EDM-1_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-1/a_20s_400her_0.4__maf_0.2_EDM-1_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-1/a_20s_400her_0.4__maf_0.2_EDM-1_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-1/a_20s_400her_0.4__maf_0.2_EDM-1_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-1/a_20s_400her_0.4__maf_0.2_EDM-1_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-1/a_20s_400her_0.4__maf_0.2_EDM-1_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-1/a_20s_400her_0.4__maf_0.2_EDM-1_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-1/a_20s_400her_0.4__maf_0.2_EDM-1_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-1/a_20s_400her_0.4__maf_0.2_EDM-1_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-1/a_20s_400her_0.4__maf_0.2_EDM-1_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-1/a_20s_400her_0.4__maf_0.2_EDM-1_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-1/a_20s_400her_0.4__maf_0.2_EDM-1_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-1/a_20s_400her_0.4__maf_0.2_EDM-1_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-1/a_20s_400her_0.4__maf_0.2_EDM-1_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-1/a_20s_400her_0.4__maf_0.2_EDM-1_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.4__maf_0.2/a_20s_400her_0.4__maf_0.2_EDM-1/a_20s_400her_0.4__maf_0.2_EDM-1_08.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-2\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-2/a_20s_400her_0.05__maf_0.2_EDM-2_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-2/a_20s_400her_0.05__maf_0.2_EDM-2_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-2/a_20s_400her_0.05__maf_0.2_EDM-2_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-2/a_20s_400her_0.05__maf_0.2_EDM-2_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-2/a_20s_400her_0.05__maf_0.2_EDM-2_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-2/a_20s_400her_0.05__maf_0.2_EDM-2_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-2/a_20s_400her_0.05__maf_0.2_EDM-2_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-2/a_20s_400her_0.05__maf_0.2_EDM-2_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-2/a_20s_400her_0.05__maf_0.2_EDM-2_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-2/a_20s_400her_0.05__maf_0.2_EDM-2_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-2/a_20s_400her_0.05__maf_0.2_EDM-2_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-2/a_20s_400her_0.05__maf_0.2_EDM-2_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-2/a_20s_400her_0.05__maf_0.2_EDM-2_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-2/a_20s_400her_0.05__maf_0.2_EDM-2_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-2/a_20s_400her_0.05__maf_0.2_EDM-2_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-2/a_20s_400her_0.05__maf_0.2_EDM-2_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-2/a_20s_400her_0.05__maf_0.2_EDM-2_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-2/a_20s_400her_0.05__maf_0.2_EDM-2_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-2/a_20s_400her_0.05__maf_0.2_EDM-2_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-2/a_20s_400her_0.05__maf_0.2_EDM-2_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-2/a_20s_400her_0.05__maf_0.2_EDM-2_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-2/a_20s_400her_0.05__maf_0.2_EDM-2_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-2/a_20s_400her_0.05__maf_0.2_EDM-2_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-2/a_20s_400her_0.05__maf_0.2_EDM-2_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-2/a_20s_400her_0.05__maf_0.2_EDM-2_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-2/a_20s_400her_0.05__maf_0.2_EDM-2_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-2/a_20s_400her_0.05__maf_0.2_EDM-2_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-2/a_20s_400her_0.05__maf_0.2_EDM-2_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-2/a_20s_400her_0.05__maf_0.2_EDM-2_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-2/a_20s_400her_0.05__maf_0.2_EDM-2_26.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-1\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-1/a_20s_400her_0.05__maf_0.2_EDM-1_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-1/a_20s_400her_0.05__maf_0.2_EDM-1_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-1/a_20s_400her_0.05__maf_0.2_EDM-1_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-1/a_20s_400her_0.05__maf_0.2_EDM-1_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-1/a_20s_400her_0.05__maf_0.2_EDM-1_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-1/a_20s_400her_0.05__maf_0.2_EDM-1_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-1/a_20s_400her_0.05__maf_0.2_EDM-1_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-1/a_20s_400her_0.05__maf_0.2_EDM-1_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-1/a_20s_400her_0.05__maf_0.2_EDM-1_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-1/a_20s_400her_0.05__maf_0.2_EDM-1_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-1/a_20s_400her_0.05__maf_0.2_EDM-1_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-1/a_20s_400her_0.05__maf_0.2_EDM-1_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-1/a_20s_400her_0.05__maf_0.2_EDM-1_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-1/a_20s_400her_0.05__maf_0.2_EDM-1_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-1/a_20s_400her_0.05__maf_0.2_EDM-1_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-1/a_20s_400her_0.05__maf_0.2_EDM-1_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-1/a_20s_400her_0.05__maf_0.2_EDM-1_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-1/a_20s_400her_0.05__maf_0.2_EDM-1_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-1/a_20s_400her_0.05__maf_0.2_EDM-1_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-1/a_20s_400her_0.05__maf_0.2_EDM-1_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-1/a_20s_400her_0.05__maf_0.2_EDM-1_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-1/a_20s_400her_0.05__maf_0.2_EDM-1_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-1/a_20s_400her_0.05__maf_0.2_EDM-1_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-1/a_20s_400her_0.05__maf_0.2_EDM-1_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-1/a_20s_400her_0.05__maf_0.2_EDM-1_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-1/a_20s_400her_0.05__maf_0.2_EDM-1_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-1/a_20s_400her_0.05__maf_0.2_EDM-1_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-1/a_20s_400her_0.05__maf_0.2_EDM-1_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-1/a_20s_400her_0.05__maf_0.2_EDM-1_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.05__maf_0.2/a_20s_400her_0.05__maf_0.2_EDM-1/a_20s_400her_0.05__maf_0.2_EDM-1_14.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-2\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-2/a_20s_400her_0.2__maf_0.2_EDM-2_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-2/a_20s_400her_0.2__maf_0.2_EDM-2_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-2/a_20s_400her_0.2__maf_0.2_EDM-2_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-2/a_20s_400her_0.2__maf_0.2_EDM-2_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-2/a_20s_400her_0.2__maf_0.2_EDM-2_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-2/a_20s_400her_0.2__maf_0.2_EDM-2_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-2/a_20s_400her_0.2__maf_0.2_EDM-2_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-2/a_20s_400her_0.2__maf_0.2_EDM-2_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-2/a_20s_400her_0.2__maf_0.2_EDM-2_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-2/a_20s_400her_0.2__maf_0.2_EDM-2_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-2/a_20s_400her_0.2__maf_0.2_EDM-2_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-2/a_20s_400her_0.2__maf_0.2_EDM-2_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-2/a_20s_400her_0.2__maf_0.2_EDM-2_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-2/a_20s_400her_0.2__maf_0.2_EDM-2_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-2/a_20s_400her_0.2__maf_0.2_EDM-2_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-2/a_20s_400her_0.2__maf_0.2_EDM-2_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-2/a_20s_400her_0.2__maf_0.2_EDM-2_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-2/a_20s_400her_0.2__maf_0.2_EDM-2_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-2/a_20s_400her_0.2__maf_0.2_EDM-2_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-2/a_20s_400her_0.2__maf_0.2_EDM-2_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-2/a_20s_400her_0.2__maf_0.2_EDM-2_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-2/a_20s_400her_0.2__maf_0.2_EDM-2_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-2/a_20s_400her_0.2__maf_0.2_EDM-2_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-2/a_20s_400her_0.2__maf_0.2_EDM-2_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-2/a_20s_400her_0.2__maf_0.2_EDM-2_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-2/a_20s_400her_0.2__maf_0.2_EDM-2_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-2/a_20s_400her_0.2__maf_0.2_EDM-2_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-2/a_20s_400her_0.2__maf_0.2_EDM-2_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-2/a_20s_400her_0.2__maf_0.2_EDM-2_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-2/a_20s_400her_0.2__maf_0.2_EDM-2_16.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-1\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-1/a_20s_400her_0.2__maf_0.2_EDM-1_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-1/a_20s_400her_0.2__maf_0.2_EDM-1_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-1/a_20s_400her_0.2__maf_0.2_EDM-1_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-1/a_20s_400her_0.2__maf_0.2_EDM-1_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-1/a_20s_400her_0.2__maf_0.2_EDM-1_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-1/a_20s_400her_0.2__maf_0.2_EDM-1_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-1/a_20s_400her_0.2__maf_0.2_EDM-1_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-1/a_20s_400her_0.2__maf_0.2_EDM-1_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-1/a_20s_400her_0.2__maf_0.2_EDM-1_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-1/a_20s_400her_0.2__maf_0.2_EDM-1_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-1/a_20s_400her_0.2__maf_0.2_EDM-1_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-1/a_20s_400her_0.2__maf_0.2_EDM-1_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-1/a_20s_400her_0.2__maf_0.2_EDM-1_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-1/a_20s_400her_0.2__maf_0.2_EDM-1_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-1/a_20s_400her_0.2__maf_0.2_EDM-1_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-1/a_20s_400her_0.2__maf_0.2_EDM-1_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-1/a_20s_400her_0.2__maf_0.2_EDM-1_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-1/a_20s_400her_0.2__maf_0.2_EDM-1_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-1/a_20s_400her_0.2__maf_0.2_EDM-1_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-1/a_20s_400her_0.2__maf_0.2_EDM-1_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-1/a_20s_400her_0.2__maf_0.2_EDM-1_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-1/a_20s_400her_0.2__maf_0.2_EDM-1_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-1/a_20s_400her_0.2__maf_0.2_EDM-1_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-1/a_20s_400her_0.2__maf_0.2_EDM-1_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-1/a_20s_400her_0.2__maf_0.2_EDM-1_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-1/a_20s_400her_0.2__maf_0.2_EDM-1_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-1/a_20s_400her_0.2__maf_0.2_EDM-1_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-1/a_20s_400her_0.2__maf_0.2_EDM-1_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-1/a_20s_400her_0.2__maf_0.2_EDM-1_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_400/her_0.2__maf_0.2/a_20s_400her_0.2__maf_0.2_EDM-1/a_20s_400her_0.2__maf_0.2_EDM-1_24.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-1\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-1/a_20s_1600her_0.1__maf_0.2_EDM-1_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-1/a_20s_1600her_0.1__maf_0.2_EDM-1_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-1/a_20s_1600her_0.1__maf_0.2_EDM-1_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-1/a_20s_1600her_0.1__maf_0.2_EDM-1_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-1/a_20s_1600her_0.1__maf_0.2_EDM-1_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-1/a_20s_1600her_0.1__maf_0.2_EDM-1_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-1/a_20s_1600her_0.1__maf_0.2_EDM-1_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-1/a_20s_1600her_0.1__maf_0.2_EDM-1_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-1/a_20s_1600her_0.1__maf_0.2_EDM-1_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-1/a_20s_1600her_0.1__maf_0.2_EDM-1_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-1/a_20s_1600her_0.1__maf_0.2_EDM-1_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-1/a_20s_1600her_0.1__maf_0.2_EDM-1_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-1/a_20s_1600her_0.1__maf_0.2_EDM-1_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-1/a_20s_1600her_0.1__maf_0.2_EDM-1_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-1/a_20s_1600her_0.1__maf_0.2_EDM-1_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-1/a_20s_1600her_0.1__maf_0.2_EDM-1_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-1/a_20s_1600her_0.1__maf_0.2_EDM-1_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-1/a_20s_1600her_0.1__maf_0.2_EDM-1_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-1/a_20s_1600her_0.1__maf_0.2_EDM-1_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-1/a_20s_1600her_0.1__maf_0.2_EDM-1_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-1/a_20s_1600her_0.1__maf_0.2_EDM-1_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-1/a_20s_1600her_0.1__maf_0.2_EDM-1_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-1/a_20s_1600her_0.1__maf_0.2_EDM-1_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-1/a_20s_1600her_0.1__maf_0.2_EDM-1_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-1/a_20s_1600her_0.1__maf_0.2_EDM-1_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-1/a_20s_1600her_0.1__maf_0.2_EDM-1_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-1/a_20s_1600her_0.1__maf_0.2_EDM-1_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-1/a_20s_1600her_0.1__maf_0.2_EDM-1_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-1/a_20s_1600her_0.1__maf_0.2_EDM-1_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-1/a_20s_1600her_0.1__maf_0.2_EDM-1_23.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-2\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-2/a_20s_1600her_0.1__maf_0.2_EDM-2_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-2/a_20s_1600her_0.1__maf_0.2_EDM-2_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-2/a_20s_1600her_0.1__maf_0.2_EDM-2_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-2/a_20s_1600her_0.1__maf_0.2_EDM-2_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-2/a_20s_1600her_0.1__maf_0.2_EDM-2_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-2/a_20s_1600her_0.1__maf_0.2_EDM-2_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-2/a_20s_1600her_0.1__maf_0.2_EDM-2_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-2/a_20s_1600her_0.1__maf_0.2_EDM-2_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-2/a_20s_1600her_0.1__maf_0.2_EDM-2_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-2/a_20s_1600her_0.1__maf_0.2_EDM-2_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-2/a_20s_1600her_0.1__maf_0.2_EDM-2_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-2/a_20s_1600her_0.1__maf_0.2_EDM-2_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-2/a_20s_1600her_0.1__maf_0.2_EDM-2_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-2/a_20s_1600her_0.1__maf_0.2_EDM-2_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-2/a_20s_1600her_0.1__maf_0.2_EDM-2_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-2/a_20s_1600her_0.1__maf_0.2_EDM-2_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-2/a_20s_1600her_0.1__maf_0.2_EDM-2_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-2/a_20s_1600her_0.1__maf_0.2_EDM-2_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-2/a_20s_1600her_0.1__maf_0.2_EDM-2_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-2/a_20s_1600her_0.1__maf_0.2_EDM-2_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-2/a_20s_1600her_0.1__maf_0.2_EDM-2_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-2/a_20s_1600her_0.1__maf_0.2_EDM-2_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-2/a_20s_1600her_0.1__maf_0.2_EDM-2_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-2/a_20s_1600her_0.1__maf_0.2_EDM-2_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-2/a_20s_1600her_0.1__maf_0.2_EDM-2_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-2/a_20s_1600her_0.1__maf_0.2_EDM-2_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-2/a_20s_1600her_0.1__maf_0.2_EDM-2_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-2/a_20s_1600her_0.1__maf_0.2_EDM-2_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-2/a_20s_1600her_0.1__maf_0.2_EDM-2_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.1__maf_0.2/a_20s_1600her_0.1__maf_0.2_EDM-2/a_20s_1600her_0.1__maf_0.2_EDM-2_11.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-1\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-1/a_20s_1600her_0.4__maf_0.2_EDM-1_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-1/a_20s_1600her_0.4__maf_0.2_EDM-1_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-1/a_20s_1600her_0.4__maf_0.2_EDM-1_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-1/a_20s_1600her_0.4__maf_0.2_EDM-1_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-1/a_20s_1600her_0.4__maf_0.2_EDM-1_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-1/a_20s_1600her_0.4__maf_0.2_EDM-1_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-1/a_20s_1600her_0.4__maf_0.2_EDM-1_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-1/a_20s_1600her_0.4__maf_0.2_EDM-1_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-1/a_20s_1600her_0.4__maf_0.2_EDM-1_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-1/a_20s_1600her_0.4__maf_0.2_EDM-1_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-1/a_20s_1600her_0.4__maf_0.2_EDM-1_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-1/a_20s_1600her_0.4__maf_0.2_EDM-1_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-1/a_20s_1600her_0.4__maf_0.2_EDM-1_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-1/a_20s_1600her_0.4__maf_0.2_EDM-1_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-1/a_20s_1600her_0.4__maf_0.2_EDM-1_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-1/a_20s_1600her_0.4__maf_0.2_EDM-1_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-1/a_20s_1600her_0.4__maf_0.2_EDM-1_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-1/a_20s_1600her_0.4__maf_0.2_EDM-1_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-1/a_20s_1600her_0.4__maf_0.2_EDM-1_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-1/a_20s_1600her_0.4__maf_0.2_EDM-1_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-1/a_20s_1600her_0.4__maf_0.2_EDM-1_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-1/a_20s_1600her_0.4__maf_0.2_EDM-1_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-1/a_20s_1600her_0.4__maf_0.2_EDM-1_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-1/a_20s_1600her_0.4__maf_0.2_EDM-1_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-1/a_20s_1600her_0.4__maf_0.2_EDM-1_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-1/a_20s_1600her_0.4__maf_0.2_EDM-1_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-1/a_20s_1600her_0.4__maf_0.2_EDM-1_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-1/a_20s_1600her_0.4__maf_0.2_EDM-1_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-1/a_20s_1600her_0.4__maf_0.2_EDM-1_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-1/a_20s_1600her_0.4__maf_0.2_EDM-1_02.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-2\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-2/a_20s_1600her_0.4__maf_0.2_EDM-2_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-2/a_20s_1600her_0.4__maf_0.2_EDM-2_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-2/a_20s_1600her_0.4__maf_0.2_EDM-2_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-2/a_20s_1600her_0.4__maf_0.2_EDM-2_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-2/a_20s_1600her_0.4__maf_0.2_EDM-2_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-2/a_20s_1600her_0.4__maf_0.2_EDM-2_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-2/a_20s_1600her_0.4__maf_0.2_EDM-2_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-2/a_20s_1600her_0.4__maf_0.2_EDM-2_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-2/a_20s_1600her_0.4__maf_0.2_EDM-2_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-2/a_20s_1600her_0.4__maf_0.2_EDM-2_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-2/a_20s_1600her_0.4__maf_0.2_EDM-2_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-2/a_20s_1600her_0.4__maf_0.2_EDM-2_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-2/a_20s_1600her_0.4__maf_0.2_EDM-2_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-2/a_20s_1600her_0.4__maf_0.2_EDM-2_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-2/a_20s_1600her_0.4__maf_0.2_EDM-2_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-2/a_20s_1600her_0.4__maf_0.2_EDM-2_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-2/a_20s_1600her_0.4__maf_0.2_EDM-2_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-2/a_20s_1600her_0.4__maf_0.2_EDM-2_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-2/a_20s_1600her_0.4__maf_0.2_EDM-2_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-2/a_20s_1600her_0.4__maf_0.2_EDM-2_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-2/a_20s_1600her_0.4__maf_0.2_EDM-2_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-2/a_20s_1600her_0.4__maf_0.2_EDM-2_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-2/a_20s_1600her_0.4__maf_0.2_EDM-2_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-2/a_20s_1600her_0.4__maf_0.2_EDM-2_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-2/a_20s_1600her_0.4__maf_0.2_EDM-2_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-2/a_20s_1600her_0.4__maf_0.2_EDM-2_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-2/a_20s_1600her_0.4__maf_0.2_EDM-2_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-2/a_20s_1600her_0.4__maf_0.2_EDM-2_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-2/a_20s_1600her_0.4__maf_0.2_EDM-2_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.4__maf_0.2/a_20s_1600her_0.4__maf_0.2_EDM-2/a_20s_1600her_0.4__maf_0.2_EDM-2_30.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-1\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-1/a_20s_1600her_0.05__maf_0.2_EDM-1_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-1/a_20s_1600her_0.05__maf_0.2_EDM-1_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-1/a_20s_1600her_0.05__maf_0.2_EDM-1_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-1/a_20s_1600her_0.05__maf_0.2_EDM-1_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-1/a_20s_1600her_0.05__maf_0.2_EDM-1_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-1/a_20s_1600her_0.05__maf_0.2_EDM-1_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-1/a_20s_1600her_0.05__maf_0.2_EDM-1_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-1/a_20s_1600her_0.05__maf_0.2_EDM-1_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-1/a_20s_1600her_0.05__maf_0.2_EDM-1_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-1/a_20s_1600her_0.05__maf_0.2_EDM-1_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-1/a_20s_1600her_0.05__maf_0.2_EDM-1_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-1/a_20s_1600her_0.05__maf_0.2_EDM-1_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-1/a_20s_1600her_0.05__maf_0.2_EDM-1_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-1/a_20s_1600her_0.05__maf_0.2_EDM-1_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-1/a_20s_1600her_0.05__maf_0.2_EDM-1_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-1/a_20s_1600her_0.05__maf_0.2_EDM-1_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-1/a_20s_1600her_0.05__maf_0.2_EDM-1_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-1/a_20s_1600her_0.05__maf_0.2_EDM-1_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-1/a_20s_1600her_0.05__maf_0.2_EDM-1_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-1/a_20s_1600her_0.05__maf_0.2_EDM-1_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-1/a_20s_1600her_0.05__maf_0.2_EDM-1_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-1/a_20s_1600her_0.05__maf_0.2_EDM-1_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-1/a_20s_1600her_0.05__maf_0.2_EDM-1_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-1/a_20s_1600her_0.05__maf_0.2_EDM-1_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-1/a_20s_1600her_0.05__maf_0.2_EDM-1_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-1/a_20s_1600her_0.05__maf_0.2_EDM-1_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-1/a_20s_1600her_0.05__maf_0.2_EDM-1_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-1/a_20s_1600her_0.05__maf_0.2_EDM-1_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-1/a_20s_1600her_0.05__maf_0.2_EDM-1_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-1/a_20s_1600her_0.05__maf_0.2_EDM-1_01.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-2\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-2/a_20s_1600her_0.05__maf_0.2_EDM-2_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-2/a_20s_1600her_0.05__maf_0.2_EDM-2_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-2/a_20s_1600her_0.05__maf_0.2_EDM-2_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-2/a_20s_1600her_0.05__maf_0.2_EDM-2_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-2/a_20s_1600her_0.05__maf_0.2_EDM-2_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-2/a_20s_1600her_0.05__maf_0.2_EDM-2_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-2/a_20s_1600her_0.05__maf_0.2_EDM-2_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-2/a_20s_1600her_0.05__maf_0.2_EDM-2_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-2/a_20s_1600her_0.05__maf_0.2_EDM-2_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-2/a_20s_1600her_0.05__maf_0.2_EDM-2_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-2/a_20s_1600her_0.05__maf_0.2_EDM-2_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-2/a_20s_1600her_0.05__maf_0.2_EDM-2_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-2/a_20s_1600her_0.05__maf_0.2_EDM-2_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-2/a_20s_1600her_0.05__maf_0.2_EDM-2_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-2/a_20s_1600her_0.05__maf_0.2_EDM-2_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-2/a_20s_1600her_0.05__maf_0.2_EDM-2_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-2/a_20s_1600her_0.05__maf_0.2_EDM-2_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-2/a_20s_1600her_0.05__maf_0.2_EDM-2_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-2/a_20s_1600her_0.05__maf_0.2_EDM-2_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-2/a_20s_1600her_0.05__maf_0.2_EDM-2_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-2/a_20s_1600her_0.05__maf_0.2_EDM-2_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-2/a_20s_1600her_0.05__maf_0.2_EDM-2_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-2/a_20s_1600her_0.05__maf_0.2_EDM-2_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-2/a_20s_1600her_0.05__maf_0.2_EDM-2_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-2/a_20s_1600her_0.05__maf_0.2_EDM-2_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-2/a_20s_1600her_0.05__maf_0.2_EDM-2_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-2/a_20s_1600her_0.05__maf_0.2_EDM-2_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-2/a_20s_1600her_0.05__maf_0.2_EDM-2_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-2/a_20s_1600her_0.05__maf_0.2_EDM-2_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.05__maf_0.2/a_20s_1600her_0.05__maf_0.2_EDM-2/a_20s_1600her_0.05__maf_0.2_EDM-2_27.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-1\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-1/a_20s_1600her_0.2__maf_0.2_EDM-1_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-1/a_20s_1600her_0.2__maf_0.2_EDM-1_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-1/a_20s_1600her_0.2__maf_0.2_EDM-1_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-1/a_20s_1600her_0.2__maf_0.2_EDM-1_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-1/a_20s_1600her_0.2__maf_0.2_EDM-1_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-1/a_20s_1600her_0.2__maf_0.2_EDM-1_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-1/a_20s_1600her_0.2__maf_0.2_EDM-1_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-1/a_20s_1600her_0.2__maf_0.2_EDM-1_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-1/a_20s_1600her_0.2__maf_0.2_EDM-1_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-1/a_20s_1600her_0.2__maf_0.2_EDM-1_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-1/a_20s_1600her_0.2__maf_0.2_EDM-1_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-1/a_20s_1600her_0.2__maf_0.2_EDM-1_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-1/a_20s_1600her_0.2__maf_0.2_EDM-1_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-1/a_20s_1600her_0.2__maf_0.2_EDM-1_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-1/a_20s_1600her_0.2__maf_0.2_EDM-1_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-1/a_20s_1600her_0.2__maf_0.2_EDM-1_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-1/a_20s_1600her_0.2__maf_0.2_EDM-1_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-1/a_20s_1600her_0.2__maf_0.2_EDM-1_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-1/a_20s_1600her_0.2__maf_0.2_EDM-1_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-1/a_20s_1600her_0.2__maf_0.2_EDM-1_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-1/a_20s_1600her_0.2__maf_0.2_EDM-1_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-1/a_20s_1600her_0.2__maf_0.2_EDM-1_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-1/a_20s_1600her_0.2__maf_0.2_EDM-1_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-1/a_20s_1600her_0.2__maf_0.2_EDM-1_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-1/a_20s_1600her_0.2__maf_0.2_EDM-1_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-1/a_20s_1600her_0.2__maf_0.2_EDM-1_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-1/a_20s_1600her_0.2__maf_0.2_EDM-1_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-1/a_20s_1600her_0.2__maf_0.2_EDM-1_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-1/a_20s_1600her_0.2__maf_0.2_EDM-1_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-1/a_20s_1600her_0.2__maf_0.2_EDM-1_06.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-2\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-2/a_20s_1600her_0.2__maf_0.2_EDM-2_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-2/a_20s_1600her_0.2__maf_0.2_EDM-2_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-2/a_20s_1600her_0.2__maf_0.2_EDM-2_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-2/a_20s_1600her_0.2__maf_0.2_EDM-2_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-2/a_20s_1600her_0.2__maf_0.2_EDM-2_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-2/a_20s_1600her_0.2__maf_0.2_EDM-2_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-2/a_20s_1600her_0.2__maf_0.2_EDM-2_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-2/a_20s_1600her_0.2__maf_0.2_EDM-2_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-2/a_20s_1600her_0.2__maf_0.2_EDM-2_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-2/a_20s_1600her_0.2__maf_0.2_EDM-2_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-2/a_20s_1600her_0.2__maf_0.2_EDM-2_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-2/a_20s_1600her_0.2__maf_0.2_EDM-2_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-2/a_20s_1600her_0.2__maf_0.2_EDM-2_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-2/a_20s_1600her_0.2__maf_0.2_EDM-2_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-2/a_20s_1600her_0.2__maf_0.2_EDM-2_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-2/a_20s_1600her_0.2__maf_0.2_EDM-2_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-2/a_20s_1600her_0.2__maf_0.2_EDM-2_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-2/a_20s_1600her_0.2__maf_0.2_EDM-2_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-2/a_20s_1600her_0.2__maf_0.2_EDM-2_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-2/a_20s_1600her_0.2__maf_0.2_EDM-2_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-2/a_20s_1600her_0.2__maf_0.2_EDM-2_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-2/a_20s_1600her_0.2__maf_0.2_EDM-2_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-2/a_20s_1600her_0.2__maf_0.2_EDM-2_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-2/a_20s_1600her_0.2__maf_0.2_EDM-2_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-2/a_20s_1600her_0.2__maf_0.2_EDM-2_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-2/a_20s_1600her_0.2__maf_0.2_EDM-2_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-2/a_20s_1600her_0.2__maf_0.2_EDM-2_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-2/a_20s_1600her_0.2__maf_0.2_EDM-2_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-2/a_20s_1600her_0.2__maf_0.2_EDM-2_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_1600/her_0.2__maf_0.2/a_20s_1600her_0.2__maf_0.2_EDM-2/a_20s_1600her_0.2__maf_0.2_EDM-2_08.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-1\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-1/a_20s_200her_0.1__maf_0.2_EDM-1_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-1/a_20s_200her_0.1__maf_0.2_EDM-1_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-1/a_20s_200her_0.1__maf_0.2_EDM-1_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-1/a_20s_200her_0.1__maf_0.2_EDM-1_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-1/a_20s_200her_0.1__maf_0.2_EDM-1_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-1/a_20s_200her_0.1__maf_0.2_EDM-1_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-1/a_20s_200her_0.1__maf_0.2_EDM-1_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-1/a_20s_200her_0.1__maf_0.2_EDM-1_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-1/a_20s_200her_0.1__maf_0.2_EDM-1_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-1/a_20s_200her_0.1__maf_0.2_EDM-1_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-1/a_20s_200her_0.1__maf_0.2_EDM-1_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-1/a_20s_200her_0.1__maf_0.2_EDM-1_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-1/a_20s_200her_0.1__maf_0.2_EDM-1_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-1/a_20s_200her_0.1__maf_0.2_EDM-1_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-1/a_20s_200her_0.1__maf_0.2_EDM-1_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-1/a_20s_200her_0.1__maf_0.2_EDM-1_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-1/a_20s_200her_0.1__maf_0.2_EDM-1_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-1/a_20s_200her_0.1__maf_0.2_EDM-1_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-1/a_20s_200her_0.1__maf_0.2_EDM-1_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-1/a_20s_200her_0.1__maf_0.2_EDM-1_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-1/a_20s_200her_0.1__maf_0.2_EDM-1_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-1/a_20s_200her_0.1__maf_0.2_EDM-1_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-1/a_20s_200her_0.1__maf_0.2_EDM-1_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-1/a_20s_200her_0.1__maf_0.2_EDM-1_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-1/a_20s_200her_0.1__maf_0.2_EDM-1_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-1/a_20s_200her_0.1__maf_0.2_EDM-1_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-1/a_20s_200her_0.1__maf_0.2_EDM-1_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-1/a_20s_200her_0.1__maf_0.2_EDM-1_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-1/a_20s_200her_0.1__maf_0.2_EDM-1_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-1/a_20s_200her_0.1__maf_0.2_EDM-1_28.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-2\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-2/a_20s_200her_0.1__maf_0.2_EDM-2_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-2/a_20s_200her_0.1__maf_0.2_EDM-2_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-2/a_20s_200her_0.1__maf_0.2_EDM-2_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-2/a_20s_200her_0.1__maf_0.2_EDM-2_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-2/a_20s_200her_0.1__maf_0.2_EDM-2_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-2/a_20s_200her_0.1__maf_0.2_EDM-2_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-2/a_20s_200her_0.1__maf_0.2_EDM-2_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-2/a_20s_200her_0.1__maf_0.2_EDM-2_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-2/a_20s_200her_0.1__maf_0.2_EDM-2_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-2/a_20s_200her_0.1__maf_0.2_EDM-2_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-2/a_20s_200her_0.1__maf_0.2_EDM-2_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-2/a_20s_200her_0.1__maf_0.2_EDM-2_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-2/a_20s_200her_0.1__maf_0.2_EDM-2_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-2/a_20s_200her_0.1__maf_0.2_EDM-2_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-2/a_20s_200her_0.1__maf_0.2_EDM-2_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-2/a_20s_200her_0.1__maf_0.2_EDM-2_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-2/a_20s_200her_0.1__maf_0.2_EDM-2_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-2/a_20s_200her_0.1__maf_0.2_EDM-2_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-2/a_20s_200her_0.1__maf_0.2_EDM-2_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-2/a_20s_200her_0.1__maf_0.2_EDM-2_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-2/a_20s_200her_0.1__maf_0.2_EDM-2_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-2/a_20s_200her_0.1__maf_0.2_EDM-2_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-2/a_20s_200her_0.1__maf_0.2_EDM-2_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-2/a_20s_200her_0.1__maf_0.2_EDM-2_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-2/a_20s_200her_0.1__maf_0.2_EDM-2_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-2/a_20s_200her_0.1__maf_0.2_EDM-2_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-2/a_20s_200her_0.1__maf_0.2_EDM-2_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-2/a_20s_200her_0.1__maf_0.2_EDM-2_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-2/a_20s_200her_0.1__maf_0.2_EDM-2_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.1__maf_0.2/a_20s_200her_0.1__maf_0.2_EDM-2/a_20s_200her_0.1__maf_0.2_EDM-2_26.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-1\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-1/a_20s_200her_0.4__maf_0.2_EDM-1_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-1/a_20s_200her_0.4__maf_0.2_EDM-1_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-1/a_20s_200her_0.4__maf_0.2_EDM-1_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-1/a_20s_200her_0.4__maf_0.2_EDM-1_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-1/a_20s_200her_0.4__maf_0.2_EDM-1_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-1/a_20s_200her_0.4__maf_0.2_EDM-1_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-1/a_20s_200her_0.4__maf_0.2_EDM-1_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-1/a_20s_200her_0.4__maf_0.2_EDM-1_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-1/a_20s_200her_0.4__maf_0.2_EDM-1_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-1/a_20s_200her_0.4__maf_0.2_EDM-1_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-1/a_20s_200her_0.4__maf_0.2_EDM-1_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-1/a_20s_200her_0.4__maf_0.2_EDM-1_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-1/a_20s_200her_0.4__maf_0.2_EDM-1_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-1/a_20s_200her_0.4__maf_0.2_EDM-1_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-1/a_20s_200her_0.4__maf_0.2_EDM-1_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-1/a_20s_200her_0.4__maf_0.2_EDM-1_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-1/a_20s_200her_0.4__maf_0.2_EDM-1_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-1/a_20s_200her_0.4__maf_0.2_EDM-1_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-1/a_20s_200her_0.4__maf_0.2_EDM-1_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-1/a_20s_200her_0.4__maf_0.2_EDM-1_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-1/a_20s_200her_0.4__maf_0.2_EDM-1_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-1/a_20s_200her_0.4__maf_0.2_EDM-1_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-1/a_20s_200her_0.4__maf_0.2_EDM-1_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-1/a_20s_200her_0.4__maf_0.2_EDM-1_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-1/a_20s_200her_0.4__maf_0.2_EDM-1_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-1/a_20s_200her_0.4__maf_0.2_EDM-1_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-1/a_20s_200her_0.4__maf_0.2_EDM-1_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-1/a_20s_200her_0.4__maf_0.2_EDM-1_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-1/a_20s_200her_0.4__maf_0.2_EDM-1_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-1/a_20s_200her_0.4__maf_0.2_EDM-1_21.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-2\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-2/a_20s_200her_0.4__maf_0.2_EDM-2_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-2/a_20s_200her_0.4__maf_0.2_EDM-2_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-2/a_20s_200her_0.4__maf_0.2_EDM-2_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-2/a_20s_200her_0.4__maf_0.2_EDM-2_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-2/a_20s_200her_0.4__maf_0.2_EDM-2_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-2/a_20s_200her_0.4__maf_0.2_EDM-2_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-2/a_20s_200her_0.4__maf_0.2_EDM-2_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-2/a_20s_200her_0.4__maf_0.2_EDM-2_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-2/a_20s_200her_0.4__maf_0.2_EDM-2_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-2/a_20s_200her_0.4__maf_0.2_EDM-2_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-2/a_20s_200her_0.4__maf_0.2_EDM-2_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-2/a_20s_200her_0.4__maf_0.2_EDM-2_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-2/a_20s_200her_0.4__maf_0.2_EDM-2_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-2/a_20s_200her_0.4__maf_0.2_EDM-2_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-2/a_20s_200her_0.4__maf_0.2_EDM-2_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-2/a_20s_200her_0.4__maf_0.2_EDM-2_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-2/a_20s_200her_0.4__maf_0.2_EDM-2_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-2/a_20s_200her_0.4__maf_0.2_EDM-2_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-2/a_20s_200her_0.4__maf_0.2_EDM-2_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-2/a_20s_200her_0.4__maf_0.2_EDM-2_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-2/a_20s_200her_0.4__maf_0.2_EDM-2_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-2/a_20s_200her_0.4__maf_0.2_EDM-2_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-2/a_20s_200her_0.4__maf_0.2_EDM-2_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-2/a_20s_200her_0.4__maf_0.2_EDM-2_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-2/a_20s_200her_0.4__maf_0.2_EDM-2_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-2/a_20s_200her_0.4__maf_0.2_EDM-2_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-2/a_20s_200her_0.4__maf_0.2_EDM-2_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-2/a_20s_200her_0.4__maf_0.2_EDM-2_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-2/a_20s_200her_0.4__maf_0.2_EDM-2_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.4__maf_0.2/a_20s_200her_0.4__maf_0.2_EDM-2/a_20s_200her_0.4__maf_0.2_EDM-2_13.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-1\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-1/a_20s_200her_0.05__maf_0.2_EDM-1_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-1/a_20s_200her_0.05__maf_0.2_EDM-1_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-1/a_20s_200her_0.05__maf_0.2_EDM-1_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-1/a_20s_200her_0.05__maf_0.2_EDM-1_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-1/a_20s_200her_0.05__maf_0.2_EDM-1_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-1/a_20s_200her_0.05__maf_0.2_EDM-1_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-1/a_20s_200her_0.05__maf_0.2_EDM-1_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-1/a_20s_200her_0.05__maf_0.2_EDM-1_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-1/a_20s_200her_0.05__maf_0.2_EDM-1_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-1/a_20s_200her_0.05__maf_0.2_EDM-1_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-1/a_20s_200her_0.05__maf_0.2_EDM-1_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-1/a_20s_200her_0.05__maf_0.2_EDM-1_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-1/a_20s_200her_0.05__maf_0.2_EDM-1_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-1/a_20s_200her_0.05__maf_0.2_EDM-1_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-1/a_20s_200her_0.05__maf_0.2_EDM-1_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-1/a_20s_200her_0.05__maf_0.2_EDM-1_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-1/a_20s_200her_0.05__maf_0.2_EDM-1_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-1/a_20s_200her_0.05__maf_0.2_EDM-1_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-1/a_20s_200her_0.05__maf_0.2_EDM-1_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-1/a_20s_200her_0.05__maf_0.2_EDM-1_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-1/a_20s_200her_0.05__maf_0.2_EDM-1_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-1/a_20s_200her_0.05__maf_0.2_EDM-1_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-1/a_20s_200her_0.05__maf_0.2_EDM-1_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-1/a_20s_200her_0.05__maf_0.2_EDM-1_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-1/a_20s_200her_0.05__maf_0.2_EDM-1_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-1/a_20s_200her_0.05__maf_0.2_EDM-1_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-1/a_20s_200her_0.05__maf_0.2_EDM-1_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-1/a_20s_200her_0.05__maf_0.2_EDM-1_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-1/a_20s_200her_0.05__maf_0.2_EDM-1_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-1/a_20s_200her_0.05__maf_0.2_EDM-1_11.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-2\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-2/a_20s_200her_0.05__maf_0.2_EDM-2_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-2/a_20s_200her_0.05__maf_0.2_EDM-2_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-2/a_20s_200her_0.05__maf_0.2_EDM-2_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-2/a_20s_200her_0.05__maf_0.2_EDM-2_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-2/a_20s_200her_0.05__maf_0.2_EDM-2_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-2/a_20s_200her_0.05__maf_0.2_EDM-2_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-2/a_20s_200her_0.05__maf_0.2_EDM-2_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-2/a_20s_200her_0.05__maf_0.2_EDM-2_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-2/a_20s_200her_0.05__maf_0.2_EDM-2_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-2/a_20s_200her_0.05__maf_0.2_EDM-2_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-2/a_20s_200her_0.05__maf_0.2_EDM-2_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-2/a_20s_200her_0.05__maf_0.2_EDM-2_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-2/a_20s_200her_0.05__maf_0.2_EDM-2_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-2/a_20s_200her_0.05__maf_0.2_EDM-2_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-2/a_20s_200her_0.05__maf_0.2_EDM-2_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-2/a_20s_200her_0.05__maf_0.2_EDM-2_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-2/a_20s_200her_0.05__maf_0.2_EDM-2_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-2/a_20s_200her_0.05__maf_0.2_EDM-2_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-2/a_20s_200her_0.05__maf_0.2_EDM-2_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-2/a_20s_200her_0.05__maf_0.2_EDM-2_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-2/a_20s_200her_0.05__maf_0.2_EDM-2_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-2/a_20s_200her_0.05__maf_0.2_EDM-2_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-2/a_20s_200her_0.05__maf_0.2_EDM-2_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-2/a_20s_200her_0.05__maf_0.2_EDM-2_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-2/a_20s_200her_0.05__maf_0.2_EDM-2_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-2/a_20s_200her_0.05__maf_0.2_EDM-2_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-2/a_20s_200her_0.05__maf_0.2_EDM-2_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-2/a_20s_200her_0.05__maf_0.2_EDM-2_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-2/a_20s_200her_0.05__maf_0.2_EDM-2_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.05__maf_0.2/a_20s_200her_0.05__maf_0.2_EDM-2/a_20s_200her_0.05__maf_0.2_EDM-2_23.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-1\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-1/a_20s_200her_0.2__maf_0.2_EDM-1_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-1/a_20s_200her_0.2__maf_0.2_EDM-1_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-1/a_20s_200her_0.2__maf_0.2_EDM-1_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-1/a_20s_200her_0.2__maf_0.2_EDM-1_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-1/a_20s_200her_0.2__maf_0.2_EDM-1_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-1/a_20s_200her_0.2__maf_0.2_EDM-1_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-1/a_20s_200her_0.2__maf_0.2_EDM-1_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-1/a_20s_200her_0.2__maf_0.2_EDM-1_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-1/a_20s_200her_0.2__maf_0.2_EDM-1_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-1/a_20s_200her_0.2__maf_0.2_EDM-1_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-1/a_20s_200her_0.2__maf_0.2_EDM-1_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-1/a_20s_200her_0.2__maf_0.2_EDM-1_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-1/a_20s_200her_0.2__maf_0.2_EDM-1_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-1/a_20s_200her_0.2__maf_0.2_EDM-1_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-1/a_20s_200her_0.2__maf_0.2_EDM-1_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-1/a_20s_200her_0.2__maf_0.2_EDM-1_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-1/a_20s_200her_0.2__maf_0.2_EDM-1_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-1/a_20s_200her_0.2__maf_0.2_EDM-1_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-1/a_20s_200her_0.2__maf_0.2_EDM-1_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-1/a_20s_200her_0.2__maf_0.2_EDM-1_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-1/a_20s_200her_0.2__maf_0.2_EDM-1_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-1/a_20s_200her_0.2__maf_0.2_EDM-1_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-1/a_20s_200her_0.2__maf_0.2_EDM-1_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-1/a_20s_200her_0.2__maf_0.2_EDM-1_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-1/a_20s_200her_0.2__maf_0.2_EDM-1_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-1/a_20s_200her_0.2__maf_0.2_EDM-1_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-1/a_20s_200her_0.2__maf_0.2_EDM-1_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-1/a_20s_200her_0.2__maf_0.2_EDM-1_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-1/a_20s_200her_0.2__maf_0.2_EDM-1_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-1/a_20s_200her_0.2__maf_0.2_EDM-1_19.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-2\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-2/a_20s_200her_0.2__maf_0.2_EDM-2_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-2/a_20s_200her_0.2__maf_0.2_EDM-2_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-2/a_20s_200her_0.2__maf_0.2_EDM-2_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-2/a_20s_200her_0.2__maf_0.2_EDM-2_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-2/a_20s_200her_0.2__maf_0.2_EDM-2_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-2/a_20s_200her_0.2__maf_0.2_EDM-2_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-2/a_20s_200her_0.2__maf_0.2_EDM-2_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-2/a_20s_200her_0.2__maf_0.2_EDM-2_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-2/a_20s_200her_0.2__maf_0.2_EDM-2_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-2/a_20s_200her_0.2__maf_0.2_EDM-2_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-2/a_20s_200her_0.2__maf_0.2_EDM-2_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-2/a_20s_200her_0.2__maf_0.2_EDM-2_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-2/a_20s_200her_0.2__maf_0.2_EDM-2_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-2/a_20s_200her_0.2__maf_0.2_EDM-2_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-2/a_20s_200her_0.2__maf_0.2_EDM-2_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-2/a_20s_200her_0.2__maf_0.2_EDM-2_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-2/a_20s_200her_0.2__maf_0.2_EDM-2_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-2/a_20s_200her_0.2__maf_0.2_EDM-2_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-2/a_20s_200her_0.2__maf_0.2_EDM-2_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-2/a_20s_200her_0.2__maf_0.2_EDM-2_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-2/a_20s_200her_0.2__maf_0.2_EDM-2_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-2/a_20s_200her_0.2__maf_0.2_EDM-2_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-2/a_20s_200her_0.2__maf_0.2_EDM-2_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-2/a_20s_200her_0.2__maf_0.2_EDM-2_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-2/a_20s_200her_0.2__maf_0.2_EDM-2_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-2/a_20s_200her_0.2__maf_0.2_EDM-2_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-2/a_20s_200her_0.2__maf_0.2_EDM-2_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-2/a_20s_200her_0.2__maf_0.2_EDM-2_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-2/a_20s_200her_0.2__maf_0.2_EDM-2_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_200/her_0.2__maf_0.2/a_20s_200her_0.2__maf_0.2_EDM-2/a_20s_200her_0.2__maf_0.2_EDM-2_17.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-2\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-2/a_20s_800her_0.1__maf_0.2_EDM-2_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-2/a_20s_800her_0.1__maf_0.2_EDM-2_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-2/a_20s_800her_0.1__maf_0.2_EDM-2_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-2/a_20s_800her_0.1__maf_0.2_EDM-2_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-2/a_20s_800her_0.1__maf_0.2_EDM-2_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-2/a_20s_800her_0.1__maf_0.2_EDM-2_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-2/a_20s_800her_0.1__maf_0.2_EDM-2_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-2/a_20s_800her_0.1__maf_0.2_EDM-2_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-2/a_20s_800her_0.1__maf_0.2_EDM-2_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-2/a_20s_800her_0.1__maf_0.2_EDM-2_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-2/a_20s_800her_0.1__maf_0.2_EDM-2_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-2/a_20s_800her_0.1__maf_0.2_EDM-2_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-2/a_20s_800her_0.1__maf_0.2_EDM-2_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-2/a_20s_800her_0.1__maf_0.2_EDM-2_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-2/a_20s_800her_0.1__maf_0.2_EDM-2_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-2/a_20s_800her_0.1__maf_0.2_EDM-2_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-2/a_20s_800her_0.1__maf_0.2_EDM-2_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-2/a_20s_800her_0.1__maf_0.2_EDM-2_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-2/a_20s_800her_0.1__maf_0.2_EDM-2_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-2/a_20s_800her_0.1__maf_0.2_EDM-2_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-2/a_20s_800her_0.1__maf_0.2_EDM-2_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-2/a_20s_800her_0.1__maf_0.2_EDM-2_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-2/a_20s_800her_0.1__maf_0.2_EDM-2_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-2/a_20s_800her_0.1__maf_0.2_EDM-2_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-2/a_20s_800her_0.1__maf_0.2_EDM-2_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-2/a_20s_800her_0.1__maf_0.2_EDM-2_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-2/a_20s_800her_0.1__maf_0.2_EDM-2_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-2/a_20s_800her_0.1__maf_0.2_EDM-2_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-2/a_20s_800her_0.1__maf_0.2_EDM-2_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-2/a_20s_800her_0.1__maf_0.2_EDM-2_24.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-1\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-1/a_20s_800her_0.1__maf_0.2_EDM-1_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-1/a_20s_800her_0.1__maf_0.2_EDM-1_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-1/a_20s_800her_0.1__maf_0.2_EDM-1_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-1/a_20s_800her_0.1__maf_0.2_EDM-1_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-1/a_20s_800her_0.1__maf_0.2_EDM-1_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-1/a_20s_800her_0.1__maf_0.2_EDM-1_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-1/a_20s_800her_0.1__maf_0.2_EDM-1_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-1/a_20s_800her_0.1__maf_0.2_EDM-1_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-1/a_20s_800her_0.1__maf_0.2_EDM-1_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-1/a_20s_800her_0.1__maf_0.2_EDM-1_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-1/a_20s_800her_0.1__maf_0.2_EDM-1_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-1/a_20s_800her_0.1__maf_0.2_EDM-1_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-1/a_20s_800her_0.1__maf_0.2_EDM-1_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-1/a_20s_800her_0.1__maf_0.2_EDM-1_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-1/a_20s_800her_0.1__maf_0.2_EDM-1_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-1/a_20s_800her_0.1__maf_0.2_EDM-1_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-1/a_20s_800her_0.1__maf_0.2_EDM-1_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-1/a_20s_800her_0.1__maf_0.2_EDM-1_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-1/a_20s_800her_0.1__maf_0.2_EDM-1_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-1/a_20s_800her_0.1__maf_0.2_EDM-1_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-1/a_20s_800her_0.1__maf_0.2_EDM-1_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-1/a_20s_800her_0.1__maf_0.2_EDM-1_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-1/a_20s_800her_0.1__maf_0.2_EDM-1_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-1/a_20s_800her_0.1__maf_0.2_EDM-1_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-1/a_20s_800her_0.1__maf_0.2_EDM-1_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-1/a_20s_800her_0.1__maf_0.2_EDM-1_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-1/a_20s_800her_0.1__maf_0.2_EDM-1_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-1/a_20s_800her_0.1__maf_0.2_EDM-1_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-1/a_20s_800her_0.1__maf_0.2_EDM-1_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.1__maf_0.2/a_20s_800her_0.1__maf_0.2_EDM-1/a_20s_800her_0.1__maf_0.2_EDM-1_16.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-2\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-2/a_20s_800her_0.4__maf_0.2_EDM-2_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-2/a_20s_800her_0.4__maf_0.2_EDM-2_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-2/a_20s_800her_0.4__maf_0.2_EDM-2_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-2/a_20s_800her_0.4__maf_0.2_EDM-2_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-2/a_20s_800her_0.4__maf_0.2_EDM-2_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-2/a_20s_800her_0.4__maf_0.2_EDM-2_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-2/a_20s_800her_0.4__maf_0.2_EDM-2_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-2/a_20s_800her_0.4__maf_0.2_EDM-2_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-2/a_20s_800her_0.4__maf_0.2_EDM-2_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-2/a_20s_800her_0.4__maf_0.2_EDM-2_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-2/a_20s_800her_0.4__maf_0.2_EDM-2_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-2/a_20s_800her_0.4__maf_0.2_EDM-2_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-2/a_20s_800her_0.4__maf_0.2_EDM-2_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-2/a_20s_800her_0.4__maf_0.2_EDM-2_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-2/a_20s_800her_0.4__maf_0.2_EDM-2_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-2/a_20s_800her_0.4__maf_0.2_EDM-2_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-2/a_20s_800her_0.4__maf_0.2_EDM-2_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-2/a_20s_800her_0.4__maf_0.2_EDM-2_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-2/a_20s_800her_0.4__maf_0.2_EDM-2_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-2/a_20s_800her_0.4__maf_0.2_EDM-2_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-2/a_20s_800her_0.4__maf_0.2_EDM-2_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-2/a_20s_800her_0.4__maf_0.2_EDM-2_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-2/a_20s_800her_0.4__maf_0.2_EDM-2_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-2/a_20s_800her_0.4__maf_0.2_EDM-2_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-2/a_20s_800her_0.4__maf_0.2_EDM-2_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-2/a_20s_800her_0.4__maf_0.2_EDM-2_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-2/a_20s_800her_0.4__maf_0.2_EDM-2_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-2/a_20s_800her_0.4__maf_0.2_EDM-2_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-2/a_20s_800her_0.4__maf_0.2_EDM-2_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-2/a_20s_800her_0.4__maf_0.2_EDM-2_05.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-1\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-1/a_20s_800her_0.4__maf_0.2_EDM-1_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-1/a_20s_800her_0.4__maf_0.2_EDM-1_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-1/a_20s_800her_0.4__maf_0.2_EDM-1_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-1/a_20s_800her_0.4__maf_0.2_EDM-1_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-1/a_20s_800her_0.4__maf_0.2_EDM-1_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-1/a_20s_800her_0.4__maf_0.2_EDM-1_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-1/a_20s_800her_0.4__maf_0.2_EDM-1_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-1/a_20s_800her_0.4__maf_0.2_EDM-1_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-1/a_20s_800her_0.4__maf_0.2_EDM-1_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-1/a_20s_800her_0.4__maf_0.2_EDM-1_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-1/a_20s_800her_0.4__maf_0.2_EDM-1_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-1/a_20s_800her_0.4__maf_0.2_EDM-1_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-1/a_20s_800her_0.4__maf_0.2_EDM-1_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-1/a_20s_800her_0.4__maf_0.2_EDM-1_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-1/a_20s_800her_0.4__maf_0.2_EDM-1_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-1/a_20s_800her_0.4__maf_0.2_EDM-1_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-1/a_20s_800her_0.4__maf_0.2_EDM-1_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-1/a_20s_800her_0.4__maf_0.2_EDM-1_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-1/a_20s_800her_0.4__maf_0.2_EDM-1_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-1/a_20s_800her_0.4__maf_0.2_EDM-1_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-1/a_20s_800her_0.4__maf_0.2_EDM-1_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-1/a_20s_800her_0.4__maf_0.2_EDM-1_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-1/a_20s_800her_0.4__maf_0.2_EDM-1_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-1/a_20s_800her_0.4__maf_0.2_EDM-1_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-1/a_20s_800her_0.4__maf_0.2_EDM-1_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-1/a_20s_800her_0.4__maf_0.2_EDM-1_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-1/a_20s_800her_0.4__maf_0.2_EDM-1_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-1/a_20s_800her_0.4__maf_0.2_EDM-1_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-1/a_20s_800her_0.4__maf_0.2_EDM-1_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.4__maf_0.2/a_20s_800her_0.4__maf_0.2_EDM-1/a_20s_800her_0.4__maf_0.2_EDM-1_23.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-2\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-2/a_20s_800her_0.05__maf_0.2_EDM-2_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-2/a_20s_800her_0.05__maf_0.2_EDM-2_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-2/a_20s_800her_0.05__maf_0.2_EDM-2_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-2/a_20s_800her_0.05__maf_0.2_EDM-2_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-2/a_20s_800her_0.05__maf_0.2_EDM-2_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-2/a_20s_800her_0.05__maf_0.2_EDM-2_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-2/a_20s_800her_0.05__maf_0.2_EDM-2_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-2/a_20s_800her_0.05__maf_0.2_EDM-2_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-2/a_20s_800her_0.05__maf_0.2_EDM-2_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-2/a_20s_800her_0.05__maf_0.2_EDM-2_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-2/a_20s_800her_0.05__maf_0.2_EDM-2_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-2/a_20s_800her_0.05__maf_0.2_EDM-2_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-2/a_20s_800her_0.05__maf_0.2_EDM-2_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-2/a_20s_800her_0.05__maf_0.2_EDM-2_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-2/a_20s_800her_0.05__maf_0.2_EDM-2_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-2/a_20s_800her_0.05__maf_0.2_EDM-2_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-2/a_20s_800her_0.05__maf_0.2_EDM-2_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-2/a_20s_800her_0.05__maf_0.2_EDM-2_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-2/a_20s_800her_0.05__maf_0.2_EDM-2_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-2/a_20s_800her_0.05__maf_0.2_EDM-2_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-2/a_20s_800her_0.05__maf_0.2_EDM-2_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-2/a_20s_800her_0.05__maf_0.2_EDM-2_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-2/a_20s_800her_0.05__maf_0.2_EDM-2_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-2/a_20s_800her_0.05__maf_0.2_EDM-2_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-2/a_20s_800her_0.05__maf_0.2_EDM-2_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-2/a_20s_800her_0.05__maf_0.2_EDM-2_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-2/a_20s_800her_0.05__maf_0.2_EDM-2_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-2/a_20s_800her_0.05__maf_0.2_EDM-2_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-2/a_20s_800her_0.05__maf_0.2_EDM-2_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-2/a_20s_800her_0.05__maf_0.2_EDM-2_14.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-1\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-1/a_20s_800her_0.05__maf_0.2_EDM-1_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-1/a_20s_800her_0.05__maf_0.2_EDM-1_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-1/a_20s_800her_0.05__maf_0.2_EDM-1_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-1/a_20s_800her_0.05__maf_0.2_EDM-1_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-1/a_20s_800her_0.05__maf_0.2_EDM-1_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-1/a_20s_800her_0.05__maf_0.2_EDM-1_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-1/a_20s_800her_0.05__maf_0.2_EDM-1_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-1/a_20s_800her_0.05__maf_0.2_EDM-1_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-1/a_20s_800her_0.05__maf_0.2_EDM-1_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-1/a_20s_800her_0.05__maf_0.2_EDM-1_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-1/a_20s_800her_0.05__maf_0.2_EDM-1_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-1/a_20s_800her_0.05__maf_0.2_EDM-1_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-1/a_20s_800her_0.05__maf_0.2_EDM-1_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-1/a_20s_800her_0.05__maf_0.2_EDM-1_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-1/a_20s_800her_0.05__maf_0.2_EDM-1_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-1/a_20s_800her_0.05__maf_0.2_EDM-1_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-1/a_20s_800her_0.05__maf_0.2_EDM-1_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-1/a_20s_800her_0.05__maf_0.2_EDM-1_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-1/a_20s_800her_0.05__maf_0.2_EDM-1_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-1/a_20s_800her_0.05__maf_0.2_EDM-1_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-1/a_20s_800her_0.05__maf_0.2_EDM-1_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-1/a_20s_800her_0.05__maf_0.2_EDM-1_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-1/a_20s_800her_0.05__maf_0.2_EDM-1_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-1/a_20s_800her_0.05__maf_0.2_EDM-1_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-1/a_20s_800her_0.05__maf_0.2_EDM-1_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-1/a_20s_800her_0.05__maf_0.2_EDM-1_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-1/a_20s_800her_0.05__maf_0.2_EDM-1_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-1/a_20s_800her_0.05__maf_0.2_EDM-1_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-1/a_20s_800her_0.05__maf_0.2_EDM-1_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.05__maf_0.2/a_20s_800her_0.05__maf_0.2_EDM-1/a_20s_800her_0.05__maf_0.2_EDM-1_26.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-2\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-2/a_20s_800her_0.2__maf_0.2_EDM-2_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-2/a_20s_800her_0.2__maf_0.2_EDM-2_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-2/a_20s_800her_0.2__maf_0.2_EDM-2_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-2/a_20s_800her_0.2__maf_0.2_EDM-2_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-2/a_20s_800her_0.2__maf_0.2_EDM-2_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-2/a_20s_800her_0.2__maf_0.2_EDM-2_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-2/a_20s_800her_0.2__maf_0.2_EDM-2_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-2/a_20s_800her_0.2__maf_0.2_EDM-2_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-2/a_20s_800her_0.2__maf_0.2_EDM-2_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-2/a_20s_800her_0.2__maf_0.2_EDM-2_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-2/a_20s_800her_0.2__maf_0.2_EDM-2_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-2/a_20s_800her_0.2__maf_0.2_EDM-2_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-2/a_20s_800her_0.2__maf_0.2_EDM-2_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-2/a_20s_800her_0.2__maf_0.2_EDM-2_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-2/a_20s_800her_0.2__maf_0.2_EDM-2_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-2/a_20s_800her_0.2__maf_0.2_EDM-2_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-2/a_20s_800her_0.2__maf_0.2_EDM-2_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-2/a_20s_800her_0.2__maf_0.2_EDM-2_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-2/a_20s_800her_0.2__maf_0.2_EDM-2_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-2/a_20s_800her_0.2__maf_0.2_EDM-2_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-2/a_20s_800her_0.2__maf_0.2_EDM-2_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-2/a_20s_800her_0.2__maf_0.2_EDM-2_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-2/a_20s_800her_0.2__maf_0.2_EDM-2_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-2/a_20s_800her_0.2__maf_0.2_EDM-2_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-2/a_20s_800her_0.2__maf_0.2_EDM-2_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-2/a_20s_800her_0.2__maf_0.2_EDM-2_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-2/a_20s_800her_0.2__maf_0.2_EDM-2_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-2/a_20s_800her_0.2__maf_0.2_EDM-2_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-2/a_20s_800her_0.2__maf_0.2_EDM-2_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-2/a_20s_800her_0.2__maf_0.2_EDM-2_01.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-1\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-1/a_20s_800her_0.2__maf_0.2_EDM-1_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-1/a_20s_800her_0.2__maf_0.2_EDM-1_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-1/a_20s_800her_0.2__maf_0.2_EDM-1_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-1/a_20s_800her_0.2__maf_0.2_EDM-1_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-1/a_20s_800her_0.2__maf_0.2_EDM-1_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-1/a_20s_800her_0.2__maf_0.2_EDM-1_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-1/a_20s_800her_0.2__maf_0.2_EDM-1_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-1/a_20s_800her_0.2__maf_0.2_EDM-1_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-1/a_20s_800her_0.2__maf_0.2_EDM-1_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-1/a_20s_800her_0.2__maf_0.2_EDM-1_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-1/a_20s_800her_0.2__maf_0.2_EDM-1_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-1/a_20s_800her_0.2__maf_0.2_EDM-1_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-1/a_20s_800her_0.2__maf_0.2_EDM-1_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-1/a_20s_800her_0.2__maf_0.2_EDM-1_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-1/a_20s_800her_0.2__maf_0.2_EDM-1_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-1/a_20s_800her_0.2__maf_0.2_EDM-1_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-1/a_20s_800her_0.2__maf_0.2_EDM-1_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-1/a_20s_800her_0.2__maf_0.2_EDM-1_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-1/a_20s_800her_0.2__maf_0.2_EDM-1_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-1/a_20s_800her_0.2__maf_0.2_EDM-1_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-1/a_20s_800her_0.2__maf_0.2_EDM-1_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-1/a_20s_800her_0.2__maf_0.2_EDM-1_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-1/a_20s_800her_0.2__maf_0.2_EDM-1_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-1/a_20s_800her_0.2__maf_0.2_EDM-1_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-1/a_20s_800her_0.2__maf_0.2_EDM-1_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-1/a_20s_800her_0.2__maf_0.2_EDM-1_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-1/a_20s_800her_0.2__maf_0.2_EDM-1_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-1/a_20s_800her_0.2__maf_0.2_EDM-1_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-1/a_20s_800her_0.2__maf_0.2_EDM-1_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_20/s_800/her_0.2__maf_0.2/a_20s_800her_0.2__maf_0.2_EDM-1/a_20s_800her_0.2__maf_0.2_EDM-1_27.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-2\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-2/a_100s_400her_0.1__maf_0.2_EDM-2_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-2/a_100s_400her_0.1__maf_0.2_EDM-2_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-2/a_100s_400her_0.1__maf_0.2_EDM-2_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-2/a_100s_400her_0.1__maf_0.2_EDM-2_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-2/a_100s_400her_0.1__maf_0.2_EDM-2_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-2/a_100s_400her_0.1__maf_0.2_EDM-2_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-2/a_100s_400her_0.1__maf_0.2_EDM-2_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-2/a_100s_400her_0.1__maf_0.2_EDM-2_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-2/a_100s_400her_0.1__maf_0.2_EDM-2_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-2/a_100s_400her_0.1__maf_0.2_EDM-2_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-2/a_100s_400her_0.1__maf_0.2_EDM-2_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-2/a_100s_400her_0.1__maf_0.2_EDM-2_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-2/a_100s_400her_0.1__maf_0.2_EDM-2_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-2/a_100s_400her_0.1__maf_0.2_EDM-2_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-2/a_100s_400her_0.1__maf_0.2_EDM-2_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-2/a_100s_400her_0.1__maf_0.2_EDM-2_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-2/a_100s_400her_0.1__maf_0.2_EDM-2_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-2/a_100s_400her_0.1__maf_0.2_EDM-2_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-2/a_100s_400her_0.1__maf_0.2_EDM-2_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-2/a_100s_400her_0.1__maf_0.2_EDM-2_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-2/a_100s_400her_0.1__maf_0.2_EDM-2_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-2/a_100s_400her_0.1__maf_0.2_EDM-2_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-2/a_100s_400her_0.1__maf_0.2_EDM-2_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-2/a_100s_400her_0.1__maf_0.2_EDM-2_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-2/a_100s_400her_0.1__maf_0.2_EDM-2_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-2/a_100s_400her_0.1__maf_0.2_EDM-2_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-2/a_100s_400her_0.1__maf_0.2_EDM-2_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-2/a_100s_400her_0.1__maf_0.2_EDM-2_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-2/a_100s_400her_0.1__maf_0.2_EDM-2_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-2/a_100s_400her_0.1__maf_0.2_EDM-2_18.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-1\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-1/a_100s_400her_0.1__maf_0.2_EDM-1_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-1/a_100s_400her_0.1__maf_0.2_EDM-1_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-1/a_100s_400her_0.1__maf_0.2_EDM-1_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-1/a_100s_400her_0.1__maf_0.2_EDM-1_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-1/a_100s_400her_0.1__maf_0.2_EDM-1_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-1/a_100s_400her_0.1__maf_0.2_EDM-1_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-1/a_100s_400her_0.1__maf_0.2_EDM-1_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-1/a_100s_400her_0.1__maf_0.2_EDM-1_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-1/a_100s_400her_0.1__maf_0.2_EDM-1_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-1/a_100s_400her_0.1__maf_0.2_EDM-1_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-1/a_100s_400her_0.1__maf_0.2_EDM-1_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-1/a_100s_400her_0.1__maf_0.2_EDM-1_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-1/a_100s_400her_0.1__maf_0.2_EDM-1_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-1/a_100s_400her_0.1__maf_0.2_EDM-1_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-1/a_100s_400her_0.1__maf_0.2_EDM-1_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-1/a_100s_400her_0.1__maf_0.2_EDM-1_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-1/a_100s_400her_0.1__maf_0.2_EDM-1_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-1/a_100s_400her_0.1__maf_0.2_EDM-1_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-1/a_100s_400her_0.1__maf_0.2_EDM-1_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-1/a_100s_400her_0.1__maf_0.2_EDM-1_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-1/a_100s_400her_0.1__maf_0.2_EDM-1_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-1/a_100s_400her_0.1__maf_0.2_EDM-1_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-1/a_100s_400her_0.1__maf_0.2_EDM-1_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-1/a_100s_400her_0.1__maf_0.2_EDM-1_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-1/a_100s_400her_0.1__maf_0.2_EDM-1_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-1/a_100s_400her_0.1__maf_0.2_EDM-1_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-1/a_100s_400her_0.1__maf_0.2_EDM-1_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-1/a_100s_400her_0.1__maf_0.2_EDM-1_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-1/a_100s_400her_0.1__maf_0.2_EDM-1_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-1/a_100s_400her_0.1__maf_0.2_EDM-1_16.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-2\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-2/a_100s_400her_0.4__maf_0.2_EDM-2_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-2/a_100s_400her_0.4__maf_0.2_EDM-2_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-2/a_100s_400her_0.4__maf_0.2_EDM-2_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-2/a_100s_400her_0.4__maf_0.2_EDM-2_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-2/a_100s_400her_0.4__maf_0.2_EDM-2_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-2/a_100s_400her_0.4__maf_0.2_EDM-2_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-2/a_100s_400her_0.4__maf_0.2_EDM-2_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-2/a_100s_400her_0.4__maf_0.2_EDM-2_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-2/a_100s_400her_0.4__maf_0.2_EDM-2_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-2/a_100s_400her_0.4__maf_0.2_EDM-2_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-2/a_100s_400her_0.4__maf_0.2_EDM-2_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-2/a_100s_400her_0.4__maf_0.2_EDM-2_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-2/a_100s_400her_0.4__maf_0.2_EDM-2_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-2/a_100s_400her_0.4__maf_0.2_EDM-2_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-2/a_100s_400her_0.4__maf_0.2_EDM-2_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-2/a_100s_400her_0.4__maf_0.2_EDM-2_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-2/a_100s_400her_0.4__maf_0.2_EDM-2_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-2/a_100s_400her_0.4__maf_0.2_EDM-2_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-2/a_100s_400her_0.4__maf_0.2_EDM-2_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-2/a_100s_400her_0.4__maf_0.2_EDM-2_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-2/a_100s_400her_0.4__maf_0.2_EDM-2_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-2/a_100s_400her_0.4__maf_0.2_EDM-2_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-2/a_100s_400her_0.4__maf_0.2_EDM-2_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-2/a_100s_400her_0.4__maf_0.2_EDM-2_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-2/a_100s_400her_0.4__maf_0.2_EDM-2_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-2/a_100s_400her_0.4__maf_0.2_EDM-2_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-2/a_100s_400her_0.4__maf_0.2_EDM-2_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-2/a_100s_400her_0.4__maf_0.2_EDM-2_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-2/a_100s_400her_0.4__maf_0.2_EDM-2_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-2/a_100s_400her_0.4__maf_0.2_EDM-2_05.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-1\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-1/a_100s_400her_0.4__maf_0.2_EDM-1_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-1/a_100s_400her_0.4__maf_0.2_EDM-1_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-1/a_100s_400her_0.4__maf_0.2_EDM-1_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-1/a_100s_400her_0.4__maf_0.2_EDM-1_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-1/a_100s_400her_0.4__maf_0.2_EDM-1_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-1/a_100s_400her_0.4__maf_0.2_EDM-1_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-1/a_100s_400her_0.4__maf_0.2_EDM-1_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-1/a_100s_400her_0.4__maf_0.2_EDM-1_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-1/a_100s_400her_0.4__maf_0.2_EDM-1_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-1/a_100s_400her_0.4__maf_0.2_EDM-1_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-1/a_100s_400her_0.4__maf_0.2_EDM-1_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-1/a_100s_400her_0.4__maf_0.2_EDM-1_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-1/a_100s_400her_0.4__maf_0.2_EDM-1_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-1/a_100s_400her_0.4__maf_0.2_EDM-1_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-1/a_100s_400her_0.4__maf_0.2_EDM-1_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-1/a_100s_400her_0.4__maf_0.2_EDM-1_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-1/a_100s_400her_0.4__maf_0.2_EDM-1_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-1/a_100s_400her_0.4__maf_0.2_EDM-1_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-1/a_100s_400her_0.4__maf_0.2_EDM-1_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-1/a_100s_400her_0.4__maf_0.2_EDM-1_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-1/a_100s_400her_0.4__maf_0.2_EDM-1_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-1/a_100s_400her_0.4__maf_0.2_EDM-1_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-1/a_100s_400her_0.4__maf_0.2_EDM-1_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-1/a_100s_400her_0.4__maf_0.2_EDM-1_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-1/a_100s_400her_0.4__maf_0.2_EDM-1_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-1/a_100s_400her_0.4__maf_0.2_EDM-1_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-1/a_100s_400her_0.4__maf_0.2_EDM-1_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-1/a_100s_400her_0.4__maf_0.2_EDM-1_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-1/a_100s_400her_0.4__maf_0.2_EDM-1_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-1/a_100s_400her_0.4__maf_0.2_EDM-1_23.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-2\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-2/a_100s_400her_0.05__maf_0.2_EDM-2_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-2/a_100s_400her_0.05__maf_0.2_EDM-2_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-2/a_100s_400her_0.05__maf_0.2_EDM-2_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-2/a_100s_400her_0.05__maf_0.2_EDM-2_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-2/a_100s_400her_0.05__maf_0.2_EDM-2_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-2/a_100s_400her_0.05__maf_0.2_EDM-2_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-2/a_100s_400her_0.05__maf_0.2_EDM-2_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-2/a_100s_400her_0.05__maf_0.2_EDM-2_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-2/a_100s_400her_0.05__maf_0.2_EDM-2_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-2/a_100s_400her_0.05__maf_0.2_EDM-2_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-2/a_100s_400her_0.05__maf_0.2_EDM-2_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-2/a_100s_400her_0.05__maf_0.2_EDM-2_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-2/a_100s_400her_0.05__maf_0.2_EDM-2_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-2/a_100s_400her_0.05__maf_0.2_EDM-2_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-2/a_100s_400her_0.05__maf_0.2_EDM-2_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-2/a_100s_400her_0.05__maf_0.2_EDM-2_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-2/a_100s_400her_0.05__maf_0.2_EDM-2_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-2/a_100s_400her_0.05__maf_0.2_EDM-2_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-2/a_100s_400her_0.05__maf_0.2_EDM-2_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-2/a_100s_400her_0.05__maf_0.2_EDM-2_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-2/a_100s_400her_0.05__maf_0.2_EDM-2_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-2/a_100s_400her_0.05__maf_0.2_EDM-2_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-2/a_100s_400her_0.05__maf_0.2_EDM-2_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-2/a_100s_400her_0.05__maf_0.2_EDM-2_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-2/a_100s_400her_0.05__maf_0.2_EDM-2_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-2/a_100s_400her_0.05__maf_0.2_EDM-2_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-2/a_100s_400her_0.05__maf_0.2_EDM-2_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-2/a_100s_400her_0.05__maf_0.2_EDM-2_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-2/a_100s_400her_0.05__maf_0.2_EDM-2_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-2/a_100s_400her_0.05__maf_0.2_EDM-2_30.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-1\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-1/a_100s_400her_0.05__maf_0.2_EDM-1_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-1/a_100s_400her_0.05__maf_0.2_EDM-1_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-1/a_100s_400her_0.05__maf_0.2_EDM-1_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-1/a_100s_400her_0.05__maf_0.2_EDM-1_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-1/a_100s_400her_0.05__maf_0.2_EDM-1_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-1/a_100s_400her_0.05__maf_0.2_EDM-1_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-1/a_100s_400her_0.05__maf_0.2_EDM-1_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-1/a_100s_400her_0.05__maf_0.2_EDM-1_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-1/a_100s_400her_0.05__maf_0.2_EDM-1_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-1/a_100s_400her_0.05__maf_0.2_EDM-1_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-1/a_100s_400her_0.05__maf_0.2_EDM-1_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-1/a_100s_400her_0.05__maf_0.2_EDM-1_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-1/a_100s_400her_0.05__maf_0.2_EDM-1_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-1/a_100s_400her_0.05__maf_0.2_EDM-1_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-1/a_100s_400her_0.05__maf_0.2_EDM-1_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-1/a_100s_400her_0.05__maf_0.2_EDM-1_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-1/a_100s_400her_0.05__maf_0.2_EDM-1_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-1/a_100s_400her_0.05__maf_0.2_EDM-1_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-1/a_100s_400her_0.05__maf_0.2_EDM-1_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-1/a_100s_400her_0.05__maf_0.2_EDM-1_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-1/a_100s_400her_0.05__maf_0.2_EDM-1_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-1/a_100s_400her_0.05__maf_0.2_EDM-1_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-1/a_100s_400her_0.05__maf_0.2_EDM-1_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-1/a_100s_400her_0.05__maf_0.2_EDM-1_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-1/a_100s_400her_0.05__maf_0.2_EDM-1_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-1/a_100s_400her_0.05__maf_0.2_EDM-1_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-1/a_100s_400her_0.05__maf_0.2_EDM-1_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-1/a_100s_400her_0.05__maf_0.2_EDM-1_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-1/a_100s_400her_0.05__maf_0.2_EDM-1_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-1/a_100s_400her_0.05__maf_0.2_EDM-1_02.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-2\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-2/a_100s_400her_0.2__maf_0.2_EDM-2_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-2/a_100s_400her_0.2__maf_0.2_EDM-2_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-2/a_100s_400her_0.2__maf_0.2_EDM-2_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-2/a_100s_400her_0.2__maf_0.2_EDM-2_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-2/a_100s_400her_0.2__maf_0.2_EDM-2_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-2/a_100s_400her_0.2__maf_0.2_EDM-2_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-2/a_100s_400her_0.2__maf_0.2_EDM-2_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-2/a_100s_400her_0.2__maf_0.2_EDM-2_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-2/a_100s_400her_0.2__maf_0.2_EDM-2_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-2/a_100s_400her_0.2__maf_0.2_EDM-2_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-2/a_100s_400her_0.2__maf_0.2_EDM-2_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-2/a_100s_400her_0.2__maf_0.2_EDM-2_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-2/a_100s_400her_0.2__maf_0.2_EDM-2_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-2/a_100s_400her_0.2__maf_0.2_EDM-2_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-2/a_100s_400her_0.2__maf_0.2_EDM-2_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-2/a_100s_400her_0.2__maf_0.2_EDM-2_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-2/a_100s_400her_0.2__maf_0.2_EDM-2_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-2/a_100s_400her_0.2__maf_0.2_EDM-2_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-2/a_100s_400her_0.2__maf_0.2_EDM-2_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-2/a_100s_400her_0.2__maf_0.2_EDM-2_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-2/a_100s_400her_0.2__maf_0.2_EDM-2_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-2/a_100s_400her_0.2__maf_0.2_EDM-2_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-2/a_100s_400her_0.2__maf_0.2_EDM-2_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-2/a_100s_400her_0.2__maf_0.2_EDM-2_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-2/a_100s_400her_0.2__maf_0.2_EDM-2_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-2/a_100s_400her_0.2__maf_0.2_EDM-2_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-2/a_100s_400her_0.2__maf_0.2_EDM-2_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-2/a_100s_400her_0.2__maf_0.2_EDM-2_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-2/a_100s_400her_0.2__maf_0.2_EDM-2_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-2/a_100s_400her_0.2__maf_0.2_EDM-2_29.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-1\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-1/a_100s_400her_0.2__maf_0.2_EDM-1_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-1/a_100s_400her_0.2__maf_0.2_EDM-1_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-1/a_100s_400her_0.2__maf_0.2_EDM-1_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-1/a_100s_400her_0.2__maf_0.2_EDM-1_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-1/a_100s_400her_0.2__maf_0.2_EDM-1_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-1/a_100s_400her_0.2__maf_0.2_EDM-1_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-1/a_100s_400her_0.2__maf_0.2_EDM-1_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-1/a_100s_400her_0.2__maf_0.2_EDM-1_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-1/a_100s_400her_0.2__maf_0.2_EDM-1_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-1/a_100s_400her_0.2__maf_0.2_EDM-1_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-1/a_100s_400her_0.2__maf_0.2_EDM-1_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-1/a_100s_400her_0.2__maf_0.2_EDM-1_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-1/a_100s_400her_0.2__maf_0.2_EDM-1_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-1/a_100s_400her_0.2__maf_0.2_EDM-1_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-1/a_100s_400her_0.2__maf_0.2_EDM-1_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-1/a_100s_400her_0.2__maf_0.2_EDM-1_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-1/a_100s_400her_0.2__maf_0.2_EDM-1_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-1/a_100s_400her_0.2__maf_0.2_EDM-1_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-1/a_100s_400her_0.2__maf_0.2_EDM-1_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-1/a_100s_400her_0.2__maf_0.2_EDM-1_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-1/a_100s_400her_0.2__maf_0.2_EDM-1_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-1/a_100s_400her_0.2__maf_0.2_EDM-1_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-1/a_100s_400her_0.2__maf_0.2_EDM-1_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-1/a_100s_400her_0.2__maf_0.2_EDM-1_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-1/a_100s_400her_0.2__maf_0.2_EDM-1_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-1/a_100s_400her_0.2__maf_0.2_EDM-1_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-1/a_100s_400her_0.2__maf_0.2_EDM-1_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-1/a_100s_400her_0.2__maf_0.2_EDM-1_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-1/a_100s_400her_0.2__maf_0.2_EDM-1_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-1/a_100s_400her_0.2__maf_0.2_EDM-1_27.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-1\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-1/a_100s_1600her_0.1__maf_0.2_EDM-1_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-1/a_100s_1600her_0.1__maf_0.2_EDM-1_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-1/a_100s_1600her_0.1__maf_0.2_EDM-1_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-1/a_100s_1600her_0.1__maf_0.2_EDM-1_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-1/a_100s_1600her_0.1__maf_0.2_EDM-1_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-1/a_100s_1600her_0.1__maf_0.2_EDM-1_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-1/a_100s_1600her_0.1__maf_0.2_EDM-1_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-1/a_100s_1600her_0.1__maf_0.2_EDM-1_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-1/a_100s_1600her_0.1__maf_0.2_EDM-1_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-1/a_100s_1600her_0.1__maf_0.2_EDM-1_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-1/a_100s_1600her_0.1__maf_0.2_EDM-1_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-1/a_100s_1600her_0.1__maf_0.2_EDM-1_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-1/a_100s_1600her_0.1__maf_0.2_EDM-1_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-1/a_100s_1600her_0.1__maf_0.2_EDM-1_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-1/a_100s_1600her_0.1__maf_0.2_EDM-1_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-1/a_100s_1600her_0.1__maf_0.2_EDM-1_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-1/a_100s_1600her_0.1__maf_0.2_EDM-1_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-1/a_100s_1600her_0.1__maf_0.2_EDM-1_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-1/a_100s_1600her_0.1__maf_0.2_EDM-1_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-1/a_100s_1600her_0.1__maf_0.2_EDM-1_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-1/a_100s_1600her_0.1__maf_0.2_EDM-1_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-1/a_100s_1600her_0.1__maf_0.2_EDM-1_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-1/a_100s_1600her_0.1__maf_0.2_EDM-1_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-1/a_100s_1600her_0.1__maf_0.2_EDM-1_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-1/a_100s_1600her_0.1__maf_0.2_EDM-1_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-1/a_100s_1600her_0.1__maf_0.2_EDM-1_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-1/a_100s_1600her_0.1__maf_0.2_EDM-1_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-1/a_100s_1600her_0.1__maf_0.2_EDM-1_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-1/a_100s_1600her_0.1__maf_0.2_EDM-1_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-1/a_100s_1600her_0.1__maf_0.2_EDM-1_09.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-2\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-2/a_100s_1600her_0.1__maf_0.2_EDM-2_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-2/a_100s_1600her_0.1__maf_0.2_EDM-2_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-2/a_100s_1600her_0.1__maf_0.2_EDM-2_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-2/a_100s_1600her_0.1__maf_0.2_EDM-2_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-2/a_100s_1600her_0.1__maf_0.2_EDM-2_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-2/a_100s_1600her_0.1__maf_0.2_EDM-2_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-2/a_100s_1600her_0.1__maf_0.2_EDM-2_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-2/a_100s_1600her_0.1__maf_0.2_EDM-2_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-2/a_100s_1600her_0.1__maf_0.2_EDM-2_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-2/a_100s_1600her_0.1__maf_0.2_EDM-2_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-2/a_100s_1600her_0.1__maf_0.2_EDM-2_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-2/a_100s_1600her_0.1__maf_0.2_EDM-2_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-2/a_100s_1600her_0.1__maf_0.2_EDM-2_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-2/a_100s_1600her_0.1__maf_0.2_EDM-2_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-2/a_100s_1600her_0.1__maf_0.2_EDM-2_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-2/a_100s_1600her_0.1__maf_0.2_EDM-2_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-2/a_100s_1600her_0.1__maf_0.2_EDM-2_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-2/a_100s_1600her_0.1__maf_0.2_EDM-2_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-2/a_100s_1600her_0.1__maf_0.2_EDM-2_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-2/a_100s_1600her_0.1__maf_0.2_EDM-2_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-2/a_100s_1600her_0.1__maf_0.2_EDM-2_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-2/a_100s_1600her_0.1__maf_0.2_EDM-2_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-2/a_100s_1600her_0.1__maf_0.2_EDM-2_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-2/a_100s_1600her_0.1__maf_0.2_EDM-2_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-2/a_100s_1600her_0.1__maf_0.2_EDM-2_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-2/a_100s_1600her_0.1__maf_0.2_EDM-2_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-2/a_100s_1600her_0.1__maf_0.2_EDM-2_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-2/a_100s_1600her_0.1__maf_0.2_EDM-2_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-2/a_100s_1600her_0.1__maf_0.2_EDM-2_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-2/a_100s_1600her_0.1__maf_0.2_EDM-2_13.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-1\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-1/a_100s_1600her_0.4__maf_0.2_EDM-1_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-1/a_100s_1600her_0.4__maf_0.2_EDM-1_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-1/a_100s_1600her_0.4__maf_0.2_EDM-1_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-1/a_100s_1600her_0.4__maf_0.2_EDM-1_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-1/a_100s_1600her_0.4__maf_0.2_EDM-1_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-1/a_100s_1600her_0.4__maf_0.2_EDM-1_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-1/a_100s_1600her_0.4__maf_0.2_EDM-1_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-1/a_100s_1600her_0.4__maf_0.2_EDM-1_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-1/a_100s_1600her_0.4__maf_0.2_EDM-1_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-1/a_100s_1600her_0.4__maf_0.2_EDM-1_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-1/a_100s_1600her_0.4__maf_0.2_EDM-1_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-1/a_100s_1600her_0.4__maf_0.2_EDM-1_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-1/a_100s_1600her_0.4__maf_0.2_EDM-1_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-1/a_100s_1600her_0.4__maf_0.2_EDM-1_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-1/a_100s_1600her_0.4__maf_0.2_EDM-1_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-1/a_100s_1600her_0.4__maf_0.2_EDM-1_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-1/a_100s_1600her_0.4__maf_0.2_EDM-1_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-1/a_100s_1600her_0.4__maf_0.2_EDM-1_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-1/a_100s_1600her_0.4__maf_0.2_EDM-1_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-1/a_100s_1600her_0.4__maf_0.2_EDM-1_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-1/a_100s_1600her_0.4__maf_0.2_EDM-1_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-1/a_100s_1600her_0.4__maf_0.2_EDM-1_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-1/a_100s_1600her_0.4__maf_0.2_EDM-1_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-1/a_100s_1600her_0.4__maf_0.2_EDM-1_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-1/a_100s_1600her_0.4__maf_0.2_EDM-1_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-1/a_100s_1600her_0.4__maf_0.2_EDM-1_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-1/a_100s_1600her_0.4__maf_0.2_EDM-1_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-1/a_100s_1600her_0.4__maf_0.2_EDM-1_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-1/a_100s_1600her_0.4__maf_0.2_EDM-1_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-1/a_100s_1600her_0.4__maf_0.2_EDM-1_14.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-2\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-2/a_100s_1600her_0.4__maf_0.2_EDM-2_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-2/a_100s_1600her_0.4__maf_0.2_EDM-2_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-2/a_100s_1600her_0.4__maf_0.2_EDM-2_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-2/a_100s_1600her_0.4__maf_0.2_EDM-2_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-2/a_100s_1600her_0.4__maf_0.2_EDM-2_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-2/a_100s_1600her_0.4__maf_0.2_EDM-2_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-2/a_100s_1600her_0.4__maf_0.2_EDM-2_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-2/a_100s_1600her_0.4__maf_0.2_EDM-2_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-2/a_100s_1600her_0.4__maf_0.2_EDM-2_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-2/a_100s_1600her_0.4__maf_0.2_EDM-2_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-2/a_100s_1600her_0.4__maf_0.2_EDM-2_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-2/a_100s_1600her_0.4__maf_0.2_EDM-2_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-2/a_100s_1600her_0.4__maf_0.2_EDM-2_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-2/a_100s_1600her_0.4__maf_0.2_EDM-2_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-2/a_100s_1600her_0.4__maf_0.2_EDM-2_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-2/a_100s_1600her_0.4__maf_0.2_EDM-2_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-2/a_100s_1600her_0.4__maf_0.2_EDM-2_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-2/a_100s_1600her_0.4__maf_0.2_EDM-2_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-2/a_100s_1600her_0.4__maf_0.2_EDM-2_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-2/a_100s_1600her_0.4__maf_0.2_EDM-2_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-2/a_100s_1600her_0.4__maf_0.2_EDM-2_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-2/a_100s_1600her_0.4__maf_0.2_EDM-2_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-2/a_100s_1600her_0.4__maf_0.2_EDM-2_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-2/a_100s_1600her_0.4__maf_0.2_EDM-2_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-2/a_100s_1600her_0.4__maf_0.2_EDM-2_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-2/a_100s_1600her_0.4__maf_0.2_EDM-2_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-2/a_100s_1600her_0.4__maf_0.2_EDM-2_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-2/a_100s_1600her_0.4__maf_0.2_EDM-2_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-2/a_100s_1600her_0.4__maf_0.2_EDM-2_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-2/a_100s_1600her_0.4__maf_0.2_EDM-2_26.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-1\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-1/a_100s_1600her_0.05__maf_0.2_EDM-1_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-1/a_100s_1600her_0.05__maf_0.2_EDM-1_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-1/a_100s_1600her_0.05__maf_0.2_EDM-1_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-1/a_100s_1600her_0.05__maf_0.2_EDM-1_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-1/a_100s_1600her_0.05__maf_0.2_EDM-1_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-1/a_100s_1600her_0.05__maf_0.2_EDM-1_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-1/a_100s_1600her_0.05__maf_0.2_EDM-1_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-1/a_100s_1600her_0.05__maf_0.2_EDM-1_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-1/a_100s_1600her_0.05__maf_0.2_EDM-1_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-1/a_100s_1600her_0.05__maf_0.2_EDM-1_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-1/a_100s_1600her_0.05__maf_0.2_EDM-1_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-1/a_100s_1600her_0.05__maf_0.2_EDM-1_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-1/a_100s_1600her_0.05__maf_0.2_EDM-1_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-1/a_100s_1600her_0.05__maf_0.2_EDM-1_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-1/a_100s_1600her_0.05__maf_0.2_EDM-1_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-1/a_100s_1600her_0.05__maf_0.2_EDM-1_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-1/a_100s_1600her_0.05__maf_0.2_EDM-1_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-1/a_100s_1600her_0.05__maf_0.2_EDM-1_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-1/a_100s_1600her_0.05__maf_0.2_EDM-1_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-1/a_100s_1600her_0.05__maf_0.2_EDM-1_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-1/a_100s_1600her_0.05__maf_0.2_EDM-1_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-1/a_100s_1600her_0.05__maf_0.2_EDM-1_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-1/a_100s_1600her_0.05__maf_0.2_EDM-1_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-1/a_100s_1600her_0.05__maf_0.2_EDM-1_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-1/a_100s_1600her_0.05__maf_0.2_EDM-1_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-1/a_100s_1600her_0.05__maf_0.2_EDM-1_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-1/a_100s_1600her_0.05__maf_0.2_EDM-1_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-1/a_100s_1600her_0.05__maf_0.2_EDM-1_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-1/a_100s_1600her_0.05__maf_0.2_EDM-1_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-1/a_100s_1600her_0.05__maf_0.2_EDM-1_17.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-2\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-2/a_100s_1600her_0.05__maf_0.2_EDM-2_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-2/a_100s_1600her_0.05__maf_0.2_EDM-2_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-2/a_100s_1600her_0.05__maf_0.2_EDM-2_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-2/a_100s_1600her_0.05__maf_0.2_EDM-2_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-2/a_100s_1600her_0.05__maf_0.2_EDM-2_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-2/a_100s_1600her_0.05__maf_0.2_EDM-2_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-2/a_100s_1600her_0.05__maf_0.2_EDM-2_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-2/a_100s_1600her_0.05__maf_0.2_EDM-2_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-2/a_100s_1600her_0.05__maf_0.2_EDM-2_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-2/a_100s_1600her_0.05__maf_0.2_EDM-2_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-2/a_100s_1600her_0.05__maf_0.2_EDM-2_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-2/a_100s_1600her_0.05__maf_0.2_EDM-2_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-2/a_100s_1600her_0.05__maf_0.2_EDM-2_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-2/a_100s_1600her_0.05__maf_0.2_EDM-2_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-2/a_100s_1600her_0.05__maf_0.2_EDM-2_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-2/a_100s_1600her_0.05__maf_0.2_EDM-2_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-2/a_100s_1600her_0.05__maf_0.2_EDM-2_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-2/a_100s_1600her_0.05__maf_0.2_EDM-2_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-2/a_100s_1600her_0.05__maf_0.2_EDM-2_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-2/a_100s_1600her_0.05__maf_0.2_EDM-2_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-2/a_100s_1600her_0.05__maf_0.2_EDM-2_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-2/a_100s_1600her_0.05__maf_0.2_EDM-2_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-2/a_100s_1600her_0.05__maf_0.2_EDM-2_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-2/a_100s_1600her_0.05__maf_0.2_EDM-2_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-2/a_100s_1600her_0.05__maf_0.2_EDM-2_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-2/a_100s_1600her_0.05__maf_0.2_EDM-2_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-2/a_100s_1600her_0.05__maf_0.2_EDM-2_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-2/a_100s_1600her_0.05__maf_0.2_EDM-2_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-2/a_100s_1600her_0.05__maf_0.2_EDM-2_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-2/a_100s_1600her_0.05__maf_0.2_EDM-2_19.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-1\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-1/a_100s_1600her_0.2__maf_0.2_EDM-1_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-1/a_100s_1600her_0.2__maf_0.2_EDM-1_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-1/a_100s_1600her_0.2__maf_0.2_EDM-1_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-1/a_100s_1600her_0.2__maf_0.2_EDM-1_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-1/a_100s_1600her_0.2__maf_0.2_EDM-1_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-1/a_100s_1600her_0.2__maf_0.2_EDM-1_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-1/a_100s_1600her_0.2__maf_0.2_EDM-1_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-1/a_100s_1600her_0.2__maf_0.2_EDM-1_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-1/a_100s_1600her_0.2__maf_0.2_EDM-1_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-1/a_100s_1600her_0.2__maf_0.2_EDM-1_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-1/a_100s_1600her_0.2__maf_0.2_EDM-1_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-1/a_100s_1600her_0.2__maf_0.2_EDM-1_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-1/a_100s_1600her_0.2__maf_0.2_EDM-1_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-1/a_100s_1600her_0.2__maf_0.2_EDM-1_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-1/a_100s_1600her_0.2__maf_0.2_EDM-1_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-1/a_100s_1600her_0.2__maf_0.2_EDM-1_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-1/a_100s_1600her_0.2__maf_0.2_EDM-1_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-1/a_100s_1600her_0.2__maf_0.2_EDM-1_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-1/a_100s_1600her_0.2__maf_0.2_EDM-1_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-1/a_100s_1600her_0.2__maf_0.2_EDM-1_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-1/a_100s_1600her_0.2__maf_0.2_EDM-1_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-1/a_100s_1600her_0.2__maf_0.2_EDM-1_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-1/a_100s_1600her_0.2__maf_0.2_EDM-1_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-1/a_100s_1600her_0.2__maf_0.2_EDM-1_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-1/a_100s_1600her_0.2__maf_0.2_EDM-1_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-1/a_100s_1600her_0.2__maf_0.2_EDM-1_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-1/a_100s_1600her_0.2__maf_0.2_EDM-1_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-1/a_100s_1600her_0.2__maf_0.2_EDM-1_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-1/a_100s_1600her_0.2__maf_0.2_EDM-1_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-1/a_100s_1600her_0.2__maf_0.2_EDM-1_04.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-2\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-2/a_100s_1600her_0.2__maf_0.2_EDM-2_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-2/a_100s_1600her_0.2__maf_0.2_EDM-2_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-2/a_100s_1600her_0.2__maf_0.2_EDM-2_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-2/a_100s_1600her_0.2__maf_0.2_EDM-2_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-2/a_100s_1600her_0.2__maf_0.2_EDM-2_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-2/a_100s_1600her_0.2__maf_0.2_EDM-2_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-2/a_100s_1600her_0.2__maf_0.2_EDM-2_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-2/a_100s_1600her_0.2__maf_0.2_EDM-2_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-2/a_100s_1600her_0.2__maf_0.2_EDM-2_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-2/a_100s_1600her_0.2__maf_0.2_EDM-2_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-2/a_100s_1600her_0.2__maf_0.2_EDM-2_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-2/a_100s_1600her_0.2__maf_0.2_EDM-2_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-2/a_100s_1600her_0.2__maf_0.2_EDM-2_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-2/a_100s_1600her_0.2__maf_0.2_EDM-2_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-2/a_100s_1600her_0.2__maf_0.2_EDM-2_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-2/a_100s_1600her_0.2__maf_0.2_EDM-2_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-2/a_100s_1600her_0.2__maf_0.2_EDM-2_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-2/a_100s_1600her_0.2__maf_0.2_EDM-2_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-2/a_100s_1600her_0.2__maf_0.2_EDM-2_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-2/a_100s_1600her_0.2__maf_0.2_EDM-2_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-2/a_100s_1600her_0.2__maf_0.2_EDM-2_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-2/a_100s_1600her_0.2__maf_0.2_EDM-2_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-2/a_100s_1600her_0.2__maf_0.2_EDM-2_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-2/a_100s_1600her_0.2__maf_0.2_EDM-2_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-2/a_100s_1600her_0.2__maf_0.2_EDM-2_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-2/a_100s_1600her_0.2__maf_0.2_EDM-2_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-2/a_100s_1600her_0.2__maf_0.2_EDM-2_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-2/a_100s_1600her_0.2__maf_0.2_EDM-2_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-2/a_100s_1600her_0.2__maf_0.2_EDM-2_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-2/a_100s_1600her_0.2__maf_0.2_EDM-2_22.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-1\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-1/a_100s_200her_0.1__maf_0.2_EDM-1_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-1/a_100s_200her_0.1__maf_0.2_EDM-1_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-1/a_100s_200her_0.1__maf_0.2_EDM-1_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-1/a_100s_200her_0.1__maf_0.2_EDM-1_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-1/a_100s_200her_0.1__maf_0.2_EDM-1_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-1/a_100s_200her_0.1__maf_0.2_EDM-1_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-1/a_100s_200her_0.1__maf_0.2_EDM-1_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-1/a_100s_200her_0.1__maf_0.2_EDM-1_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-1/a_100s_200her_0.1__maf_0.2_EDM-1_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-1/a_100s_200her_0.1__maf_0.2_EDM-1_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-1/a_100s_200her_0.1__maf_0.2_EDM-1_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-1/a_100s_200her_0.1__maf_0.2_EDM-1_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-1/a_100s_200her_0.1__maf_0.2_EDM-1_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-1/a_100s_200her_0.1__maf_0.2_EDM-1_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-1/a_100s_200her_0.1__maf_0.2_EDM-1_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-1/a_100s_200her_0.1__maf_0.2_EDM-1_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-1/a_100s_200her_0.1__maf_0.2_EDM-1_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-1/a_100s_200her_0.1__maf_0.2_EDM-1_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-1/a_100s_200her_0.1__maf_0.2_EDM-1_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-1/a_100s_200her_0.1__maf_0.2_EDM-1_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-1/a_100s_200her_0.1__maf_0.2_EDM-1_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-1/a_100s_200her_0.1__maf_0.2_EDM-1_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-1/a_100s_200her_0.1__maf_0.2_EDM-1_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-1/a_100s_200her_0.1__maf_0.2_EDM-1_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-1/a_100s_200her_0.1__maf_0.2_EDM-1_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-1/a_100s_200her_0.1__maf_0.2_EDM-1_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-1/a_100s_200her_0.1__maf_0.2_EDM-1_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-1/a_100s_200her_0.1__maf_0.2_EDM-1_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-1/a_100s_200her_0.1__maf_0.2_EDM-1_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-1/a_100s_200her_0.1__maf_0.2_EDM-1_17.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-2\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-2/a_100s_200her_0.1__maf_0.2_EDM-2_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-2/a_100s_200her_0.1__maf_0.2_EDM-2_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-2/a_100s_200her_0.1__maf_0.2_EDM-2_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-2/a_100s_200her_0.1__maf_0.2_EDM-2_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-2/a_100s_200her_0.1__maf_0.2_EDM-2_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-2/a_100s_200her_0.1__maf_0.2_EDM-2_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-2/a_100s_200her_0.1__maf_0.2_EDM-2_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-2/a_100s_200her_0.1__maf_0.2_EDM-2_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-2/a_100s_200her_0.1__maf_0.2_EDM-2_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-2/a_100s_200her_0.1__maf_0.2_EDM-2_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-2/a_100s_200her_0.1__maf_0.2_EDM-2_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-2/a_100s_200her_0.1__maf_0.2_EDM-2_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-2/a_100s_200her_0.1__maf_0.2_EDM-2_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-2/a_100s_200her_0.1__maf_0.2_EDM-2_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-2/a_100s_200her_0.1__maf_0.2_EDM-2_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-2/a_100s_200her_0.1__maf_0.2_EDM-2_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-2/a_100s_200her_0.1__maf_0.2_EDM-2_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-2/a_100s_200her_0.1__maf_0.2_EDM-2_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-2/a_100s_200her_0.1__maf_0.2_EDM-2_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-2/a_100s_200her_0.1__maf_0.2_EDM-2_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-2/a_100s_200her_0.1__maf_0.2_EDM-2_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-2/a_100s_200her_0.1__maf_0.2_EDM-2_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-2/a_100s_200her_0.1__maf_0.2_EDM-2_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-2/a_100s_200her_0.1__maf_0.2_EDM-2_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-2/a_100s_200her_0.1__maf_0.2_EDM-2_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-2/a_100s_200her_0.1__maf_0.2_EDM-2_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-2/a_100s_200her_0.1__maf_0.2_EDM-2_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-2/a_100s_200her_0.1__maf_0.2_EDM-2_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-2/a_100s_200her_0.1__maf_0.2_EDM-2_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-2/a_100s_200her_0.1__maf_0.2_EDM-2_25.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-1\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-1/a_100s_200her_0.4__maf_0.2_EDM-1_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-1/a_100s_200her_0.4__maf_0.2_EDM-1_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-1/a_100s_200her_0.4__maf_0.2_EDM-1_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-1/a_100s_200her_0.4__maf_0.2_EDM-1_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-1/a_100s_200her_0.4__maf_0.2_EDM-1_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-1/a_100s_200her_0.4__maf_0.2_EDM-1_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-1/a_100s_200her_0.4__maf_0.2_EDM-1_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-1/a_100s_200her_0.4__maf_0.2_EDM-1_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-1/a_100s_200her_0.4__maf_0.2_EDM-1_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-1/a_100s_200her_0.4__maf_0.2_EDM-1_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-1/a_100s_200her_0.4__maf_0.2_EDM-1_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-1/a_100s_200her_0.4__maf_0.2_EDM-1_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-1/a_100s_200her_0.4__maf_0.2_EDM-1_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-1/a_100s_200her_0.4__maf_0.2_EDM-1_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-1/a_100s_200her_0.4__maf_0.2_EDM-1_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-1/a_100s_200her_0.4__maf_0.2_EDM-1_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-1/a_100s_200her_0.4__maf_0.2_EDM-1_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-1/a_100s_200her_0.4__maf_0.2_EDM-1_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-1/a_100s_200her_0.4__maf_0.2_EDM-1_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-1/a_100s_200her_0.4__maf_0.2_EDM-1_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-1/a_100s_200her_0.4__maf_0.2_EDM-1_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-1/a_100s_200her_0.4__maf_0.2_EDM-1_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-1/a_100s_200her_0.4__maf_0.2_EDM-1_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-1/a_100s_200her_0.4__maf_0.2_EDM-1_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-1/a_100s_200her_0.4__maf_0.2_EDM-1_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-1/a_100s_200her_0.4__maf_0.2_EDM-1_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-1/a_100s_200her_0.4__maf_0.2_EDM-1_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-1/a_100s_200her_0.4__maf_0.2_EDM-1_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-1/a_100s_200her_0.4__maf_0.2_EDM-1_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-1/a_100s_200her_0.4__maf_0.2_EDM-1_22.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-2\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-2/a_100s_200her_0.4__maf_0.2_EDM-2_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-2/a_100s_200her_0.4__maf_0.2_EDM-2_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-2/a_100s_200her_0.4__maf_0.2_EDM-2_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-2/a_100s_200her_0.4__maf_0.2_EDM-2_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-2/a_100s_200her_0.4__maf_0.2_EDM-2_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-2/a_100s_200her_0.4__maf_0.2_EDM-2_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-2/a_100s_200her_0.4__maf_0.2_EDM-2_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-2/a_100s_200her_0.4__maf_0.2_EDM-2_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-2/a_100s_200her_0.4__maf_0.2_EDM-2_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-2/a_100s_200her_0.4__maf_0.2_EDM-2_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-2/a_100s_200her_0.4__maf_0.2_EDM-2_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-2/a_100s_200her_0.4__maf_0.2_EDM-2_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-2/a_100s_200her_0.4__maf_0.2_EDM-2_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-2/a_100s_200her_0.4__maf_0.2_EDM-2_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-2/a_100s_200her_0.4__maf_0.2_EDM-2_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-2/a_100s_200her_0.4__maf_0.2_EDM-2_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-2/a_100s_200her_0.4__maf_0.2_EDM-2_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-2/a_100s_200her_0.4__maf_0.2_EDM-2_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-2/a_100s_200her_0.4__maf_0.2_EDM-2_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-2/a_100s_200her_0.4__maf_0.2_EDM-2_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-2/a_100s_200her_0.4__maf_0.2_EDM-2_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-2/a_100s_200her_0.4__maf_0.2_EDM-2_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-2/a_100s_200her_0.4__maf_0.2_EDM-2_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-2/a_100s_200her_0.4__maf_0.2_EDM-2_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-2/a_100s_200her_0.4__maf_0.2_EDM-2_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-2/a_100s_200her_0.4__maf_0.2_EDM-2_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-2/a_100s_200her_0.4__maf_0.2_EDM-2_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-2/a_100s_200her_0.4__maf_0.2_EDM-2_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-2/a_100s_200her_0.4__maf_0.2_EDM-2_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-2/a_100s_200her_0.4__maf_0.2_EDM-2_04.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-1\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-1/a_100s_200her_0.05__maf_0.2_EDM-1_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-1/a_100s_200her_0.05__maf_0.2_EDM-1_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-1/a_100s_200her_0.05__maf_0.2_EDM-1_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-1/a_100s_200her_0.05__maf_0.2_EDM-1_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-1/a_100s_200her_0.05__maf_0.2_EDM-1_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-1/a_100s_200her_0.05__maf_0.2_EDM-1_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-1/a_100s_200her_0.05__maf_0.2_EDM-1_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-1/a_100s_200her_0.05__maf_0.2_EDM-1_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-1/a_100s_200her_0.05__maf_0.2_EDM-1_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-1/a_100s_200her_0.05__maf_0.2_EDM-1_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-1/a_100s_200her_0.05__maf_0.2_EDM-1_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-1/a_100s_200her_0.05__maf_0.2_EDM-1_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-1/a_100s_200her_0.05__maf_0.2_EDM-1_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-1/a_100s_200her_0.05__maf_0.2_EDM-1_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-1/a_100s_200her_0.05__maf_0.2_EDM-1_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-1/a_100s_200her_0.05__maf_0.2_EDM-1_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-1/a_100s_200her_0.05__maf_0.2_EDM-1_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-1/a_100s_200her_0.05__maf_0.2_EDM-1_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-1/a_100s_200her_0.05__maf_0.2_EDM-1_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-1/a_100s_200her_0.05__maf_0.2_EDM-1_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-1/a_100s_200her_0.05__maf_0.2_EDM-1_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-1/a_100s_200her_0.05__maf_0.2_EDM-1_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-1/a_100s_200her_0.05__maf_0.2_EDM-1_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-1/a_100s_200her_0.05__maf_0.2_EDM-1_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-1/a_100s_200her_0.05__maf_0.2_EDM-1_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-1/a_100s_200her_0.05__maf_0.2_EDM-1_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-1/a_100s_200her_0.05__maf_0.2_EDM-1_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-1/a_100s_200her_0.05__maf_0.2_EDM-1_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-1/a_100s_200her_0.05__maf_0.2_EDM-1_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-1/a_100s_200her_0.05__maf_0.2_EDM-1_13.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-2\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-2/a_100s_200her_0.05__maf_0.2_EDM-2_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-2/a_100s_200her_0.05__maf_0.2_EDM-2_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-2/a_100s_200her_0.05__maf_0.2_EDM-2_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-2/a_100s_200her_0.05__maf_0.2_EDM-2_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-2/a_100s_200her_0.05__maf_0.2_EDM-2_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-2/a_100s_200her_0.05__maf_0.2_EDM-2_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-2/a_100s_200her_0.05__maf_0.2_EDM-2_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-2/a_100s_200her_0.05__maf_0.2_EDM-2_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-2/a_100s_200her_0.05__maf_0.2_EDM-2_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-2/a_100s_200her_0.05__maf_0.2_EDM-2_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-2/a_100s_200her_0.05__maf_0.2_EDM-2_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-2/a_100s_200her_0.05__maf_0.2_EDM-2_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-2/a_100s_200her_0.05__maf_0.2_EDM-2_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-2/a_100s_200her_0.05__maf_0.2_EDM-2_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-2/a_100s_200her_0.05__maf_0.2_EDM-2_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-2/a_100s_200her_0.05__maf_0.2_EDM-2_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-2/a_100s_200her_0.05__maf_0.2_EDM-2_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-2/a_100s_200her_0.05__maf_0.2_EDM-2_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-2/a_100s_200her_0.05__maf_0.2_EDM-2_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-2/a_100s_200her_0.05__maf_0.2_EDM-2_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-2/a_100s_200her_0.05__maf_0.2_EDM-2_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-2/a_100s_200her_0.05__maf_0.2_EDM-2_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-2/a_100s_200her_0.05__maf_0.2_EDM-2_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-2/a_100s_200her_0.05__maf_0.2_EDM-2_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-2/a_100s_200her_0.05__maf_0.2_EDM-2_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-2/a_100s_200her_0.05__maf_0.2_EDM-2_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-2/a_100s_200her_0.05__maf_0.2_EDM-2_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-2/a_100s_200her_0.05__maf_0.2_EDM-2_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-2/a_100s_200her_0.05__maf_0.2_EDM-2_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-2/a_100s_200her_0.05__maf_0.2_EDM-2_09.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-1\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-1/a_100s_200her_0.2__maf_0.2_EDM-1_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-1/a_100s_200her_0.2__maf_0.2_EDM-1_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-1/a_100s_200her_0.2__maf_0.2_EDM-1_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-1/a_100s_200her_0.2__maf_0.2_EDM-1_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-1/a_100s_200her_0.2__maf_0.2_EDM-1_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-1/a_100s_200her_0.2__maf_0.2_EDM-1_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-1/a_100s_200her_0.2__maf_0.2_EDM-1_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-1/a_100s_200her_0.2__maf_0.2_EDM-1_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-1/a_100s_200her_0.2__maf_0.2_EDM-1_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-1/a_100s_200her_0.2__maf_0.2_EDM-1_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-1/a_100s_200her_0.2__maf_0.2_EDM-1_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-1/a_100s_200her_0.2__maf_0.2_EDM-1_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-1/a_100s_200her_0.2__maf_0.2_EDM-1_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-1/a_100s_200her_0.2__maf_0.2_EDM-1_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-1/a_100s_200her_0.2__maf_0.2_EDM-1_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-1/a_100s_200her_0.2__maf_0.2_EDM-1_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-1/a_100s_200her_0.2__maf_0.2_EDM-1_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-1/a_100s_200her_0.2__maf_0.2_EDM-1_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-1/a_100s_200her_0.2__maf_0.2_EDM-1_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-1/a_100s_200her_0.2__maf_0.2_EDM-1_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-1/a_100s_200her_0.2__maf_0.2_EDM-1_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-1/a_100s_200her_0.2__maf_0.2_EDM-1_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-1/a_100s_200her_0.2__maf_0.2_EDM-1_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-1/a_100s_200her_0.2__maf_0.2_EDM-1_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-1/a_100s_200her_0.2__maf_0.2_EDM-1_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-1/a_100s_200her_0.2__maf_0.2_EDM-1_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-1/a_100s_200her_0.2__maf_0.2_EDM-1_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-1/a_100s_200her_0.2__maf_0.2_EDM-1_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-1/a_100s_200her_0.2__maf_0.2_EDM-1_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-1/a_100s_200her_0.2__maf_0.2_EDM-1_26.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-2\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-2/a_100s_200her_0.2__maf_0.2_EDM-2_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-2/a_100s_200her_0.2__maf_0.2_EDM-2_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-2/a_100s_200her_0.2__maf_0.2_EDM-2_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-2/a_100s_200her_0.2__maf_0.2_EDM-2_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-2/a_100s_200her_0.2__maf_0.2_EDM-2_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-2/a_100s_200her_0.2__maf_0.2_EDM-2_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-2/a_100s_200her_0.2__maf_0.2_EDM-2_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-2/a_100s_200her_0.2__maf_0.2_EDM-2_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-2/a_100s_200her_0.2__maf_0.2_EDM-2_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-2/a_100s_200her_0.2__maf_0.2_EDM-2_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-2/a_100s_200her_0.2__maf_0.2_EDM-2_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-2/a_100s_200her_0.2__maf_0.2_EDM-2_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-2/a_100s_200her_0.2__maf_0.2_EDM-2_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-2/a_100s_200her_0.2__maf_0.2_EDM-2_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-2/a_100s_200her_0.2__maf_0.2_EDM-2_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-2/a_100s_200her_0.2__maf_0.2_EDM-2_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-2/a_100s_200her_0.2__maf_0.2_EDM-2_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-2/a_100s_200her_0.2__maf_0.2_EDM-2_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-2/a_100s_200her_0.2__maf_0.2_EDM-2_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-2/a_100s_200her_0.2__maf_0.2_EDM-2_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-2/a_100s_200her_0.2__maf_0.2_EDM-2_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-2/a_100s_200her_0.2__maf_0.2_EDM-2_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-2/a_100s_200her_0.2__maf_0.2_EDM-2_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-2/a_100s_200her_0.2__maf_0.2_EDM-2_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-2/a_100s_200her_0.2__maf_0.2_EDM-2_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-2/a_100s_200her_0.2__maf_0.2_EDM-2_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-2/a_100s_200her_0.2__maf_0.2_EDM-2_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-2/a_100s_200her_0.2__maf_0.2_EDM-2_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-2/a_100s_200her_0.2__maf_0.2_EDM-2_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-2/a_100s_200her_0.2__maf_0.2_EDM-2_14.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-2\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-2/a_100s_800her_0.1__maf_0.2_EDM-2_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-2/a_100s_800her_0.1__maf_0.2_EDM-2_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-2/a_100s_800her_0.1__maf_0.2_EDM-2_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-2/a_100s_800her_0.1__maf_0.2_EDM-2_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-2/a_100s_800her_0.1__maf_0.2_EDM-2_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-2/a_100s_800her_0.1__maf_0.2_EDM-2_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-2/a_100s_800her_0.1__maf_0.2_EDM-2_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-2/a_100s_800her_0.1__maf_0.2_EDM-2_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-2/a_100s_800her_0.1__maf_0.2_EDM-2_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-2/a_100s_800her_0.1__maf_0.2_EDM-2_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-2/a_100s_800her_0.1__maf_0.2_EDM-2_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-2/a_100s_800her_0.1__maf_0.2_EDM-2_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-2/a_100s_800her_0.1__maf_0.2_EDM-2_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-2/a_100s_800her_0.1__maf_0.2_EDM-2_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-2/a_100s_800her_0.1__maf_0.2_EDM-2_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-2/a_100s_800her_0.1__maf_0.2_EDM-2_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-2/a_100s_800her_0.1__maf_0.2_EDM-2_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-2/a_100s_800her_0.1__maf_0.2_EDM-2_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-2/a_100s_800her_0.1__maf_0.2_EDM-2_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-2/a_100s_800her_0.1__maf_0.2_EDM-2_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-2/a_100s_800her_0.1__maf_0.2_EDM-2_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-2/a_100s_800her_0.1__maf_0.2_EDM-2_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-2/a_100s_800her_0.1__maf_0.2_EDM-2_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-2/a_100s_800her_0.1__maf_0.2_EDM-2_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-2/a_100s_800her_0.1__maf_0.2_EDM-2_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-2/a_100s_800her_0.1__maf_0.2_EDM-2_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-2/a_100s_800her_0.1__maf_0.2_EDM-2_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-2/a_100s_800her_0.1__maf_0.2_EDM-2_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-2/a_100s_800her_0.1__maf_0.2_EDM-2_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-2/a_100s_800her_0.1__maf_0.2_EDM-2_27.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-1\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-1/a_100s_800her_0.1__maf_0.2_EDM-1_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-1/a_100s_800her_0.1__maf_0.2_EDM-1_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-1/a_100s_800her_0.1__maf_0.2_EDM-1_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-1/a_100s_800her_0.1__maf_0.2_EDM-1_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-1/a_100s_800her_0.1__maf_0.2_EDM-1_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-1/a_100s_800her_0.1__maf_0.2_EDM-1_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-1/a_100s_800her_0.1__maf_0.2_EDM-1_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-1/a_100s_800her_0.1__maf_0.2_EDM-1_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-1/a_100s_800her_0.1__maf_0.2_EDM-1_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-1/a_100s_800her_0.1__maf_0.2_EDM-1_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-1/a_100s_800her_0.1__maf_0.2_EDM-1_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-1/a_100s_800her_0.1__maf_0.2_EDM-1_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-1/a_100s_800her_0.1__maf_0.2_EDM-1_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-1/a_100s_800her_0.1__maf_0.2_EDM-1_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-1/a_100s_800her_0.1__maf_0.2_EDM-1_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-1/a_100s_800her_0.1__maf_0.2_EDM-1_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-1/a_100s_800her_0.1__maf_0.2_EDM-1_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-1/a_100s_800her_0.1__maf_0.2_EDM-1_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-1/a_100s_800her_0.1__maf_0.2_EDM-1_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-1/a_100s_800her_0.1__maf_0.2_EDM-1_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-1/a_100s_800her_0.1__maf_0.2_EDM-1_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-1/a_100s_800her_0.1__maf_0.2_EDM-1_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-1/a_100s_800her_0.1__maf_0.2_EDM-1_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-1/a_100s_800her_0.1__maf_0.2_EDM-1_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-1/a_100s_800her_0.1__maf_0.2_EDM-1_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-1/a_100s_800her_0.1__maf_0.2_EDM-1_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-1/a_100s_800her_0.1__maf_0.2_EDM-1_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-1/a_100s_800her_0.1__maf_0.2_EDM-1_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-1/a_100s_800her_0.1__maf_0.2_EDM-1_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-1/a_100s_800her_0.1__maf_0.2_EDM-1_29.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-2\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-2/a_100s_800her_0.4__maf_0.2_EDM-2_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-2/a_100s_800her_0.4__maf_0.2_EDM-2_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-2/a_100s_800her_0.4__maf_0.2_EDM-2_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-2/a_100s_800her_0.4__maf_0.2_EDM-2_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-2/a_100s_800her_0.4__maf_0.2_EDM-2_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-2/a_100s_800her_0.4__maf_0.2_EDM-2_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-2/a_100s_800her_0.4__maf_0.2_EDM-2_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-2/a_100s_800her_0.4__maf_0.2_EDM-2_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-2/a_100s_800her_0.4__maf_0.2_EDM-2_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-2/a_100s_800her_0.4__maf_0.2_EDM-2_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-2/a_100s_800her_0.4__maf_0.2_EDM-2_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-2/a_100s_800her_0.4__maf_0.2_EDM-2_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-2/a_100s_800her_0.4__maf_0.2_EDM-2_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-2/a_100s_800her_0.4__maf_0.2_EDM-2_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-2/a_100s_800her_0.4__maf_0.2_EDM-2_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-2/a_100s_800her_0.4__maf_0.2_EDM-2_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-2/a_100s_800her_0.4__maf_0.2_EDM-2_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-2/a_100s_800her_0.4__maf_0.2_EDM-2_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-2/a_100s_800her_0.4__maf_0.2_EDM-2_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-2/a_100s_800her_0.4__maf_0.2_EDM-2_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-2/a_100s_800her_0.4__maf_0.2_EDM-2_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-2/a_100s_800her_0.4__maf_0.2_EDM-2_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-2/a_100s_800her_0.4__maf_0.2_EDM-2_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-2/a_100s_800her_0.4__maf_0.2_EDM-2_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-2/a_100s_800her_0.4__maf_0.2_EDM-2_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-2/a_100s_800her_0.4__maf_0.2_EDM-2_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-2/a_100s_800her_0.4__maf_0.2_EDM-2_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-2/a_100s_800her_0.4__maf_0.2_EDM-2_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-2/a_100s_800her_0.4__maf_0.2_EDM-2_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-2/a_100s_800her_0.4__maf_0.2_EDM-2_12.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-1\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-1/a_100s_800her_0.4__maf_0.2_EDM-1_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-1/a_100s_800her_0.4__maf_0.2_EDM-1_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-1/a_100s_800her_0.4__maf_0.2_EDM-1_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-1/a_100s_800her_0.4__maf_0.2_EDM-1_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-1/a_100s_800her_0.4__maf_0.2_EDM-1_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-1/a_100s_800her_0.4__maf_0.2_EDM-1_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-1/a_100s_800her_0.4__maf_0.2_EDM-1_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-1/a_100s_800her_0.4__maf_0.2_EDM-1_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-1/a_100s_800her_0.4__maf_0.2_EDM-1_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-1/a_100s_800her_0.4__maf_0.2_EDM-1_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-1/a_100s_800her_0.4__maf_0.2_EDM-1_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-1/a_100s_800her_0.4__maf_0.2_EDM-1_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-1/a_100s_800her_0.4__maf_0.2_EDM-1_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-1/a_100s_800her_0.4__maf_0.2_EDM-1_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-1/a_100s_800her_0.4__maf_0.2_EDM-1_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-1/a_100s_800her_0.4__maf_0.2_EDM-1_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-1/a_100s_800her_0.4__maf_0.2_EDM-1_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-1/a_100s_800her_0.4__maf_0.2_EDM-1_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-1/a_100s_800her_0.4__maf_0.2_EDM-1_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-1/a_100s_800her_0.4__maf_0.2_EDM-1_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-1/a_100s_800her_0.4__maf_0.2_EDM-1_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-1/a_100s_800her_0.4__maf_0.2_EDM-1_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-1/a_100s_800her_0.4__maf_0.2_EDM-1_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-1/a_100s_800her_0.4__maf_0.2_EDM-1_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-1/a_100s_800her_0.4__maf_0.2_EDM-1_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-1/a_100s_800her_0.4__maf_0.2_EDM-1_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-1/a_100s_800her_0.4__maf_0.2_EDM-1_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-1/a_100s_800her_0.4__maf_0.2_EDM-1_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-1/a_100s_800her_0.4__maf_0.2_EDM-1_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-1/a_100s_800her_0.4__maf_0.2_EDM-1_20.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-2\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-2/a_100s_800her_0.05__maf_0.2_EDM-2_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-2/a_100s_800her_0.05__maf_0.2_EDM-2_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-2/a_100s_800her_0.05__maf_0.2_EDM-2_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-2/a_100s_800her_0.05__maf_0.2_EDM-2_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-2/a_100s_800her_0.05__maf_0.2_EDM-2_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-2/a_100s_800her_0.05__maf_0.2_EDM-2_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-2/a_100s_800her_0.05__maf_0.2_EDM-2_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-2/a_100s_800her_0.05__maf_0.2_EDM-2_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-2/a_100s_800her_0.05__maf_0.2_EDM-2_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-2/a_100s_800her_0.05__maf_0.2_EDM-2_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-2/a_100s_800her_0.05__maf_0.2_EDM-2_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-2/a_100s_800her_0.05__maf_0.2_EDM-2_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-2/a_100s_800her_0.05__maf_0.2_EDM-2_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-2/a_100s_800her_0.05__maf_0.2_EDM-2_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-2/a_100s_800her_0.05__maf_0.2_EDM-2_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-2/a_100s_800her_0.05__maf_0.2_EDM-2_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-2/a_100s_800her_0.05__maf_0.2_EDM-2_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-2/a_100s_800her_0.05__maf_0.2_EDM-2_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-2/a_100s_800her_0.05__maf_0.2_EDM-2_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-2/a_100s_800her_0.05__maf_0.2_EDM-2_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-2/a_100s_800her_0.05__maf_0.2_EDM-2_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-2/a_100s_800her_0.05__maf_0.2_EDM-2_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-2/a_100s_800her_0.05__maf_0.2_EDM-2_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-2/a_100s_800her_0.05__maf_0.2_EDM-2_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-2/a_100s_800her_0.05__maf_0.2_EDM-2_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-2/a_100s_800her_0.05__maf_0.2_EDM-2_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-2/a_100s_800her_0.05__maf_0.2_EDM-2_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-2/a_100s_800her_0.05__maf_0.2_EDM-2_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-2/a_100s_800her_0.05__maf_0.2_EDM-2_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-2/a_100s_800her_0.05__maf_0.2_EDM-2_02.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-1\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-1/a_100s_800her_0.05__maf_0.2_EDM-1_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-1/a_100s_800her_0.05__maf_0.2_EDM-1_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-1/a_100s_800her_0.05__maf_0.2_EDM-1_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-1/a_100s_800her_0.05__maf_0.2_EDM-1_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-1/a_100s_800her_0.05__maf_0.2_EDM-1_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-1/a_100s_800her_0.05__maf_0.2_EDM-1_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-1/a_100s_800her_0.05__maf_0.2_EDM-1_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-1/a_100s_800her_0.05__maf_0.2_EDM-1_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-1/a_100s_800her_0.05__maf_0.2_EDM-1_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-1/a_100s_800her_0.05__maf_0.2_EDM-1_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-1/a_100s_800her_0.05__maf_0.2_EDM-1_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-1/a_100s_800her_0.05__maf_0.2_EDM-1_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-1/a_100s_800her_0.05__maf_0.2_EDM-1_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-1/a_100s_800her_0.05__maf_0.2_EDM-1_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-1/a_100s_800her_0.05__maf_0.2_EDM-1_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-1/a_100s_800her_0.05__maf_0.2_EDM-1_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-1/a_100s_800her_0.05__maf_0.2_EDM-1_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-1/a_100s_800her_0.05__maf_0.2_EDM-1_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-1/a_100s_800her_0.05__maf_0.2_EDM-1_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-1/a_100s_800her_0.05__maf_0.2_EDM-1_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-1/a_100s_800her_0.05__maf_0.2_EDM-1_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-1/a_100s_800her_0.05__maf_0.2_EDM-1_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-1/a_100s_800her_0.05__maf_0.2_EDM-1_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-1/a_100s_800her_0.05__maf_0.2_EDM-1_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-1/a_100s_800her_0.05__maf_0.2_EDM-1_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-1/a_100s_800her_0.05__maf_0.2_EDM-1_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-1/a_100s_800her_0.05__maf_0.2_EDM-1_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-1/a_100s_800her_0.05__maf_0.2_EDM-1_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-1/a_100s_800her_0.05__maf_0.2_EDM-1_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-1/a_100s_800her_0.05__maf_0.2_EDM-1_30.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-2\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-2/a_100s_800her_0.2__maf_0.2_EDM-2_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-2/a_100s_800her_0.2__maf_0.2_EDM-2_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-2/a_100s_800her_0.2__maf_0.2_EDM-2_18.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-2/a_100s_800her_0.2__maf_0.2_EDM-2_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-2/a_100s_800her_0.2__maf_0.2_EDM-2_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-2/a_100s_800her_0.2__maf_0.2_EDM-2_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-2/a_100s_800her_0.2__maf_0.2_EDM-2_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-2/a_100s_800her_0.2__maf_0.2_EDM-2_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-2/a_100s_800her_0.2__maf_0.2_EDM-2_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-2/a_100s_800her_0.2__maf_0.2_EDM-2_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-2/a_100s_800her_0.2__maf_0.2_EDM-2_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-2/a_100s_800her_0.2__maf_0.2_EDM-2_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-2/a_100s_800her_0.2__maf_0.2_EDM-2_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-2/a_100s_800her_0.2__maf_0.2_EDM-2_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-2/a_100s_800her_0.2__maf_0.2_EDM-2_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-2/a_100s_800her_0.2__maf_0.2_EDM-2_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-2/a_100s_800her_0.2__maf_0.2_EDM-2_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-2/a_100s_800her_0.2__maf_0.2_EDM-2_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-2/a_100s_800her_0.2__maf_0.2_EDM-2_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-2/a_100s_800her_0.2__maf_0.2_EDM-2_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-2/a_100s_800her_0.2__maf_0.2_EDM-2_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-2/a_100s_800her_0.2__maf_0.2_EDM-2_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-2/a_100s_800her_0.2__maf_0.2_EDM-2_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-2/a_100s_800her_0.2__maf_0.2_EDM-2_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-2/a_100s_800her_0.2__maf_0.2_EDM-2_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-2/a_100s_800her_0.2__maf_0.2_EDM-2_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-2/a_100s_800her_0.2__maf_0.2_EDM-2_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-2/a_100s_800her_0.2__maf_0.2_EDM-2_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-2/a_100s_800her_0.2__maf_0.2_EDM-2_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-2/a_100s_800her_0.2__maf_0.2_EDM-2_16.txt\n", + "Processing in EDM directory: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-1\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-1/a_100s_800her_0.2__maf_0.2_EDM-1_01.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-1/a_100s_800her_0.2__maf_0.2_EDM-1_15.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-1/a_100s_800her_0.2__maf_0.2_EDM-1_29.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-1/a_100s_800her_0.2__maf_0.2_EDM-1_28.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-1/a_100s_800her_0.2__maf_0.2_EDM-1_14.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-1/a_100s_800her_0.2__maf_0.2_EDM-1_16.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-1/a_100s_800her_0.2__maf_0.2_EDM-1_02.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-1/a_100s_800her_0.2__maf_0.2_EDM-1_03.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-1/a_100s_800her_0.2__maf_0.2_EDM-1_17.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-1/a_100s_800her_0.2__maf_0.2_EDM-1_13.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-1/a_100s_800her_0.2__maf_0.2_EDM-1_07.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-1/a_100s_800her_0.2__maf_0.2_EDM-1_06.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-1/a_100s_800her_0.2__maf_0.2_EDM-1_12.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-1/a_100s_800her_0.2__maf_0.2_EDM-1_04.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-1/a_100s_800her_0.2__maf_0.2_EDM-1_10.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-1/a_100s_800her_0.2__maf_0.2_EDM-1_11.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-1/a_100s_800her_0.2__maf_0.2_EDM-1_05.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-1/a_100s_800her_0.2__maf_0.2_EDM-1_20.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-1/a_100s_800her_0.2__maf_0.2_EDM-1_08.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-1/a_100s_800her_0.2__maf_0.2_EDM-1_09.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-1/a_100s_800her_0.2__maf_0.2_EDM-1_21.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-1/a_100s_800her_0.2__maf_0.2_EDM-1_23.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-1/a_100s_800her_0.2__maf_0.2_EDM-1_22.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-1/a_100s_800her_0.2__maf_0.2_EDM-1_26.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-1/a_100s_800her_0.2__maf_0.2_EDM-1_27.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-1/a_100s_800her_0.2__maf_0.2_EDM-1_19.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-1/a_100s_800her_0.2__maf_0.2_EDM-1_25.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-1/a_100s_800her_0.2__maf_0.2_EDM-1_30.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-1/a_100s_800her_0.2__maf_0.2_EDM-1_24.txt\n", + "Processing file: ../BenchmarkData/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-1/a_100s_800her_0.2__maf_0.2_EDM-1_18.txt\n" + ] + } + ], + "source": [ + "# Run through the directory and produce random assortments of the features. This is the Random Shuffle that will be presented in the paper\n", + "find_and_random_shuffle(root_dir)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Define functions for Mutual Information" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [], + "source": [ + "def process_mutual_info(file_path):\n", + " # Load the genetic data\n", + " genetic_data = pd.read_csv(file_path, sep='\\t') # Ensure correct delimiter is used\n", + " \n", + " # Split the data\n", + " features, labels = genetic_data.drop('Class', axis=1).values, genetic_data['Class'].values\n", + " X_train, X_test, y_train, y_test = train_test_split(features, labels)\n", + " \n", + " # Apply Mutual Information\n", + " mi_scores = mutual_info_classif(X_train, y_train)\n", + " \n", + " # Pair feature names with MI scores\n", + " temp_list = []\n", + " for feature_name, mi_score in zip(genetic_data.drop('Class', axis=1).columns, mi_scores):\n", + " temp_list.append([feature_name, mi_score])\n", + " \n", + " # Process results\n", + " Results = pd.DataFrame(temp_list, columns=['Feature', 'Feature_Importance'])\n", + " Results.sort_values(by='Feature_Importance', ascending=False, inplace=True)\n", + " \n", + " # Define directories\n", + " base_dir = os.path.dirname(file_path)\n", + " results_dir = os.path.join(base_dir, \"Results\")\n", + " mi_dir = os.path.join(results_dir, \"MutualInformation\")\n", + " ensure_dir(mi_dir)\n", + " \n", + " # Extract base filename without extension\n", + " base_name = os.path.splitext(os.path.basename(file_path))[0]\n", + " \n", + " # Save the files\n", + " Results.to_csv(os.path.join(mi_dir, f\"{base_name}_MIResults.txt\"), index=False, sep='\\t')\n", + "\n", + "def find_and_mutual_info(root_dir):\n", + " for dirpath, dirnames, filenames in os.walk(root_dir):\n", + " # Check if 'EDM' is in the directory name directly above the files\n", + " if \"EDM\" in os.path.basename(dirpath):\n", + " #print(f\"Processing in EDM directory: {dirpath}\") # Debugging line\n", + " for filename in filenames:\n", + " if filename.endswith('.txt'): # Ensure it's a .txt file\n", + " file_path = os.path.join(dirpath, filename)\n", + " #print(f\"Processing file: {file_path}\") # Debugging line\n", + " process_mutual_info(file_path)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Run Mutual Information on directory" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": {}, + "outputs": [], + "source": [ + "# Run through the directory and perform Mutual Information.\n", + "find_and_mutual_info(root_dir)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Define functions for ReliefF with 10 NN" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [], + "source": [ + "def process_relieff10(file_path):\n", + " # Load the genetic data\n", + " genetic_data = pd.read_csv(file_path, sep = '\\t')\n", + " \n", + " # Split the data\n", + " features, labels = genetic_data.drop('Class', axis=1).values, genetic_data['Class'].values\n", + " X_train, X_test, y_train, y_test = train_test_split(features, labels)\n", + " \n", + " # Apply ReliefF\n", + " fs = ReliefF(n_features_to_select=2, n_neighbors=10)\n", + " fs.fit(X_train, y_train)\n", + " \n", + " temp_list = []\n", + " for feature_name, feature_score in zip(genetic_data.drop('Class', axis=1).columns, fs.feature_importances_):\n", + " temp_list.append([feature_name, feature_score])\n", + " \n", + " # Process results\n", + " Results = pd.DataFrame(temp_list, columns=['Feature', 'Feature_Importance'])\n", + " ABSResults = Results.copy()\n", + " ABSResults['ABS_Feature_Importance'] = ABSResults['Feature_Importance'].abs()\n", + " Results.sort_values(by='Feature_Importance', ascending=False, inplace=True)\n", + " ABSResults.sort_values(by='ABS_Feature_Importance', ascending=False, inplace=True)\n", + " \n", + " # Define directories\n", + " base_dir = os.path.dirname(file_path)\n", + " results_dir = os.path.join(base_dir, \"Results\")\n", + " relief_dir = os.path.join(results_dir, \"ReliefF10\")\n", + " abs_relief_dir = os.path.join(results_dir, \"ABS_ReliefF10\")\n", + " ensure_dir(relief_dir)\n", + " ensure_dir(abs_relief_dir)\n", + " \n", + " # Extract base filename without extension\n", + " base_name = os.path.splitext(os.path.basename(file_path))[0]\n", + " \n", + " # Save the files\n", + " Results.to_csv(os.path.join(relief_dir, f\"{base_name}_Results.txt\"), index=False, sep='\\t')\n", + " ABSResults.to_csv(os.path.join(abs_relief_dir, f\"{base_name}_ABSResults.txt\"), index=False, sep='\\t')\n", + "\n", + "def find_and_relieff10(root_dir):\n", + " for dirpath, dirnames, filenames in os.walk(root_dir):\n", + " # Check if 'EDM' is in the directory name directly above the files\n", + " if \"EDM\" in os.path.basename(dirpath):\n", + " #print(f\"Processing in EDM directory: {dirpath}\") # Debugging line\n", + " for filename in filenames:\n", + " if filename.endswith('.txt'): # Ensure it's a .txt file\n", + " file_path = os.path.join(dirpath, filename)\n", + " #print(f\"Processing file: {file_path}\") # Debugging line\n", + " process_relieff10(file_path)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Run ReliefF (10 NN) on directory" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [], + "source": [ + "find_and_relieff10(root_dir)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Define functions for ReliefF with 100 NN" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": {}, + "outputs": [], + "source": [ + "def process_relieff(file_path):\n", + " # Load the genetic data\n", + " genetic_data = pd.read_csv(file_path, sep = '\\t')\n", + " \n", + " # Split the data\n", + " features, labels = genetic_data.drop('Class', axis=1).values, genetic_data['Class'].values\n", + " X_train, X_test, y_train, y_test = train_test_split(features, labels)\n", + " \n", + " # Apply ReliefF\n", + " fs = ReliefF(n_features_to_select=2, n_neighbors=100)\n", + " fs.fit(X_train, y_train)\n", + " \n", + " temp_list = []\n", + " for feature_name, feature_score in zip(genetic_data.drop('Class', axis=1).columns, fs.feature_importances_):\n", + " temp_list.append([feature_name, feature_score])\n", + " \n", + " # Process results\n", + " Results = pd.DataFrame(temp_list, columns=['Feature', 'Feature_Importance'])\n", + " ABSResults = Results.copy()\n", + " ABSResults['ABS_Feature_Importance'] = ABSResults['Feature_Importance'].abs()\n", + " Results.sort_values(by='Feature_Importance', ascending=False, inplace=True)\n", + " ABSResults.sort_values(by='ABS_Feature_Importance', ascending=False, inplace=True)\n", + " \n", + " # Define directories\n", + " base_dir = os.path.dirname(file_path)\n", + " results_dir = os.path.join(base_dir, \"Results\")\n", + " relief_dir = os.path.join(results_dir, \"ReliefF\")\n", + " abs_relief_dir = os.path.join(results_dir, \"ABS_ReliefF\")\n", + " ensure_dir(relief_dir)\n", + " ensure_dir(abs_relief_dir)\n", + " \n", + " # Extract base filename without extension\n", + " base_name = os.path.splitext(os.path.basename(file_path))[0]\n", + " \n", + " # Save the files\n", + " Results.to_csv(os.path.join(relief_dir, f\"{base_name}_Results.txt\"), index=False, sep='\\t')\n", + " ABSResults.to_csv(os.path.join(abs_relief_dir, f\"{base_name}_ABSResults.txt\"), index=False, sep='\\t')\n", + "\n", + "def find_and_relieff(root_dir):\n", + " for dirpath, dirnames, filenames in os.walk(root_dir):\n", + " # Check if 'EDM' is in the directory name directly above the files\n", + " if \"EDM\" in os.path.basename(dirpath):\n", + " #print(f\"Processing in EDM directory: {dirpath}\") # Debugging line\n", + " for filename in filenames:\n", + " if filename.endswith('.txt'): # Ensure it's a .txt file\n", + " file_path = os.path.join(dirpath, filename)\n", + " #print(f\"Processing file: {file_path}\") # Debugging line\n", + " process_relieff(file_path)\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Run ReliefF (100 NN) on directory" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": {}, + "outputs": [], + "source": [ + "# Run through the directory and perform ReliefF 100 NN.\n", + "find_and_relieff(root_dir)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Define functions for MultiSURF" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": {}, + "outputs": [], + "source": [ + "def process_MultiSurf(file_path):\n", + " # Load the genetic data\n", + " genetic_data = pd.read_csv(file_path, sep = '\\t')\n", + " \n", + " # Split the data\n", + " features, labels = genetic_data.drop('Class', axis=1).values, genetic_data['Class'].values\n", + " X_train, X_test, y_train, y_test = train_test_split(features, labels)\n", + " \n", + " # Apply MultiSurf\n", + " fs = MultiSURF()\n", + " fs.fit(X_train, y_train)\n", + " \n", + " temp_list = []\n", + " for feature_name, feature_score in zip(genetic_data.drop('Class', axis=1).columns, fs.feature_importances_):\n", + " temp_list.append([feature_name, feature_score])\n", + " \n", + " # Process results\n", + " Results = pd.DataFrame(temp_list, columns=['Feature', 'Feature_Importance'])\n", + " ABSResults = Results.copy()\n", + " ABSResults['ABS_Feature_Importance'] = ABSResults['Feature_Importance'].abs()\n", + " Results.sort_values(by='Feature_Importance', ascending=False, inplace=True)\n", + " ABSResults.sort_values(by='ABS_Feature_Importance', ascending=False, inplace=True)\n", + " \n", + " # Define directories\n", + " base_dir = os.path.dirname(file_path)\n", + " results_dir = os.path.join(base_dir, \"Results\")\n", + " multisurf_dir = os.path.join(results_dir, \"MultiSURF\")\n", + " abs_multisurf_dir = os.path.join(results_dir, \"ABS_MultiSURF\")\n", + " ensure_dir(multisurf_dir)\n", + " ensure_dir(abs_multisurf_dir)\n", + " \n", + " # Extract base filename without extension\n", + " base_name = os.path.splitext(os.path.basename(file_path))[0]\n", + " \n", + " # Save the files\n", + " Results.to_csv(os.path.join(multisurf_dir, f\"{base_name}_Results.txt\"), index=False, sep='\\t')\n", + " ABSResults.to_csv(os.path.join(abs_multisurf_dir, f\"{base_name}_ABSResults.txt\"), index=False, sep='\\t')\n", + "\n", + "def find_and_MultiSurf(root_dir):\n", + " for dirpath, dirnames, filenames in os.walk(root_dir):\n", + " # Check if 'EDM' is in the directory name directly above the files\n", + " if \"EDM\" in os.path.basename(dirpath):\n", + " #print(f\"Processing in EDM directory: {dirpath}\") # Debugging line\n", + " for filename in filenames:\n", + " if filename.endswith('.txt'): # Ensure it's a .txt file\n", + " file_path = os.path.join(dirpath, filename)\n", + " #print(f\"Processing file: {file_path}\") # Debugging line\n", + " process_MultiSurf(file_path)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Run MultiSURF on directory" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": {}, + "outputs": [], + "source": [ + "# Run through the directory and perform MultiSURF.\n", + "find_and_MultiSurf(root_dir)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Define functions for MultiSURFstar" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": {}, + "outputs": [], + "source": [ + "def process_MultiSurfstar(file_path):\n", + " # Load the genetic data\n", + " genetic_data = pd.read_csv(file_path, sep = '\\t')\n", + " \n", + " # Split the data\n", + " features, labels = genetic_data.drop('Class', axis=1).values, genetic_data['Class'].values\n", + " X_train, X_test, y_train, y_test = train_test_split(features, labels)\n", + " \n", + " # Apply MultiSurf\n", + " fs = MultiSURFstar()\n", + " fs.fit(X_train, y_train)\n", + " \n", + " temp_list = []\n", + " for feature_name, feature_score in zip(genetic_data.drop('Class', axis=1).columns, fs.feature_importances_):\n", + " temp_list.append([feature_name, feature_score])\n", + " \n", + " # Process results\n", + " Results = pd.DataFrame(temp_list, columns=['Feature', 'Feature_Importance'])\n", + " ABSResults = Results.copy()\n", + " ABSResults['ABS_Feature_Importance'] = ABSResults['Feature_Importance'].abs()\n", + " Results.sort_values(by='Feature_Importance', ascending=False, inplace=True)\n", + " ABSResults.sort_values(by='ABS_Feature_Importance', ascending=False, inplace=True)\n", + " \n", + " # Define directories\n", + " base_dir = os.path.dirname(file_path)\n", + " results_dir = os.path.join(base_dir, \"Results\")\n", + " multisurfstar_dir = os.path.join(results_dir, \"MultiSURFstar\")\n", + " abs_multisurfstar_dir = os.path.join(results_dir, \"ABS_MultiSURFstar\")\n", + " ensure_dir(multisurfstar_dir)\n", + " ensure_dir(abs_multisurfstar_dir)\n", + " \n", + " # Extract base filename without extension\n", + " base_name = os.path.splitext(os.path.basename(file_path))[0]\n", + " \n", + " # Save the files\n", + " Results.to_csv(os.path.join(multisurfstar_dir, f\"{base_name}_Results.txt\"), index=False, sep='\\t')\n", + " ABSResults.to_csv(os.path.join(abs_multisurfstar_dir, f\"{base_name}_ABSResults.txt\"), index=False, sep='\\t')\n", + "\n", + "def find_and_MultiSurfstar(root_dir):\n", + " for dirpath, dirnames, filenames in os.walk(root_dir):\n", + " # Check if 'EDM' is in the directory name directly above the files\n", + " if \"EDM\" in os.path.basename(dirpath):\n", + " #print(f\"Processing in EDM directory: {dirpath}\") # Debugging line\n", + " for filename in filenames:\n", + " if filename.endswith('.txt'): # Ensure it's a .txt file\n", + " file_path = os.path.join(dirpath, filename)\n", + " #print(f\"Processing file: {file_path}\") # Debugging line\n", + " process_MultiSurfstar(file_path)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Run MultiSURFstar on directory" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Run through the first directory and perform MultiSURFstar.\n", + "find_and_MultiSurfstar(root_dir)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Run SURFstar on directory" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from skrebate import SURFstar # make sure this import is active\n", + "\n", + "def process_SURFstar(file_path):\n", + " # Load the genetic data\n", + " genetic_data = pd.read_csv(file_path, sep='\\t')\n", + "\n", + " # Split the data\n", + " features, labels = genetic_data.drop('Class', axis=1).values, genetic_data['Class'].values\n", + " X_train, X_test, y_train, y_test = train_test_split(features, labels)\n", + "\n", + " # Apply SURFstar\n", + " fs = SURFstar()\n", + " fs.fit(X_train, y_train)\n", + "\n", + " temp_list = []\n", + " for feature_name, feature_score in zip(genetic_data.drop('Class', axis=1).columns, fs.feature_importances_):\n", + " temp_list.append([feature_name, feature_score])\n", + "\n", + " # Process results\n", + " Results = pd.DataFrame(temp_list, columns=['Feature', 'Feature_Importance'])\n", + " ABSResults = Results.copy()\n", + " ABSResults['ABS_Feature_Importance'] = ABSResults['Feature_Importance'].abs()\n", + " Results.sort_values(by='Feature_Importance', ascending=False, inplace=True)\n", + " ABSResults.sort_values(by='ABS_Feature_Importance', ascending=False, inplace=True)\n", + "\n", + " # Define directories\n", + " base_dir = os.path.dirname(file_path)\n", + " results_dir = os.path.join(base_dir, \"Results\")\n", + " surfstar_dir = os.path.join(results_dir, \"SURFstar\")\n", + " abs_surfstar_dir = os.path.join(results_dir, \"ABS_SURFstar\")\n", + " ensure_dir(surfstar_dir)\n", + " ensure_dir(abs_surfstar_dir)\n", + "\n", + " # Extract base filename without extension\n", + " base_name = os.path.splitext(os.path.basename(file_path))[0]\n", + "\n", + " # Save the files\n", + " Results.to_csv(os.path.join(surfstar_dir, f\"{base_name}_Results.txt\"), index=False, sep='\\t')\n", + " ABSResults.to_csv(os.path.join(abs_surfstar_dir, f\"{base_name}_ABSResults.txt\"), index=False, sep='\\t')\n", + "\n", + "def find_and_SURFstar(root_dir):\n", + " for dirpath, dirnames, filenames in os.walk(root_dir):\n", + " # Check if 'EDM' is in the directory name directly above the files\n", + " if \"EDM\" in os.path.basename(dirpath):\n", + " for filename in filenames:\n", + " if filename.endswith('.txt'): # Ensure it's a .txt file\n", + " file_path = os.path.join(dirpath, filename)\n", + " process_SURFstar(file_path)\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "find_and_SURFstar(root_dir)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Run SWRFstar on directory" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from skrebate import SWRFstar # ensure your implementation is correctly accessible\n", + "\n", + "def process_SWRFstar(file_path):\n", + " # Load the genetic data\n", + " genetic_data = pd.read_csv(file_path, sep='\\t')\n", + "\n", + " # Split the data\n", + " features, labels = genetic_data.drop('Class', axis=1).values, genetic_data['Class'].values\n", + " X_train, X_test, y_train, y_test = train_test_split(features, labels)\n", + "\n", + " # Apply SWRFstar\n", + " fs = SWRFstar()\n", + " fs.fit(X_train, y_train)\n", + "\n", + " temp_list = []\n", + " for feature_name, feature_score in zip(genetic_data.drop('Class', axis=1).columns, fs.feature_importances_):\n", + " temp_list.append([feature_name, feature_score])\n", + "\n", + " # Process results\n", + " Results = pd.DataFrame(temp_list, columns=['Feature', 'Feature_Importance'])\n", + " ABSResults = Results.copy()\n", + " ABSResults['ABS_Feature_Importance'] = ABSResults['Feature_Importance'].abs()\n", + " Results.sort_values(by='Feature_Importance', ascending=False, inplace=True)\n", + " ABSResults.sort_values(by='ABS_Feature_Importance', ascending=False, inplace=True)\n", + "\n", + " # Define directories\n", + " base_dir = os.path.dirname(file_path)\n", + " results_dir = os.path.join(base_dir, \"Results\")\n", + " swrfstar_dir = os.path.join(results_dir, \"SWRFstar\")\n", + " abs_swrfstar_dir = os.path.join(results_dir, \"ABS_SWRFstar\")\n", + " ensure_dir(swrfstar_dir)\n", + " ensure_dir(abs_swrfstar_dir)\n", + "\n", + " # Extract base filename without extension\n", + " base_name = os.path.splitext(os.path.basename(file_path))[0]\n", + "\n", + " # Save the files\n", + " Results.to_csv(os.path.join(swrfstar_dir, f\"{base_name}_Results.txt\"), index=False, sep='\\t')\n", + " ABSResults.to_csv(os.path.join(abs_swrfstar_dir, f\"{base_name}_ABSResults.txt\"), index=False, sep='\\t')\n", + "\n", + "def find_and_SWRFstar(root_dir):\n", + " for dirpath, dirnames, filenames in os.walk(root_dir):\n", + " if \"EDM\" in os.path.basename(dirpath):\n", + " for filename in filenames:\n", + " if filename.endswith('.txt'):\n", + " file_path = os.path.join(dirpath, filename)\n", + " process_SWRFstar(file_path)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "find_and_SWRFstar(root_dir)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "base", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.13" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/analysis/oldScripts/Nscoring.ipynb b/analysis/oldScripts/Nscoring.ipynb new file mode 100644 index 0000000..bb6a363 --- /dev/null +++ b/analysis/oldScripts/Nscoring.ipynb @@ -0,0 +1,231 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Processing 'Results' folder at: ../core2wayEpistasis/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-1/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-1/Results/N_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-2/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_400/her_0.2__maf_0.2/a_100s_400her_0.2__maf_0.2_EDM-2/Results/N_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-2/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-2/Results/N_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-1/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_400/her_0.4__maf_0.2/a_100s_400her_0.4__maf_0.2_EDM-1/Results/N_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-1/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-1/Results/N_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-2/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_400/her_0.05__maf_0.2/a_100s_400her_0.05__maf_0.2_EDM-2/Results/N_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-1/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-1/Results/N_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-2/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_400/her_0.1__maf_0.2/a_100s_400her_0.1__maf_0.2_EDM-2/Results/N_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-1/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-1/Results/N_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-2/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_200/her_0.2__maf_0.2/a_100s_200her_0.2__maf_0.2_EDM-2/Results/N_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-1/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-1/Results/N_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-2/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_200/her_0.4__maf_0.2/a_100s_200her_0.4__maf_0.2_EDM-2/Results/N_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-2/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-2/Results/N_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-1/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_200/her_0.05__maf_0.2/a_100s_200her_0.05__maf_0.2_EDM-1/Results/N_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-1/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-1/Results/N_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-2/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_200/her_0.1__maf_0.2/a_100s_200her_0.1__maf_0.2_EDM-2/Results/N_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-2/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-2/Results/N_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-1/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_1600/her_0.2__maf_0.2/a_100s_1600her_0.2__maf_0.2_EDM-1/Results/N_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-1/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-1/Results/N_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-2/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_1600/her_0.4__maf_0.2/a_100s_1600her_0.4__maf_0.2_EDM-2/Results/N_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-1/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-1/Results/N_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-2/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_1600/her_0.05__maf_0.2/a_100s_1600her_0.05__maf_0.2_EDM-2/Results/N_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-2/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-2/Results/N_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-1/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_1600/her_0.1__maf_0.2/a_100s_1600her_0.1__maf_0.2_EDM-1/Results/N_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-2/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-2/Results/N_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-1/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_800/her_0.2__maf_0.2/a_100s_800her_0.2__maf_0.2_EDM-1/Results/N_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-1/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-1/Results/N_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-2/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_800/her_0.4__maf_0.2/a_100s_800her_0.4__maf_0.2_EDM-2/Results/N_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-1/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-1/Results/N_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-2/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_800/her_0.05__maf_0.2/a_100s_800her_0.05__maf_0.2_EDM-2/Results/N_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-2/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-2/Results/N_average_feature_importance.csv\n", + "Processing 'Results' folder at: ../core2wayEpistasis/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-1/Results\n", + "Average feature importance results saved to ../core2wayEpistasis/s_800/her_0.1__maf_0.2/a_100s_800her_0.1__maf_0.2_EDM-1/Results/N_average_feature_importance.csv\n", + "Master feature importance results saved to ../core2wayEpistasis/N_master_feature_importance.csv\n" + ] + } + ], + "source": [ + "import os\n", + "import pandas as pd\n", + "import re\n", + "\n", + "# Function to process results directory and return a pivot table with feature importance\n", + "def process_results_directory(root_dir, meaningful_parts):\n", + " all_data = [] # List to store all data\n", + " \n", + " # Walk through the directory tree\n", + " for subdir, dirs, files in os.walk(root_dir):\n", + " # Check if subdir contains 'ABS' or 'MutualInfo'\n", + " if 'ABS' in subdir or 'MutualInfo' in subdir:\n", + " if subdir != root_dir: # Ensure not processing the root directory\n", + " method = subdir.split(os.sep)[-1].replace('ABS_', '') # Extract method name from subdir\n", + " file_averages = [] # List to store average importances for each file\n", + " for file in files:\n", + " if file.endswith('.txt'): # Process only .txt files\n", + " file_path = os.path.join(subdir, file) # Construct file path\n", + " try:\n", + " data = pd.read_csv(file_path, delimiter='\\t') # Read data from file\n", + " n_data = data[data['Feature'].str.startswith('N')] # Filter data for features starting with 'N'\n", + " importance_cols = [col for col in data.columns if \"Feature_Importance\" in col] # Find importance columns\n", + "\n", + " # Check if there are 'N' features and importance columns\n", + " if not n_data.empty and importance_cols:\n", + " # Calculate average importance for 'N' features within the current file\n", + " for col in importance_cols:\n", + " avg_importance = n_data[col].mean() # Calculate average importance\n", + " importance_type = col.replace('Feature_Importance', '').strip() # Extract importance type\n", + " method_column_name = f\"{method}_{importance_type}\".rstrip('_') # Create method column name\n", + " \n", + " entry = {\n", + " 'Feature': 'average_N', # Use 'average_N' as the feature name\n", + " 'Method': method_column_name, # Method and importance type\n", + " 'Importance': avg_importance, # Average importance value within the file\n", + " **meaningful_parts # Add meaningful parts\n", + " }\n", + " file_averages.append(entry) # Add entry to file_averages\n", + " else:\n", + " print(f\"No 'N' features or importance columns in {file_path}\")\n", + "\n", + " except Exception as e:\n", + " print(f\"Error reading {file_path}: {e}\") # Print error if reading fails\n", + "\n", + " if file_averages:\n", + " # Aggregate the file-level averages for the current method\n", + " df_file_averages = pd.DataFrame(file_averages)\n", + " method_average = df_file_averages.groupby(['Feature', 'Method', *meaningful_parts.keys()]).mean().reset_index()\n", + " all_data.extend(method_average.to_dict('records')) # Add aggregated data to all_data\n", + " else:\n", + " print(f\"No valid data found in {subdir}\")\n", + "\n", + " if all_data:\n", + " results_df = pd.DataFrame(all_data) # Create DataFrame from all_data\n", + " pivot_df = results_df.pivot_table(index=['Feature', *meaningful_parts.keys()], columns='Method', values='Importance', aggfunc='mean').reset_index()\n", + " # Get the current non-Method columns\n", + " non_method_cols = ['Feature', *meaningful_parts.keys()]\n", + " # Get the current Method columns and sort them as required\n", + " method_cols = [col for col in pivot_df.columns if col not in non_method_cols]\n", + " # sorted_method_cols = ['ReliefF10', 'ReliefF10_ABS', 'ReliefF', 'ReliefF_ABS', 'MultiSURF', 'MultiSURF_ABS', 'MultiSURFstar', 'MultiSURFstar_ABS', 'MutualInformation']\n", + " sorted_method_cols = ['SURFstar', 'SURFstar_ABS', 'MultiSURFstar', 'MultiSURFstar_ABS', 'SWRFstar','SWRFstar_ABS','MutualInfo']\n", + " \n", + " # Combine the non-Method columns with the sorted Method columns\n", + " pivot_df = pivot_df[non_method_cols + sorted_method_cols]\n", + " return pivot_df # Return the pivot table\n", + " else:\n", + " print(\"No data collected from any files\")\n", + " return pd.DataFrame() # Return an empty DataFrame if no data\n", + "\n", + "def extract_numeric_parts(s):\n", + " \"\"\"Extract numeric parts from a string and return as a tuple of integers.\"\"\"\n", + " return tuple(map(int, re.findall(r'\\d+', s)))\n", + "\n", + "def find_and_process_results(start_dir):\n", + " master_df = pd.DataFrame() # Initialize an empty DataFrame to store the master results\n", + " for root, dirs, files in os.walk(start_dir): # Walk through the directory tree\n", + " if 'Results' in dirs: # Check if 'Results' directory exists in the current directory\n", + " path_parts = os.path.relpath(root, start_dir).split(os.sep) # Get the relative path parts\n", + " meaningful_parts = {} # Dictionary to store meaningful parts\n", + " for part in path_parts: # Iterate over path parts - will need to update this for new descriptors if needed\n", + " if 'xor_' in part:\n", + " meaningful_parts['X1'] = part # Order of epistasis with additional descriptors\n", + " elif 'a_' in part:\n", + " meaningful_parts['X2'] = part # Feature count\n", + "\n", + " results_dir = os.path.join(root, 'Results') # Construct the path to the 'Results' directory\n", + " print(f\"Processing 'Results' folder at: {results_dir}\")\n", + " results_df = process_results_directory(results_dir, meaningful_parts) # Process the results directory\n", + " if not results_df.empty: # If the results DataFrame is not empty\n", + " csv_path = os.path.join(results_dir, 'N_average_feature_importance.csv') # Path to save the results CSV\n", + " results_df.to_csv(csv_path, index=False) # Save the results DataFrame to a CSV file\n", + " print(f\"Average feature importance results saved to {csv_path}\")\n", + "\n", + " # Create a numeric tuple for sorting X1\n", + " try:\n", + " results_df['Value'] = results_df['X1'].apply(extract_numeric_parts) # Extract numeric parts from X1\n", + " except Exception as e:\n", + " results_df['Value'] = results_df['X2'].apply(extract_numeric_parts)\n", + " # results_df['X1_numeric'] = results_df['X2_numeric'] # Fallback to X2 if X1 extraction fails\n", + " \n", + " # Append to the master DataFrame\n", + " master_df = pd.concat([master_df, results_df], ignore_index=True)\n", + " else:\n", + " print(f\"No data found in 'Results' folder at: {results_dir}\")\n", + "\n", + " # Sort the master DataFrame\n", + " if not master_df.empty: # If the master DataFrame is not empty\n", + " master_df = master_df.sort_values(by=['Value', 'Feature']) # Sort by numeric parts of X1 and Feature\n", + " master_df.drop('Value', axis=1, inplace=True) # Remove the auxiliary column after sorting\n", + "\n", + " # Calculate grand average for all numeric columns and append it as the last row\n", + " numeric_cols = master_df.select_dtypes(include='number').columns\n", + " grand_average = master_df[numeric_cols].mean().to_frame().T\n", + " for col in master_df.columns:\n", + " if col not in numeric_cols:\n", + " grand_average[col] = 'Grand_Average'\n", + " master_df = pd.concat([master_df, grand_average], ignore_index=True)\n", + "\n", + " master_csv_path = os.path.join(start_dir, 'N_master_feature_importance.csv') # Path to save the master CSV\n", + " master_df.to_csv(master_csv_path, index=False) # Save the master DataFrame to a CSV file\n", + " print(f\"Master feature importance results saved to {master_csv_path}\") # Print confirmation\n", + " else:\n", + " print(\"No master data to save\")\n", + "\n", + "# Start the process from the current working directory\n", + "find_and_process_results('../core2wayEpistasis')" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "slcs", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.19" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/analysis/oldScripts/Nscoring.py b/analysis/oldScripts/Nscoring.py new file mode 100644 index 0000000..c9cc584 --- /dev/null +++ b/analysis/oldScripts/Nscoring.py @@ -0,0 +1,129 @@ +# %% +import os +import pandas as pd +import re + +# Function to process results directory and return a pivot table with feature importance +def process_results_directory(root_dir, meaningful_parts): + all_data = [] # List to store all data + + # Walk through the directory tree + for subdir, dirs, files in os.walk(root_dir): + # Check if subdir contains 'ABS' or 'MutualInfo' + if 'ABS' in subdir or 'MutualInfo' in subdir: + if subdir != root_dir: # Ensure not processing the root directory + method = subdir.split(os.sep)[-1].replace('ABS_', '') # Extract method name from subdir + file_averages = [] # List to store average importances for each file + for file in files: + if file.endswith('.txt'): # Process only .txt files + file_path = os.path.join(subdir, file) # Construct file path + try: + data = pd.read_csv(file_path, delimiter='\t') # Read data from file + n_data = data[data['Feature'].str.startswith('N')] # Filter data for features starting with 'N' + importance_cols = [col for col in data.columns if "Feature_Importance" in col] # Find importance columns + + # Check if there are 'N' features and importance columns + if not n_data.empty and importance_cols: + # Calculate average importance for 'N' features within the current file + for col in importance_cols: + avg_importance = n_data[col].mean() # Calculate average importance + importance_type = col.replace('Feature_Importance', '').strip() # Extract importance type + method_column_name = f"{method}_{importance_type}".rstrip('_') # Create method column name + + entry = { + 'Feature': 'average_N', # Use 'average_N' as the feature name + 'Method': method_column_name, # Method and importance type + 'Importance': avg_importance, # Average importance value within the file + **meaningful_parts # Add meaningful parts + } + file_averages.append(entry) # Add entry to file_averages + else: + print(f"No 'N' features or importance columns in {file_path}") + + except Exception as e: + print(f"Error reading {file_path}: {e}") # Print error if reading fails + + if file_averages: + # Aggregate the file-level averages for the current method + df_file_averages = pd.DataFrame(file_averages) + method_average = df_file_averages.groupby(['Feature', 'Method', *meaningful_parts.keys()]).mean().reset_index() + all_data.extend(method_average.to_dict('records')) # Add aggregated data to all_data + else: + print(f"No valid data found in {subdir}") + + if all_data: + results_df = pd.DataFrame(all_data) # Create DataFrame from all_data + pivot_df = results_df.pivot_table(index=['Feature', *meaningful_parts.keys()], columns='Method', values='Importance', aggfunc='mean').reset_index() + # Get the current non-Method columns + non_method_cols = ['Feature', *meaningful_parts.keys()] + # Get the current Method columns and sort them as required + method_cols = [col for col in pivot_df.columns if col not in non_method_cols] + # sorted_method_cols = ['ReliefF10', 'ReliefF10_ABS', 'ReliefF', 'ReliefF_ABS', 'MultiSURF', 'MultiSURF_ABS', 'MultiSURFstar', 'MultiSURFstar_ABS', 'MutualInformation'] + sorted_method_cols = ['SURFstar', 'SURFstar_ABS', 'MultiSURFstar', 'MultiSURFstar_ABS', 'SWRFstar','SWRFstar_ABS','MutualInfo'] + + # Combine the non-Method columns with the sorted Method columns + pivot_df = pivot_df[non_method_cols + sorted_method_cols] + return pivot_df # Return the pivot table + else: + print("No data collected from any files") + return pd.DataFrame() # Return an empty DataFrame if no data + +def extract_numeric_parts(s): + """Extract numeric parts from a string and return as a tuple of integers.""" + return tuple(map(int, re.findall(r'\d+', s))) + +def find_and_process_results(start_dir): + master_df = pd.DataFrame() # Initialize an empty DataFrame to store the master results + for root, dirs, files in os.walk(start_dir): # Walk through the directory tree + if 'Results' in dirs: # Check if 'Results' directory exists in the current directory + path_parts = os.path.relpath(root, start_dir).split(os.sep) # Get the relative path parts + meaningful_parts = {} # Dictionary to store meaningful parts + for part in path_parts: # Iterate over path parts - will need to update this for new descriptors if needed + if 'xor_' in part: + meaningful_parts['X1'] = part # Order of epistasis with additional descriptors + elif 'a_' in part: + meaningful_parts['X2'] = part # Feature count + + results_dir = os.path.join(root, 'Results') # Construct the path to the 'Results' directory + print(f"Processing 'Results' folder at: {results_dir}") + results_df = process_results_directory(results_dir, meaningful_parts) # Process the results directory + if not results_df.empty: # If the results DataFrame is not empty + csv_path = os.path.join(results_dir, 'N_average_feature_importance.csv') # Path to save the results CSV + results_df.to_csv(csv_path, index=False) # Save the results DataFrame to a CSV file + print(f"Average feature importance results saved to {csv_path}") + + # Create a numeric tuple for sorting X1 + try: + results_df['Value'] = results_df['X1'].apply(extract_numeric_parts) # Extract numeric parts from X1 + except Exception as e: + results_df['Value'] = results_df['X2'].apply(extract_numeric_parts) + # results_df['X1_numeric'] = results_df['X2_numeric'] # Fallback to X2 if X1 extraction fails + + # Append to the master DataFrame + master_df = pd.concat([master_df, results_df], ignore_index=True) + else: + print(f"No data found in 'Results' folder at: {results_dir}") + + # Sort the master DataFrame + if not master_df.empty: # If the master DataFrame is not empty + master_df = master_df.sort_values(by=['Value', 'Feature']) # Sort by numeric parts of X1 and Feature + master_df.drop('Value', axis=1, inplace=True) # Remove the auxiliary column after sorting + + # Calculate grand average for all numeric columns and append it as the last row + numeric_cols = master_df.select_dtypes(include='number').columns + grand_average = master_df[numeric_cols].mean().to_frame().T + for col in master_df.columns: + if col not in numeric_cols: + grand_average[col] = 'Grand_Average' + master_df = pd.concat([master_df, grand_average], ignore_index=True) + + master_csv_path = os.path.join(start_dir, 'N_master_feature_importance.csv') # Path to save the master CSV + master_df.to_csv(master_csv_path, index=False) # Save the master DataFrame to a CSV file + print(f"Master feature importance results saved to {master_csv_path}") # Print confirmation + else: + print("No master data to save") + +# Start the process from the current working directory +find_and_process_results('../core2wayEpistasis') + + diff --git a/analysis/oldScripts/README.txt b/analysis/oldScripts/README.txt new file mode 100644 index 0000000..9cb3642 --- /dev/null +++ b/analysis/oldScripts/README.txt @@ -0,0 +1 @@ +Based on Assessing the Limitations of Relief-Based Algorithms in Detecting Higher-Order Interactions, Freda et al. 2024 \ No newline at end of file diff --git a/analysis/run_commands.txt b/analysis/run_commands.txt new file mode 100644 index 0000000..3e87998 --- /dev/null +++ b/analysis/run_commands.txt @@ -0,0 +1,459 @@ +Main Benchmarking +  +Heatmaps +  +# 1) running run_rebate_analysis for all mainEff data with 100 features (a_100); no --algorithms specified means use the script’s default algorithms (all 16) +  +python run_rebate_analysis.py --datadir=/home/kazemik/Repos/ReBATE/data/AbsVal_Benchmark_Data/GAMETES_2.2_dev_peter_mainEff_Datasets_Loc_1_Qnt_2_Pop_100000/a_100 +  +# command to get unified heatmap visualization for mainEff (100 features datasets) +  +python run_process_heatmap_unified.py --basedir=/home/kazemik/Repos/ReBATE/data/AbsVal_Benchmark_Data/GAMETES_2.2_dev_peter_mainEff_Datasets_Loc_1_Qnt_2_Pop_100000/a_100 --prefix=mainEff_a100_rerun_ +  +# 2) running run_rebate_analysis for all core2wayEpistasis data with 100 features (a_100); no --algorithms specified means use the script’s default algorithms (all 16) +  +python run_rebate_analysis.py --datadir=/home/kazemik/Repos/ReBATE/data/AbsVal_Benchmark_Data/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100 +  +# command to get unified heatmap visualization for core2wayEpistasis (100 features datasets) +  +python run_process_heatmap_unified.py --basedir=/home/kazemik/Repos/ReBATE/data/AbsVal_Benchmark_Data/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000/a_100 --prefix=core2wayEpistasis_a100_rerun_ +  +# 3) running run_rebate_analysis for all XOR data (path structure is a bit different to core2wayEpistasis and mainEff, so can’t directly access 100 features datasets; do that in job_process_heatmap_unified) +  +python run_rebate_analysis.py --datadir=/home/kazemik/Repos/ReBATE/data/AbsVal_Benchmark_Data/GAMETES_2.2_dev_peter_XOR +  +# command to get individual heatmaps for XOR (100 features datasets) +  +python run_process_heatmap.py --basedir=/home/kazemik/Repos/ReBATE/data/AbsVal_Benchmark_Data/GAMETES_2.2_dev_peter_XOR --prefix=XOR_a100_rerun_  + +# zipping up heatmaps for mainEff, core2wayEpistasis, XOR + +zip -r heatmaps_mainbenchmarking_rerun.zip AbsVal_Benchmark_Data -i '*rerun*.pdf' + +# creating a copy of the zip file locally (HPC to local desktop) + +pscp kazemik@esplhpccompbio-lv01:/home/kazemik/Repos/ReBATE/data/unified_heatmaps_mainbenchmarking_rerun.zip "C:\Users\KazemiK\OneDrive - Cedars-Sinai Health System\Desktop\" +------------------------------------------------------------------  +Mean/median rank tables +  +# computing mean/median rankings given by RBAs to predictive features (amongst mainEff only) +  +python run_process_rba_rankings.py --rootdir=/home/kazemik/Repos/ReBATE/data/AbsVal_Benchmark_Data/GAMETES_2.2_dev_peter_mainEff_Datasets_Loc_1_Qnt_2_Pop_100000 +  +# computing mean/median rankings given by RBAs to predictive features (amongst core2wayEpistasis only) +  +python run_process_rba_rankings.py --rootdir=/home/kazemik/Repos/ReBATE/data/AbsVal_Benchmark_Data/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000 +  +# computing mean/median rankings given by RBAs to predictive features (amongst XOR only) +  +python run_process_rba_rankings.py --rootdir=/home/kazemik/Repos/ReBATE/data/AbsVal_Benchmark_Data/GAMETES_2.2_dev_peter_XOR + +# zip up RBA rankings results + +zip -r RBArankings_mainbenchmarking_rerun.zip AbsVal_Benchmark_Data -i "*mainEff_Datasets*rankings_list.csv" "*mainEff_Datasets*rba_rankings.csv" "*core2wayEpistasis*rankings_list.csv" "*core2wayEpistasis*rba_rankings.csv" "*XOR*rankings_list.csv" "*XOR*rba_rankings.csv" + +# creating a copy of the zip file locally (HPC to local desktop) + +pscp kazemik@esplhpccompbio-lv01:/home/kazemik/Repos/ReBATE/data/RBArankings_mainbenchmarking_rerun.zip "C:\Users\KazemiK\OneDrive - Cedars-Sinai Health System\Desktop\" +----------------------------------------------------------------------------  +Statistical Significance Tests +  +# computing Mann-Whitney U and Permutation Test for mainEff (on ranks) +  +python run_process_mannwhitney.py --basedir=/home/kazemik/Repos/ReBATE/data/AbsVal_Benchmark_Data/GAMETES_2.2_dev_peter_mainEff_Datasets_Loc_1_Qnt_2_Pop_100000 --column rank --exclude shuffle +  +# computing only Mann-Whitney U for mainEff (on feature_importances) +  +python run_process_mannwhitney.py --basedir=/home/kazemik/Repos/ReBATE/data/AbsVal_Benchmark_Data/GAMETES_2.2_dev_peter_mainEff_Datasets_Loc_1_Qnt_2_Pop_100000 --column feature_importance --exclude shuffle +  +# computing Mann-Whitney U and Permutation Test for core2wayEpistasis (on ranks) +  +python run_process_mannwhitney.py --basedir=/home/kazemik/Repos/ReBATE/data/AbsVal_Benchmark_Data/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000 --column rank --exclude shuffle +  +# computing only Mann-Whitney U for core2wayEpistasis (on feature_importances) +  +python run_process_mannwhitney.py --basedir=/home/kazemik/Repos/ReBATE/data/AbsVal_Benchmark_Data/GAMETES_2.2_dev_peter_core2wayEpistasis_Datasets_Loc_2_Qnt_2_Pop_100000 --column feature_importance --exclude shuffle +  +# computing Mann-Whitney U and Permutation Test for XOR 3-way (on ranks) +  +python run_process_mannwhitney.py --basedir=/home/kazemik/Repos/ReBATE/data/AbsVal_Benchmark_Data/GAMETES_2.2_dev_peter_XOR/xor_3/a_100/s_1600/xor_3_a_100s_1600_EDM-1/Results --column rank --exclude shuffle +  +# computing only Mann-Whitney U for XOR 3-way (on feature_importances) +  +python run_process_mannwhitney.py --basedir=/home/kazemik/Repos/ReBATE/data/AbsVal_Benchmark_Data/GAMETES_2.2_dev_peter_XOR/xor_3/a_100/s_1600/xor_3_a_100s_1600_EDM-1/Results --column feature_importance --exclude shuffle + +# save mannwhitney_ranks.csv and mannwhitney_normalized_feature_importances.csv files (for mainEff, core2wayEpistasis, and XOR 3-way) + +zip -r mannwhitney_results_rerun.zip AbsVal_Benchmark_Data -i '*mannwhitney_ranks*' '*mannwhitney_normalized_feature_importances*' + +# creating a copy of the zip file locally (HPC to local desktop) + +pscp kazemik@esplhpccompbio-lv01:/home/kazemik/Repos/ReBATE/data/mannwhitney_results_rerun.zip "C:\Users\KazemiK\OneDrive - Cedars-Sinai Health System\Desktop\"  +-----------------------------------------------------------------------  +Larger Feature Datasets (2wayEpiFeatures) +  +Heatmaps +  +# running run_rebate_analysis for 100 feature dataset; no --algorithms specified means use the script’s default algorithms (all 16) +  +python run_rebate_analysis.py --datadir=/home/kazemik/Repos/ReBATE/data/Sanity_Check_Data/benchmark-data/Simulated_Benchmark_Archive/GAMETES_2.2_dev_peter_2wayEpiFeatures_Datasets_Loc_2_Qnt_2_Pop_100000/a_100 +  +# running run_rebate_analysis for 1000 feature dataset; no --algorithms specified means use the script’s default algorithms (all 16) +  +python run_rebate_analysis.py --datadir=/home/kazemik/Repos/ReBATE/data/Sanity_Check_Data/benchmark-data/Simulated_Benchmark_Archive/GAMETES_2.2_dev_peter_2wayEpiFeatures_Datasets_Loc_2_Qnt_2_Pop_100000/a_1000 +  +# running run_rebate_analysis for 10000 feature dataset; no --algorithms specified means use the script’s default algorithms (all 16) +  +python run_rebate_analysis.py --datadir=/home/kazemik/Repos/ReBATE/data/Sanity_Check_Data/benchmark-data/Simulated_Benchmark_Archive/GAMETES_2.2_dev_peter_2wayEpiFeatures_Datasets_Loc_2_Qnt_2_Pop_100000/a_10000 +  +# running run_rebate_analysis for 100000 feature dataset; no --algorithms specified means use the script’s default algorithms (all 16) +  +python run_rebate_analysis.py --datadir=/home/kazemik/Repos/ReBATE/data/Sanity_Check_Data/benchmark-data/Simulated_Benchmark_Archive/GAMETES_2.2_dev_peter_2wayEpiFeatures_Datasets_Loc_2_Qnt_2_Pop_100000/a_100000  +----------------  +# command to get heatmap visualization for 100 features dataset +  +python run_process_heatmap.py --basedir=/home/kazemik/Repos/ReBATE/data/Sanity_Check_Data/benchmark-data/Simulated_Benchmark_Archive/GAMETES_2.2_dev_peter_2wayEpiFeatures_Datasets_Loc_2_Qnt_2_Pop_100000/a_100 --prefix=100features_main_rerun_ +  +# command to get heatmap visualization for 1000 features dataset +  +python run_process_heatmap.py --basedir=/home/kazemik/Repos/ReBATE/data/Sanity_Check_Data/benchmark-data/Simulated_Benchmark_Archive/GAMETES_2.2_dev_peter_2wayEpiFeatures_Datasets_Loc_2_Qnt_2_Pop_100000/a_1000 --prefix=1000features_main_rerun_ +  +# command to get heatmap visualization for 10000 features dataset +  +python run_process_heatmap.py --basedir=/home/kazemik/Repos/ReBATE/data/Sanity_Check_Data/benchmark-data/Simulated_Benchmark_Archive/GAMETES_2.2_dev_peter_2wayEpiFeatures_Datasets_Loc_2_Qnt_2_Pop_100000/a_10000 --prefix=10000features_main_rerun_ +  +# command to get heatmap visualization for 100000 features dataset +  +python run_process_heatmap.py --basedir=/home/kazemik/Repos/ReBATE/data/Sanity_Check_Data/benchmark-data/Simulated_Benchmark_Archive/GAMETES_2.2_dev_peter_2wayEpiFeatures_Datasets_Loc_2_Qnt_2_Pop_100000/a_100000 --prefix=100000features_main_rerun_ + +# zipping up heatmaps and runtimes for 2wayEpiFeatures datasets + +zip -r heatmaps_andruntimes_2wayEpiFeatures_rerun.zip GAMETES_2.2_dev_peter_2wayEpiFeatures_Datasets_Loc_2_Qnt_2_Pop_100000 -i '*rerun*.pdf' '*runtime.csv' + +# creating a copy of the zip file locally (HPC to local desktop) + +pscp kazemik@esplhpccompbio-lv01:/home/kazemik/Repos/ReBATE/data/Sanity_Check_Data/benchmark-data/Simulated_Benchmark_Archive/heatmaps_andruntimes_2wayEpiFeatures_rerun.zip "C:\Users\KazemiK\OneDrive - Cedars-Sinai Health System\Desktop\"  +--------------------------------------  +Mean/median rank tables +  +# computing mean/median rankings given by RBAs to predictive features (amongst 100 feature dataset) +  +python run_process_rba_rankings.py --rootdir=/home/kazemik/Repos/ReBATE/data/Sanity_Check_Data/benchmark-data/Simulated_Benchmark_Archive/GAMETES_2.2_dev_peter_2wayEpiFeatures_Datasets_Loc_2_Qnt_2_Pop_100000/a_100 +  +# computing mean/median rankings given by RBAs to predictive features (amongst 1000 feature dataset) +  +python run_process_rba_rankings.py --rootdir=/home/kazemik/Repos/ReBATE/data/Sanity_Check_Data/benchmark-data/Simulated_Benchmark_Archive/GAMETES_2.2_dev_peter_2wayEpiFeatures_Datasets_Loc_2_Qnt_2_Pop_100000/a_1000 +  +# computing mean/median rankings given by RBAs to predictive features (amongst 10000 feature dataset) +  +python run_process_rba_rankings.py --rootdir=/home/kazemik/Repos/ReBATE/data/Sanity_Check_Data/benchmark-data/Simulated_Benchmark_Archive/GAMETES_2.2_dev_peter_2wayEpiFeatures_Datasets_Loc_2_Qnt_2_Pop_100000/a_10000 +  +# computing mean/median rankings given by RBAs to predictive features (amongst 100000 feature dataset) +  +python run_process_rba_rankings.py --rootdir=/home/kazemik/Repos/ReBATE/data/Sanity_Check_Data/benchmark-data/Simulated_Benchmark_Archive/GAMETES_2.2_dev_peter_2wayEpiFeatures_Datasets_Loc_2_Qnt_2_Pop_100000/a_100000 + +# zip up RBA rankings results + +zip -r RBArankings_largefeaturedatasets_rerun.zip GAMETES_2.2_dev_peter_2wayEpiFeatures_Datasets_Loc_2_Qnt_2_Pop_100000 -i "*rankings_list.csv" "*rba_rankings.csv" + +# creating a copy of the zip file locally (HPC to local desktop) + +pscp kazemik@esplhpccompbio-lv01:/home/kazemik/Repos/ReBATE/data/Sanity_Check_Data/benchmark-data/Simulated_Benchmark_Archive/RBArankings_largefeaturedatasets_rerun.zip "C:\Users\KazemiK\OneDrive - Cedars-Sinai Health System\Desktop\"  +----------------------------------------------------------------------------  +Statistical Significance Tests +  +# computing Mann-Whitney U and Permutation Test for 100 features (on ranks) +  +python run_process_mannwhitney.py --basedir=/home/kazemik/Repos/ReBATE/data/Sanity_Check_Data/benchmark-data/Simulated_Benchmark_Archive/GAMETES_2.2_dev_peter_2wayEpiFeatures_Datasets_Loc_2_Qnt_2_Pop_100000/a_100 --column rank --exclude shuffle +  +# computing only Mann-Whitney U for 100 features (on feature_importances) +  +python run_process_mannwhitney.py --basedir=/home/kazemik/Repos/ReBATE/data/Sanity_Check_Data/benchmark-data/Simulated_Benchmark_Archive/GAMETES_2.2_dev_peter_2wayEpiFeatures_Datasets_Loc_2_Qnt_2_Pop_100000/a_100 --column feature_importance --exclude shuffle +  +# computing Mann-Whitney U and Permutation Test for 1000 features (on ranks) +  +python run_process_mannwhitney.py --basedir=/home/kazemik/Repos/ReBATE/data/Sanity_Check_Data/benchmark-data/Simulated_Benchmark_Archive/GAMETES_2.2_dev_peter_2wayEpiFeatures_Datasets_Loc_2_Qnt_2_Pop_100000/a_1000 --column rank --exclude shuffle +  +# computing only Mann-Whitney U for 1000 features (on feature_importances) +  +python run_process_mannwhitney.py --basedir=/home/kazemik/Repos/ReBATE/data/Sanity_Check_Data/benchmark-data/Simulated_Benchmark_Archive/GAMETES_2.2_dev_peter_2wayEpiFeatures_Datasets_Loc_2_Qnt_2_Pop_100000/a_1000 --column feature_importance --exclude shuffle +  +# computing Mann-Whitney U and Permutation Test for 10,000 features (on ranks) +  +python run_process_mannwhitney.py --basedir=/home/kazemik/Repos/ReBATE/data/Sanity_Check_Data/benchmark-data/Simulated_Benchmark_Archive/GAMETES_2.2_dev_peter_2wayEpiFeatures_Datasets_Loc_2_Qnt_2_Pop_100000/a_10000 --column rank --exclude shuffle +  +# computing only Mann-Whitney U for 10,000 features (on feature_importances) +  +python run_process_mannwhitney.py --basedir=/home/kazemik/Repos/ReBATE/data/Sanity_Check_Data/benchmark-data/Simulated_Benchmark_Archive/GAMETES_2.2_dev_peter_2wayEpiFeatures_Datasets_Loc_2_Qnt_2_Pop_100000/a_10000 --column feature_importance --exclude shuffle +  +# computing Mann-Whitney U and Permutation Test for 100,000 features (on ranks) +  +python run_process_mannwhitney.py --basedir=/home/kazemik/Repos/ReBATE/data/Sanity_Check_Data/benchmark-data/Simulated_Benchmark_Archive/GAMETES_2.2_dev_peter_2wayEpiFeatures_Datasets_Loc_2_Qnt_2_Pop_100000/a_100000 --column rank --exclude shuffle +  +# computing only Mann-Whitney U for 100,000 features (on feature_importances) +  +python run_process_mannwhitney.py --basedir=/home/kazemik/Repos/ReBATE/data/Sanity_Check_Data/benchmark-data/Simulated_Benchmark_Archive/GAMETES_2.2_dev_peter_2wayEpiFeatures_Datasets_Loc_2_Qnt_2_Pop_100000/a_100000 --column feature_importance --exclude shuffle + +# save mannwhitney_ranks.csv and mannwhitney_normalized_feature_importances.csv files (for 2wayEpiFeatures) + +zip -r mannwhitney_results_largefeaturedatasets_rerun.zip GAMETES_2.2_dev_peter_2wayEpiFeatures_Datasets_Loc_2_Qnt_2_Pop_100000 -i '*mannwhitney_ranks*' '*mannwhitney_normalized_feature_importances*' + +# creating a copy of the zip file locally (HPC to local desktop) + +pscp kazemik@esplhpccompbio-lv01:/home/kazemik/Repos/ReBATE/data/Sanity_Check_Data/benchmark-data/Simulated_Benchmark_Archive/mannwhitney_results_largefeaturedatasets_rerun.zip "C:\Users\KazemiK\OneDrive - Cedars-Sinai Health System\Desktop\"  +------------------------------------------------------------  +Larger Feature Datasets (1-feature mainEff) +  +Heatmaps +  +# running run_rebate_analysis for 1000 feature dataset; no --algorithms specified means use the script’s default algorithms (all 16) +  +python run_rebate_analysis.py --datadir=/home/kazemik/Repos/ReBATE/data/mainEff_largerfeatures_data/1-feature_1000_Feature_H_0.4_MAF_0.2_EDM-2 +  +# running run_rebate_analysis for 10000 feature dataset; no --algorithms specified means use the script’s default algorithms (all 16) +  +python run_rebate_analysis.py --datadir=/home/kazemik/Repos/ReBATE/data/mainEff_largerfeatures_data/1-feature_10000_Feature_H_0.4_MAF_0.2_EDM-2 +  +# running run_rebate_analysis for 100000 feature dataset; no --algorithms specified means use the script’s default algorithms (all 16) +  +python run_rebate_analysis.py --datadir=/home/kazemik/Repos/ReBATE/data/mainEff_largerfeatures_data/1-feature_100000_Feature_H_0.4_MAF_0.2_EDM-2  +----------------  +# command to get heatmap visualization for 1000 features dataset +  +python run_process_heatmap.py --basedir=/home/kazemik/Repos/ReBATE/data/mainEff_largerfeatures_data/1-feature_1000_Feature_H_0.4_MAF_0.2_EDM-2 --prefix=1000features_main_rerun_ +  +# command to get heatmap visualization for 10000 features dataset +  +python run_process_heatmap.py --basedir=/home/kazemik/Repos/ReBATE/data/mainEff_largerfeatures_data/1-feature_10000_Feature_H_0.4_MAF_0.2_EDM-2 --prefix=10000features_main_rerun_ +  +# command to get heatmap visualization for 100000 features dataset +  +python run_process_heatmap.py --basedir=/home/kazemik/Repos/ReBATE/data/mainEff_largerfeatures_data/1-feature_100000_Feature_H_0.4_MAF_0.2_EDM-2 --prefix=100000features_main_rerun_ + +# zipping up heatmaps and runtimes for mainEff_largerfeatures datasets + +zip -r heatmaps_andruntimes_mainEfflargerfeatures_rerun.zip mainEff_largerfeatures_data -i '*rerun*.pdf' '*runtime*.csv' + +# creating a copy of the zip file locally (HPC to local desktop) + +pscp kazemik@esplhpccompbio-lv01:/home/kazemik/Repos/ReBATE/data/heatmaps_andruntimes_mainEfflargerfeatures_rerun.zip "C:\Users\KazemiK\OneDrive - Cedars-Sinai Health System\Desktop\"  +--------------------------------------  +Mean/median rank tables +  +# computing mean/median rankings given by RBAs to predictive features (amongst 1000 feature dataset) +  +python run_process_rba_rankings.py --rootdir=/home/kazemik/Repos/ReBATE/data/mainEff_largerfeatures_data/1-feature_1000_Feature_H_0.4_MAF_0.2_EDM-2 +  +# computing mean/median rankings given by RBAs to predictive features (amongst 10000 feature dataset) +  +python run_process_rba_rankings.py --rootdir=/home/kazemik/Repos/ReBATE/data/mainEff_largerfeatures_data/1-feature_10000_Feature_H_0.4_MAF_0.2_EDM-2 +  +# computing mean/median rankings given by RBAs to predictive features (amongst 100000 feature dataset) +  +python run_process_rba_rankings.py --rootdir=/home/kazemik/Repos/ReBATE/data/mainEff_largerfeatures_data/1-feature_100000_Feature_H_0.4_MAF_0.2_EDM-2 + +# zip up RBA rankings results + +zip -r RBArankings_mainEfflargefeaturedatasets_rerun.zip mainEff_largerfeatures_data -i "*rankings_list.csv" "*rba_rankings.csv" + +# creating a copy of the zip file locally (HPC to local desktop) + +pscp kazemik@esplhpccompbio-lv01:/home/kazemik/Repos/ReBATE/data/RBArankings_mainEfflargefeaturedatasets_rerun.zip "C:\Users\KazemiK\OneDrive - Cedars-Sinai Health System\Desktop\"  +----------------------------------------------------------------------------  +Additional Dataset Groups (from Phil paper) +  +Heatmaps +  +# 2wayEpiHeterogeneity (100 feature datasets) +  +python run_rebate_analysis.py --datadir=/home/kazemik/Repos/ReBATE/data/AbsVal_Benchmark_Data/GAMETES_2.2_dev_peter_2wayEpiHeterogeneity_Datasets_2Het_Loc_2_Qnt_2_Pop_100000/a_100 +   +# epi_order (100 feature datasets) +  +python run_rebate_analysis.py --datadir=/home/kazemik/Repos/ReBATE/data/AbsVal_Benchmark_Data/GAMETES_2.2_dev_peter_epi_order_Datasets_Loc_3_Qnt_2_Pop_100000/a_100 + +# mainEff_additive_2 (100 feature datasets) +  +python run_rebate_analysis.py --datadir=/home/kazemik/Repos/ReBATE/data/AbsVal_Benchmark_Data/GAMETES_2.2_dev_peter_mainEff_additive_2_Datasets_2Het_Loc_1_Qnt_2_Pop_100000/a_100 +   +# mainEff_additive_4 (100 feature datasets) +  +python run_rebate_analysis.py --datadir=/home/kazemik/Repos/ReBATE/data/AbsVal_Benchmark_Data/GAMETES_2.2_dev_peter_mainEff_additive_4_Datasets_2Het_Loc_1_Qnt_2_Pop_100000/a_100   +----------------------------------------------------  +# ** now getting individual configuration heatmaps for each dataset group +  +python run_process_heatmap.py --basedir=/home/kazemik/Repos/ReBATE/data/AbsVal_Benchmark_Data/GAMETES_2.2_dev_peter_2wayEpiHeterogeneity_Datasets_2Het_Loc_2_Qnt_2_Pop_100000/a_100 --prefix=2wayEpiHeterogeneity_main_rerun_ +  +python run_process_heatmap.py --basedir=/home/kazemik/Repos/ReBATE/data/AbsVal_Benchmark_Data/GAMETES_2.2_dev_peter_epi_order_Datasets_Loc_3_Qnt_2_Pop_100000/a_100 --prefix=epiorder_main_rerun_ +  +python run_process_heatmap.py --basedir=/home/kazemik/Repos/ReBATE/data/AbsVal_Benchmark_Data/GAMETES_2.2_dev_peter_mainEff_additive_2_Datasets_2Het_Loc_1_Qnt_2_Pop_100000/a_100 --prefix=mainEffadditive2_main_rerun_ +  +python run_process_heatmap.py --basedir=/home/kazemik/Repos/ReBATE/data/AbsVal_Benchmark_Data/GAMETES_2.2_dev_peter_mainEff_additive_4_Datasets_2Het_Loc_1_Qnt_2_Pop_100000/a_100 --prefix=mainEffadditive4_main_rerun_ + +# zipping up heatmaps from new dataset groups + +zip -r heatmaps_new_datasetgroups_rerun.zip AbsVal_Benchmark_Data -i "*rerun*.pdf" -x "*mainEff_Datasets*" "*core2wayEpistasis*" "*XOR*" + +# creating a copy of the zip file locally (HPC to local desktop) + +pscp kazemik@esplhpccompbio-lv01:/home/kazemik/Repos/ReBATE/data/heatmaps_new_datasetgroups_rerun.zip "C:\Users\KazemiK\OneDrive - Cedars-Sinai Health System\Desktop\"   +---------------------------------------------------------------------------  +Mean/median rank tables +  +# computing mean/median rankings given by RBAs to predictive features (amongst 2wayEpiHeterogeneity only) +  +python run_process_rba_rankings.py --rootdir=/home/kazemik/Repos/ReBATE/data/AbsVal_Benchmark_Data/GAMETES_2.2_dev_peter_2wayEpiHeterogeneity_Datasets_2Het_Loc_2_Qnt_2_Pop_100000 +  +# computing mean/median rankings given by RBAs to predictive features (amongst epi_order only) +  +python run_process_rba_rankings.py --rootdir=/home/kazemik/Repos/ReBATE/data/AbsVal_Benchmark_Data/GAMETES_2.2_dev_peter_epi_order_Datasets_Loc_3_Qnt_2_Pop_100000 +  +# computing mean/median rankings given by RBAs to predictive features (amongst mainEff_additive_2 only) +  +python run_process_rba_rankings.py --rootdir=/home/kazemik/Repos/ReBATE/data/AbsVal_Benchmark_Data/GAMETES_2.2_dev_peter_mainEff_additive_2_Datasets_2Het_Loc_1_Qnt_2_Pop_100000 +  +# computing mean/median rankings given by RBAs to predictive features (amongst mainEff_additive_4 only) +  +python run_process_rba_rankings.py --rootdir=/home/kazemik/Repos/ReBATE/data/AbsVal_Benchmark_Data/GAMETES_2.2_dev_peter_mainEff_additive_4_Datasets_2Het_Loc_1_Qnt_2_Pop_100000 + +# zip up RBA rankings results + +zip -r RBArankings_newdatasetgroupsPhilpaper_rerun.zip AbsVal_Benchmark_Data -i "*mainEff_additive*rankings_list.csv" "*mainEff_additive*rba_rankings.csv" "*2wayEpiHeterogeneity*rankings_list.csv" "*2wayEpiHeterogeneity*rba_rankings.csv" "*epi_order*rankings_list.csv" "*epi_order*rba_rankings.csv" + +# creating a copy of the zip file locally (HPC to local desktop) + +pscp kazemik@esplhpccompbio-lv01:/home/kazemik/Repos/ReBATE/data/RBArankings_newdatasetgroupsPhilpaper_rerun.zip "C:\Users\KazemiK\OneDrive - Cedars-Sinai Health System\Desktop\"   +----------------------------------------------------------------------------------------  +Statistical Significance Tests +  +# computing Mann-Whitney U and Permutation Test for 2wayEpiHeterogeneity (on ranks) +  +python run_process_mannwhitney.py --basedir=/home/kazemik/Repos/ReBATE/data/AbsVal_Benchmark_Data/GAMETES_2.2_dev_peter_2wayEpiHeterogeneity_Datasets_2Het_Loc_2_Qnt_2_Pop_100000 --column rank --exclude shuffle +  +# computing only Mann-Whitney U for 2wayEpiHeterogeneity (on feature_importances) +  +python run_process_mannwhitney.py --basedir=/home/kazemik/Repos/ReBATE/data/AbsVal_Benchmark_Data/GAMETES_2.2_dev_peter_2wayEpiHeterogeneity_Datasets_2Het_Loc_2_Qnt_2_Pop_100000 --column feature_importance --exclude shuffle +  +# computing Mann-Whitney U and Permutation Test for epi_order (on ranks) +  +python run_process_mannwhitney.py --basedir=/home/kazemik/Repos/ReBATE/data/AbsVal_Benchmark_Data/GAMETES_2.2_dev_peter_epi_order_Datasets_Loc_3_Qnt_2_Pop_100000 --column rank --exclude shuffle +  +# computing only Mann-Whitney U for epi_order (on feature_importances) +  +python run_process_mannwhitney.py --basedir=/home/kazemik/Repos/ReBATE/data/AbsVal_Benchmark_Data/GAMETES_2.2_dev_peter_epi_order_Datasets_Loc_3_Qnt_2_Pop_100000 --column feature_importance --exclude shuffle +  +# computing Mann-Whitney U and Permutation Test for mainEff_additive_2 (on ranks) +  +python run_process_mannwhitney.py --basedir=/home/kazemik/Repos/ReBATE/data/AbsVal_Benchmark_Data/GAMETES_2.2_dev_peter_mainEff_additive_2_Datasets_2Het_Loc_1_Qnt_2_Pop_100000 --column rank --exclude shuffle +  +# computing only Mann-Whitney U for mainEff_additive_2 (on feature_importances) +  +python run_process_mannwhitney.py --basedir=/home/kazemik/Repos/ReBATE/data/AbsVal_Benchmark_Data/GAMETES_2.2_dev_peter_mainEff_additive_2_Datasets_2Het_Loc_1_Qnt_2_Pop_100000 --column feature_importance --exclude shuffle +  +# computing Mann-Whitney U and Permutation Test for mainEff_additive_4 (on ranks) +  +python run_process_mannwhitney.py --basedir=/home/kazemik/Repos/ReBATE/data/AbsVal_Benchmark_Data/GAMETES_2.2_dev_peter_mainEff_additive_4_Datasets_2Het_Loc_1_Qnt_2_Pop_100000 --column rank --exclude shuffle +  +# computing only Mann-Whitney U for mainEff_additive_4 (on feature_importances) +  +python run_process_mannwhitney.py --basedir=/home/kazemik/Repos/ReBATE/data/AbsVal_Benchmark_Data/GAMETES_2.2_dev_peter_mainEff_additive_4_Datasets_2Het_Loc_1_Qnt_2_Pop_100000 --column feature_importance --exclude shuffle + +# save mannwhitney_ranks.csv and mannwhitney_normalized_feature_importances.csv files (for new dataset groups from Phil paper) + +zip -r mannwhitney_results_newdatasetgroupsPhilpaper_rerun.zip AbsVal_Benchmark_Data -i '*mannwhitney_ranks*' '*mannwhitney_normalized_feature_importances*' -x "*mainEff_Datasets*" "*core2wayEpistasis*" "*XOR*" + +# creating a copy of the zip file locally (HPC to local desktop) + +pscp kazemik@esplhpccompbio-lv01:/home/kazemik/Repos/ReBATE/data/mannwhitney_results_newdatasetgroupsPhilpaper_rerun.zip "C:\Users\KazemiK\OneDrive - Cedars-Sinai Health System\Desktop\"  +--------------------------------------------------------------------------------------------  +Sanity Check Datasets +  +Heatmaps +  +# running run_rebate_analysis for CA (continuous attribute) dataset; no --algorithms specified means use the script’s default algorithms (all 16) +  +python run_rebate_analysis.py --datadir=/home/kazemik/Repos/ReBATE/data/Sanity_Check_Data/benchmark-data/Simulated_Benchmark_Archive/CA_Datasets_Loc_2_Qnt_2_Pop_100000/a_20 +  +# running run_rebate_analysis for MA (mixed attribute) dataset; no --algorithms specified means use the script’s default algorithms (all 16) +  +python run_rebate_analysis.py --datadir=/home/kazemik/Repos/ReBATE/data/Sanity_Check_Data/benchmark-data/Simulated_Benchmark_Archive/MA_Datasets_Loc_2_Qnt_2_Pop_100000/a_20 +  +# running run_rebate_analysis for CE_Threshold (continuous endpoint, threshold) dataset; no --algorithms specified means use the script’s default algorithms (all 16) +  +python run_rebate_analysis.py --datadir=/home/kazemik/Repos/ReBATE/data/Sanity_Check_Data/benchmark-data/Simulated_Benchmark_Archive/CE_Threshold_Datasets_Loc_2_Qnt_2_Pop_100000/a_20 +  +# running run_rebate_analysis for contEndpoint (continuous endpoint, SD version) dataset; no --algorithms specified means use the script’s default algorithms (all 16) +  +python run_rebate_analysis.py --datadir=/home/kazemik/Repos/ReBATE/data/Sanity_Check_Data/benchmark-data/Simulated_Benchmark_Archive/GAMETES_2.2_dev_peter_2wayEpi_contEndpoint_Datasets_Loc_2_Qnt_2_Pop_100000/a_20 +  +# running run_rebate_analysis for NA (null values) dataset; can’t use mutual_info with missing data, so explicitly naming algorithms to use (instead of just using default) +  +python run_rebate_analysis.py --datadir=/home/kazemik/Repos/ReBATE/data/Sanity_Check_Data/benchmark-data/Simulated_Benchmark_Archive/GAMETES_2.2_dev_peter_2wayEpi_NA_Datasets_Loc_2_Qnt_2_Pop_100000/a_20 --algorithms random relieff10 relieff100 surf surfstar multisurf multisurfstar swrfstar swrf multiswrfstar multiswrf multiswrfdbstar multiswrfdb murelief10 murelief100 +   +# running run_rebate_analysis for ImbalancedData dataset; no --algorithms specified means use the script’s default algorithms (all 16) +  +python run_rebate_analysis.py --datadir=/home/kazemik/Repos/ReBATE/data/Sanity_Check_Data/benchmark-data/Simulated_Benchmark_Archive/GAMETES_2.2_dev_peter_2wayEpi_ImbalancedData_Datasets_Loc_2_Qnt_2_Pop_100000/a_20 +   +# running run_rebate_analysis for 3Class (multi-class endpoint, 3 classes) dataset; no --algorithms specified means use the script’s default algorithms (all 16) +  +python run_rebate_analysis.py --datadir=/home/kazemik/Repos/ReBATE/data/Sanity_Check_Data/benchmark-data/Simulated_Benchmark_Archive/3Class_Datasets_Loc_2 +   +# running run_rebate_analysis for 9Class (multi-class endpoint, 9 classes) dataset; no --algorithms specified means use the script’s default algorithms (all 16) +  +python run_rebate_analysis.py --datadir=/home/kazemik/Repos/ReBATE/data/Sanity_Check_Data/benchmark-data/Simulated_Benchmark_Archive/9Class_Datasets_Loc_2   +------------------------  +# command to get heatmap visualization for CA dataset +  +python run_process_heatmap.py --basedir=/home/kazemik/Repos/ReBATE/data/Sanity_Check_Data/benchmark-data/Simulated_Benchmark_Archive/CA_Datasets_Loc_2_Qnt_2_Pop_100000/a_20 --prefix=CA_main_rerun_ +  +# command to get heatmap visualization for MA dataset +  +python run_process_heatmap.py --basedir=/home/kazemik/Repos/ReBATE/data/Sanity_Check_Data/benchmark-data/Simulated_Benchmark_Archive/MA_Datasets_Loc_2_Qnt_2_Pop_100000/a_20 --prefix=MA_main_rerun_ +  +# command to get heatmap visualization for CE_Threshold dataset +  +python run_process_heatmap.py --basedir=/home/kazemik/Repos/ReBATE/data/Sanity_Check_Data/benchmark-data/Simulated_Benchmark_Archive/CE_Threshold_Datasets_Loc_2_Qnt_2_Pop_100000/a_20 --prefix=CEThreshold_main_rerun_ +  +# command to get heatmap visualization for contEndpoint dataset +  +python run_process_heatmap.py --basedir=/home/kazemik/Repos/ReBATE/data/Sanity_Check_Data/benchmark-data/Simulated_Benchmark_Archive/GAMETES_2.2_dev_peter_2wayEpi_contEndpoint_Datasets_Loc_2_Qnt_2_Pop_100000/a_20 --prefix=contEndpoint_main_rerun_ +  +# command to get heatmap visualization for NA dataset +  +python run_process_heatmap.py --basedir=/home/kazemik/Repos/ReBATE/data/Sanity_Check_Data/benchmark-data/Simulated_Benchmark_Archive/GAMETES_2.2_dev_peter_2wayEpi_NA_Datasets_Loc_2_Qnt_2_Pop_100000/a_20 --prefix=NA_main_rerun_ +  +# command to get heatmap visualization for ImbalancedData dataset +  +python run_process_heatmap.py --basedir=/home/kazemik/Repos/ReBATE/data/Sanity_Check_Data/benchmark-data/Simulated_Benchmark_Archive/GAMETES_2.2_dev_peter_2wayEpi_ImbalancedData_Datasets_Loc_2_Qnt_2_Pop_100000/a_20 --prefix=ImbalancedData_main_rerun_ +  +# command to get heatmap visualization for 3Class dataset +  +python run_process_heatmap.py --basedir=/home/kazemik/Repos/ReBATE/data/Sanity_Check_Data/benchmark-data/Simulated_Benchmark_Archive/3Class_Datasets_Loc_2 --prefix=3Class_main_rerun_ +  +# command to get heatmap visualization for 9Class dataset +  +python run_process_heatmap.py --basedir=/home/kazemik/Repos/ReBATE/data/Sanity_Check_Data/benchmark-data/Simulated_Benchmark_Archive/9Class_Datasets_Loc_2 --prefix=9Class_main_rerun_ + +# zipping up heatmaps for Sanity Check datasets + +zip -r heatmaps_sanitycheckdatasets_rerun.zip Simulated_Benchmark_Archive -i '*rerun*.pdf' -x '*2wayEpiFeatures*' + +# creating a copy of the zip file locally (HPC to local desktop) + +pscp kazemik@esplhpccompbio-lv01:/home/kazemik/Repos/ReBATE/data/Sanity_Check_Data/benchmark-data/heatmaps_sanitycheckdatasets_rerun.zip "C:\Users\KazemiK\OneDrive - Cedars-Sinai Health System\Desktop\"   +----------------------------------------------------------------  +Global Metrics + +Produces unique output file/metrics for: 2-way epistasis datasets, univariate + 2-way datasets, and univariate + 2-way + 3-way datasets +  +# computing global mean/median ranks given by RBAs to predictive features (all dataset configurations with >= 100 features, excluding xor-4 and xor-5) +  +python run_global_rba_rankings.py --rootdir=/home/kazemik/Repos/ReBATE/data/AbsVal_Benchmark_Data +  +# zipping up different use case scenario ranking files + +zip -r global_rankings.zip data -i '*global_rba_rankings_2wayonly.csv' '*global_rba_rankings_uni2way.csv' '*global_rba_rankings_uni2way3way.csv' + +# creating a copy of the zip file locally (HPC to local desktop) + +pscp kazemik@esplhpccompbio-lv01:/home/kazemik/Repos/ReBATE/global_rankings.zip "C:\Users\KazemiK\OneDrive - Cedars-Sinai Health System\Desktop\"  diff --git a/analysis/run_global_rba_rankings.py b/analysis/run_global_rba_rankings.py new file mode 100644 index 0000000..ef8f8f2 --- /dev/null +++ b/analysis/run_global_rba_rankings.py @@ -0,0 +1,69 @@ +# run_global_rba_rankings.py +import os +import argparse +import time + +def generate_job_script(scheduler, python_script, root_dir, job_name, job_dir, log_dir, include_subdirs=None): + job_script_path = os.path.join(job_dir, f"{job_name}.sh") + include_arg = '' + if include_subdirs: + include_arg = ' '.join(include_subdirs) + include_arg = f"--include {include_arg}" + + if scheduler == 'lsf': + script = f"""#!/bin/bash +#BSUB -J {job_name} +#BSUB -o {log_dir}/{job_name}.out +#BSUB -e {log_dir}/{job_name}.err +#BSUB -n 1 +#BSUB -R "rusage[mem=4096]" +#BSUB -W 02:00 +#BSUB -q i2c2_normal + +python {python_script} "{root_dir}" {include_arg} +""" + submit_cmd = f"bsub < {job_script_path}" + + elif scheduler == 'slurm': + script = f"""#!/bin/bash +#SBATCH --job-name={job_name} +#SBATCH --output={log_dir}/{job_name}.out +#SBATCH --error={log_dir}/{job_name}.err +#SBATCH --ntasks=1 +#SBATCH --mem=4G +#SBATCH --time=02:00:00 +#SBATCH --partition=defq + +python {python_script} "{root_dir}" {include_arg} +""" + submit_cmd = f"sbatch {job_script_path}" + + else: + raise ValueError("Unsupported scheduler type. Use 'lsf' or 'slurm'.") + + with open(job_script_path, 'w') as f: + f.write(script) + + os.system(submit_cmd) + print(f"[INFO] Submitted job: {job_name}") + + +def main(): + parser = argparse.ArgumentParser(description="Submit global RBA rankings job(s).") + parser.add_argument('--rootdir', required=True, help='Root directory containing dataset subdirectories.') + parser.add_argument('--hpctype', choices=['lsf', 'slurm'], default='slurm', help='Scheduler type.') + parser.add_argument('--script', default='job_global_rba_rankings.py', help='Python script to run.') + parser.add_argument('--jobdir', default='jobs', help='Directory to store job scripts.') + parser.add_argument('--logdir', default='logs', help='Directory to store logs.') + parser.add_argument('--include', nargs='+', default=None, help='Optional list of subdirectories to include (short names).') + args = parser.parse_args() + + os.makedirs(args.jobdir, exist_ok=True) + os.makedirs(args.logdir, exist_ok=True) + + job_name = f"global_rba_{int(time.time())}" + generate_job_script(args.hpctype, args.script, args.rootdir, job_name, args.jobdir, args.logdir, args.include) + + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/analysis/run_process_heatmap.py b/analysis/run_process_heatmap.py new file mode 100644 index 0000000..dc81a58 --- /dev/null +++ b/analysis/run_process_heatmap.py @@ -0,0 +1,70 @@ +# make_jobs.py +import os +import time +import argparse + +def generate_job_script(scheduler, python_script, results_path, job_name, job_dir, log_dir, prefix): + job_script_path = os.path.join(job_dir, f"{job_name}.sh") + prefix_flag = f"--prefix {prefix}" if prefix else "" + + if scheduler == 'lsf': + script = f"""#!/bin/bash +#BSUB -J {job_name} +#BSUB -o {log_dir}/{job_name}.out +#BSUB -e {log_dir}/{job_name}.err +#BSUB -n 1 +#BSUB -R "rusage[mem=4096]" +#BSUB -W 01:00 +#BSUB -q i2c2_normal + +python {python_script} "{results_path}" {prefix_flag} +""" + submit_cmd = f"bsub < {job_script_path}" + + elif scheduler == 'slurm': + script = f"""#!/bin/bash +#SBATCH --job-name={job_name} +#SBATCH --output={log_dir}/{job_name}.out +#SBATCH --error={log_dir}/{job_name}.err +#SBATCH --ntasks=1 +#SBATCH --mem=4G +#SBATCH --time=01:00:00 +#SBATCH --partition=defq + +python {python_script} "{results_path}" {prefix_flag} +""" + submit_cmd = f"sbatch {job_script_path}" + + else: + raise ValueError("Unsupported scheduler type. Use 'lsf' or 'slurm'.") + + with open(job_script_path, 'w') as f: + f.write(script) + + os.system(submit_cmd) + +def main(): + parser = argparse.ArgumentParser(description="Generate and submit jobs for processing Results folders.") + parser.add_argument('--basedir', required=True, help='Base experiment directory containing Results subfolders.') + parser.add_argument('--hpctype', choices=['lsf', 'slurm'], default='slurm', help='Scheduler type: lsf or slurm.') + parser.add_argument('--script', default='job_process_heatmap.py', help='Python script to run.') + parser.add_argument('--jobdir', default='jobs', help='Directory to store job scripts.') + parser.add_argument('--logdir', default='logs', help='Directory to store output and error logs.') + parser.add_argument('--prefix', default='', help='Prefix for all output files (e.g. for heatmap PDF).') + + args = parser.parse_args() + + os.makedirs(args.jobdir, exist_ok=True) + os.makedirs(args.logdir, exist_ok=True) + + job_count = 0 + for root, dirs, _ in os.walk(args.basedir): + for d in dirs: + if d == 'Results': + results_path = os.path.join(root, d) + job_name = f"job_{job_count}_{int(time.time())}" + generate_job_script(args.hpctype, args.script, results_path, job_name, args.jobdir, args.logdir, args.prefix) + job_count += 1 + +if __name__ == "__main__": + main() diff --git a/analysis/run_process_heatmap_unified.py b/analysis/run_process_heatmap_unified.py new file mode 100644 index 0000000..277795d --- /dev/null +++ b/analysis/run_process_heatmap_unified.py @@ -0,0 +1,58 @@ +import os +import argparse +import time + +def main(): + parser = argparse.ArgumentParser(description="Generate and submit one job for unified heatmap.") + parser.add_argument('--basedir', required=True, help='Directory containing multiple Results folders.') + parser.add_argument('--hpctype', choices=['lsf', 'slurm'], default='slurm', help='Scheduler type.') + parser.add_argument('--script', default='job_process_heatmap_unified.py', help='Python script to run.') + parser.add_argument('--jobdir', default='jobs', help='Directory to store job scripts.') + parser.add_argument('--logdir', default='logs', help='Directory to store output and error logs.') + parser.add_argument('--prefix', default='', help='Prefix for unified PDF filename.') + args = parser.parse_args() + + os.makedirs(args.jobdir, exist_ok=True) + os.makedirs(args.logdir, exist_ok=True) + + # We’ll pass the whole basedir once to the script + job_name = f"unified_job_{int(time.time())}" + job_script_path = os.path.join(args.jobdir, f"{job_name}.sh") + prefix_flag = f"--prefix {args.prefix}" if args.prefix else "" + + if args.hpctype == 'lsf': + script = f"""#!/bin/bash +#BSUB -J {job_name} +#BSUB -o {args.logdir}/{job_name}.out +#BSUB -e {args.logdir}/{job_name}.err +#BSUB -n 1 +#BSUB -R "rusage[mem=4096]" +#BSUB -W 02:00 +#BSUB -q i2c2_normal + +python {args.script} "{args.basedir}" {prefix_flag} +""" + submit_cmd = f"bsub < {job_script_path}" + elif args.hpctype == 'slurm': + script = f"""#!/bin/bash +#SBATCH --job-name={job_name} +#SBATCH --output={args.logdir}/{job_name}.out +#SBATCH --error={args.logdir}/{job_name}.err +#SBATCH --ntasks=1 +#SBATCH --mem=4G +#SBATCH --time=02:00:00 +#SBATCH --partition=defq + +python {args.script} "{args.basedir}" {prefix_flag} +""" + submit_cmd = f"sbatch {job_script_path}" + else: + raise ValueError("Unsupported scheduler type. Use 'lsf' or 'slurm'.") + + with open(job_script_path, 'w') as f: + f.write(script) + + os.system(submit_cmd) + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/analysis/run_process_mannwhitney.py b/analysis/run_process_mannwhitney.py new file mode 100644 index 0000000..173684a --- /dev/null +++ b/analysis/run_process_mannwhitney.py @@ -0,0 +1,69 @@ +# run_process_mannwhitney.py +import os +import time +import argparse + +def generate_job_script(scheduler, python_script, dir_path, job_name, job_dir, log_dir, column, exclude): + job_script_path = os.path.join(job_dir, f"{job_name}.sh") + column_flag = f"--column {column}" if column else "" + exclude_flag = f"--exclude {' '.join(exclude)}" if exclude else "" + + if scheduler == 'lsf': + script = f"""#!/bin/bash +#BSUB -J {job_name} +#BSUB -o {log_dir}/{job_name}.out +#BSUB -e {log_dir}/{job_name}.err +#BSUB -n 1 +#BSUB -R "rusage[mem=4096]" +#BSUB -W 03:00 +#BSUB -q i2c2_normal + +python {python_script} "{dir_path}" {column_flag} {exclude_flag} +""" + submit_cmd = f"bsub < {job_script_path}" + + elif scheduler == 'slurm': + script = f"""#!/bin/bash +#SBATCH --job-name={job_name} +#SBATCH --output={log_dir}/{job_name}.out +#SBATCH --error={log_dir}/{job_name}.err +#SBATCH --ntasks=1 +#SBATCH --mem=4G +#SBATCH --time=03:00:00 +#SBATCH --partition=defq + +python {python_script} "{dir_path}" {column_flag} {exclude_flag} +""" + submit_cmd = f"sbatch {job_script_path}" + else: + raise ValueError("Unsupported scheduler type. Use 'lsf' or 'slurm'.") + + with open(job_script_path, 'w') as f: + f.write(script) + + os.system(submit_cmd) + +def main(): + parser = argparse.ArgumentParser(description="Generate and submit Mann-Whitney U test jobs.") + parser.add_argument('--basedir', required=True, help='Base directory to search for rankings_list.csv.') + parser.add_argument('--hpctype', choices=['lsf', 'slurm'], default='slurm', help='Scheduler type: lsf or slurm.') + parser.add_argument('--script', default='job_process_mannwhitney.py', help='Python script to run.') + parser.add_argument('--jobdir', default='jobs', help='Directory to store job scripts.') + parser.add_argument('--logdir', default='logs', help='Directory to store output and error logs.') + parser.add_argument('--column', choices=['rank', 'feature_importance'], default='rank', help='Column to use for tests.') + parser.add_argument('--exclude', nargs='*', default=[], help='List of patterns to exclude RBAs.') + + args = parser.parse_args() + + os.makedirs(args.jobdir, exist_ok=True) + os.makedirs(args.logdir, exist_ok=True) + + job_count = 0 + dir_path = args.basedir # only look directly inside basedir + if 'rankings_list.csv' in os.listdir(dir_path): + job_name = f"mannwhitney_job_{job_count}_{int(time.time())}" + generate_job_script(args.hpctype, args.script, dir_path, job_name, args.jobdir, args.logdir, args.column, args.exclude) + job_count += 1 + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/analysis/run_process_rba_rankings.py b/analysis/run_process_rba_rankings.py new file mode 100644 index 0000000..baea250 --- /dev/null +++ b/analysis/run_process_rba_rankings.py @@ -0,0 +1,67 @@ +# run_process_rba_rankings.py +import os +import time +import argparse + +def generate_job_script(scheduler, python_script, root_dir, job_name, job_dir, log_dir): + job_script_path = os.path.join(job_dir, f"{job_name}.sh") + + if scheduler == 'lsf': + script = f"""#!/bin/bash +#BSUB -J {job_name} +#BSUB -o {log_dir}/{job_name}.out +#BSUB -e {log_dir}/{job_name}.err +#BSUB -n 1 +#BSUB -R "rusage[mem=4096]" +#BSUB -W 02:00 +#BSUB -q i2c2_normal + +python {python_script} "{root_dir}" +""" + submit_cmd = f"bsub < {job_script_path}" + + elif scheduler == 'slurm': + script = f"""#!/bin/bash +#SBATCH --job-name={job_name} +#SBATCH --output={log_dir}/{job_name}.out +#SBATCH --error={log_dir}/{job_name}.err +#SBATCH --ntasks=1 +#SBATCH --mem=4G +#SBATCH --time=02:00:00 +#SBATCH --partition=defq + +python {python_script} "{root_dir}" +""" + submit_cmd = f"sbatch {job_script_path}" + + else: + raise ValueError("Unsupported scheduler type. Use 'lsf' or 'slurm'.") + + with open(job_script_path, 'w') as f: + f.write(script) + + os.system(submit_cmd) + + +def main(): + parser = argparse.ArgumentParser(description="Submit a job to compute global RBA rankings.") + parser.add_argument('--rootdir', required=True, help='Root directory containing results folders.') + parser.add_argument('--hpctype', choices=['lsf', 'slurm'], default='slurm', help='Scheduler type: lsf or slurm.') + parser.add_argument('--script', default='job_process_rba_rankings.py', help='Python script to run.') + parser.add_argument('--jobdir', default='jobs', help='Directory to store job scripts.') + parser.add_argument('--logdir', default='logs', help='Directory to store output and error logs.') + + args = parser.parse_args() + + os.makedirs(args.jobdir, exist_ok=True) + os.makedirs(args.logdir, exist_ok=True) + + root_basename = os.path.basename(os.path.normpath(args.rootdir)) + + job_name = f"rba_rankings_{root_basename}_{int(time.time())}" + generate_job_script(args.hpctype, args.script, args.rootdir, job_name, args.jobdir, args.logdir) + print(f"Submitted single job for: {args.rootdir}") + + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/analysis/run_rebate_analysis.py b/analysis/run_rebate_analysis.py new file mode 100644 index 0000000..f316dc8 --- /dev/null +++ b/analysis/run_rebate_analysis.py @@ -0,0 +1,118 @@ +import os +import time + +ALGORITHMS = [ + "mutual_info", + "relieff10", + "relieff100", + "surf", + "surfstar", + "multisurf", + "multisurfstar", + "random", + "swrfstar", + "swrf", + "multiswrfstar", + "multiswrf", + "multiswrfdbstar", + "multiswrfdb", + "murelief10", + "murelief100" +] + +LSF_TEMPLATE = """#!/bin/bash +#BSUB -J {job_name} +#BSUB -o logs/{job_name}.out +#BSUB -e logs/{job_name}.err +#BSUB -n 1 +#BSUB -R "rusage[mem=4096]" +#BSUB -W 01:00 +#BSUB -q i2c2_normal + +python job_rebate_analysis.py --algorithm {algorithm} --input_file "{input_file}" +""" + +SLURM_TEMPLATE = """#!/bin/bash +#SBATCH --job-name={job_name} +#SBATCH --output=logs/{job_name}.out +#SBATCH --error=logs/{job_name}.err +#SBATCH --ntasks=1 +#SBATCH --cpus-per-task=1 +#SBATCH --mem=128G +#SBATCH --time=7-00:00:00 +#SBATCH --partition=defq + +python job_rebate_analysis.py --algorithm {algorithm} --input_file "{input_file}" +""" + +def ensure_dir(directory): + if not os.path.exists(directory): + os.makedirs(directory) + +def find_dataset_files(root_dir): + dataset_files = [] + for dirpath, _, filenames in os.walk(root_dir): + if "EDM" in os.path.basename(dirpath) or os.path.basename(dirpath) == "3Class_Datasets_Loc_2" or os.path.basename(dirpath) == "9Class_Datasets_Loc_2": + for filename in filenames: + if filename.endswith(".txt"): + dataset_files.append(os.path.join(dirpath, filename)) + return dataset_files + +def generate_hpc_jobs(data_dir, dataset_files, algorithms, job_dir, suffix, hpctype="slurm"): + ensure_dir(job_dir) + if hpctype == "lsf": + TEMPLATE = LSF_TEMPLATE + elif hpctype == "slurm": + TEMPLATE = SLURM_TEMPLATE + else: + raise Exception(f"Unsupported HPC type: {hpctype}") + job_paths = [] + for dataset in dataset_files: + rel_path = os.path.relpath(dataset, data_dir) + parts = rel_path.split(os.sep) # Split into parts + last_dirs_and_file = parts[-3:] # [-3:] = last 2 dirs + file + safe_path = "_".join(last_dirs_and_file) # Join with underscore + safe_path = safe_path.replace(".", "") + base_name = os.path.splitext(safe_path)[0] + for algo in algorithms: + job_name = f"{base_name}_{algo}_{suffix}" + job_path = os.path.join(job_dir, f"{job_name}.sh") + with open(job_path, "w") as f: + f.write(TEMPLATE.format( + job_name=job_name, + algorithm=algo, + input_file=dataset, + )) + job_paths.append(job_path) + return job_paths + +def main(): + import argparse + parser = argparse.ArgumentParser() + parser.add_argument("--datadir", required=True, help="Root directory to search for dataset files") + parser.add_argument("--jobdir", default="jobs", help="Directory to save LSF job scripts") + parser.add_argument("--algorithms", nargs="+", default=ALGORITHMS, help="Algorithms to run") + parser.add_argument("--hpctype", choices=["lsf", "slurm"], default="slurm", help="HPC type (lsf or slurm)") + args = parser.parse_args() + + suffix = time.strftime("%Y%m%d_%H%M%S") + dataset_files = find_dataset_files(args.datadir) + job_files = generate_hpc_jobs(args.datadir, dataset_files, args.algorithms, args.jobdir, suffix, hpctype=args.hpctype) + ensure_dir(os.path.join("", "logs")) + + print(f"Generated {len(job_files)} job scripts in: {args.jobdir}") + + # Automatically submit jobs + for job_file in job_files: + if args.hpctype == "lsf": + os.system(f"bsub < {job_file}") + elif args.hpctype == "slurm": + os.system(f"sbatch {job_file}") + else: + raise Exception(f"Unsupported HPC type: {args.hpctype}") + print(f"Submitted job: {job_file}") + + print("All jobs submitted successfully.") + +if __name__ == "__main__": + main() diff --git a/ci/.travis_install.sh b/ci/.travis_install.sh deleted file mode 100644 index a7f9fed..0000000 --- a/ci/.travis_install.sh +++ /dev/null @@ -1,49 +0,0 @@ -#!/bin/bash - -# modified from https://github.com/trevorstephens/gplearn - -# This script is meant to be called by the "install" step defined in -# .travis.yml. See http://docs.travis-ci.com/ for more details. -# The behavior of the script is controlled by environment variabled defined -# in the .travis.yml in the top level folder of the project. - - -# License: GNU/GPLv3 - -set -e - -# Fix the compilers to workaround avoid having the Python 3.4 build -# lookup for g++44 unexpectedly. -export CC=gcc -export CXX=g++ - -# Deactivate the travis-provided virtual environment and setup a -# conda-based environment instead -deactivate - -# Use the miniconda installer for faster download / install of conda -# itself -wget http://repo.continuum.io/miniconda/Miniconda-3.9.1-Linux-x86_64.sh \ - -O miniconda.sh -chmod +x miniconda.sh && ./miniconda.sh -b -export PATH=/home/travis/miniconda/bin:$PATH -conda update --yes conda - -# Configure the conda environment and put it in the path using the -# provided versions -conda create -n testenv --yes python=$PYTHON_VERSION pip nose \ - numpy scipy scikit-learn cython pandas - -source activate testenv - -if [[ "$COVERAGE" == "true" ]]; then - pip install coverage coveralls -fi - -# build output in the travis output when it succeeds. -python --version -python -c "import numpy; print('numpy %s' % numpy.__version__)" -python -c "import scipy; print('scipy %s' % scipy.__version__)" -python -c "import sklearn; print('sklearn %s' % sklearn.__version__)" -python -c "import pandas; print('pandas %s' % pandas.__version__)" -python setup.py build_ext --inplace diff --git a/ci/.travis_test.sh b/ci/.travis_test.sh deleted file mode 100644 index f04fd41..0000000 --- a/ci/.travis_test.sh +++ /dev/null @@ -1,22 +0,0 @@ -# modified from https://github.com/trevorstephens/gplearn - -# This script is meant to be called by the "install" step defined in -# .travis.yml. See http://docs.travis-ci.com/ for more details. -# The behavior of the script is controlled by environment variabled defined -# in the .travis.yml in the top level folder of the project. - -# License: GNU/GPLv3 - -set -e - -python --version -python -c "import numpy; print('numpy %s' % numpy.__version__)" -python -c "import scipy; print('scipy %s' % scipy.__version__)" -python -c "import sklearn; print('sklearn %s' % sklearn.__version__)" -python -c "import pandas; print('pandas %s' % pandas.__version__)" - -if [[ "$COVERAGE" == "true" ]]; then - nosetests -s -v --with-coverage -else - nosetests -s -v -fi diff --git a/data/3Class_Datasets_Loc_2_01.csv b/data/3Class_Datasets_Loc_2_01.csv new file mode 100644 index 0000000..4b55f77 --- /dev/null +++ b/data/3Class_Datasets_Loc_2_01.csv @@ -0,0 +1,1601 @@ +N0,N1,N2,N3,N4,N5,N6,N7,N8,N9,N10,N11,N12,N13,N14,N15,N16,N17,M0P0,M0P1,class +0,0,0,0,0,0,0,2,0,0,1,2,1,2,1,0,1,0,2,1,0 +1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,0,0,1,0,1,2 +0,0,0,1,0,0,0,2,0,0,0,1,0,1,1,0,0,0,2,1,0 +0,0,0,1,2,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,2 +0,1,0,1,0,0,0,0,0,0,0,0,1,1,1,0,1,0,1,1,1 +1,0,0,1,2,0,1,0,0,0,1,1,1,1,1,0,2,0,1,1,1 +0,1,1,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,1,2 +0,1,0,0,1,1,0,1,0,1,1,1,1,2,1,1,2,0,1,2,0 +0,1,0,0,1,0,1,0,0,0,1,1,2,0,0,1,1,0,0,2,1 +1,0,0,1,1,0,0,1,0,1,1,0,0,2,2,0,0,0,0,1,2 +1,1,0,0,2,1,0,0,0,1,1,0,2,1,1,0,0,0,1,0,2 +0,1,1,1,1,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,2 +0,0,0,1,1,0,0,0,0,1,1,1,1,2,1,0,1,0,1,1,1 +0,1,0,1,1,0,0,1,0,0,2,1,0,1,1,0,1,1,1,1,1 +0,0,0,2,0,0,0,1,0,1,0,2,1,0,0,0,1,1,1,1,1 +0,0,1,1,0,0,0,1,0,1,0,1,0,1,1,0,0,0,1,1,1 +1,1,0,2,0,0,0,1,0,1,1,1,0,2,0,0,1,0,1,0,2 +0,0,0,1,0,0,0,0,0,0,2,1,0,1,1,1,1,1,1,2,0 +0,0,1,1,1,0,0,0,0,1,2,0,1,1,1,0,1,0,1,1,1 +0,1,0,0,1,0,1,1,0,1,0,1,2,0,1,0,0,1,0,2,1 +0,1,1,2,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,1,2 +0,0,0,0,2,0,0,1,0,0,1,1,0,0,1,0,1,1,1,0,2 +0,0,0,0,0,0,1,1,0,1,1,1,0,1,0,0,0,1,1,2,0 +0,1,0,1,0,0,0,0,0,0,1,0,2,0,1,0,1,1,1,1,1 +1,1,0,1,2,0,1,0,0,1,1,0,0,1,1,1,1,0,0,0,0 +0,0,0,1,1,0,1,1,0,0,1,1,1,2,1,0,0,0,2,1,0 +0,1,0,1,0,0,0,1,0,1,1,1,1,1,1,0,1,0,1,1,1 +0,0,0,1,0,0,1,1,0,0,1,1,1,1,1,0,2,0,1,1,1 +0,1,0,0,0,0,0,1,0,1,1,1,0,0,0,1,2,0,0,1,2 +0,1,0,2,0,0,0,0,0,1,0,1,0,1,1,0,0,0,2,1,0 +0,1,0,2,1,0,2,1,0,0,2,1,0,0,0,0,0,0,2,0,1 +0,1,0,2,2,0,0,1,1,0,0,1,1,2,1,0,1,0,1,2,0 +1,0,0,2,2,0,1,0,1,1,0,1,2,1,0,0,0,1,2,2,2 +0,1,1,0,1,0,0,1,0,0,0,1,0,1,2,0,2,0,0,2,1 +0,0,0,1,1,0,0,2,0,1,0,2,0,1,2,0,1,0,1,1,1 +0,1,0,0,1,0,0,2,1,1,0,1,1,1,1,1,2,0,1,1,1 +1,0,0,1,2,0,0,2,1,2,0,0,1,1,1,0,1,0,1,1,1 +0,1,0,0,1,0,0,0,0,0,2,1,0,0,0,0,1,1,2,1,0 +0,0,0,2,1,0,0,2,0,1,0,0,1,1,2,0,1,0,0,1,2 +0,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,1,0,1,2,0 +0,0,0,1,1,0,0,1,1,0,0,1,0,1,1,0,0,0,0,1,2 +1,0,0,0,2,0,1,1,0,1,1,0,2,0,1,0,1,0,2,2,2 +0,0,1,1,0,0,1,1,0,0,1,0,0,1,1,0,0,0,2,1,0 +1,0,0,1,0,0,0,0,0,2,2,1,2,0,1,0,1,0,0,1,2 +0,0,0,0,1,0,0,2,1,2,0,0,1,2,0,0,0,0,1,0,2 +1,0,0,1,1,0,0,0,1,0,0,1,0,0,0,1,2,0,1,1,1 +0,0,0,0,1,0,0,1,0,1,0,1,1,1,2,0,1,0,0,1,2 +0,0,0,1,1,1,0,2,0,1,1,1,1,0,1,1,1,0,2,2,2 +1,2,1,1,0,0,0,2,0,0,1,0,0,1,0,0,1,0,2,1,0 +0,1,0,1,0,0,0,0,1,1,0,1,1,1,1,0,2,0,2,2,2 +0,1,0,2,0,0,0,1,0,0,0,1,0,0,0,1,1,0,1,1,1 +0,1,0,0,1,0,0,2,0,2,1,1,2,1,1,1,1,0,1,0,2 +0,0,0,1,1,0,0,2,0,1,0,2,1,1,0,1,1,0,1,1,1 +0,1,0,1,1,0,1,1,0,0,0,0,1,2,1,0,1,0,1,2,0 +0,0,0,0,0,0,0,0,0,2,1,0,0,0,2,0,0,1,1,2,0 +0,0,0,1,1,0,0,1,0,0,0,0,1,1,1,0,1,0,1,2,0 +0,0,0,0,1,0,2,1,1,2,2,1,1,1,1,0,1,0,1,1,1 +0,0,0,1,2,0,0,0,0,1,1,0,2,2,1,0,1,0,1,0,2 +0,0,0,1,1,0,0,0,0,2,1,0,1,0,1,0,0,0,1,1,1 +0,0,0,0,2,0,0,1,0,0,1,1,2,0,1,0,1,0,0,2,1 +0,0,0,1,1,0,0,1,0,0,2,1,1,1,2,0,0,0,0,0,0 +0,1,0,0,1,0,0,2,0,1,1,0,0,0,1,0,0,0,1,2,0 +1,1,0,0,1,0,0,1,0,0,1,2,0,2,0,0,0,0,1,0,2 +0,0,0,1,1,0,1,1,1,0,1,0,1,0,2,1,0,0,2,1,0 +0,1,1,0,0,0,0,1,0,2,0,1,0,0,1,1,1,1,0,1,2 +0,1,0,1,2,0,0,2,0,1,1,1,0,0,2,0,1,1,0,1,2 +0,1,0,0,1,1,1,1,0,1,1,0,0,1,1,2,0,0,0,1,2 +1,1,0,0,1,0,0,0,0,1,0,1,0,2,1,0,0,1,0,2,1 +0,0,0,0,2,0,0,0,0,1,1,0,0,2,1,0,2,1,1,0,2 +0,0,0,1,1,0,1,0,0,1,1,0,1,1,2,1,1,0,0,0,0 +1,1,1,1,1,0,0,1,0,1,1,2,2,0,1,0,0,0,1,2,0 +0,0,1,2,1,0,0,0,1,1,1,0,1,1,2,0,0,0,1,0,2 +0,0,0,1,1,0,0,1,0,0,1,1,1,1,0,0,1,1,0,1,2 +0,0,0,1,1,0,0,2,0,1,2,1,1,1,1,0,1,0,1,2,0 +0,1,0,0,0,1,0,1,0,0,0,0,2,0,2,0,1,0,0,1,2 +0,1,0,1,1,0,0,1,0,1,0,0,0,2,1,1,0,0,1,0,2 +0,0,0,0,2,1,0,1,0,0,0,1,0,0,0,0,1,0,1,2,0 +0,0,0,0,1,0,1,0,0,0,0,2,2,1,1,0,0,0,1,0,2 +0,2,1,1,0,0,1,1,0,1,1,1,0,2,0,1,0,0,1,1,1 +0,2,1,1,0,1,0,0,1,0,1,0,1,1,1,0,2,0,1,1,1 +0,1,1,1,2,0,0,1,0,0,0,0,0,0,1,1,1,1,1,1,1 +0,0,0,1,2,0,0,1,1,1,1,0,0,0,0,0,1,0,1,1,1 +0,0,0,1,1,0,0,1,1,0,0,0,1,1,2,0,1,0,1,2,0 +0,0,0,0,2,0,1,1,0,0,0,1,1,1,1,1,0,1,0,1,2 +0,0,0,0,1,0,1,1,0,0,0,0,1,2,1,0,0,0,1,1,1 +0,1,0,1,1,0,0,2,0,0,0,0,0,1,1,0,0,0,1,0,2 +0,0,1,2,1,0,0,1,0,2,1,0,1,0,0,0,0,0,2,1,0 +0,1,0,0,1,0,0,1,0,1,1,2,2,1,1,0,0,1,0,2,1 +0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,2 +0,0,1,1,2,0,0,0,0,1,0,1,0,1,0,0,0,0,1,1,1 +1,1,0,2,1,0,0,1,0,0,0,1,1,2,1,0,0,0,0,1,2 +0,0,0,1,0,0,0,2,0,1,2,1,1,1,2,0,0,1,1,1,1 +0,1,0,1,0,0,1,1,0,1,0,0,2,2,1,0,0,0,2,2,2 +0,0,0,0,1,1,0,2,0,0,0,1,1,1,1,0,1,1,2,1,0 +0,0,0,2,0,0,1,1,0,1,1,0,0,1,0,1,0,0,1,1,1 +0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,2,1,0,0,0 +0,0,1,0,1,0,0,1,0,2,1,2,1,1,1,0,2,0,2,1,0 +0,0,0,0,2,1,0,1,0,2,1,1,2,0,2,0,1,0,2,0,1 +0,1,0,2,1,0,1,2,0,0,0,1,1,2,2,0,0,0,0,1,2 +0,2,0,2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,2,0 +0,0,0,1,1,1,0,2,0,1,2,1,2,1,2,1,1,1,2,0,1 +0,0,0,0,1,1,0,1,0,0,0,0,1,1,2,0,0,0,1,1,1 +0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,1,0,1,1,1 +1,1,0,0,0,0,0,1,0,0,1,1,0,1,1,0,1,0,0,2,1 +1,1,1,2,1,0,0,1,0,0,1,0,1,2,2,1,1,0,2,1,0 +0,0,0,1,1,0,0,1,0,1,0,1,1,1,0,0,0,1,1,1,1 +0,0,0,1,0,0,0,2,0,1,1,0,0,1,0,1,0,1,2,1,0 +1,1,1,0,2,0,0,1,0,0,0,2,1,0,1,0,1,0,1,0,2 +0,1,1,0,2,1,0,0,0,2,2,1,1,1,1,0,1,0,0,0,0 +0,1,1,2,0,0,0,2,0,1,0,0,2,2,1,0,1,1,0,2,1 +2,0,0,1,1,0,0,1,0,1,1,0,1,2,0,1,0,1,2,2,2 +0,0,0,1,1,0,0,1,0,2,2,1,1,1,0,0,1,0,1,2,0 +1,0,0,1,0,0,0,2,0,1,0,1,1,2,0,0,2,0,1,0,2 +0,0,0,0,1,0,0,2,0,0,0,1,2,1,0,1,1,0,1,0,2 +0,1,0,1,1,0,0,1,0,2,0,1,0,1,0,1,0,0,2,1,0 +0,0,1,2,0,0,0,1,1,1,0,1,2,2,1,0,0,0,0,1,2 +0,0,0,1,2,1,0,1,0,0,2,0,0,2,0,0,1,0,1,1,1 +0,0,1,1,2,0,1,1,0,2,0,1,1,1,0,0,1,0,0,0,0 +0,0,0,1,1,0,0,1,0,0,1,0,0,1,0,1,1,0,1,1,1 +0,0,1,1,0,0,0,1,0,0,0,2,1,2,0,0,1,0,1,1,1 +0,0,0,0,1,0,1,0,0,0,1,1,2,1,2,0,2,0,0,1,2 +0,0,0,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,1,1,1 +0,0,0,2,1,0,0,1,0,2,0,0,1,1,1,0,2,1,1,1,1 +0,0,0,1,0,0,0,1,0,0,1,0,1,1,1,1,1,0,1,2,0 +0,0,0,0,1,0,0,1,0,0,0,1,0,1,1,1,0,0,1,2,0 +0,0,1,1,2,0,0,2,0,1,1,0,2,2,1,0,0,0,0,0,0 +0,0,0,1,1,0,0,1,0,2,1,2,1,1,1,1,1,1,1,1,1 +0,1,0,0,2,0,1,1,0,0,2,1,0,1,0,0,0,0,0,2,1 +0,0,1,1,0,1,0,0,1,0,0,0,1,0,1,1,1,0,1,0,2 +0,0,0,2,1,0,0,1,0,1,2,2,0,0,1,0,0,0,2,2,2 +0,0,0,1,2,1,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0 +0,0,0,0,0,0,0,1,0,1,2,1,2,1,1,1,0,1,1,0,2 +0,0,0,1,1,0,0,2,0,0,0,1,0,0,1,0,0,0,1,1,1 +0,0,1,1,2,0,0,1,0,0,1,2,0,0,1,0,0,0,1,1,1 +0,0,2,1,2,0,0,0,0,0,2,0,1,1,1,0,1,1,1,1,1 +0,1,1,1,0,0,0,2,0,1,0,0,2,2,1,0,0,0,1,1,1 +0,0,0,0,2,0,0,1,0,0,1,1,0,1,2,0,0,0,1,1,1 +1,0,0,1,1,1,1,0,0,0,1,0,2,1,2,1,0,1,2,0,1 +0,0,0,1,0,1,0,2,1,1,1,0,0,1,0,1,1,0,1,1,1 +0,0,0,1,0,0,0,1,0,0,2,0,1,0,1,0,0,0,1,0,2 +0,0,0,0,0,0,0,2,1,1,2,1,0,1,2,0,1,0,1,1,1 +0,2,1,0,2,0,1,0,0,0,0,1,0,2,2,0,0,0,1,0,2 +0,0,0,1,0,0,0,2,0,1,2,0,1,0,1,0,0,0,0,1,2 +0,0,0,1,1,0,1,0,0,0,0,1,2,1,0,0,1,1,1,1,1 +1,1,0,0,1,0,0,0,1,0,0,1,0,1,1,0,2,0,1,1,1 +0,0,0,2,2,0,0,2,1,2,0,2,0,1,2,0,0,0,1,2,0 +1,0,0,2,0,0,0,1,0,0,2,0,0,0,2,0,1,0,1,1,1 +0,0,0,1,1,0,0,1,0,0,1,0,2,2,1,0,0,1,1,1,1 +0,0,0,1,2,0,1,2,0,0,1,0,2,2,0,0,0,0,2,1,0 +0,0,0,0,1,0,1,1,0,0,1,0,0,0,1,0,1,0,1,1,1 +0,0,0,1,2,0,0,0,0,0,0,0,0,0,1,0,1,1,2,1,0 +0,0,0,1,1,0,0,1,0,0,1,1,1,1,0,0,0,0,0,1,2 +0,1,0,0,2,0,0,1,0,2,1,0,1,1,0,0,1,0,1,1,1 +0,0,0,2,1,0,0,2,0,2,0,1,0,0,1,0,0,1,0,0,0 +0,0,0,1,1,0,0,1,0,1,0,1,1,1,0,0,0,0,2,1,0 +0,2,0,1,0,1,1,0,0,0,2,0,1,0,2,0,1,0,1,2,0 +1,0,1,1,1,0,0,1,0,1,0,1,0,0,0,0,1,1,1,2,0 +0,1,0,0,2,0,0,2,0,1,0,1,1,1,1,0,2,1,2,1,0 +0,0,0,1,2,0,0,1,0,2,0,1,1,0,1,0,1,0,2,1,0 +0,2,0,2,0,0,1,1,0,0,2,2,0,0,1,1,0,0,1,0,2 +0,0,0,1,0,0,2,2,0,2,1,1,1,1,1,0,1,0,1,0,2 +0,0,1,1,0,0,1,1,0,0,1,1,0,1,1,1,0,0,0,0,0 +0,0,0,1,0,0,0,0,0,1,1,1,1,1,2,0,0,0,2,1,0 +0,1,0,2,1,0,1,2,0,0,0,0,1,2,0,0,0,0,2,1,0 +0,1,0,0,1,0,0,1,0,0,2,2,1,1,0,1,0,0,2,2,2 +0,1,1,1,2,0,0,1,0,0,1,2,0,1,0,0,1,1,2,2,2 +0,0,0,1,1,0,0,1,0,2,0,2,0,1,0,0,2,0,2,1,0 +0,0,0,1,0,0,0,2,0,0,1,1,1,2,0,0,0,0,1,1,1 +0,1,1,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,0,1,2 +1,0,1,1,0,0,0,0,0,0,0,2,1,0,1,0,0,0,2,2,2 +0,0,1,0,1,0,0,1,0,0,1,0,1,0,2,0,0,0,2,1,0 +0,1,1,0,2,0,0,1,0,0,2,1,2,0,0,0,2,0,2,1,0 +1,0,1,1,1,0,0,1,0,2,1,1,0,0,1,0,1,0,1,0,2 +0,0,0,2,0,0,1,1,0,0,1,1,2,1,0,1,0,2,0,1,2 +0,0,0,1,0,0,1,0,0,1,1,1,1,0,1,0,0,0,1,1,1 +0,1,0,1,1,0,2,1,0,0,0,1,0,1,0,1,1,1,0,1,2 +0,0,0,2,0,0,1,0,1,0,0,1,2,0,0,0,1,1,2,1,0 +1,0,1,1,1,0,0,1,0,0,0,0,2,1,0,0,1,0,1,1,1 +0,0,0,1,2,0,0,2,0,1,1,1,1,0,1,0,0,0,1,2,0 +1,0,0,1,1,0,1,1,0,0,1,0,0,1,2,1,0,0,1,1,1 +0,0,1,1,1,0,0,1,0,0,0,1,1,1,1,0,1,0,2,1,0 +0,0,0,0,1,0,1,1,0,1,0,2,1,2,1,0,1,1,1,0,2 +1,0,0,0,1,0,0,1,0,1,1,1,2,1,2,0,0,0,1,0,2 +0,1,0,0,2,0,1,1,0,0,0,1,0,1,1,1,1,0,2,1,0 +0,1,0,1,2,0,0,2,0,0,0,2,1,0,1,0,2,1,1,1,1 +0,0,0,1,0,0,0,1,0,1,0,1,1,1,2,1,0,0,1,0,2 +0,1,1,1,1,0,0,0,0,0,1,0,2,0,1,0,1,0,1,1,1 +0,0,0,1,0,0,0,1,0,2,0,1,1,0,1,0,1,0,1,1,1 +1,0,0,1,0,0,0,0,0,1,0,0,1,0,1,1,2,0,0,1,2 +0,2,0,1,2,0,0,1,0,0,1,2,2,1,1,0,1,1,1,0,2 +0,1,0,2,1,0,0,0,0,0,1,1,2,0,1,1,0,0,1,1,1 +0,1,0,1,0,0,1,1,0,0,1,2,1,0,0,0,0,0,1,0,2 +0,0,0,1,0,0,0,0,1,1,0,1,1,1,1,1,2,1,0,1,2 +1,1,1,1,0,0,0,1,0,0,0,1,1,1,1,0,0,0,1,1,1 +0,0,0,0,1,0,1,1,0,1,0,1,1,1,0,0,1,1,2,1,0 +0,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,2 +0,1,0,1,0,0,0,1,0,0,0,1,2,0,0,0,1,0,1,1,1 +1,0,1,2,0,0,0,1,1,0,2,0,1,1,0,0,0,0,1,0,2 +1,1,0,0,1,0,0,2,0,0,1,1,2,0,0,0,1,0,1,1,1 +0,0,0,1,1,0,1,1,0,1,1,2,1,1,2,1,1,0,1,1,1 +0,2,0,1,0,0,0,1,0,0,0,2,0,2,0,1,0,1,2,2,2 +1,1,0,1,2,1,1,1,0,0,1,0,1,0,1,0,1,1,1,1,1 +1,1,1,1,1,1,2,0,0,0,1,0,2,2,0,1,1,0,0,1,2 +1,1,1,0,1,0,1,0,0,0,0,1,0,1,1,0,2,1,0,2,1 +0,1,1,0,0,1,1,1,0,1,0,1,1,1,1,0,1,0,1,1,1 +0,1,1,0,1,0,1,0,0,2,0,0,0,0,2,1,1,1,2,2,2 +0,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1,1,0,1,2,0 +1,1,0,2,0,0,0,1,1,1,2,2,1,1,1,0,0,0,1,1,1 +0,0,0,2,1,0,0,0,0,2,1,1,0,1,1,0,0,1,1,0,2 +0,0,0,1,1,0,0,1,1,1,1,2,1,2,0,0,1,0,1,1,1 +0,1,0,2,2,0,1,0,0,0,1,1,1,1,0,0,0,1,0,1,2 +1,1,0,1,2,1,1,1,0,0,0,2,2,1,0,0,1,0,0,2,1 +0,1,0,0,0,0,1,2,0,0,0,0,2,2,1,2,0,0,0,1,2 +0,0,0,2,1,0,1,1,1,2,0,1,1,2,1,0,1,1,2,1,0 +0,0,0,1,1,0,1,1,0,1,1,1,1,1,0,1,0,1,1,0,2 +1,0,0,1,1,0,0,1,0,0,0,0,0,1,1,0,1,2,2,0,1 +0,0,0,0,2,0,0,2,1,1,2,0,1,1,1,0,0,0,0,1,2 +0,0,0,1,2,0,0,2,0,2,1,1,1,1,0,0,2,0,1,1,1 +1,0,0,1,0,0,0,1,0,0,1,1,0,1,2,0,0,0,2,0,1 +0,1,0,0,0,0,0,1,0,1,0,0,2,1,1,1,0,0,1,0,2 +0,0,0,2,0,1,1,1,0,0,0,1,1,1,1,0,1,1,2,0,1 +0,1,0,0,1,0,1,1,0,1,0,1,1,0,0,1,0,1,1,1,1 +1,0,1,1,2,0,1,0,0,1,1,1,1,0,2,0,0,0,1,1,1 +0,0,1,1,0,0,0,1,0,0,0,1,0,2,2,0,1,0,1,0,2 +0,0,0,1,1,0,1,0,0,1,1,0,0,2,0,1,2,0,1,1,1 +0,0,0,1,0,0,0,2,0,1,0,1,1,1,0,0,1,0,1,2,0 +0,0,0,2,2,0,0,2,0,0,0,1,2,0,1,0,1,0,2,1,0 +0,0,0,2,0,1,2,2,0,0,0,2,1,0,0,2,2,1,1,1,1 +0,0,1,1,1,1,0,1,0,2,0,0,0,0,0,1,1,0,1,1,1 +0,1,0,0,1,0,1,2,0,0,0,2,1,2,0,0,1,0,0,1,2 +0,1,1,2,1,0,0,0,0,0,0,1,0,1,1,1,1,0,2,2,2 +1,1,0,0,0,0,0,1,0,1,0,2,1,0,1,1,1,0,1,0,2 +0,0,0,0,1,0,0,2,0,1,0,1,1,1,2,1,1,0,1,1,1 +0,0,1,1,1,0,0,1,0,0,0,1,0,1,1,0,0,0,1,1,1 +0,0,0,2,1,0,1,1,0,1,1,2,1,1,1,1,2,1,1,1,1 +0,0,0,0,1,0,1,1,0,1,1,0,0,0,2,1,1,0,2,1,0 +1,0,1,2,0,1,0,0,0,0,0,1,1,1,2,1,0,0,1,2,0 +0,1,0,0,1,0,0,0,0,0,1,1,1,0,1,0,1,0,2,2,2 +0,0,0,2,2,1,1,2,0,0,1,1,2,0,0,0,0,0,1,0,2 +0,1,0,1,1,1,1,0,0,1,0,1,1,2,2,1,2,2,0,1,2 +0,0,1,1,2,1,0,0,0,0,2,1,0,1,1,0,0,1,1,1,1 +0,0,0,1,0,0,0,0,0,0,1,0,1,0,2,0,1,0,1,1,1 +0,0,0,2,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1 +0,0,0,0,1,0,0,0,0,1,0,1,1,1,1,1,0,0,0,2,1 +0,1,1,0,1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1 +1,0,0,1,2,0,1,1,0,1,1,0,2,0,0,1,0,1,2,0,1 +1,0,0,2,1,0,0,2,0,0,1,1,0,2,2,0,0,1,2,2,2 +1,0,0,2,0,0,0,1,0,1,1,0,1,2,1,0,0,0,1,0,2 +0,0,0,2,0,0,0,1,0,1,2,1,1,0,1,0,0,0,1,0,2 +0,0,0,0,0,0,1,2,1,1,1,1,0,1,0,0,1,0,1,1,1 +0,0,0,0,2,0,1,0,0,0,1,1,0,0,1,0,0,0,2,2,2 +0,0,0,1,0,0,0,1,0,1,1,1,0,1,1,0,1,0,0,1,2 +1,1,0,0,2,0,1,1,0,0,2,0,1,1,1,0,0,0,1,1,1 +0,0,0,0,1,0,1,1,0,1,0,1,1,0,1,0,2,0,0,0,0 +0,0,0,2,1,0,0,1,0,0,0,1,0,1,1,1,0,0,1,1,1 +0,0,0,0,1,0,1,0,0,1,1,1,1,1,0,1,1,1,0,2,1 +0,1,1,2,0,1,1,1,1,1,1,1,0,1,0,1,1,0,0,1,2 +0,1,0,0,1,1,1,2,1,1,1,1,1,0,1,0,1,0,0,0,0 +0,0,0,2,1,0,0,1,0,1,1,0,0,2,0,0,2,0,1,0,2 +0,0,1,1,2,0,1,1,0,1,1,0,0,1,0,1,1,0,2,1,0 +1,0,0,0,0,1,0,2,0,0,1,1,1,0,1,0,1,1,0,0,0 +0,1,0,1,2,0,0,2,0,2,0,1,0,1,1,0,0,1,1,2,0 +0,0,0,1,1,0,0,1,1,1,0,1,1,2,2,0,2,0,0,1,2 +0,1,0,1,1,1,0,0,0,1,2,1,2,1,0,0,2,1,2,1,0 +1,0,0,1,1,0,1,2,1,0,0,1,0,1,1,0,1,0,1,2,0 +1,1,1,2,2,0,0,1,0,1,1,1,1,0,0,1,0,1,1,1,1 +1,0,0,1,0,0,1,2,0,1,1,1,0,0,1,1,1,0,1,1,1 +2,0,0,2,0,0,0,2,0,0,1,1,0,1,2,1,0,0,1,1,1 +2,1,0,1,1,0,1,2,0,0,1,1,1,1,0,0,1,0,1,2,0 +0,1,0,1,0,1,1,1,0,2,1,2,1,2,2,0,1,1,2,1,0 +0,1,1,2,2,0,0,2,0,2,1,1,0,0,0,0,1,1,1,2,0 +0,1,1,2,0,0,1,2,0,0,0,1,1,1,2,1,0,1,1,1,1 +0,0,0,1,2,0,0,1,0,1,0,2,2,0,0,1,0,0,1,2,0 +0,0,0,0,1,0,2,2,0,0,1,2,1,1,1,1,0,0,1,1,1 +0,1,0,0,0,0,1,0,1,1,0,0,2,1,1,0,0,0,0,0,0 +0,0,0,0,2,0,0,2,0,0,0,2,1,0,2,0,0,1,0,1,2 +1,0,0,1,1,0,0,0,0,2,2,1,0,2,1,1,0,0,1,1,1 +0,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1,0,1,1,0,2 +0,1,0,0,2,0,1,1,0,0,0,1,0,1,0,1,1,0,1,1,1 +0,2,0,0,1,0,0,2,0,0,0,1,0,1,2,0,0,0,2,1,0 +1,1,0,2,1,0,1,2,0,0,1,0,1,2,2,1,1,0,2,0,1 +0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,1,1,0,2,1 +0,0,0,2,0,0,0,2,0,0,0,0,2,1,1,0,1,0,1,2,0 +0,0,0,1,1,0,0,0,0,1,0,2,0,0,0,0,1,1,2,0,1 +0,0,0,0,1,0,0,1,0,0,0,1,1,2,0,0,0,1,2,1,0 +1,1,0,2,2,0,0,1,0,0,0,1,1,1,1,0,0,0,1,1,1 +0,1,0,2,0,0,0,1,0,1,1,2,1,0,1,0,1,1,1,2,0 +0,0,0,0,2,0,2,1,0,0,1,2,1,1,1,0,0,1,1,2,0 +0,0,0,0,1,0,0,2,0,0,1,0,0,1,2,0,2,0,1,2,0 +0,1,0,1,1,0,1,1,0,1,0,2,0,1,0,0,1,1,1,0,2 +0,1,0,1,1,0,0,2,1,1,0,1,2,2,1,1,1,1,1,0,2 +0,1,0,0,2,0,0,1,0,0,1,1,0,2,1,1,0,0,1,1,1 +0,0,0,2,1,0,0,1,0,0,2,1,0,0,1,0,2,0,2,2,2 +1,1,0,1,1,0,0,1,0,0,1,0,0,1,1,0,1,0,1,1,1 +0,0,0,0,0,0,1,0,1,1,2,1,1,0,0,1,1,1,1,1,1 +1,0,0,1,0,0,0,0,0,0,1,2,1,1,1,0,1,0,1,2,0 +0,0,1,2,0,0,0,1,0,1,2,1,0,0,2,0,1,0,0,0,0 +0,1,0,2,2,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0,2 +0,0,0,2,2,0,0,1,0,0,0,1,1,1,0,1,0,1,0,1,2 +0,0,0,1,0,0,0,1,1,0,1,2,2,0,0,0,2,0,1,0,2 +0,2,0,1,1,0,0,1,0,0,1,1,2,1,0,0,0,0,1,1,1 +0,1,0,2,0,0,0,1,1,0,1,1,1,1,1,2,0,0,1,1,1 +1,1,0,1,2,0,1,1,1,0,1,2,1,1,1,0,2,1,2,1,0 +0,1,1,0,0,0,0,1,0,0,1,2,0,0,0,0,1,0,1,1,1 +0,1,0,2,1,0,0,1,0,0,0,1,0,1,1,0,1,2,2,1,0 +0,0,0,0,1,0,0,1,0,0,1,1,1,1,1,1,1,0,2,1,0 +0,0,1,0,2,0,0,1,0,0,0,1,1,1,0,0,1,0,1,1,1 +0,0,0,1,1,0,0,1,0,1,2,2,2,1,1,0,1,0,0,1,2 +1,0,0,1,0,0,1,1,0,1,1,0,2,2,2,1,0,0,1,1,1 +0,0,0,1,0,0,0,2,0,0,0,1,1,1,2,0,1,1,0,1,2 +0,1,0,1,1,0,0,1,0,1,1,0,0,2,1,0,1,0,0,0,0 +0,1,0,1,1,0,0,1,0,0,0,2,0,1,0,1,1,0,1,0,2 +0,0,0,1,1,0,0,2,0,1,0,1,0,2,0,0,0,1,0,1,2 +0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,0,2,0,1 +0,0,0,0,1,0,0,1,0,2,1,1,0,1,0,0,0,0,0,1,2 +0,1,0,2,1,0,1,2,0,0,1,0,1,1,1,1,1,0,0,1,2 +0,0,0,1,0,0,0,2,0,0,1,0,1,1,2,0,0,1,0,1,2 +1,1,0,1,1,0,0,2,0,2,1,1,2,2,1,1,1,0,1,0,2 +0,0,0,2,1,0,0,2,0,0,1,1,0,1,2,1,1,0,1,2,0 +0,1,0,2,1,1,1,0,0,0,1,0,0,0,2,0,1,0,1,2,0 +0,0,0,1,1,0,0,0,0,0,1,0,2,2,0,0,1,0,0,2,1 +1,0,0,1,2,0,0,1,0,1,1,2,0,1,0,0,0,1,2,1,0 +0,1,1,1,0,0,1,0,0,2,0,1,2,0,0,1,0,1,0,1,2 +0,1,0,1,0,0,0,2,0,0,1,2,1,1,1,0,0,1,2,1,0 +0,2,0,0,0,1,0,2,0,1,2,2,0,0,0,0,1,0,2,1,0 +0,0,0,1,1,0,1,1,0,0,0,0,1,1,1,0,0,0,2,1,0 +0,0,1,0,1,0,0,2,0,0,1,1,1,1,1,0,2,0,0,1,2 +2,0,1,1,1,0,0,1,0,2,0,1,1,1,1,0,2,1,1,1,1 +1,0,0,2,1,0,1,0,0,1,2,1,1,0,1,0,2,0,0,1,2 +0,0,0,1,0,0,0,2,1,0,0,1,2,1,1,0,0,1,1,2,0 +1,0,0,0,0,1,1,2,0,2,1,0,2,1,1,1,0,0,1,0,2 +0,2,1,1,2,0,0,0,0,0,0,1,1,1,1,0,1,0,2,1,0 +0,0,0,1,2,0,1,2,1,0,1,0,2,0,0,0,2,0,0,2,1 +0,1,0,1,1,0,0,1,0,0,1,0,1,1,0,1,1,0,1,0,2 +0,1,0,1,1,0,0,1,0,0,1,1,0,1,2,1,0,0,1,1,1 +1,0,0,1,1,0,0,1,0,1,2,0,0,0,2,0,0,1,1,1,1 +0,0,0,1,1,0,0,2,0,2,1,1,1,1,0,0,0,0,2,0,1 +0,1,0,0,1,0,1,0,1,0,0,1,1,1,1,0,0,0,1,2,0 +0,0,0,1,2,0,0,0,0,0,0,0,1,2,0,0,1,1,2,1,0 +0,0,1,1,0,0,0,1,0,0,1,1,1,2,0,0,0,2,0,1,2 +0,0,0,0,1,0,0,0,0,0,1,2,1,1,0,1,0,1,1,2,0 +0,0,0,1,2,1,1,2,0,2,1,1,1,0,2,1,1,0,1,1,1 +1,0,0,2,1,0,0,1,0,1,1,0,0,2,0,0,0,0,0,1,2 +0,1,0,2,1,0,0,1,0,1,1,2,1,1,1,0,0,1,1,0,2 +0,1,0,0,1,0,0,0,0,0,0,1,0,1,0,0,1,0,1,1,1 +1,0,0,2,0,0,0,1,0,0,1,1,1,1,1,1,0,0,1,1,1 +0,1,0,0,0,1,1,0,0,1,0,0,1,1,0,1,0,0,0,2,1 +0,0,0,1,1,1,1,0,0,2,1,1,1,1,2,0,1,0,0,1,2 +0,1,0,0,1,0,0,1,1,1,0,2,1,1,0,1,1,0,2,0,1 +0,0,0,2,2,0,0,1,0,0,1,1,1,0,0,0,0,0,2,1,0 +0,0,0,1,2,0,1,1,0,1,2,0,1,0,0,2,1,0,1,0,2 +1,0,1,1,0,0,1,0,0,2,2,1,1,0,1,0,1,0,1,0,2 +1,0,1,0,1,0,0,1,0,0,0,0,2,1,1,0,1,0,1,2,0 +1,0,1,1,1,0,1,0,0,1,1,1,0,1,1,0,0,0,0,1,2 +0,1,0,0,0,0,0,1,0,2,1,1,1,0,1,0,0,0,2,1,0 +0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,1,2,1,0,1,2 +0,0,0,0,2,0,0,2,1,0,0,1,1,1,2,0,1,0,1,0,2 +0,1,0,1,0,0,0,0,0,1,0,2,1,1,0,0,1,0,1,0,2 +0,1,0,2,2,0,1,1,0,1,0,0,0,1,1,0,0,0,1,0,2 +0,1,0,2,0,0,1,0,0,1,0,0,0,2,1,0,0,0,2,2,2 +1,1,0,2,1,0,0,1,0,0,0,2,1,1,0,1,1,0,1,0,2 +1,0,0,0,2,0,1,2,0,0,1,2,2,2,2,0,1,0,2,0,1 +0,0,1,1,0,0,0,1,0,0,1,2,1,0,0,1,1,0,2,0,1 +0,0,0,0,1,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,2 +1,1,1,1,1,0,0,1,1,0,0,1,0,0,2,0,1,0,1,1,1 +0,0,0,1,1,0,1,1,0,0,0,1,1,1,0,0,1,0,1,1,1 +0,1,0,1,2,0,1,1,0,1,1,0,1,1,1,0,0,0,2,1,0 +0,0,0,0,1,0,1,1,0,0,1,0,0,2,0,0,2,1,2,1,0 +0,0,0,1,2,0,0,1,1,2,0,1,1,2,0,0,2,1,1,1,1 +0,1,0,2,1,1,0,1,0,0,2,1,1,1,0,1,1,1,1,2,0 +0,0,1,1,1,0,0,1,0,1,1,0,0,1,0,0,2,0,1,1,1 +0,0,0,1,0,1,0,1,0,0,1,1,1,1,2,1,0,0,1,2,0 +0,1,0,1,2,0,0,1,0,1,1,1,2,0,1,0,0,0,2,2,2 +1,0,1,1,1,0,0,0,0,2,1,1,1,1,0,0,0,0,1,1,1 +0,0,0,0,1,0,0,2,0,0,0,0,2,1,0,0,0,0,1,1,1 +0,0,1,1,0,0,1,1,0,0,0,0,2,1,1,1,0,2,2,1,0 +0,0,0,2,1,0,0,0,0,1,1,0,1,1,0,0,0,1,2,2,2 +0,0,1,1,1,0,0,1,0,1,2,0,0,0,0,0,0,0,2,2,2 +0,0,0,1,1,0,0,1,0,1,0,1,2,1,1,0,2,0,0,2,1 +0,0,1,2,0,0,0,2,0,2,1,0,0,1,0,0,0,0,1,1,1 +0,0,0,2,0,0,1,2,0,2,2,1,2,0,0,1,1,2,1,2,0 +1,0,0,2,0,1,0,1,0,0,2,0,0,0,2,0,0,1,2,1,0 +0,0,1,0,0,0,0,2,0,0,1,1,1,0,1,0,0,0,2,0,1 +0,1,1,2,0,1,1,2,0,0,1,1,1,1,0,0,0,0,1,2,0 +1,0,0,1,1,0,0,0,0,1,0,2,0,1,1,0,2,1,1,2,0 +1,1,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,1,2,0,1 +1,0,0,1,1,0,0,0,0,0,0,2,1,2,1,1,0,1,1,0,2 +1,0,1,0,2,1,0,1,0,0,0,2,1,1,1,0,0,0,1,1,1 +0,0,1,1,1,0,0,1,0,0,0,0,0,1,1,0,1,0,0,1,2 +0,0,1,1,1,0,0,1,0,0,0,1,2,1,0,0,0,0,2,1,0 +0,0,1,1,1,0,1,2,2,1,0,2,1,2,1,0,0,0,1,1,1 +1,1,0,1,1,0,0,1,0,2,0,2,1,2,1,0,0,0,1,0,2 +0,1,1,0,1,0,0,1,0,1,0,1,1,2,1,0,1,0,2,0,1 +0,0,0,1,0,0,0,2,0,1,1,0,0,1,1,0,1,0,2,0,1 +0,1,0,2,1,1,0,0,0,1,0,0,1,1,2,1,0,0,1,1,1 +0,0,0,1,1,0,0,1,0,0,1,0,0,1,2,0,0,0,2,0,1 +0,1,1,1,1,0,1,2,0,1,2,2,0,1,0,1,1,0,0,2,1 +0,0,0,0,2,0,0,2,0,1,1,0,0,1,2,0,0,0,0,1,2 +0,1,1,1,1,0,0,1,1,1,0,1,1,1,0,0,1,1,1,1,1 +0,0,2,1,0,0,0,1,0,0,1,1,1,0,2,1,1,0,1,1,1 +0,0,0,1,0,1,0,2,0,0,1,2,1,0,1,0,0,0,1,1,1 +0,0,0,2,1,0,0,1,0,1,1,0,2,1,2,0,1,0,0,0,0 +0,1,1,0,1,0,1,0,0,0,2,1,1,1,1,0,1,1,0,1,2 +0,0,0,1,1,1,0,1,0,0,1,1,0,1,0,0,1,0,1,0,2 +1,0,0,2,1,1,2,1,0,2,0,1,1,2,1,0,0,0,0,1,2 +0,1,0,2,0,0,1,0,0,0,0,1,2,0,1,1,1,0,1,1,1 +0,0,0,1,1,0,1,2,0,0,0,1,0,0,1,0,1,0,2,1,0 +1,0,0,2,1,1,0,2,0,0,0,0,2,0,0,0,0,0,2,0,1 +0,0,1,0,0,0,1,1,0,1,1,1,0,0,1,0,0,0,1,1,1 +0,1,0,1,1,0,0,2,0,0,0,0,1,2,0,0,0,1,1,0,2 +1,0,1,1,2,1,0,1,0,2,1,0,1,1,0,0,1,0,1,1,1 +0,0,0,1,0,0,0,1,0,2,1,0,0,0,1,0,0,1,1,2,0 +0,0,1,2,2,0,0,0,0,0,0,1,1,0,1,0,1,0,2,0,1 +0,0,1,2,1,0,0,1,0,2,1,2,0,2,1,0,1,0,1,0,2 +0,0,1,2,1,1,0,1,0,1,0,0,1,1,2,0,1,0,0,1,2 +0,0,0,0,1,0,0,0,1,0,0,1,1,2,0,0,0,0,0,0,0 +0,0,0,1,2,0,0,1,0,2,0,1,1,2,1,0,1,0,2,0,1 +0,1,1,1,2,0,1,0,0,1,1,1,2,1,1,0,0,0,2,1,0 +0,1,1,1,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,2,0 +0,2,1,0,1,0,1,1,0,0,0,0,0,2,1,0,2,0,1,1,1 +1,0,0,1,1,0,0,0,0,0,0,0,1,0,1,0,1,1,1,2,0 +0,1,0,0,0,0,0,0,0,0,1,1,1,1,2,0,1,0,1,0,2 +0,1,0,2,1,1,1,1,0,0,2,1,1,1,0,0,1,0,2,0,1 +1,0,0,0,1,0,0,2,0,2,0,0,1,1,0,0,2,0,0,1,2 +1,0,1,1,0,1,1,0,0,0,0,0,2,1,1,1,2,1,0,1,2 +0,2,0,0,0,0,0,2,0,1,0,1,1,0,2,0,1,0,0,2,1 +0,0,1,1,0,0,0,0,0,0,0,1,0,1,0,0,1,1,1,1,1 +0,0,0,1,0,0,0,1,1,1,1,2,0,1,1,1,2,0,2,2,2 +0,0,0,1,1,0,1,1,0,1,1,0,2,2,1,0,1,0,1,1,1 +1,0,1,0,0,0,1,2,0,0,1,0,0,1,0,0,0,0,2,1,0 +1,0,0,1,1,0,1,1,1,1,0,1,2,2,1,0,0,0,2,1,0 +0,0,1,1,1,1,0,1,1,2,0,1,1,0,1,0,2,1,0,1,2 +0,1,0,1,0,0,0,1,0,0,0,1,1,2,1,1,1,1,2,0,1 +0,1,0,1,2,0,1,2,0,0,1,2,1,1,1,0,1,0,0,2,1 +0,1,0,1,0,1,0,1,0,1,0,1,1,0,0,1,0,0,1,1,1 +0,0,0,0,1,0,0,1,1,0,0,2,0,0,0,0,1,1,1,1,1 +1,0,0,0,0,0,0,2,0,0,1,0,1,1,0,0,1,0,0,2,1 +0,1,0,1,2,0,0,1,0,0,0,0,0,0,0,0,1,0,2,1,0 +1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,2,1,0,1,2,0 +0,0,0,1,1,0,0,0,0,1,0,1,1,0,0,0,2,1,0,1,2 +0,0,0,1,0,0,1,1,0,0,0,2,2,0,0,0,0,0,0,1,2 +1,0,0,1,2,0,0,2,0,0,1,0,1,1,0,0,1,0,1,1,1 +0,0,0,0,0,0,0,1,1,1,2,0,0,1,0,0,0,0,1,2,0 +0,1,0,0,0,0,0,2,0,0,1,1,1,1,0,0,0,0,2,1,0 +0,1,0,1,1,0,1,2,0,0,0,1,1,2,0,0,1,0,2,1,0 +0,1,0,1,0,1,1,2,0,1,1,2,0,0,2,1,1,0,1,0,2 +0,0,0,1,1,0,0,1,0,1,0,0,0,0,0,0,1,0,1,2,0 +1,1,1,0,2,0,1,0,0,2,1,0,1,2,1,0,1,1,0,1,2 +1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,0,1,1,1 +0,0,0,1,1,0,0,1,1,2,1,1,0,1,2,0,1,1,1,1,1 +0,0,0,2,1,0,0,1,0,1,0,0,1,1,2,1,2,0,1,1,1 +0,0,0,2,1,1,1,2,0,1,1,1,2,1,1,0,1,0,1,1,1 +1,0,0,0,1,1,0,1,0,0,0,1,1,1,1,0,0,0,1,1,1 +0,1,1,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,2,0 +0,2,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,1,2,1,0 +0,0,1,1,0,0,1,0,1,1,0,1,1,0,0,0,0,1,1,1,1 +1,0,1,2,1,0,0,1,0,0,2,0,2,0,2,0,2,1,1,0,2 +0,1,0,1,0,0,0,1,0,0,2,2,1,2,1,0,0,1,1,2,0 +1,1,1,1,1,1,1,2,0,1,2,1,1,1,1,1,0,0,1,2,0 +2,0,0,1,2,0,0,2,0,0,0,1,0,1,0,0,1,0,2,0,1 +0,0,1,1,2,0,0,1,0,2,0,1,0,1,1,0,0,0,1,1,1 +0,0,0,1,1,0,0,0,0,1,2,1,0,1,1,1,2,1,2,1,0 +0,0,0,1,2,0,0,2,0,1,2,1,1,2,2,1,1,0,0,1,2 +0,1,0,1,1,0,0,1,0,2,0,2,1,1,1,0,1,1,1,0,2 +0,0,0,0,2,0,0,1,0,0,1,2,1,1,2,0,2,1,2,0,1 +0,0,1,1,0,0,0,1,0,2,0,1,1,1,0,2,1,1,0,1,2 +0,0,0,0,0,1,1,1,0,1,1,0,2,1,2,0,1,0,1,0,2 +0,0,0,0,2,0,0,0,0,0,1,1,1,1,0,1,1,0,1,1,1 +0,0,0,1,0,0,1,1,0,1,1,1,2,0,1,1,2,0,1,0,2 +2,1,0,0,0,0,2,2,1,0,1,2,0,1,1,0,1,0,0,2,1 +0,1,0,0,1,0,0,1,0,1,2,0,0,2,1,0,1,0,0,0,0 +0,0,1,1,1,0,0,1,0,0,0,1,0,2,0,1,1,2,2,1,0 +0,1,1,1,1,0,1,0,0,0,1,1,0,1,0,1,1,0,2,2,2 +0,1,0,0,2,0,0,1,0,0,1,0,1,2,1,0,1,0,1,1,1 +0,1,0,1,0,0,0,2,0,0,2,2,0,2,0,0,1,1,2,1,0 +0,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,0,0,1,1,1 +0,1,1,1,2,0,0,1,0,1,0,1,0,2,1,0,2,0,2,1,0 +0,0,0,2,1,0,0,1,0,0,0,1,1,1,1,0,0,1,1,0,2 +0,1,0,1,1,0,0,1,0,1,1,0,2,2,1,0,1,0,1,0,2 +0,0,0,1,2,0,1,2,0,1,0,1,1,1,1,0,1,1,0,1,2 +1,1,0,1,0,0,1,1,0,1,0,0,1,1,1,1,1,0,1,1,1 +0,0,1,1,1,1,0,0,1,0,1,1,1,0,1,0,0,0,2,1,0 +0,0,0,1,1,0,1,2,0,1,1,0,0,2,0,0,1,1,1,1,1 +0,1,0,1,1,0,0,1,0,1,1,2,0,0,1,0,1,1,2,1,0 +0,1,0,1,2,1,1,2,0,1,0,1,2,2,1,1,0,1,1,1,1 +0,0,0,1,2,0,0,1,0,0,1,2,1,0,0,0,0,1,2,1,0 +0,1,0,0,0,0,1,1,0,1,0,2,0,0,0,0,1,0,1,1,1 +0,0,0,1,0,0,0,0,0,1,1,0,0,2,0,0,0,0,2,0,1 +0,1,0,1,0,0,1,1,0,1,1,0,0,1,1,0,1,0,0,1,2 +0,0,0,0,1,0,0,1,0,2,1,1,0,0,2,0,0,0,1,1,1 +0,1,1,1,1,0,0,2,0,1,0,0,2,2,1,0,0,0,1,2,0 +1,0,0,1,2,0,0,1,0,0,1,0,1,1,2,0,0,0,0,1,2 +0,0,0,1,0,0,1,1,1,1,1,1,1,1,2,0,0,0,1,1,1 +0,1,1,0,1,0,0,2,0,0,1,1,2,0,1,0,1,0,2,2,2 +1,1,0,1,1,0,0,0,0,2,1,0,1,1,1,0,1,1,2,1,0 +0,0,0,0,0,0,1,1,0,1,0,2,1,2,0,0,1,0,1,0,2 +1,0,0,0,1,0,1,1,0,0,2,0,1,0,1,0,1,0,0,2,1 +0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1 +0,0,0,0,1,0,1,2,1,0,0,1,1,1,0,0,2,0,1,1,1 +0,0,0,2,1,0,0,1,0,1,0,1,1,1,2,0,0,1,0,1,2 +1,1,0,1,1,0,0,1,0,0,0,1,0,2,1,0,2,1,0,1,2 +0,2,1,1,1,0,0,1,0,0,0,2,2,1,0,0,1,1,2,0,1 +0,1,0,0,2,1,0,1,0,1,1,2,1,1,0,1,1,1,0,1,2 +0,0,0,2,1,1,0,0,0,1,1,1,0,0,1,0,0,2,2,2,2 +0,0,0,2,1,0,0,1,0,0,2,1,0,1,1,1,1,0,0,0,0 +1,0,0,1,0,0,0,1,0,1,1,0,1,2,1,1,0,1,1,1,1 +0,0,0,2,1,0,0,1,0,1,0,1,0,1,1,0,0,0,0,1,2 +0,0,0,1,0,0,0,0,0,1,1,0,1,1,1,2,0,1,1,1,1 +0,0,0,1,1,0,1,1,0,1,0,1,0,0,0,1,1,0,2,0,1 +1,0,0,2,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,1,2 +0,1,0,1,0,0,0,1,0,0,1,1,2,1,1,1,1,1,2,1,0 +0,0,0,2,0,1,0,2,0,1,0,0,1,1,1,0,0,1,1,1,1 +0,0,0,1,1,0,0,0,0,1,2,1,1,1,1,0,0,0,2,1,0 +0,1,0,0,0,1,0,1,0,0,0,1,1,2,1,1,1,0,0,2,1 +0,0,0,1,1,0,1,1,0,1,2,0,1,0,1,0,0,1,1,0,2 +0,0,0,1,1,0,0,0,0,1,0,0,1,1,2,0,1,1,1,2,0 +1,0,0,0,1,0,0,0,0,0,0,1,0,1,1,0,1,0,1,1,1 +0,1,0,0,1,0,0,1,0,1,0,1,1,0,2,0,0,0,2,1,0 +0,0,1,0,0,0,0,1,0,1,2,1,2,2,1,1,2,0,0,2,1 +1,1,0,1,1,0,1,1,0,1,1,1,0,0,1,0,1,0,2,0,1 +0,2,0,1,1,0,0,0,1,0,1,1,1,2,0,1,1,1,1,0,2 +1,1,0,1,0,0,1,1,0,1,1,0,1,1,1,0,0,0,0,1,2 +1,0,2,1,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,2,0 +0,1,0,1,0,0,1,1,0,2,1,0,1,1,1,1,2,0,1,2,0 +0,0,0,1,1,0,0,1,0,0,0,1,2,0,1,0,0,0,1,2,0 +0,0,0,0,2,1,0,2,1,1,1,1,1,0,1,1,0,0,1,1,1 +0,0,0,0,2,0,1,1,0,0,0,1,2,1,1,0,2,1,0,1,2 +0,0,0,1,0,0,0,1,1,1,0,1,2,1,0,0,1,0,2,0,1 +0,1,0,1,2,0,0,2,0,1,2,1,0,1,2,0,0,0,2,1,0 +0,0,0,0,2,0,0,1,0,0,1,1,0,2,2,0,0,1,0,0,0 +1,2,0,2,0,0,1,2,1,0,1,2,0,1,1,0,1,1,1,2,0 +0,0,0,1,0,0,0,1,0,1,2,0,0,1,1,0,0,1,0,2,1 +0,0,0,1,0,0,0,0,0,1,0,0,0,0,1,0,2,0,0,2,1 +0,0,0,2,0,0,0,2,0,1,2,1,0,1,1,1,1,1,1,1,1 +0,0,0,1,0,0,0,2,1,1,0,0,0,0,2,0,0,1,2,1,0 +1,0,0,2,1,0,0,1,0,0,1,2,1,0,0,1,0,0,1,1,1 +0,1,0,0,1,0,0,1,1,1,0,0,0,1,1,2,1,0,1,1,1 +0,0,0,1,1,0,0,1,0,1,0,1,1,0,1,1,1,0,0,0,0 +0,0,0,2,1,0,1,1,0,2,0,1,1,2,0,0,0,0,1,1,1 +0,1,0,0,1,0,1,1,0,0,1,2,1,2,1,0,0,0,2,1,0 +0,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0 +0,0,0,1,0,0,1,1,0,1,1,1,1,1,1,2,0,0,1,1,1 +0,0,0,2,1,0,0,2,0,0,0,1,0,1,1,0,0,1,2,1,0 +1,0,0,1,0,0,0,1,0,1,0,1,1,0,1,0,2,0,0,1,2 +1,0,0,1,1,0,1,2,0,0,0,1,1,1,0,0,1,0,1,2,0 +0,0,0,1,1,1,1,2,1,1,2,2,1,1,2,0,0,0,1,1,1 +0,0,0,1,2,0,1,1,0,1,0,1,2,2,0,0,1,1,2,0,1 +1,0,1,0,1,0,0,1,1,1,0,2,0,1,1,0,1,0,1,0,2 +1,0,0,1,1,1,0,1,1,1,2,2,1,0,0,1,0,0,2,0,1 +0,1,0,2,0,0,0,2,0,1,1,2,0,1,0,0,0,0,1,2,0 +0,0,0,1,1,0,1,1,0,1,0,0,0,1,1,1,1,2,0,0,0 +0,1,0,1,2,0,0,0,0,1,0,1,1,1,2,2,0,0,1,1,1 +0,0,0,1,1,0,0,0,0,1,1,2,1,1,0,1,1,0,2,1,0 +1,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1 +0,0,1,1,1,0,0,1,0,0,1,0,1,0,1,0,1,0,1,1,1 +0,0,0,2,0,0,0,1,0,1,1,1,1,1,1,0,0,0,2,1,0 +0,0,0,0,0,0,0,1,0,0,1,1,0,2,1,1,0,0,1,1,1 +0,0,1,2,1,0,1,2,0,0,0,0,0,2,1,0,1,0,1,2,0 +0,0,0,1,0,0,0,1,0,0,0,1,0,1,1,0,1,0,2,1,0 +0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +0,1,0,1,1,0,0,1,0,1,0,2,0,2,1,1,1,0,0,2,1 +0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,1,0,0,2,1 +1,0,0,2,1,0,1,1,0,1,2,1,1,0,1,0,0,1,2,1,0 +0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,0,2,0,0,1,2 +0,0,1,1,2,0,0,2,0,0,0,0,0,2,1,0,0,0,2,1,0 +0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,2,0,0,0,0 +0,1,0,0,0,0,0,0,0,0,1,1,0,1,1,0,1,0,1,1,1 +0,0,0,0,1,0,0,1,0,1,1,0,0,1,2,0,0,0,1,1,1 +0,1,1,0,0,0,0,1,1,0,0,2,0,1,0,0,0,0,2,0,1 +0,0,0,2,0,1,1,1,0,1,1,2,0,1,1,0,0,0,1,0,2 +0,0,0,1,1,0,1,0,0,1,0,2,0,2,1,1,1,1,1,2,0 +0,1,0,0,1,0,1,1,0,0,2,2,0,0,1,0,1,0,0,2,1 +1,0,1,0,0,0,1,2,1,1,0,1,1,1,0,0,0,1,2,0,1 +0,0,1,1,0,0,0,0,0,2,0,0,0,0,1,0,0,1,2,2,2 +0,0,1,2,2,0,1,1,0,1,0,0,2,0,2,1,0,1,0,1,2 +0,1,0,1,1,0,0,1,0,0,0,1,1,1,1,0,1,0,1,1,1 +0,0,1,1,2,0,0,1,0,0,1,2,0,1,1,0,1,0,0,0,0 +1,1,0,1,2,0,0,1,0,1,0,2,0,0,0,0,1,1,1,2,0 +0,0,0,2,0,0,0,1,1,0,1,2,0,2,1,0,1,0,2,0,1 +0,0,0,0,1,0,0,1,0,1,1,1,2,0,1,2,0,0,1,0,2 +1,0,0,0,1,0,1,1,0,1,2,1,1,1,0,0,0,0,1,1,1 +1,1,0,1,0,0,1,1,0,1,1,2,1,1,1,1,0,0,1,1,1 +0,0,0,1,0,0,0,1,1,0,1,1,1,1,0,1,0,0,1,0,2 +0,0,0,1,1,0,0,2,0,1,0,1,1,0,1,1,1,1,0,2,1 +1,1,0,0,0,0,0,0,1,1,1,1,2,0,1,0,1,0,1,0,2 +0,0,0,1,1,0,1,1,1,1,0,0,1,1,1,0,1,1,2,1,0 +0,1,0,1,0,1,0,0,0,1,0,0,0,0,0,0,1,0,2,0,1 +1,0,1,1,0,0,1,1,0,1,1,2,1,0,0,0,2,0,2,0,1 +0,1,1,1,1,0,1,2,0,0,0,1,1,1,0,0,0,0,1,2,0 +0,1,0,1,2,0,0,0,0,1,0,2,1,0,1,1,1,0,0,0,0 +0,2,0,1,2,1,0,1,0,1,0,0,2,0,0,1,1,1,0,2,1 +1,0,0,0,1,0,0,0,0,1,1,0,1,1,2,0,0,0,0,1,2 +0,1,0,1,1,0,0,2,0,0,1,2,1,1,1,0,2,0,0,2,1 +1,0,0,0,1,0,0,2,0,1,1,0,2,0,1,0,1,1,0,2,1 +0,1,0,0,1,0,1,2,0,0,1,0,0,1,2,0,1,1,2,1,0 +0,0,0,1,2,0,1,2,0,0,2,1,0,0,1,1,2,0,2,1,0 +0,0,0,0,2,0,0,1,0,0,1,2,1,1,0,0,0,0,2,1,0 +0,1,0,1,2,1,0,0,0,1,1,1,1,1,1,0,1,0,1,1,1 +0,1,0,0,1,0,1,2,0,0,0,1,1,1,1,0,2,0,1,1,1 +0,1,1,1,1,0,0,1,0,0,2,0,1,0,0,0,0,0,0,2,1 +1,0,1,0,1,0,1,2,0,0,0,1,2,1,1,1,0,0,1,1,1 +0,0,0,1,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,2 +0,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1 +0,0,0,1,1,0,0,0,0,1,2,0,0,1,0,0,0,0,1,2,0 +0,1,0,0,1,0,1,1,0,0,0,1,0,0,2,0,0,0,2,0,1 +0,1,1,1,1,1,0,2,0,0,0,0,1,1,1,1,1,0,1,2,0 +0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,2,1,0 +0,1,0,1,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,2,0 +0,0,1,2,1,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1 +1,0,1,1,2,0,1,2,0,1,1,1,1,0,0,0,0,0,1,2,0 +0,1,0,1,1,0,0,1,0,2,0,1,1,0,1,1,2,0,2,2,2 +0,1,1,1,2,0,1,1,0,0,0,1,1,0,1,0,0,0,1,1,1 +0,1,0,0,0,0,0,2,1,0,1,0,0,1,0,0,2,0,2,2,2 +0,1,0,1,2,2,0,1,0,1,1,1,1,1,0,1,0,0,2,0,1 +0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,1,1,1,1,1 +0,1,1,0,0,1,1,1,1,0,0,1,1,2,1,0,0,0,1,0,2 +0,0,0,2,1,0,2,1,0,2,0,2,1,0,0,0,0,0,1,1,1 +0,0,0,0,0,0,1,2,0,0,0,2,1,1,1,0,1,0,2,2,2 +0,0,0,0,2,0,1,1,0,1,0,2,2,0,1,0,1,0,0,0,0 +0,0,0,1,2,0,0,1,0,1,1,1,1,2,1,0,1,1,1,1,1 +0,1,0,2,1,0,1,2,0,0,0,2,1,2,0,0,1,0,0,1,2 +1,0,0,1,1,0,1,1,0,0,2,1,1,1,2,0,0,0,2,1,0 +0,0,0,0,1,0,1,0,0,0,0,0,1,1,2,1,1,0,1,2,0 +0,1,1,0,2,0,1,1,0,2,0,1,2,2,1,0,0,0,0,2,1 +0,1,1,1,1,1,0,1,0,0,1,1,2,1,0,0,1,0,0,1,2 +1,0,0,1,1,0,0,2,0,1,1,0,2,0,2,0,0,0,1,0,2 +0,0,0,1,2,0,0,1,0,0,0,2,1,1,0,0,0,1,1,2,0 +0,0,0,0,1,0,1,2,0,0,0,1,0,2,0,0,1,1,2,1,0 +0,0,1,1,1,0,0,1,1,1,0,0,2,2,0,1,0,0,0,1,2 +0,1,0,1,2,0,0,1,0,1,0,2,2,1,0,0,1,1,1,2,0 +0,0,0,0,1,0,0,1,0,1,0,2,1,1,1,1,1,1,1,0,2 +0,0,0,0,0,0,0,1,0,1,1,0,0,1,1,1,0,0,1,1,1 +0,0,0,0,2,1,0,1,0,0,2,0,0,1,1,0,1,0,1,0,2 +0,0,0,1,1,0,0,2,0,1,1,2,1,1,1,0,0,1,1,0,2 +0,0,0,0,2,0,1,2,0,1,0,0,0,1,0,0,1,1,0,2,1 +0,2,0,1,1,0,1,0,0,0,1,0,1,0,2,0,0,0,0,2,1 +1,0,0,2,0,0,1,1,0,0,0,2,1,1,1,0,1,0,2,1,0 +0,1,0,2,1,0,1,2,0,0,0,1,2,1,1,1,2,0,1,2,0 +0,0,0,0,1,1,0,0,0,1,2,1,0,1,1,0,1,1,0,1,2 +0,0,0,1,0,1,2,1,0,1,1,0,0,1,2,0,0,0,1,0,2 +0,1,0,2,1,0,0,0,0,0,0,0,1,1,0,0,0,0,2,0,1 +0,0,0,1,0,0,2,0,0,1,1,1,1,1,0,0,0,0,1,1,1 +0,0,0,1,1,0,0,1,1,1,0,0,0,2,0,0,0,0,1,1,1 +0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,0,1,0,0,2,1 +0,0,0,1,0,0,1,0,0,1,1,2,0,0,2,0,0,1,2,1,0 +0,0,0,2,1,0,0,1,0,2,0,1,2,1,1,0,2,0,1,2,0 +0,2,0,0,1,0,0,2,0,1,1,2,1,0,1,0,0,0,1,1,1 +0,0,0,2,1,1,0,1,0,1,0,0,1,1,1,0,1,0,0,0,0 +0,0,0,1,1,0,0,1,0,2,1,1,0,0,1,0,0,0,0,2,1 +0,0,0,1,1,0,0,2,0,0,2,1,2,2,0,1,0,1,2,0,1 +0,0,0,1,1,0,1,1,0,0,0,0,1,1,0,0,2,1,2,0,1 +0,0,0,1,0,0,1,1,0,0,1,2,1,1,1,0,1,1,1,0,2 +0,1,1,1,1,0,1,1,0,0,2,1,0,2,0,0,0,0,0,1,2 +0,2,1,1,1,0,0,2,0,0,2,2,1,2,1,0,1,0,0,2,1 +0,2,0,0,0,0,1,2,0,1,1,1,0,0,2,0,2,2,2,2,2 +0,1,0,1,2,0,0,1,0,1,0,0,0,1,0,1,2,0,2,1,0 +0,0,0,1,1,0,0,1,0,0,1,1,1,1,1,0,0,0,2,1,0 +0,0,0,1,0,0,0,1,0,0,1,2,0,0,0,1,0,1,1,2,0 +0,2,0,2,1,0,2,0,1,0,1,1,0,1,0,0,1,1,2,1,0 +1,1,0,1,1,0,0,1,0,0,1,1,1,2,2,0,1,0,1,1,1 +0,0,1,0,0,0,1,1,1,0,1,0,2,1,2,0,2,0,0,1,2 +1,0,1,1,1,0,1,1,0,2,0,2,1,0,1,0,0,0,2,1,0 +0,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,2,1,2,0 +0,1,0,0,0,0,1,2,0,0,1,0,0,0,1,0,1,1,2,0,1 +0,1,0,0,0,0,0,1,0,0,2,2,0,0,1,0,0,0,1,2,0 +1,1,0,2,1,0,0,1,0,1,1,1,1,1,1,0,1,1,1,1,1 +0,0,1,1,1,0,0,0,0,1,1,1,2,1,1,0,0,1,1,1,1 +0,0,0,1,2,0,0,1,0,1,1,1,1,0,0,0,2,0,0,1,2 +0,1,1,1,1,0,0,1,0,1,2,2,1,0,1,0,1,0,2,1,0 +0,0,1,1,0,0,1,0,0,0,1,0,0,1,1,0,1,0,1,0,2 +0,1,0,1,1,0,1,1,0,1,2,1,0,1,0,0,1,1,0,2,1 +0,0,0,1,1,0,0,2,0,1,0,1,1,0,1,0,0,0,1,2,0 +0,0,1,1,1,0,0,2,0,0,0,2,1,1,0,0,0,0,1,1,1 +0,0,1,1,1,0,0,1,0,1,0,2,1,1,0,0,1,0,2,2,2 +0,1,1,0,1,0,1,0,0,0,1,1,1,2,0,0,0,0,1,0,2 +0,0,0,1,0,1,1,0,0,1,1,2,0,0,1,0,1,0,2,1,0 +0,1,0,0,1,0,0,1,0,1,1,1,1,2,0,0,0,0,0,1,2 +0,0,0,1,1,0,0,1,0,1,1,0,0,0,1,0,0,1,1,0,2 +1,1,0,0,0,0,0,1,0,1,1,0,2,1,1,0,0,0,2,1,0 +0,1,1,0,1,0,0,1,0,1,1,0,0,0,1,1,2,0,2,1,0 +0,0,1,0,2,0,0,2,0,1,0,1,2,0,2,0,1,0,1,2,0 +0,0,0,1,1,0,0,2,0,1,0,1,0,0,1,0,1,1,2,2,2 +0,0,2,2,2,0,0,1,0,1,1,1,1,1,1,0,2,0,0,0,0 +0,1,0,1,1,0,2,1,1,0,1,1,2,1,0,1,0,1,1,1,1 +1,1,0,1,1,1,0,1,0,0,0,1,1,0,2,0,1,0,1,1,1 +0,0,1,1,1,0,0,1,0,0,1,1,0,1,0,1,1,0,1,0,2 +1,0,0,1,0,1,1,2,1,1,1,0,0,1,1,0,0,1,0,0,0 +0,1,1,1,2,0,1,1,0,0,1,1,1,2,2,0,1,1,0,2,1 +0,0,0,1,2,0,1,2,0,1,0,1,0,2,1,0,0,1,2,1,0 +0,0,0,2,1,1,0,1,0,0,1,0,1,2,1,0,1,0,0,0,0 +0,0,1,1,0,0,0,1,0,2,0,1,0,0,1,0,1,1,0,0,0 +0,0,0,1,1,0,0,1,0,1,1,0,0,1,1,0,0,0,1,2,0 +0,1,0,1,1,0,0,2,0,1,1,1,0,1,1,0,0,0,1,2,0 +0,1,0,1,0,0,0,1,0,0,2,0,0,0,0,1,1,0,0,2,1 +0,0,0,1,1,0,1,0,0,0,0,1,2,0,0,1,1,0,1,2,0 +0,0,0,2,1,0,0,1,0,0,1,1,0,0,2,0,2,1,2,0,1 +0,1,1,1,2,0,0,2,0,2,1,0,1,1,0,0,1,1,0,2,1 +0,0,0,1,0,0,0,1,0,1,2,1,1,1,1,0,1,0,1,1,1 +0,0,0,1,0,1,0,2,0,0,1,1,1,1,1,0,1,1,2,0,1 +0,1,1,1,0,1,1,0,0,0,1,2,0,1,0,0,0,0,1,1,1 +0,2,0,2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,1,0 +0,1,1,0,2,0,0,1,0,1,0,2,1,1,0,0,2,0,2,1,0 +0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,1,1,2,0 +0,1,0,0,1,0,0,2,0,1,1,2,1,1,1,0,0,0,2,1,0 +0,0,0,1,1,0,1,2,1,0,0,1,0,0,0,1,0,0,1,1,1 +0,1,0,0,1,0,0,1,0,1,0,1,0,1,1,1,1,0,2,1,0 +0,0,0,2,0,0,1,1,0,1,0,1,1,0,1,0,1,0,1,1,1 +0,1,0,2,1,0,0,1,0,0,0,0,1,0,1,0,1,0,0,1,2 +0,0,0,2,2,0,0,0,0,0,1,1,1,1,1,0,1,0,2,0,1 +0,0,0,1,0,1,0,0,0,1,2,1,0,1,1,0,1,1,1,1,1 +0,1,1,1,1,1,0,2,0,0,2,0,1,0,2,1,2,0,1,1,1 +0,0,0,0,1,1,0,2,0,1,1,2,1,2,0,0,0,0,2,1,0 +0,2,0,2,0,1,1,1,0,0,1,0,0,0,1,0,1,0,1,2,0 +0,0,0,1,0,0,0,1,0,1,0,0,1,1,1,0,1,0,1,1,1 +0,0,0,2,1,0,1,1,0,1,1,1,0,1,1,0,1,2,0,0,0 +0,0,0,1,1,0,0,0,0,0,0,2,1,1,2,0,1,1,2,1,0 +0,1,1,1,0,1,0,1,0,2,0,2,2,1,1,1,0,0,0,1,2 +0,0,1,1,1,0,0,2,0,0,1,0,1,0,2,1,1,0,0,1,2 +1,1,0,1,1,0,0,1,0,1,1,0,1,2,2,0,0,0,1,0,2 +0,1,0,1,2,0,1,1,0,1,1,2,0,2,0,0,1,0,1,2,0 +1,0,0,0,0,1,1,1,0,1,1,1,1,2,1,1,0,1,2,0,1 +0,0,0,0,1,0,0,1,0,1,1,1,1,0,0,1,1,0,0,2,1 +0,0,0,0,1,0,1,1,0,2,2,2,0,2,0,0,0,0,1,1,1 +1,1,1,2,2,0,0,1,1,1,0,1,0,0,1,0,1,0,2,1,0 +0,0,0,0,1,0,0,2,0,1,1,2,0,0,1,0,1,0,1,1,1 +0,0,1,1,0,0,0,2,0,1,0,1,0,0,1,0,1,0,2,1,0 +0,0,0,0,2,0,0,1,0,0,2,0,0,1,2,0,0,1,0,1,2 +1,1,0,1,1,0,0,0,0,1,2,2,0,2,1,0,0,1,1,2,0 +0,1,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,2,1,0 +0,0,1,0,1,0,0,1,0,1,0,1,1,0,1,0,1,1,1,1,1 +0,0,0,2,0,0,0,1,1,1,1,1,0,2,0,1,0,0,2,1,0 +0,0,0,2,2,0,0,2,0,1,1,2,2,0,0,1,0,0,1,1,1 +0,0,0,0,1,0,1,0,0,0,1,2,0,0,1,0,1,1,0,2,1 +1,1,0,0,1,0,0,1,0,0,0,1,1,1,1,0,1,1,0,1,2 +0,0,0,0,0,0,0,2,0,0,1,1,0,0,1,0,1,0,1,2,0 +0,0,0,0,1,0,0,1,0,0,1,1,2,2,2,0,0,0,2,0,1 +0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,1,0,0,2,1 +0,1,0,1,1,0,0,1,1,1,0,0,1,1,1,0,0,0,1,0,2 +0,2,1,0,2,0,1,1,0,0,0,1,0,2,0,1,1,0,1,0,2 +0,0,0,1,0,0,1,2,0,0,0,1,2,0,0,0,1,2,1,1,1 +0,1,0,1,2,0,0,1,0,0,0,1,1,0,1,0,1,0,2,1,0 +0,0,0,1,0,0,0,1,0,1,1,1,1,1,0,1,1,1,1,1,1 +0,1,0,0,1,0,0,1,0,0,0,1,0,1,1,0,1,1,0,1,2 +0,1,0,1,1,1,0,1,0,0,0,1,1,1,1,1,1,0,2,1,0 +1,1,0,2,1,0,0,2,0,0,1,0,0,1,2,0,1,0,2,0,1 +0,0,0,0,1,0,0,1,0,0,2,2,1,1,1,0,1,0,0,1,2 +1,1,0,1,0,0,0,0,0,1,1,2,1,2,2,0,0,0,1,1,1 +1,1,0,0,2,0,0,2,0,0,1,1,1,0,2,0,1,0,1,2,0 +0,1,1,0,2,0,0,2,1,0,1,1,2,2,1,0,0,1,1,0,2 +1,0,0,0,0,0,0,1,1,1,1,2,0,2,0,0,0,0,0,0,0 +1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,0,1,0,2 +0,0,0,1,1,0,0,1,0,1,2,1,1,1,1,0,1,0,1,2,0 +1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,2 +1,0,1,1,1,0,0,2,0,1,1,1,1,1,0,1,1,0,1,2,0 +0,0,0,0,1,0,1,0,0,0,1,0,1,0,1,0,1,0,0,1,2 +0,0,0,0,1,0,0,2,0,0,2,1,0,1,1,0,1,0,1,1,1 +0,0,0,1,1,0,0,1,0,1,1,1,0,2,1,0,2,0,2,1,0 +0,0,0,1,1,0,2,1,0,0,0,2,2,1,2,0,0,0,1,0,2 +0,0,0,2,1,0,2,2,0,0,1,1,2,1,0,1,0,0,0,2,1 +0,0,0,1,1,0,0,1,0,1,1,1,0,1,1,0,0,1,2,1,0 +0,0,0,1,1,0,2,0,0,0,0,1,0,1,1,1,0,0,1,1,1 +0,0,0,1,1,1,0,0,0,1,0,1,0,1,0,0,0,0,2,0,1 +1,0,0,0,2,0,0,1,0,0,0,1,1,1,1,0,1,0,2,1,0 +0,1,0,2,1,0,0,2,0,0,1,0,1,0,1,0,0,1,1,1,1 +0,0,0,1,1,0,1,2,1,0,1,2,1,0,2,0,0,1,1,1,1 +1,0,0,1,2,0,0,0,0,1,1,0,1,2,0,0,1,1,1,0,2 +0,0,2,1,1,0,0,2,0,0,1,0,2,1,1,0,2,0,1,1,1 +0,1,0,0,1,1,0,1,1,0,0,1,1,1,2,0,1,0,2,2,2 +0,1,1,0,0,0,1,0,0,0,1,2,0,0,1,0,0,1,0,0,0 +0,0,0,1,0,0,1,2,0,1,0,1,0,1,1,0,2,1,2,2,2 +0,0,0,1,0,0,0,0,0,1,2,0,2,1,0,0,1,1,1,2,0 +0,0,0,2,0,0,1,0,0,1,0,1,1,1,2,0,1,1,2,2,2 +1,0,0,1,1,0,1,1,0,0,2,2,1,1,0,0,1,1,2,2,2 +1,0,0,2,2,0,0,1,0,0,0,1,0,2,0,0,1,0,2,1,0 +0,0,0,1,2,0,0,1,0,0,1,1,2,0,1,1,2,0,2,2,2 +0,0,0,1,1,0,0,0,0,2,0,0,1,1,0,0,1,0,2,1,0 +0,0,0,2,0,0,1,1,0,1,0,1,0,0,1,0,2,0,1,0,2 +1,1,0,0,1,0,1,2,0,0,0,1,1,0,0,1,1,0,1,2,0 +0,1,0,1,1,0,0,1,0,0,0,2,0,1,0,0,2,1,1,1,1 +0,1,1,2,1,0,1,2,0,1,0,0,0,1,1,0,1,0,1,1,1 +1,1,0,0,2,0,0,2,0,0,1,2,1,1,1,0,0,0,1,2,0 +0,0,0,2,1,0,0,1,0,0,0,1,2,2,2,0,2,0,1,1,1 +1,0,1,1,1,0,0,1,1,1,0,0,1,1,0,0,2,0,1,0,2 +1,0,0,1,2,1,0,0,0,0,1,2,1,2,1,0,2,0,1,0,2 +0,0,0,0,2,0,0,1,0,1,1,0,2,2,0,0,1,0,1,2,0 +2,0,1,1,0,0,0,1,0,0,1,1,2,2,0,1,0,2,2,0,1 +0,0,0,0,2,0,0,1,0,1,1,1,2,1,2,1,1,0,2,2,2 +0,0,0,1,0,0,1,2,0,1,1,1,2,1,1,0,1,0,2,0,1 +0,0,0,1,1,0,0,2,0,0,0,0,1,2,0,0,2,0,2,0,1 +0,0,0,0,1,0,0,2,0,1,0,1,0,1,1,0,0,1,2,0,1 +1,0,1,0,2,0,0,0,0,1,0,0,1,0,1,1,0,1,2,0,1 +1,0,2,1,1,0,1,0,0,0,1,1,1,1,0,0,1,0,1,1,1 +0,0,0,1,2,1,0,0,0,0,1,2,2,1,1,0,0,0,1,1,1 +0,0,0,0,1,0,0,0,0,1,1,0,1,1,1,0,0,1,1,1,1 +0,0,0,1,1,1,0,2,0,1,1,1,1,2,0,1,1,0,1,1,1 +0,0,1,2,1,0,0,1,0,0,0,1,2,0,0,0,0,1,2,1,0 +1,1,0,2,2,1,0,1,0,0,1,1,1,0,0,0,0,1,2,0,1 +0,0,0,2,0,0,0,1,0,1,1,0,2,0,2,0,2,1,2,1,0 +0,0,0,0,2,0,0,0,0,0,0,1,1,1,1,0,0,0,2,2,2 +1,1,0,2,2,0,1,1,0,0,1,0,0,0,1,0,0,0,0,1,2 +0,1,1,2,0,0,0,1,0,1,1,1,1,2,0,0,0,0,0,1,2 +0,0,0,0,0,0,1,1,0,1,0,1,0,0,2,1,0,0,2,0,1 +0,0,0,2,1,0,1,0,0,1,0,1,2,1,1,0,1,1,1,0,2 +0,1,0,0,2,0,0,1,0,1,0,0,1,1,2,0,0,1,1,1,1 +0,0,0,2,1,1,2,0,0,0,2,1,1,1,0,0,0,0,1,2,0 +0,0,2,2,1,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,2 +0,0,0,1,1,0,0,1,0,1,1,1,1,2,0,0,1,1,2,1,0 +0,0,1,1,2,1,1,2,0,0,1,1,0,0,1,1,1,0,1,0,2 +0,1,0,2,1,0,0,1,0,1,2,0,1,0,1,0,0,0,0,1,2 +0,1,1,1,1,0,0,2,0,0,2,1,0,1,0,0,0,1,0,0,0 +0,0,0,0,1,0,1,1,0,1,1,0,0,1,1,0,0,1,1,1,1 +0,0,0,1,1,0,0,1,0,1,1,0,0,2,0,0,0,0,0,2,1 +0,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,0,1,1,0,2 +1,1,0,2,0,0,1,1,1,0,1,2,1,1,1,0,1,0,1,1,1 +0,0,0,2,1,0,0,1,0,0,1,0,2,1,0,0,1,0,0,2,1 +0,0,0,0,1,0,0,1,0,0,1,1,0,2,1,0,2,0,0,1,2 +0,1,0,1,0,0,0,2,0,1,2,0,1,2,1,0,0,0,1,2,0 +1,1,0,1,0,0,1,2,0,0,1,1,0,2,2,0,1,0,1,1,1 +0,0,0,0,2,0,0,0,0,0,2,2,0,0,1,0,0,0,2,1,0 +0,0,0,1,2,0,1,2,1,0,0,0,2,1,1,1,1,0,1,2,0 +0,0,0,2,2,0,0,1,0,0,1,1,0,1,2,0,2,1,2,0,1 +0,1,0,1,2,0,0,0,0,0,1,1,2,0,2,0,0,0,1,0,2 +0,0,0,0,2,0,1,2,0,0,1,1,0,2,1,0,1,1,1,1,1 +0,1,0,1,0,1,0,1,0,1,0,1,0,0,0,0,0,0,1,2,0 +0,0,0,0,1,0,1,1,0,1,0,1,0,0,1,0,0,0,0,1,2 +0,1,0,1,2,0,1,1,0,1,1,1,2,1,1,0,1,0,0,2,1 +1,0,0,0,1,0,0,1,0,0,0,1,1,1,2,2,0,0,1,2,0 +0,0,0,1,1,0,0,1,1,1,1,1,0,2,0,0,0,0,1,1,1 +0,2,1,0,1,1,1,1,0,1,1,2,1,1,0,1,1,0,1,0,2 +0,0,0,1,0,0,1,1,1,0,0,2,0,1,0,0,0,0,1,0,2 +0,1,0,1,0,0,0,2,0,0,1,1,0,1,2,0,0,0,0,0,0 +0,0,0,1,0,0,0,0,0,0,0,0,2,1,2,0,0,1,1,0,2 +0,0,0,1,0,1,1,2,0,2,1,1,1,1,1,0,1,1,2,1,0 +0,1,0,1,2,0,1,1,0,1,2,0,0,0,0,0,2,0,1,0,2 +0,1,0,1,2,0,0,0,0,0,0,2,1,1,0,0,0,0,0,1,2 +0,1,0,1,1,0,0,0,0,1,0,1,1,0,1,1,1,1,1,0,2 +0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1,1,1,1 +0,0,0,1,0,0,1,1,0,0,0,1,1,2,0,0,0,0,1,2,0 +0,1,1,1,0,0,0,1,0,1,1,1,1,2,1,0,2,0,1,2,0 +0,2,0,2,0,0,0,0,1,1,1,1,1,1,2,0,0,0,1,2,0 +0,0,1,1,1,0,0,2,0,1,1,2,0,1,1,0,2,1,1,1,1 +0,2,1,1,0,0,0,1,0,1,1,2,2,1,1,0,1,1,1,1,1 +1,0,0,2,2,0,0,2,1,1,0,1,1,1,0,1,0,0,0,0,0 +0,0,0,1,0,0,1,1,1,0,1,1,0,1,0,0,0,1,0,2,1 +2,1,1,2,0,2,0,0,0,1,1,2,2,1,1,0,0,0,1,0,2 +0,0,0,0,1,0,0,1,0,0,0,1,1,1,1,1,1,0,1,1,1 +0,0,0,1,1,0,0,1,0,1,0,1,2,1,1,1,1,0,0,1,2 +0,1,0,0,0,0,1,1,0,0,1,1,2,1,1,0,0,0,1,0,2 +0,1,0,0,1,0,0,2,0,1,1,2,0,0,0,2,1,0,1,0,2 +0,1,0,0,2,0,1,1,0,0,0,2,2,1,1,0,0,1,1,2,0 +0,1,0,0,0,0,0,2,0,1,1,2,1,1,0,1,0,0,2,1,0 +0,1,0,1,0,1,0,2,0,1,1,0,0,0,0,1,1,1,0,2,1 +1,0,1,0,0,1,0,1,1,0,0,1,1,0,0,0,0,0,2,0,1 +0,0,0,0,1,0,1,2,1,2,0,1,0,1,1,0,0,0,1,0,2 +0,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,2,0,1 +0,1,0,1,1,0,0,1,0,0,1,1,1,1,0,0,1,0,1,0,2 +1,0,0,1,1,0,0,0,0,0,2,1,2,1,0,1,0,1,1,1,1 +0,1,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,0,1,2,0 +0,0,0,1,1,1,0,0,0,0,2,1,0,1,1,1,0,2,0,1,2 +0,1,0,2,2,0,1,1,0,0,0,1,1,1,2,0,0,0,0,1,2 +0,0,1,1,0,0,2,2,0,1,1,1,1,2,0,0,2,1,1,1,1 +0,0,0,0,1,0,0,2,0,1,0,2,1,1,0,0,0,1,1,2,0 +0,0,0,1,2,0,1,1,0,1,1,1,1,1,2,0,0,0,1,2,0 +0,0,0,1,0,0,1,1,0,0,1,2,0,0,1,0,2,0,1,2,0 +0,0,0,0,2,0,1,2,0,1,1,1,0,1,1,0,0,0,1,1,1 +2,0,0,0,2,0,1,1,0,0,1,1,1,1,0,0,0,0,0,1,2 +0,0,1,1,0,1,0,2,0,2,0,0,0,1,0,0,0,0,2,1,0 +0,1,0,0,1,0,0,1,1,1,0,2,1,2,1,0,1,1,0,1,2 +0,1,0,1,1,0,0,1,0,2,1,0,0,2,0,2,0,1,1,0,2 +0,1,0,1,2,0,0,0,0,0,0,1,0,1,0,0,1,0,0,1,2 +0,1,0,2,0,0,0,1,0,0,0,1,2,0,0,0,0,0,2,1,0 +0,0,0,1,2,0,0,1,0,0,0,1,1,1,0,1,0,0,0,0,0 +0,0,0,1,0,0,0,2,0,0,0,2,1,2,1,0,1,0,1,1,1 +1,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,1,2,2,2 +1,0,0,1,1,0,0,2,0,2,1,2,2,0,0,0,0,1,1,2,0 +0,0,0,2,1,0,1,2,0,1,2,0,1,0,1,0,1,1,0,0,0 +0,1,0,1,1,0,1,0,0,1,1,2,0,0,1,0,1,0,0,2,1 +1,1,1,2,2,1,1,2,0,1,1,1,1,0,0,0,1,0,1,1,1 +0,0,1,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0,2 +0,1,0,1,1,0,0,1,1,1,1,2,1,1,0,0,1,0,1,0,2 +0,0,0,0,1,0,1,0,0,1,1,1,0,0,2,0,0,0,0,1,2 +0,1,0,2,1,0,0,1,0,1,1,1,1,2,1,0,0,0,0,0,0 +0,0,0,1,1,0,0,2,0,0,1,0,1,0,1,0,0,0,2,1,0 +0,0,0,0,0,1,1,2,0,0,0,1,0,1,1,0,2,0,1,2,0 +1,1,0,1,1,0,0,1,0,0,0,1,2,0,0,0,0,1,0,2,1 +0,0,0,2,0,0,0,0,0,0,1,1,1,1,1,1,0,0,2,2,2 +0,2,0,1,0,0,0,1,1,1,2,1,0,2,0,1,1,0,0,2,1 +0,1,0,0,1,1,0,0,0,0,1,1,1,2,1,0,0,0,0,1,2 +0,0,1,1,0,0,0,0,0,1,0,2,1,1,0,0,0,1,2,1,0 +0,0,0,0,0,0,0,1,0,0,1,1,0,2,1,0,2,1,2,0,1 +0,0,1,0,1,0,1,0,0,2,0,0,0,0,2,0,0,1,2,2,2 +0,1,0,2,0,0,1,1,0,0,1,1,0,0,0,1,2,0,1,1,1 +1,0,0,2,0,0,0,0,0,1,1,0,2,1,0,0,0,1,2,2,2 +0,0,1,1,0,0,0,1,0,0,0,2,0,0,1,0,0,1,2,1,0 +0,1,0,1,2,0,0,1,0,0,0,2,1,0,0,0,1,1,0,1,2 +0,0,1,1,0,0,1,2,0,1,0,2,1,2,0,0,1,1,2,1,0 +0,2,1,0,0,0,0,2,0,1,1,1,1,0,0,0,1,2,1,1,1 +0,1,1,0,1,0,0,1,0,0,0,1,0,1,1,0,1,1,2,2,2 +0,1,1,0,1,0,0,1,0,0,0,1,1,1,0,0,0,1,2,1,0 +0,0,0,2,1,0,0,2,0,1,1,1,1,1,1,1,0,0,1,0,2 +0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,2,0,1,2,0 +0,0,0,1,0,0,0,1,0,2,0,1,0,1,1,1,0,0,1,2,0 +0,1,0,0,1,0,0,2,0,2,0,0,0,0,1,0,0,1,0,1,2 +0,0,1,2,1,0,0,2,0,0,0,1,0,1,1,0,1,0,0,0,0 +0,1,0,2,1,0,0,1,0,0,1,0,0,1,2,1,0,0,0,2,1 +0,0,1,1,1,0,0,2,0,1,0,1,1,0,1,1,1,0,1,2,0 +0,0,0,1,1,0,0,1,0,1,1,0,1,1,0,0,0,0,0,0,0 +0,0,0,2,0,1,0,1,0,0,1,0,1,1,2,0,0,0,0,2,1 +0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,1,1,1,1,1 +0,2,0,1,1,0,0,1,1,0,0,0,0,0,2,2,0,1,0,0,0 +0,0,0,1,1,0,0,0,0,1,0,1,0,1,0,0,0,0,1,2,0 +0,1,0,0,1,0,0,1,0,2,1,1,1,2,0,0,1,1,2,0,1 +0,1,1,1,0,0,1,1,0,2,0,1,0,0,1,0,1,0,0,0,0 +0,1,0,1,1,0,0,0,0,1,2,2,0,0,0,1,0,0,1,1,1 +0,0,1,2,1,0,0,2,0,0,1,1,1,2,2,0,0,0,1,2,0 +0,1,0,1,1,0,1,1,1,1,1,2,1,0,0,0,1,0,0,1,2 +1,1,1,2,0,0,0,1,0,0,2,1,2,0,1,0,1,0,1,0,2 +0,0,0,0,1,0,1,2,0,0,1,1,1,1,0,0,0,0,1,0,2 +0,0,0,2,0,0,0,2,0,2,1,1,2,1,1,1,0,0,1,0,2 +0,1,0,0,2,0,0,1,0,0,1,0,1,0,0,0,1,0,1,2,0 +0,0,1,1,0,0,0,1,0,0,1,2,1,2,2,0,1,0,2,1,0 +0,2,0,2,1,0,0,1,0,0,1,0,1,0,2,0,1,0,2,1,0 +0,0,0,0,1,0,0,0,0,1,0,1,1,0,1,0,1,0,2,1,0 +1,0,1,1,1,0,1,2,0,0,1,1,0,0,2,0,1,1,0,1,2 +0,0,0,2,1,2,1,0,0,0,0,0,0,1,0,1,1,1,2,1,0 +0,0,0,1,1,0,1,1,0,1,2,2,0,0,0,1,0,0,0,0,0 +1,0,0,1,1,0,0,1,0,1,1,1,1,2,0,1,1,1,2,0,1 +0,0,0,2,1,0,0,1,0,1,2,0,0,2,1,0,0,0,1,1,1 +0,0,0,1,1,0,0,1,0,0,0,1,2,1,1,0,0,0,1,1,1 +1,0,1,2,2,0,0,0,0,0,0,0,2,1,2,0,0,2,0,1,2 +0,0,0,1,0,1,1,2,0,0,1,2,0,1,0,2,1,0,1,1,1 +0,0,0,1,0,0,2,0,0,1,0,1,2,1,0,0,1,0,0,1,2 +0,0,0,2,1,0,0,0,0,0,0,2,1,2,1,0,0,0,2,1,0 +0,0,0,1,0,0,1,0,0,0,0,1,1,2,0,0,1,0,0,1,2 +0,0,0,0,1,0,1,1,0,0,0,1,2,1,1,0,2,0,1,2,0 +0,0,0,0,2,1,1,2,0,0,0,1,1,0,0,0,2,1,2,1,0 +1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,0,0,1,1,1,1 +0,0,1,1,2,0,1,1,0,1,1,1,0,0,1,0,1,0,2,0,1 +0,1,0,1,0,1,0,0,0,0,1,0,1,1,0,1,1,0,1,1,1 +1,1,0,1,0,0,1,0,0,1,1,0,1,1,1,0,2,0,1,1,1 +0,0,0,2,1,0,0,1,0,1,1,1,1,0,0,0,1,1,1,1,1 +2,1,1,2,0,0,0,0,0,1,1,1,1,2,1,0,1,2,0,1,2 +0,0,0,1,0,0,1,1,0,1,1,1,2,0,0,1,1,0,1,1,1 +0,0,0,1,0,0,0,0,0,2,0,1,2,1,1,1,0,1,2,1,0 +0,0,0,1,0,0,1,2,0,0,0,1,0,1,1,0,0,0,2,0,1 +0,0,1,1,1,0,0,1,0,2,1,1,1,1,1,0,0,0,1,0,2 +0,1,1,1,1,0,0,0,0,1,0,1,1,2,2,0,1,0,1,2,0 +1,1,0,1,1,0,0,0,0,2,1,0,0,1,1,1,2,0,1,0,2 +0,0,0,0,2,0,0,1,0,1,0,0,0,2,1,0,2,2,1,1,1 +1,0,0,1,2,0,0,1,0,1,0,0,0,2,1,0,0,0,2,2,2 +0,0,0,2,0,0,0,1,1,0,2,2,1,0,1,1,0,1,1,2,0 +1,1,0,0,2,0,1,1,0,1,0,1,1,1,1,0,0,1,1,0,2 +0,1,0,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 +1,1,0,0,1,1,0,2,0,0,1,0,1,1,0,0,0,0,0,1,2 +0,0,1,2,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,1,2 +0,1,0,1,2,0,0,0,0,1,0,2,1,0,0,0,1,0,1,1,1 +1,0,0,1,1,0,0,2,0,1,1,1,1,1,1,0,2,0,1,2,0 +0,1,0,2,2,0,1,2,0,0,1,0,1,1,1,0,0,0,1,1,1 +0,0,0,1,0,0,1,1,0,0,1,0,1,1,1,1,2,0,1,2,0 +0,0,0,0,2,0,0,2,0,0,1,0,1,1,1,0,0,0,0,1,2 +1,1,0,1,2,0,0,0,0,0,1,1,2,1,1,1,0,1,1,0,2 +0,0,1,2,1,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,1 +0,0,0,1,1,1,1,2,0,0,0,0,1,1,1,0,2,0,2,2,2 +1,0,0,0,1,0,1,1,0,1,0,0,0,2,2,0,2,0,0,2,1 +0,1,0,1,1,0,1,1,0,1,1,1,1,1,1,1,0,0,1,1,1 +1,2,0,0,1,0,0,1,0,1,2,0,1,1,2,0,0,0,1,2,0 +1,0,0,1,1,1,0,1,0,0,1,2,0,1,0,0,1,1,1,1,1 +0,0,0,1,1,0,0,0,0,1,1,0,0,1,1,0,0,0,2,2,2 +1,0,1,2,1,0,0,2,0,2,0,0,1,0,1,0,1,1,1,2,0 +0,1,0,2,1,0,1,1,0,0,1,1,0,0,0,0,1,1,0,1,2 +0,1,0,1,0,0,0,1,0,0,0,0,1,0,0,0,1,1,2,1,0 +0,1,0,1,1,0,1,1,1,0,0,1,0,0,1,0,1,0,1,1,1 +0,0,0,2,2,0,0,1,0,1,2,1,2,0,1,0,0,0,1,1,1 +0,0,0,1,1,0,0,0,1,0,2,0,0,1,1,0,1,0,2,2,2 +0,0,1,1,1,0,0,2,1,1,1,2,1,1,0,0,1,1,1,1,1 +0,0,1,1,1,0,0,1,0,0,2,2,1,1,2,0,0,1,0,1,2 +0,0,0,1,0,0,1,1,2,1,2,0,2,0,0,0,0,0,0,2,1 +1,0,1,0,1,0,0,1,0,0,1,0,0,2,2,1,0,1,1,1,1 +0,0,1,0,1,0,0,1,0,1,0,1,0,0,2,0,1,0,2,2,2 +0,2,0,1,0,0,1,1,0,0,0,1,1,1,1,0,1,0,1,1,1 +1,1,0,1,1,1,0,2,0,2,1,1,1,1,2,0,1,0,1,1,1 +1,1,0,1,0,0,0,1,0,0,1,2,1,1,2,0,0,1,1,2,0 +0,0,0,1,1,0,2,1,0,2,1,0,0,1,0,0,0,0,1,1,1 +0,1,0,1,0,0,0,2,0,0,1,1,0,1,1,0,1,0,1,0,2 +0,1,0,1,1,0,0,2,0,0,1,1,2,1,1,0,1,0,2,2,2 +0,0,0,0,2,0,0,2,0,0,0,2,2,0,0,1,2,1,1,1,1 +0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,1,1,1 +0,0,1,0,2,0,1,2,0,0,0,0,0,0,1,0,1,0,1,1,1 +0,0,0,2,1,0,0,0,0,1,0,0,1,1,1,0,1,1,2,0,1 +0,0,0,1,0,0,0,2,0,1,1,0,1,1,1,1,1,0,2,1,0 +1,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,1,1,0,1,2 +0,1,0,2,0,0,0,1,0,0,0,0,1,0,1,0,0,0,2,0,1 +0,0,0,0,1,0,0,1,0,0,2,1,0,1,2,0,0,0,0,2,1 +1,0,0,2,1,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0 +0,1,0,0,1,0,0,1,0,0,1,2,0,0,0,0,2,0,1,1,1 +0,0,0,0,1,0,1,0,0,0,2,2,1,0,1,1,0,2,1,0,2 +0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,2 +1,1,0,1,0,0,0,1,0,1,1,2,0,2,1,0,0,1,1,1,1 +1,0,1,0,2,0,1,1,0,1,1,2,0,1,0,1,1,1,2,1,0 +0,1,0,1,1,0,0,1,0,0,1,1,1,1,0,1,1,0,2,1,0 +0,0,0,1,1,0,0,2,0,0,0,1,0,1,1,0,0,0,2,1,0 +0,0,0,1,1,0,1,0,0,1,0,1,0,1,0,0,0,1,1,1,1 +0,2,0,1,0,0,0,2,0,1,2,2,2,1,0,0,2,0,2,2,2 +0,0,0,0,0,0,1,1,0,0,1,1,0,1,2,0,1,0,0,1,2 +0,0,0,1,0,1,0,1,0,1,1,0,2,0,0,0,2,1,1,2,0 +0,0,0,1,1,0,1,1,1,1,1,0,1,0,1,0,2,0,1,0,2 +1,0,1,2,0,0,1,1,1,1,0,1,1,1,1,0,1,0,2,2,2 +1,1,0,1,0,0,0,2,0,0,0,2,1,2,1,0,1,1,1,1,1 +0,0,0,0,1,0,0,0,0,0,1,1,0,1,1,1,0,0,0,1,2 +1,0,1,0,2,0,0,1,0,0,1,0,1,1,1,0,0,0,0,1,2 +0,1,0,0,0,0,1,1,0,1,0,1,1,2,0,0,0,0,2,0,1 +0,0,0,2,1,0,1,1,0,1,0,1,0,1,1,0,0,0,0,1,2 +0,0,0,0,1,0,0,2,0,0,2,1,1,1,2,1,0,0,2,2,2 +1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,2,0,1,1,1 +0,1,0,0,1,1,1,2,0,2,0,0,1,1,0,0,1,1,1,0,2 +0,2,0,0,0,0,0,1,0,0,2,2,0,1,2,0,0,0,2,1,0 +0,0,0,1,0,0,0,1,0,0,0,1,1,0,1,0,0,1,1,2,0 +0,1,0,0,1,0,0,2,0,2,2,1,0,1,0,0,1,1,0,1,2 +0,0,0,0,0,1,0,1,0,0,0,1,1,2,0,2,1,0,2,1,0 +0,1,1,2,1,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0,2 +0,1,0,2,1,0,0,0,1,1,0,0,0,0,1,0,0,0,0,2,1 +0,1,0,0,0,1,1,1,0,0,0,0,0,0,1,0,1,0,0,1,2 +0,0,0,1,2,1,0,2,0,0,2,1,1,2,2,0,1,0,0,0,0 +0,1,0,0,2,0,1,2,0,1,0,0,0,1,1,0,0,1,1,0,2 +0,0,0,2,2,0,0,1,0,2,0,1,2,1,1,0,1,0,2,0,1 +1,1,0,0,0,0,1,0,0,1,0,1,1,1,1,1,1,1,1,1,1 +0,1,1,0,0,0,1,1,0,1,1,0,1,0,1,1,1,0,1,1,1 +1,0,0,0,2,0,0,2,0,0,1,2,1,0,0,0,2,0,0,1,2 +0,1,0,1,2,0,0,1,0,1,1,2,1,1,1,0,2,0,1,1,1 +0,0,0,0,0,0,0,1,0,2,1,1,1,2,1,0,1,2,1,1,1 +0,0,0,1,2,1,1,1,0,0,1,0,0,1,2,0,1,0,1,1,1 +0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0,1,2 +1,0,0,1,2,0,0,1,0,2,2,0,0,2,1,0,0,0,2,1,0 +0,1,0,0,1,0,0,1,0,0,0,0,2,0,0,0,1,0,0,1,2 +0,0,0,2,0,0,0,0,0,0,1,0,1,1,1,0,1,1,2,1,0 +0,0,0,1,1,0,1,0,0,0,1,0,0,2,0,0,0,0,2,1,0 +0,0,0,0,1,0,0,1,0,0,1,2,1,0,0,0,0,1,2,2,2 +1,0,0,1,2,0,1,1,0,0,2,2,1,2,1,1,0,0,0,0,0 +0,1,0,2,1,1,1,2,0,1,1,1,1,1,0,0,1,0,1,2,0 +0,1,0,0,0,0,0,1,0,0,1,0,1,1,1,0,1,1,0,1,2 +0,1,0,2,1,0,0,2,0,1,0,1,1,0,1,0,0,1,0,1,2 +0,1,0,2,1,0,0,1,0,0,0,1,2,1,0,0,1,0,1,2,0 +0,1,0,1,1,0,0,1,1,1,2,0,0,2,1,0,0,0,1,1,1 +0,0,0,0,2,0,0,1,0,1,1,2,1,0,0,0,1,0,2,1,0 +0,0,0,2,1,0,1,2,0,1,1,2,0,0,2,0,1,0,2,1,0 +0,0,0,1,1,0,0,1,0,1,1,2,0,0,0,0,1,0,1,2,0 +0,0,0,2,2,0,0,1,0,0,1,2,1,0,1,0,0,0,1,1,1 +0,0,0,1,1,0,0,1,0,1,0,1,1,0,2,0,2,1,1,2,0 +0,0,0,2,0,0,0,2,0,0,1,1,0,0,1,1,1,1,1,1,1 +0,0,0,1,1,0,0,2,0,1,1,0,1,1,0,1,0,2,1,1,1 +0,0,0,1,1,0,0,1,0,0,0,1,0,1,2,0,0,0,1,1,1 +0,0,0,0,2,0,0,1,0,1,0,2,1,2,1,0,1,0,0,1,2 +0,2,1,1,1,0,0,2,0,1,1,1,1,2,2,0,0,0,1,0,2 +2,0,0,1,1,0,0,1,0,0,1,1,0,1,2,0,1,0,1,1,1 +0,0,0,2,1,0,0,1,0,0,1,0,1,2,1,0,1,1,1,1,1 +0,1,0,2,2,0,1,1,0,0,2,0,0,1,1,0,0,0,2,1,0 +0,0,0,1,1,1,0,2,0,1,2,1,1,1,1,0,2,0,0,0,0 +0,1,0,1,2,0,0,2,0,1,0,1,2,1,1,0,1,1,1,0,2 +0,0,0,2,1,0,0,0,0,0,2,1,0,1,0,1,1,0,0,1,2 +0,0,0,1,0,0,0,2,0,0,1,1,2,0,0,1,0,0,0,0,0 +0,0,0,1,0,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0 +2,0,0,2,1,0,0,2,0,0,1,1,1,1,0,0,1,1,1,0,2 +0,0,0,2,0,0,0,1,0,0,1,2,2,1,0,0,1,0,1,2,0 +0,2,0,1,2,0,0,1,0,0,1,2,0,0,1,0,1,0,1,1,1 +0,0,0,0,1,0,0,0,1,0,1,1,1,2,1,0,1,0,2,2,2 +1,0,0,1,1,0,0,2,0,0,1,1,2,2,1,0,1,0,1,1,1 +0,1,0,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1 +0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,1,1,0,1,1,1 +0,0,0,2,1,0,0,1,0,1,1,1,1,1,1,0,1,0,1,1,1 +0,0,0,1,1,0,0,1,0,1,0,1,0,0,0,0,0,0,2,2,2 +0,1,1,1,0,0,1,0,0,0,1,2,0,1,0,0,0,0,1,1,1 +0,1,0,1,2,0,0,0,0,0,0,1,0,2,2,0,2,0,1,1,1 +0,0,0,2,1,0,0,1,0,1,2,1,0,1,2,0,0,0,0,1,2 +1,0,0,1,0,0,1,1,0,0,0,1,2,0,1,0,1,0,1,2,0 +0,1,0,1,1,0,1,1,1,0,0,1,2,1,2,0,0,0,2,2,2 +1,1,0,1,0,0,1,1,1,0,2,0,0,2,1,1,1,0,1,1,1 +0,1,0,0,1,0,0,1,0,0,0,1,1,1,1,1,0,2,2,2,2 +0,0,0,1,1,0,0,0,0,0,0,1,0,1,2,1,1,1,2,2,2 +0,0,1,1,0,0,0,1,0,1,0,1,1,1,0,1,2,0,1,2,0 +0,0,1,2,0,0,0,1,0,1,2,2,0,1,0,0,1,0,1,2,0 +0,1,0,0,1,0,0,2,0,1,0,2,1,1,1,0,0,1,0,1,2 +0,0,0,1,2,0,0,1,0,1,1,1,0,1,2,0,1,0,0,1,2 +1,0,0,1,0,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,1 +0,0,0,1,1,0,0,1,1,0,1,0,2,1,2,1,0,0,1,1,1 +0,1,0,1,0,0,0,1,0,2,1,1,1,1,1,0,1,0,0,0,0 +0,0,0,2,1,0,1,1,0,1,0,1,2,0,0,0,1,0,1,2,0 +0,1,1,1,1,0,0,2,0,1,0,0,1,1,1,0,0,1,1,2,0 +0,0,0,2,2,0,2,1,0,0,0,0,0,0,1,0,0,1,2,1,0 +0,0,0,1,0,0,1,2,0,0,1,1,1,1,1,0,1,1,1,1,1 +0,0,0,0,0,0,0,2,0,1,1,1,0,0,1,0,2,0,2,0,1 +1,0,0,1,0,0,0,0,0,0,1,1,1,0,1,0,1,0,1,2,0 +0,0,0,2,0,0,0,0,0,0,2,2,2,1,1,0,0,0,0,1,2 +0,0,1,1,0,0,0,1,1,1,2,0,1,0,0,1,1,1,2,1,0 +0,0,0,1,0,0,0,1,0,0,1,0,1,2,2,1,1,0,2,0,1 +1,1,0,1,1,0,0,1,0,0,1,1,2,0,0,0,0,0,1,1,1 +1,1,0,1,1,0,0,1,0,1,1,0,1,0,0,0,2,0,1,2,0 +0,0,0,2,0,0,0,2,0,0,0,0,0,0,1,1,1,1,0,1,2 +0,1,0,1,1,1,0,1,0,1,0,0,2,1,0,1,2,0,1,1,1 +0,1,0,1,1,0,1,1,0,0,2,1,1,0,1,1,2,1,1,0,2 +0,0,0,0,0,1,0,1,0,0,0,2,2,1,0,0,1,0,0,2,1 +0,1,0,0,1,0,1,1,0,1,0,1,1,0,0,0,1,0,0,1,2 +1,2,0,2,0,0,0,1,0,0,0,0,1,1,2,1,0,1,0,1,2 +0,0,0,0,1,0,0,0,0,0,1,2,1,1,1,0,1,0,0,1,2 +0,1,0,1,1,0,0,1,1,1,1,0,1,0,1,0,1,1,2,0,1 +0,0,0,0,1,0,0,1,0,1,1,1,1,2,1,0,0,0,2,1,0 +1,1,0,0,2,0,1,0,0,1,1,0,2,2,0,0,1,0,1,2,0 +0,1,1,1,0,0,2,2,0,1,1,1,1,1,0,1,1,0,1,0,2 +0,0,0,0,1,0,0,0,0,1,1,0,1,0,1,0,2,1,1,2,0 +0,1,0,2,2,0,0,1,0,1,1,2,0,1,1,0,1,0,1,2,0 +1,0,0,0,0,0,0,1,0,1,0,0,0,2,2,0,1,0,1,0,2 +1,0,0,1,0,1,0,1,0,1,0,1,1,0,0,0,2,0,2,1,0 +0,0,1,1,1,0,1,1,0,0,1,1,0,0,1,0,0,0,1,1,1 +0,0,0,0,1,0,0,1,0,0,0,2,1,2,2,0,0,0,0,1,2 +1,1,0,0,0,1,0,1,0,1,1,1,2,0,0,0,2,1,1,0,2 +0,0,0,1,2,0,1,1,0,0,1,0,1,1,0,0,2,0,2,2,2 +0,1,2,0,0,1,0,2,0,0,0,0,1,0,0,2,2,1,2,1,0 +0,1,0,1,1,0,1,0,0,1,1,1,2,2,1,1,0,1,0,1,2 +0,0,0,0,1,0,0,1,1,1,0,0,1,0,0,0,0,1,1,1,1 +0,0,0,1,1,0,1,0,0,1,0,2,0,1,1,0,1,0,0,1,2 +0,0,0,1,1,0,0,1,1,0,1,1,2,1,2,0,1,1,2,1,0 +0,0,0,1,0,0,0,1,0,0,0,1,1,2,0,1,1,0,2,2,2 +1,0,2,0,1,0,0,0,0,0,2,2,1,2,1,0,0,0,1,1,1 +0,0,0,1,0,0,0,1,0,1,2,2,0,2,0,1,1,0,2,2,2 +0,1,0,2,1,0,1,0,0,1,0,2,1,1,1,1,1,0,0,0,0 +0,0,0,1,1,0,0,0,0,0,1,0,0,1,0,0,1,0,2,0,1 +0,1,0,2,0,0,1,1,1,0,1,2,0,1,1,1,2,0,1,2,0 +0,0,0,0,1,0,1,1,0,0,0,1,0,2,1,0,0,0,0,1,2 +0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,1,1,1,1,1 +0,1,0,2,1,0,0,2,0,0,0,2,1,0,1,0,1,0,0,0,0 +0,1,0,1,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0 +0,1,0,2,1,0,0,1,0,1,1,1,0,1,1,1,1,1,0,2,1 +0,1,2,0,1,1,2,1,0,0,1,2,1,1,0,0,0,0,2,1,0 +1,0,0,0,0,0,0,2,0,1,1,2,1,0,0,0,1,1,2,1,0 +0,1,0,0,0,0,1,2,0,0,1,1,2,0,1,0,0,1,1,1,1 +0,0,0,0,2,0,0,1,0,2,1,1,0,1,1,0,0,0,1,0,2 +0,0,0,0,1,0,0,2,1,0,0,2,1,1,1,0,0,0,0,1,2 +1,0,0,1,1,0,1,0,0,1,0,0,0,0,1,0,1,1,1,0,2 +0,1,0,1,1,0,0,0,2,1,1,1,1,1,0,1,1,0,1,2,0 +1,1,0,1,0,0,0,0,0,0,0,1,0,1,1,1,1,0,2,0,1 +1,0,0,0,1,2,0,2,0,1,1,1,2,1,1,0,1,0,2,1,0 +0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,2,0 +0,0,0,1,0,1,0,1,1,1,0,1,0,0,0,0,1,1,1,1,1 +0,1,0,1,2,0,1,2,0,1,0,0,1,1,2,0,1,1,2,0,1 +1,0,0,0,1,0,0,1,1,0,0,1,1,1,1,1,0,1,2,2,2 +0,0,0,1,1,0,0,1,0,0,0,0,1,1,1,1,2,0,0,2,1 +0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,2,0 +0,2,0,1,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,2,0 +1,0,0,2,1,0,0,1,0,0,0,0,1,0,1,0,1,1,2,2,2 +0,0,1,1,1,0,0,0,1,0,0,2,2,2,0,1,1,1,2,0,1 +1,1,0,0,1,0,0,1,1,1,1,2,1,1,1,0,2,0,1,0,2 +0,0,0,1,1,1,0,1,0,0,1,0,2,1,2,0,1,1,2,1,0 +2,0,0,1,1,0,0,1,1,1,0,1,0,1,1,1,0,1,0,1,2 +0,0,0,1,1,0,0,0,0,0,1,1,1,0,1,0,0,0,1,1,1 +0,0,1,2,1,0,0,2,0,1,0,1,2,0,0,0,0,0,2,1,0 +1,1,0,1,1,0,2,1,0,0,1,1,1,2,1,0,0,0,2,1,0 +0,1,0,1,1,0,0,1,0,1,1,1,0,0,1,0,0,0,2,1,0 +0,1,0,2,1,0,0,2,0,1,1,1,1,1,1,0,1,0,0,2,1 +1,0,0,1,0,0,0,0,0,1,2,1,1,1,1,0,1,0,0,0,0 +0,1,1,0,0,0,2,1,0,1,0,0,1,1,2,0,1,0,0,1,2 +0,0,0,1,1,0,0,1,0,0,0,1,2,0,1,0,1,0,1,1,1 +1,0,1,1,1,0,0,2,0,1,1,1,1,0,1,1,0,0,1,1,1 +0,0,0,1,1,0,2,1,1,2,0,1,1,1,0,1,0,0,0,0,0 +0,0,0,1,1,0,1,0,0,0,0,1,1,2,1,0,0,0,0,0,0 +0,0,1,0,2,1,0,1,0,1,1,2,1,1,1,0,0,0,1,1,1 +0,0,0,2,1,0,1,1,0,0,1,0,0,2,0,0,1,1,0,1,2 +0,0,0,2,2,0,0,2,0,0,1,1,0,0,2,0,1,0,1,1,1 +1,0,0,0,0,0,1,1,1,0,0,0,1,2,0,1,0,1,1,1,1 +0,1,0,0,1,0,0,1,0,2,1,0,2,0,1,0,1,0,1,0,2 +0,1,0,1,0,0,1,0,0,0,1,1,2,1,1,0,1,0,1,2,0 +0,0,0,0,1,1,0,0,0,0,0,1,0,2,1,0,1,1,1,1,1 +0,1,0,1,1,1,0,0,0,2,1,1,2,0,2,0,0,0,2,1,0 +1,0,0,1,2,0,0,1,0,0,0,1,0,2,0,1,1,0,2,1,0 +1,1,0,1,2,0,0,2,0,0,2,0,0,1,0,0,0,0,0,0,0 +0,0,1,2,1,1,0,1,0,1,0,0,1,0,0,0,1,0,0,2,1 +1,0,1,0,0,0,0,1,0,0,0,1,2,1,0,0,0,0,0,1,2 +1,2,0,0,1,0,1,1,0,2,1,0,0,2,0,1,1,0,1,1,1 +0,0,1,2,1,0,0,2,0,1,1,0,2,0,1,0,1,0,2,2,2 +0,0,0,0,0,0,1,0,0,1,0,1,0,1,2,0,0,1,1,1,1 +0,0,1,0,1,0,1,2,0,1,1,2,0,1,1,1,0,0,0,1,2 +0,0,0,1,0,0,0,0,1,2,2,1,1,1,1,0,1,1,2,1,0 +0,0,0,0,1,0,1,1,0,0,2,0,0,0,1,1,1,0,1,1,1 +1,0,0,2,1,0,0,1,0,0,0,1,0,1,1,1,0,0,1,2,0 +0,0,0,2,1,0,1,1,0,1,1,2,0,0,0,1,2,0,0,0,0 +0,0,1,1,2,0,0,2,0,0,0,0,0,1,1,0,1,1,1,2,0 +0,1,0,2,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,1,2 +0,1,1,0,1,0,0,1,0,0,1,2,1,1,1,0,0,0,1,1,1 +1,1,0,1,1,0,0,1,0,1,0,1,1,1,0,0,1,1,1,0,2 +1,0,1,1,0,1,0,1,0,0,1,2,0,1,0,0,0,0,1,0,2 +0,0,1,1,1,0,1,2,0,2,1,0,0,0,1,1,1,0,2,1,0 +1,1,0,1,2,1,0,1,0,1,0,0,1,1,0,0,2,0,1,1,1 +0,0,0,1,0,0,1,2,0,0,1,2,0,0,0,0,0,0,0,1,2 +0,1,0,1,1,0,1,0,0,0,0,1,2,1,1,0,2,1,2,2,2 +0,0,1,1,2,0,0,0,0,1,1,0,0,1,0,0,0,0,1,2,0 +0,0,0,1,1,0,0,0,0,1,0,2,0,1,1,1,1,1,0,1,2 +0,0,0,0,1,0,0,0,0,1,0,1,0,1,2,0,2,1,0,0,0 +1,0,0,2,1,0,0,0,0,0,2,2,1,0,1,0,1,0,1,2,0 +0,0,0,0,1,0,0,2,0,1,0,0,2,2,1,1,2,1,0,2,1 +1,1,0,0,2,0,0,1,0,2,0,1,2,0,2,0,0,0,1,0,2 +0,0,0,1,1,0,1,0,0,1,1,1,1,0,1,0,0,0,1,1,1 +0,1,0,2,0,0,1,1,0,1,0,0,0,1,0,1,0,1,0,1,2 +1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,0,1,0,1,2,0 +0,0,0,0,2,0,0,2,0,2,1,0,1,1,1,0,1,0,0,0,0 +0,1,1,2,1,0,0,0,0,1,1,0,0,0,2,1,1,0,1,1,1 +1,1,0,1,0,0,0,0,0,1,0,0,1,0,0,0,2,0,0,2,1 +0,1,0,0,1,0,0,1,0,0,0,1,2,1,0,1,1,0,1,0,2 +1,0,0,0,0,0,0,2,0,0,0,1,1,2,1,0,1,1,1,2,0 +0,1,1,0,0,0,0,0,0,0,0,0,2,1,0,0,2,0,1,1,1 +0,1,0,1,0,0,1,2,2,1,0,1,2,2,2,1,0,1,1,0,2 +0,0,0,0,2,0,0,2,1,0,0,1,2,1,1,0,1,0,1,1,1 +0,1,0,1,1,0,2,2,0,1,0,0,0,1,1,0,1,0,2,1,0 +0,0,0,0,1,0,0,1,0,1,1,2,1,2,1,0,0,0,0,1,2 +0,1,1,1,2,0,0,1,0,0,0,1,0,1,0,1,1,1,1,1,1 +0,0,1,0,0,0,0,1,1,0,1,1,1,0,1,0,2,1,1,1,1 +0,0,0,1,1,0,0,1,0,0,1,1,2,0,2,1,0,0,1,2,0 +0,1,0,1,1,0,1,1,0,0,1,1,1,2,0,0,0,0,1,2,0 +0,0,0,1,1,0,0,1,0,0,1,2,0,1,1,0,0,1,1,2,0 +0,0,1,0,2,0,0,1,1,0,1,0,1,2,1,0,1,0,0,1,2 +0,0,0,1,0,0,0,0,0,0,1,1,1,1,1,0,0,1,0,1,2 +1,2,0,0,0,1,0,1,0,1,0,1,2,1,1,1,0,0,1,0,2 +1,0,0,1,1,0,0,1,1,0,0,1,0,1,2,0,1,0,1,2,0 +0,0,0,0,1,1,0,1,0,0,0,1,2,0,1,0,1,1,1,2,0 +0,1,0,1,2,0,0,1,0,1,1,0,1,2,1,0,2,0,1,0,2 +0,0,0,1,1,0,0,0,0,1,0,1,0,0,1,1,1,0,1,0,2 +0,0,0,1,0,0,0,1,0,1,1,1,0,1,0,1,1,0,1,1,1 +0,0,0,0,0,0,0,2,0,0,2,0,1,0,0,0,0,2,2,1,0 +0,0,1,2,0,0,0,1,0,1,0,1,1,1,1,1,1,0,0,2,1 +0,1,0,1,1,0,0,2,0,1,1,0,1,0,1,2,0,0,0,2,1 +1,1,1,1,1,1,0,1,0,0,0,2,0,2,0,0,0,0,1,1,1 +0,0,0,0,1,0,0,1,0,1,1,2,0,0,0,0,1,0,0,1,2 +1,0,0,0,1,0,2,1,0,1,1,2,2,0,1,0,0,0,0,1,2 +0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,0,0,0 +0,1,0,0,1,0,0,1,0,0,1,0,0,1,2,1,1,0,2,2,2 +0,0,0,2,0,0,0,2,0,1,1,0,1,0,0,0,2,2,1,1,1 +0,0,0,1,0,1,0,1,0,0,0,1,1,0,1,0,1,0,2,1,0 +0,0,0,0,1,0,1,1,0,1,2,0,2,0,1,0,0,0,2,2,2 +0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,2,0 +2,0,0,1,1,0,1,1,0,0,0,2,2,1,0,0,1,0,0,0,0 +0,1,1,1,1,0,0,1,1,0,0,2,1,1,0,0,0,0,0,1,2 +0,0,0,0,1,0,0,1,0,1,0,2,0,1,1,1,1,0,1,1,1 +0,0,0,2,0,0,0,1,0,1,0,2,2,1,1,0,1,0,1,0,2 +2,1,1,1,0,1,0,1,0,1,0,0,0,1,1,0,0,1,0,1,2 +0,1,0,1,1,0,0,2,0,0,1,1,2,0,1,0,1,0,2,2,2 +0,1,0,1,1,0,1,1,0,0,0,1,0,0,1,0,0,0,0,2,1 +0,1,0,1,2,0,1,1,0,0,2,1,1,1,1,0,1,1,0,2,1 +0,0,0,1,1,0,0,0,0,0,1,1,0,1,0,1,0,1,1,0,2 +1,0,0,0,1,0,0,1,1,0,1,0,2,1,1,0,2,0,1,2,0 +0,1,0,1,0,0,0,0,0,2,0,2,1,1,1,0,2,0,2,1,0 +0,0,1,1,1,0,1,1,0,1,1,1,0,0,1,0,0,0,0,2,1 +0,1,0,1,0,0,1,1,0,1,1,0,2,0,2,0,1,1,1,0,2 +1,0,0,1,0,0,0,2,0,1,1,2,0,0,0,1,1,0,2,1,0 +0,0,0,2,0,0,1,1,0,0,1,1,0,0,0,0,0,0,1,2,0 +0,0,0,0,1,0,0,0,0,0,1,2,1,1,0,0,0,1,0,1,2 +0,1,1,2,2,0,0,2,0,1,1,0,0,0,2,0,1,1,2,1,0 +0,1,0,1,1,0,2,1,0,0,0,1,1,1,2,0,2,0,0,1,2 +0,0,1,1,1,0,1,2,0,0,1,1,1,1,0,0,1,0,0,1,2 +0,1,0,0,0,0,1,2,1,2,0,1,1,1,1,1,0,0,1,1,1 +1,2,0,1,1,0,2,0,0,0,0,0,1,1,0,1,0,0,1,1,1 +0,1,0,2,0,0,0,2,0,0,2,2,1,1,0,1,1,1,2,1,0 +1,1,0,0,1,0,0,0,0,0,2,2,2,1,0,0,0,1,1,1,1 +0,0,1,1,1,1,1,1,0,0,1,2,0,1,1,1,1,0,1,1,1 +0,0,1,0,2,0,0,1,0,1,0,0,1,1,1,1,1,0,2,2,2 +0,0,0,1,0,0,1,1,0,0,1,1,0,1,1,0,0,0,1,1,1 +0,0,0,2,2,1,1,1,0,0,0,1,0,1,0,1,0,0,1,0,2 +0,1,1,1,2,1,0,2,1,0,1,0,1,1,0,0,1,0,2,1,0 +0,0,0,2,1,0,1,2,1,0,1,0,1,1,1,0,1,1,0,1,2 +1,0,0,1,2,1,2,1,0,0,0,1,0,0,1,0,0,0,1,2,0 +1,1,0,0,1,0,1,1,0,1,2,1,2,1,2,0,1,0,2,1,0 +1,1,0,1,0,0,1,1,0,1,2,0,0,1,1,0,1,0,1,1,1 +0,0,0,0,0,0,0,1,0,0,1,1,0,2,0,0,2,0,2,1,0 +0,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,2,1 +0,1,0,0,2,1,0,1,0,0,1,0,1,2,2,1,0,0,2,0,1 +0,0,0,0,0,0,0,0,0,0,1,1,0,2,0,0,1,1,0,1,2 +0,0,0,1,0,1,1,2,0,0,0,2,2,2,1,0,0,0,1,1,1 +0,1,0,1,2,0,0,1,0,0,0,2,0,2,0,0,2,0,0,1,2 +0,1,0,0,1,0,2,1,0,1,0,1,1,1,0,0,1,0,0,2,1 +0,0,0,1,1,0,0,2,0,0,0,0,0,1,0,2,1,0,0,0,0 +1,1,0,1,0,0,0,2,0,0,1,1,1,0,1,0,1,0,1,1,1 +0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,1 +0,1,1,2,2,0,1,1,0,0,1,1,1,1,0,1,1,0,0,1,2 +0,0,2,2,0,0,0,1,0,0,0,0,2,1,1,1,1,0,0,1,2 +0,1,0,0,1,0,1,1,0,1,1,2,0,1,0,0,1,0,2,2,2 +0,0,0,2,1,0,1,1,0,0,1,1,0,2,1,0,1,1,0,1,2 +0,0,0,1,2,1,1,2,0,0,1,0,0,0,1,0,1,0,1,1,1 +0,0,0,1,0,0,0,1,0,1,1,0,0,1,1,1,1,0,1,1,1 +0,0,0,0,1,0,0,2,0,1,0,0,1,0,0,0,2,1,0,1,2 +0,2,0,0,2,0,0,1,0,0,2,0,0,0,0,0,0,0,2,1,0 +0,0,0,2,1,0,1,1,0,1,1,1,0,1,1,1,0,0,1,0,2 +0,0,0,0,0,0,0,2,0,0,0,0,1,2,2,0,0,0,1,2,0 +0,1,1,1,0,0,0,1,0,2,1,1,1,0,2,0,1,0,2,1,0 +0,0,0,1,0,0,0,0,0,0,1,2,1,2,1,0,1,0,1,0,2 +1,0,0,2,2,0,0,1,0,0,0,0,1,1,1,1,0,0,1,0,2 +0,0,0,2,1,0,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0 +1,0,0,1,0,0,0,2,0,2,0,2,0,1,0,0,1,0,1,2,0 +0,0,0,0,2,0,0,1,0,1,0,0,1,1,0,1,2,1,1,1,1 +0,0,1,2,0,1,1,0,0,1,1,1,0,0,1,1,2,0,1,0,2 +0,1,0,1,0,1,1,1,0,0,1,2,1,0,1,0,2,0,1,2,0 +0,0,1,0,2,0,0,1,0,0,1,1,0,2,1,1,1,1,0,0,0 +0,0,0,2,1,1,1,0,0,0,1,1,2,1,0,1,0,0,1,0,2 +0,1,1,2,1,0,1,2,0,0,0,0,1,1,0,1,1,0,0,2,1 +1,0,0,0,0,0,1,1,0,0,2,0,1,0,1,0,1,1,0,1,2 +0,1,0,0,0,0,0,1,0,2,0,0,0,1,1,0,0,1,1,1,1 +0,1,0,1,1,0,0,2,0,1,0,0,0,1,1,0,2,0,1,1,1 +0,0,0,2,0,1,0,2,0,0,1,1,0,1,1,0,2,0,1,0,2 +1,1,2,0,2,0,0,2,0,1,0,0,0,1,0,0,1,0,1,1,1 +0,1,0,0,0,0,0,1,0,1,1,1,2,0,1,0,0,0,0,1,2 +1,0,0,2,1,0,1,2,0,1,1,2,2,1,1,0,0,0,1,1,1 +0,0,0,2,2,0,1,0,0,1,0,0,1,0,1,0,0,0,0,1,2 +0,0,0,1,1,1,0,1,0,1,0,0,0,0,1,0,0,0,2,0,1 +0,0,0,1,0,0,1,1,0,0,0,1,1,0,1,0,0,0,1,2,0 +0,0,0,1,1,0,0,2,0,0,0,1,0,1,1,0,0,1,2,1,0 +0,1,0,1,1,0,0,1,0,0,1,1,0,0,1,0,0,1,1,0,2 +1,1,1,1,1,0,1,1,0,1,1,1,0,1,2,1,1,0,1,2,0 +0,0,0,1,2,0,1,1,0,1,0,1,1,1,0,0,1,1,2,1,0 +2,0,0,1,2,0,0,1,0,0,0,1,1,0,0,0,2,0,1,0,2 +0,1,0,2,1,1,0,1,0,1,1,1,0,1,0,0,1,0,0,0,0 +0,0,0,0,1,0,0,1,0,0,0,0,0,2,1,1,1,0,1,2,0 +0,0,0,1,2,0,0,0,0,0,0,1,0,2,0,1,1,1,1,1,1 +0,1,0,1,1,0,0,1,0,2,1,0,0,1,0,0,1,0,2,0,1 +0,0,0,1,1,1,1,2,0,0,1,2,1,0,1,0,0,1,0,1,2 +0,1,0,1,0,1,0,1,0,0,1,0,2,1,1,1,0,1,1,0,2 +1,1,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1,1,1 +0,1,0,0,0,0,0,1,1,0,0,2,1,0,2,0,0,0,2,2,2 +0,0,1,1,1,0,0,1,0,1,2,1,0,1,1,0,0,1,1,1,1 +0,1,1,1,1,0,0,2,0,1,1,2,0,2,1,0,0,0,0,2,1 +0,1,0,0,1,0,0,1,0,1,0,1,1,1,1,0,0,1,0,1,2 +1,1,0,0,1,0,1,2,0,1,0,0,0,0,1,0,0,1,2,1,0 +0,0,0,1,2,0,0,2,0,2,1,1,1,0,1,1,1,0,0,0,0 +0,0,0,0,1,1,0,2,0,0,0,1,0,0,1,1,0,2,0,1,2 +0,0,1,2,0,0,0,1,0,1,1,1,1,0,0,0,0,0,1,0,2 +0,0,0,1,2,1,0,1,0,0,2,1,1,1,0,1,0,0,1,0,2 +0,0,0,2,0,0,0,1,0,0,0,0,0,1,1,1,0,0,2,2,2 +0,1,0,2,1,0,1,2,1,0,1,0,1,1,0,2,1,0,1,1,1 +1,0,0,1,0,0,0,0,0,2,2,2,0,0,1,0,1,0,1,1,1 +0,1,0,1,1,1,1,0,0,1,2,0,1,0,2,0,2,0,1,1,1 +0,0,0,1,0,1,1,2,0,2,1,0,0,0,1,0,0,0,2,1,0 +0,1,0,0,2,0,0,2,0,1,1,0,1,1,1,1,2,0,1,2,0 +0,0,0,1,1,0,0,2,0,2,0,1,1,2,1,0,0,0,2,0,1 +1,0,0,2,2,1,0,1,1,0,1,2,2,1,1,1,0,0,1,1,1 +0,0,0,1,0,0,0,1,0,2,1,1,1,2,0,0,1,1,2,1,0 +0,0,0,0,0,1,0,2,1,1,1,0,0,1,0,0,1,0,1,2,0 +1,0,0,1,1,0,1,1,0,0,0,1,2,0,0,0,1,1,0,0,0 +1,1,0,1,1,0,0,2,0,2,1,2,1,1,1,0,1,0,1,1,1 +0,1,0,1,2,0,0,1,0,1,0,1,0,1,2,0,0,0,0,1,2 +1,1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,0,0,0,1,2 +0,0,0,0,1,0,0,1,1,1,1,0,1,0,2,0,0,0,1,1,1 +0,0,0,0,1,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1 +0,1,0,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,2,0 +0,0,1,1,1,0,1,2,1,1,1,0,1,0,0,0,1,0,0,2,1 +1,0,0,1,2,0,0,1,1,0,1,0,1,1,1,0,0,0,1,2,0 +0,0,0,1,0,0,1,1,0,0,1,1,1,2,2,0,0,2,1,2,0 +1,0,1,1,1,0,1,1,0,1,1,1,0,2,0,0,1,0,1,1,1 +0,0,0,0,1,0,0,1,0,0,0,1,1,0,2,0,0,1,0,2,1 +0,0,1,0,1,0,0,2,0,1,0,0,0,0,1,0,1,1,2,0,1 +0,0,0,1,1,0,0,1,0,0,0,0,1,1,1,1,1,0,2,0,1 +0,1,0,1,1,1,1,1,0,1,0,1,2,0,1,1,0,1,1,1,1 +0,1,0,1,1,0,1,1,1,2,1,1,1,1,1,0,0,2,1,1,1 +0,0,1,0,1,0,0,2,1,2,2,0,1,2,1,1,0,0,1,1,1 +0,0,0,1,1,0,0,1,2,1,1,1,0,1,0,1,0,1,0,2,1 +1,0,2,2,1,0,0,1,0,1,1,0,1,1,1,0,0,2,1,0,2 +0,0,0,2,2,0,1,0,0,0,1,2,1,1,0,0,1,0,2,1,0 +0,1,0,1,1,0,2,2,0,1,0,0,0,0,0,1,0,0,1,1,1 +0,2,0,0,1,0,0,0,0,0,1,1,0,0,1,0,1,0,1,1,1 +0,1,0,1,0,0,1,2,0,1,0,0,1,1,1,0,0,1,2,1,0 +0,0,0,1,0,0,0,0,0,1,2,2,1,1,1,0,0,1,1,1,1 +0,1,0,0,0,0,1,1,0,0,1,1,1,0,1,0,1,0,0,1,2 +0,0,0,1,0,0,0,0,1,0,1,0,2,2,1,0,1,1,2,0,1 +0,0,0,1,2,0,0,1,0,0,0,1,0,0,0,0,0,1,2,1,0 +0,1,0,1,1,0,0,0,0,1,0,0,1,1,1,0,0,0,1,1,1 +0,0,0,1,1,1,1,2,0,1,1,0,2,0,2,0,2,0,0,0,0 +0,1,0,2,1,0,0,0,0,0,0,1,2,0,0,1,0,1,1,0,2 +1,1,0,1,1,0,0,0,0,1,1,0,1,0,0,0,0,1,1,2,0 +0,0,2,0,2,0,0,1,0,0,2,2,0,0,1,1,0,0,1,0,2 +0,0,0,1,1,0,0,1,0,0,1,2,0,0,1,0,2,0,1,0,2 +0,0,0,1,1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,2,1 +0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,1,1,1 +0,1,0,1,2,0,1,1,0,0,1,1,1,1,0,0,2,1,1,0,2 +0,1,0,2,2,0,0,1,0,0,1,2,2,0,1,0,2,0,1,0,2 +1,0,0,0,0,0,0,2,0,0,0,1,2,1,1,0,1,0,2,2,2 +0,0,0,1,1,1,0,2,0,1,0,1,1,1,0,0,0,2,2,1,0 +0,0,0,1,1,1,0,1,0,2,1,1,0,0,1,0,1,0,1,1,1 +0,1,0,0,2,2,2,2,0,2,0,2,0,1,0,0,1,1,1,0,2 +0,0,0,2,1,0,0,1,0,1,1,1,1,0,1,0,0,0,1,1,1 +0,0,0,0,1,0,0,2,0,0,1,1,1,1,1,0,1,1,1,0,2 +1,0,0,0,2,0,0,0,0,0,1,1,1,1,2,0,0,0,0,1,2 +0,0,0,0,2,0,0,0,0,2,1,1,1,1,1,0,0,1,1,2,0 +0,0,0,2,1,1,0,2,0,1,0,0,0,1,0,1,0,0,0,1,2 +0,1,0,0,2,0,0,1,0,1,0,1,2,1,0,0,0,0,1,1,1 +1,0,0,1,1,0,0,1,0,1,0,1,1,1,1,0,1,0,0,0,0 +0,0,0,1,0,0,0,0,0,0,0,2,1,1,2,1,0,0,0,1,2 +0,0,0,0,2,0,0,2,0,1,0,0,2,1,0,1,1,1,0,1,2 +0,0,0,1,2,0,1,0,0,0,1,0,1,0,1,0,0,0,1,0,2 +0,0,1,1,2,0,0,0,0,0,1,0,1,2,1,0,0,0,1,1,1 +0,0,1,1,0,0,0,1,1,0,1,0,1,2,0,0,0,0,2,1,0 +0,0,0,1,1,0,1,1,0,0,0,0,1,1,2,1,1,0,1,1,1 +1,1,0,0,1,0,0,2,0,1,0,1,2,1,0,0,1,0,0,1,2 +0,0,0,1,1,0,1,2,1,1,0,1,1,2,0,1,0,1,1,1,1 +0,0,0,2,2,0,1,1,0,1,0,1,0,1,0,1,1,1,1,1,1 +0,0,0,0,1,0,0,1,0,1,1,1,1,0,1,1,2,1,1,1,1 +1,1,0,2,0,0,0,0,0,0,1,0,0,1,1,0,1,0,1,1,1 +1,0,0,0,1,0,2,1,0,1,1,0,0,1,1,0,1,1,1,1,1 +0,2,2,0,2,0,1,1,0,0,1,0,0,2,0,1,1,0,1,1,1 +0,1,1,0,0,0,1,1,0,1,2,2,0,2,0,0,0,0,1,2,0 +0,1,0,0,0,1,0,2,0,0,1,1,2,1,1,0,1,0,0,1,2 +0,1,0,1,2,1,0,1,0,0,0,0,1,1,1,0,1,0,2,0,1 +0,1,1,2,0,0,0,2,0,0,2,2,0,1,0,0,0,0,0,2,1 +1,0,0,1,2,1,0,1,0,0,1,2,0,0,0,0,0,0,1,2,0 +1,1,0,1,1,0,0,2,0,0,0,1,0,0,1,0,0,0,0,1,2 +0,0,1,1,2,0,0,0,0,1,0,1,1,1,1,0,0,0,1,2,0 +1,0,0,1,2,1,0,2,0,1,1,1,1,2,1,0,1,1,1,0,2 +0,0,0,1,1,0,0,1,0,1,0,2,1,1,1,0,1,1,2,1,0 +0,1,1,0,2,0,0,1,0,0,1,1,0,0,2,0,0,0,0,2,1 +1,0,0,1,2,0,1,1,0,2,1,1,0,0,0,0,0,0,1,0,2 +0,1,0,0,1,0,0,1,0,0,1,1,1,0,1,1,1,0,1,1,1 +0,0,0,2,1,1,0,1,0,1,1,2,0,0,2,1,2,0,1,1,1 +0,1,0,0,1,0,0,1,0,2,2,0,0,2,0,1,2,1,2,0,1 +1,0,0,2,1,0,0,2,0,1,2,0,1,1,2,0,2,0,0,1,2 +0,1,2,0,1,0,0,1,0,2,0,2,1,0,0,1,1,1,2,1,0 +1,0,0,1,0,0,0,1,0,0,1,0,2,0,1,1,0,0,1,1,1 +0,0,0,2,1,0,0,2,0,0,1,1,0,1,1,0,0,0,1,1,1 +1,0,0,0,2,1,1,0,1,1,0,2,1,1,1,0,2,0,1,1,1 +1,0,0,1,1,0,0,1,0,0,1,1,0,2,1,0,1,0,2,2,2 +0,0,0,1,1,0,0,1,0,0,0,2,1,0,0,0,1,1,2,0,1 +0,0,1,0,0,1,0,0,0,0,1,2,0,0,1,0,1,1,0,1,2 +1,1,1,0,0,1,1,2,0,0,0,1,2,1,1,0,1,0,2,1,0 +0,1,0,1,1,0,1,2,0,1,0,0,1,2,1,0,0,0,1,0,2 +0,0,0,0,2,0,1,1,0,0,1,0,0,0,2,0,0,0,2,1,0 +0,2,0,1,2,1,1,1,0,0,0,0,0,0,1,0,1,0,0,0,0 +0,0,0,0,1,0,0,1,0,0,1,0,0,1,2,0,1,1,2,1,0 +0,1,0,2,1,0,0,0,0,0,1,0,0,0,1,0,1,0,1,2,0 +0,1,0,2,1,0,0,1,0,1,1,1,1,1,2,0,1,0,1,2,0 +0,1,1,1,0,0,0,1,0,2,1,1,1,1,0,0,0,0,1,2,0 +0,1,0,2,2,0,0,1,0,0,2,0,0,0,1,1,0,0,0,1,2 +0,0,0,2,2,0,0,1,0,0,1,1,1,0,0,0,2,1,1,2,0 +0,0,0,1,0,1,1,1,0,1,0,2,2,0,0,0,0,0,1,0,2 +0,1,0,1,1,0,0,1,0,1,1,0,1,0,1,0,2,0,0,0,0 +0,0,1,0,1,0,1,2,0,0,1,2,1,1,1,1,0,1,1,2,0 +0,1,0,0,1,0,0,1,0,0,1,1,0,1,2,0,0,0,0,1,2 +0,1,0,0,2,1,1,0,0,0,1,2,1,0,1,0,0,1,2,1,0 +0,0,0,0,1,0,1,2,0,1,0,1,1,1,1,0,0,0,2,1,0 +0,0,0,1,1,0,0,2,0,0,0,2,1,0,0,0,1,0,1,0,2 +0,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1,2,0 +0,0,0,0,1,0,0,0,1,0,1,1,0,2,0,0,0,0,2,1,0 +0,0,1,1,1,0,0,1,1,1,0,0,1,1,0,0,2,0,1,0,2 +0,1,1,0,1,0,0,0,0,0,0,1,0,0,1,1,1,0,1,2,0 +1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,0,1,0,1,0,2 +0,0,1,1,1,0,1,1,1,1,1,2,1,1,0,0,0,0,2,1,0 +1,0,0,1,0,0,0,1,0,1,0,1,1,2,1,0,1,0,2,2,2 +1,0,0,0,1,0,0,1,0,0,1,1,1,1,0,0,1,1,2,1,0 +1,0,0,2,0,0,1,0,0,0,1,0,2,0,0,1,0,0,2,1,0 +0,0,0,0,2,0,0,2,0,2,1,2,1,0,1,1,0,0,0,1,2 +1,1,0,1,1,0,0,1,0,1,1,1,1,2,0,0,1,0,1,0,2 +1,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,2,0,0,1,2 +0,1,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,2,2,2 +0,0,1,2,1,1,1,2,0,0,1,1,1,1,1,0,0,0,2,1,0 +1,1,0,2,1,0,1,0,0,2,0,0,0,2,1,0,0,0,1,2,0 +0,1,0,1,1,0,1,1,0,0,2,1,1,1,1,0,2,0,2,2,2 +0,1,0,0,1,0,1,2,0,0,0,1,1,1,2,0,0,1,0,1,2 +0,0,1,0,0,0,0,2,1,0,0,2,2,0,1,0,2,0,1,0,2 +0,1,0,1,2,0,0,0,0,0,1,1,0,1,0,0,0,1,1,0,2 +0,0,0,1,0,0,1,1,0,0,0,1,1,1,2,0,1,0,0,0,0 +1,1,0,0,1,1,1,1,0,0,1,0,0,0,1,0,0,0,2,1,0 +0,1,0,1,0,0,1,2,0,1,1,1,1,1,0,0,0,0,2,1,0 +0,1,0,1,2,0,1,2,0,0,0,1,0,1,0,1,0,0,2,1,0 +0,0,0,0,1,0,0,1,1,0,2,1,2,1,0,0,0,0,1,2,0 +1,0,0,1,1,1,0,1,0,1,1,1,0,1,1,2,0,0,0,1,2 +0,1,0,0,0,0,2,2,0,0,1,2,0,0,1,0,1,1,1,2,0 +1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,0,0,0,1,2,0 +1,1,1,1,1,0,0,1,0,0,2,0,1,2,0,2,0,0,2,2,2 +0,0,0,1,0,0,0,2,0,0,0,1,0,1,1,0,0,0,2,2,2 +1,1,0,1,1,0,0,1,0,0,2,2,2,1,1,0,1,0,1,2,0 +0,0,0,1,2,1,1,0,0,0,2,1,1,1,1,1,0,0,1,0,2 +1,0,0,1,2,1,1,1,0,0,1,0,2,2,0,0,0,0,2,1,0 +0,0,0,2,2,0,0,1,0,1,0,1,2,1,1,1,1,0,1,2,0 +1,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,2,1,0 +0,0,0,2,1,0,0,1,0,1,2,1,0,1,1,1,1,2,0,1,2 +1,1,0,1,0,0,2,1,0,0,1,0,0,2,1,0,0,0,1,0,2 +1,1,0,2,1,0,0,2,0,0,0,0,2,2,0,1,0,0,2,1,0 +0,1,1,1,2,0,1,1,0,2,0,1,0,0,1,0,0,0,1,2,0 +0,0,0,1,0,1,0,1,0,2,1,2,1,1,1,0,1,1,0,1,2 +0,0,0,0,2,1,1,1,0,0,0,1,2,2,2,0,1,0,1,0,2 +0,0,0,0,0,1,1,1,0,1,1,1,0,0,2,0,0,0,2,2,2 +0,0,0,0,2,1,0,1,0,2,1,2,1,1,1,0,1,0,0,0,0 +0,1,0,1,2,1,2,1,1,1,0,1,1,0,0,0,0,1,0,1,2 +1,0,0,0,2,0,0,2,0,1,0,1,1,1,1,0,1,1,1,2,0 +0,1,0,1,0,0,0,2,0,0,2,1,0,2,0,0,0,0,2,1,0 +0,0,1,2,0,1,1,1,1,0,1,0,1,1,2,0,0,0,1,0,2 +0,1,0,1,2,0,1,1,0,1,0,1,2,2,0,0,2,0,0,0,0 +0,1,0,0,1,0,0,1,0,0,0,1,0,2,0,1,0,1,2,1,0 +0,0,1,0,0,0,1,1,0,0,0,1,1,0,0,0,0,1,2,1,0 +1,1,0,2,1,0,0,2,0,1,2,1,0,1,1,0,0,0,0,1,2 +1,0,0,1,0,0,1,1,0,0,1,1,1,1,0,1,1,0,1,2,0 +1,1,0,2,1,0,0,1,0,1,1,1,1,1,0,0,1,1,2,2,2 +0,0,1,1,2,0,1,0,0,0,1,1,1,1,1,1,1,0,1,0,2 +0,0,0,1,2,1,0,2,0,1,1,0,1,0,1,0,0,1,0,1,2 +1,0,0,0,1,0,0,1,1,1,0,2,0,0,1,1,1,2,2,1,0 +0,0,0,2,0,0,0,1,0,0,0,0,2,0,2,0,0,1,2,1,0 +0,1,0,0,1,0,0,0,0,0,0,2,0,2,0,0,1,1,1,2,0 +0,1,0,1,0,0,0,2,0,1,1,0,2,1,1,0,1,1,2,2,2 +0,0,0,1,1,1,1,1,0,1,0,0,2,0,2,0,0,2,0,1,2 +1,0,0,2,0,0,1,0,0,0,0,1,0,1,0,0,1,0,0,1,2 +1,0,0,0,0,0,0,2,0,2,0,1,1,1,1,1,0,0,0,0,0 +0,0,0,0,0,0,2,2,0,1,1,1,1,0,1,1,1,0,2,1,0 +0,0,0,2,0,0,0,2,0,1,1,0,2,1,0,0,1,1,1,2,0 +0,0,0,1,0,1,0,1,0,0,1,0,2,1,0,1,1,0,0,1,2 +0,0,0,1,0,0,0,1,0,1,2,0,1,1,0,0,0,0,1,0,2 +0,1,0,0,1,0,1,1,0,0,2,0,0,1,0,0,0,0,1,2,0 +0,0,1,1,1,0,0,1,0,1,1,1,1,0,2,0,1,0,0,1,2 +0,1,1,1,1,0,0,1,1,0,0,0,0,0,1,0,1,1,0,0,0 +0,0,0,1,2,0,0,0,0,1,1,1,0,0,2,0,0,0,2,1,0 +0,1,1,1,2,1,0,1,1,0,0,1,1,1,1,0,1,0,2,2,2 +0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,0,1,0,1,0,2 +1,0,0,1,1,0,0,1,0,2,1,1,1,1,1,1,1,1,1,2,0 +0,0,0,0,2,0,1,2,0,0,1,0,0,0,1,1,1,1,0,1,2 +0,1,0,0,2,0,0,1,0,1,0,0,0,1,1,1,0,0,0,1,2 +1,0,1,0,1,1,0,0,0,1,1,2,0,0,0,0,2,0,2,1,0 +0,0,0,0,2,1,1,1,0,2,0,1,2,1,0,1,1,0,1,0,2 +0,1,0,1,0,1,0,2,0,1,0,0,1,2,0,0,0,1,0,1,2 +0,0,1,1,0,0,0,2,0,0,0,2,1,0,1,1,0,0,1,0,2 +0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,1,0,1,0,2 +0,0,0,1,1,0,0,2,0,1,2,2,1,1,0,0,1,0,0,0,0 +0,2,0,1,0,0,0,2,1,2,0,1,2,0,1,0,0,0,0,1,2 +0,0,0,0,1,1,0,1,0,0,0,2,1,1,1,0,1,0,0,0,0 +1,1,1,1,1,0,0,1,0,1,0,1,1,1,1,1,1,0,0,1,2 +0,0,0,1,1,0,0,2,0,1,0,0,1,2,0,1,0,2,1,2,0 +0,1,0,0,1,0,0,2,0,1,1,0,1,2,1,0,0,0,1,2,0 +0,0,0,1,0,0,0,2,0,0,1,1,0,1,0,0,0,0,0,0,0 +0,0,0,0,2,0,1,2,0,1,1,1,1,1,1,0,2,0,0,0,0 +1,0,1,1,2,0,0,1,0,0,1,2,2,1,0,0,0,0,1,0,2 +0,0,1,1,2,0,0,0,0,0,1,2,1,1,1,1,2,0,1,2,0 +0,0,0,0,1,0,1,1,0,1,2,2,0,1,1,0,0,1,2,1,0 +0,1,0,1,2,0,0,1,0,2,0,1,0,0,0,1,1,1,1,0,2 +1,1,0,2,1,0,0,1,0,1,1,1,1,0,2,0,0,0,0,0,0 +0,1,0,1,0,1,1,2,0,0,2,0,1,1,1,0,1,1,2,2,2 +0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,0,1,0,1,2,0 +1,0,0,1,1,0,0,1,0,1,1,1,1,1,1,0,1,0,2,1,0 +1,0,0,1,1,0,1,0,0,2,0,1,1,0,0,0,1,1,1,0,2 +0,0,1,1,2,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,2 +0,1,0,1,1,0,0,2,0,0,0,0,1,2,1,1,1,0,2,1,0 +0,1,0,1,1,0,0,0,0,1,0,2,1,1,1,0,1,1,0,1,2 +0,0,0,2,1,0,0,1,0,0,1,0,0,0,0,0,0,1,2,1,0 +0,0,0,0,1,0,0,1,0,1,1,2,2,0,1,0,2,0,2,2,2 +0,0,0,1,1,1,0,2,0,0,0,0,1,2,0,0,0,1,1,0,2 +1,0,0,1,1,0,0,1,0,1,1,1,0,1,2,1,0,0,2,2,2 +0,0,0,2,1,0,1,0,0,0,1,1,2,1,1,0,1,0,2,1,0 +0,0,1,0,0,0,1,1,0,1,1,0,0,0,1,1,1,0,2,1,0 +1,1,1,1,0,0,0,1,0,2,0,2,1,0,1,1,1,0,1,0,2 +0,0,1,1,1,0,0,0,0,0,2,1,1,1,1,0,1,0,1,2,0 +1,0,0,1,2,0,0,0,0,1,0,2,0,0,1,0,0,1,0,1,2 +0,0,0,0,1,0,0,0,0,1,1,0,1,1,2,0,2,1,2,2,2 +0,1,0,1,2,0,1,1,0,1,2,0,0,0,1,0,0,0,1,0,2 +0,0,0,1,1,0,0,1,0,0,0,0,1,1,1,0,0,0,0,1,2 +0,1,1,0,0,0,0,1,0,1,0,0,2,1,0,0,2,1,2,2,2 +0,0,0,1,0,0,0,0,0,0,2,1,2,1,0,0,0,0,1,0,2 +0,1,0,1,1,0,0,1,0,0,0,1,1,1,0,0,1,0,1,0,2 +1,1,0,1,0,0,1,0,0,0,2,2,0,1,0,1,1,0,1,2,0 +0,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,2,0,2,1,0 +0,0,0,2,2,1,0,2,0,0,0,2,2,0,1,0,2,0,0,1,2 +0,0,1,1,1,0,0,1,0,1,0,2,1,1,1,0,0,0,1,2,0 +1,0,1,2,1,0,0,1,0,0,1,0,2,1,0,1,1,0,2,1,0 +0,1,2,0,0,0,0,1,0,0,0,1,2,0,1,0,2,0,2,1,0 +1,0,0,1,2,0,0,1,0,0,0,1,0,1,1,1,1,0,1,0,2 +0,1,0,0,1,0,0,2,0,0,0,0,1,1,1,0,1,1,1,0,2 +0,1,0,1,0,0,0,1,0,2,0,0,1,0,2,0,2,1,0,1,2 +0,0,0,1,2,0,0,2,0,1,1,0,1,1,1,0,0,0,1,0,2 +0,0,1,2,0,0,1,1,0,2,1,2,0,1,2,0,0,1,1,2,0 +0,0,1,1,0,0,0,2,0,1,0,0,1,1,1,0,1,1,0,1,2 +0,0,0,2,1,0,0,1,0,0,1,0,0,1,1,0,0,1,1,0,2 +1,0,0,1,1,0,1,2,0,2,0,0,2,0,0,1,0,0,1,2,0 +1,0,0,2,1,0,0,1,0,1,0,2,2,1,0,0,1,0,2,2,2 +0,1,0,1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,2 +0,1,1,0,2,1,0,1,0,2,0,2,0,0,1,1,1,0,1,0,2 +0,0,0,0,1,1,0,1,0,1,2,2,1,1,1,0,0,1,2,2,2 +0,0,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,2,1,0 +0,0,1,0,0,0,0,2,0,0,1,0,1,2,1,1,2,0,0,0,0 +0,1,0,2,1,0,0,1,0,2,1,0,2,1,1,0,0,1,2,2,2 +0,0,0,1,1,0,0,0,0,0,0,1,0,1,0,0,1,0,1,0,2 +0,0,0,0,1,0,1,1,0,1,1,0,1,2,0,0,0,0,0,0,0 +0,1,1,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,2 +0,1,0,2,1,0,0,1,0,0,0,1,2,1,0,0,1,0,2,1,0 +1,1,0,0,0,0,1,1,0,0,1,1,1,1,1,0,2,0,1,0,2 +0,0,1,0,0,0,0,1,0,1,1,0,0,1,1,1,1,1,2,1,0 +1,0,0,1,2,0,1,1,1,1,0,2,1,2,0,0,2,1,1,0,2 +0,1,0,1,1,0,0,1,0,0,2,1,1,2,0,1,2,0,1,0,2 +1,0,0,2,0,1,1,2,0,1,0,0,0,1,1,0,2,0,1,0,2 +0,1,0,2,2,0,0,1,0,1,1,0,1,1,1,0,2,1,0,0,0 +1,0,0,1,0,0,0,1,0,1,1,0,2,2,2,0,0,0,1,0,2 +0,0,0,1,0,0,0,0,0,1,2,2,1,1,1,1,0,0,1,2,0 +0,1,0,1,1,0,0,1,0,1,0,1,0,1,1,1,1,0,0,1,2 +1,0,0,2,2,0,0,1,0,1,1,1,2,1,1,0,0,1,0,0,0 +1,1,0,1,1,0,0,1,1,1,0,0,2,1,2,1,0,0,0,0,0 +0,0,0,2,1,0,0,2,0,1,1,1,0,1,0,0,1,0,2,1,0 +0,0,0,1,1,0,0,1,1,0,1,0,2,1,1,1,1,0,0,1,2 +1,0,0,1,1,0,0,0,0,0,1,1,1,2,1,0,2,0,2,1,0 +0,0,0,1,1,0,0,0,0,0,0,0,0,1,2,1,0,1,2,1,0 +0,1,0,1,0,0,1,2,0,0,1,2,1,1,1,1,1,1,1,2,0 +0,1,0,2,1,0,1,1,0,1,0,1,0,1,0,0,1,1,1,0,2 +0,0,0,2,1,0,0,0,0,2,2,0,2,0,0,0,1,2,1,2,0 +0,1,1,1,1,0,0,1,0,1,0,2,1,0,2,1,1,0,0,1,2 +0,0,0,2,0,0,0,1,0,1,1,1,2,0,0,0,1,0,2,1,0 +0,1,0,1,1,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0 diff --git a/data/3Class_Datasets_Loc_2_01.txt b/data/3Class_Datasets_Loc_2_01.txt deleted file mode 100644 index 528e439..0000000 --- a/data/3Class_Datasets_Loc_2_01.txt +++ /dev/null @@ -1,1601 +0,0 @@ -N0 N1 N2 N3 N4 N5 N6 N7 N8 N9 N10 N11 N12 N13 N14 N15 N16 N17 M0P0 M0P1 Class -0 0 0 0 0 0 0 2 0 0 1 2 1 2 1 0 1 0 2 1 0 -1 0 0 0 0 1 1 1 0 0 0 1 0 1 1 0 0 1 0 1 2 -0 0 0 1 0 0 0 2 0 0 0 1 0 1 1 0 0 0 2 1 0 -0 0 0 1 2 0 1 0 0 0 1 1 1 1 1 1 1 1 1 0 2 -0 1 0 1 0 0 0 0 0 0 0 0 1 1 1 0 1 0 1 1 1 -1 0 0 1 2 0 1 0 0 0 1 1 1 1 1 0 2 0 1 1 1 -0 1 1 0 0 0 0 1 0 0 0 0 0 0 2 0 0 0 0 1 2 -0 1 0 0 1 1 0 1 0 1 1 1 1 2 1 1 2 0 1 2 0 -0 1 0 0 1 0 1 0 0 0 1 1 2 0 0 1 1 0 0 2 1 -1 0 0 1 1 0 0 1 0 1 1 0 0 2 2 0 0 0 0 1 2 -1 1 0 0 2 1 0 0 0 1 1 0 2 1 1 0 0 0 1 0 2 -0 1 1 1 1 0 0 1 0 1 1 0 0 0 0 0 0 0 1 0 2 -0 0 0 1 1 0 0 0 0 1 1 1 1 2 1 0 1 0 1 1 1 -0 1 0 1 1 0 0 1 0 0 2 1 0 1 1 0 1 1 1 1 1 -0 0 0 2 0 0 0 1 0 1 0 2 1 0 0 0 1 1 1 1 1 -0 0 1 1 0 0 0 1 0 1 0 1 0 1 1 0 0 0 1 1 1 -1 1 0 2 0 0 0 1 0 1 1 1 0 2 0 0 1 0 1 0 2 -0 0 0 1 0 0 0 0 0 0 2 1 0 1 1 1 1 1 1 2 0 -0 0 1 1 1 0 0 0 0 1 2 0 1 1 1 0 1 0 1 1 1 -0 1 0 0 1 0 1 1 0 1 0 1 2 0 1 0 0 1 0 2 1 -0 1 1 2 1 0 0 1 0 0 0 0 1 1 0 0 0 0 0 1 2 -0 0 0 0 2 0 0 1 0 0 1 1 0 0 1 0 1 1 1 0 2 -0 0 0 0 0 0 1 1 0 1 1 1 0 1 0 0 0 1 1 2 0 -0 1 0 1 0 0 0 0 0 0 1 0 2 0 1 0 1 1 1 1 1 -1 1 0 1 2 0 1 0 0 1 1 0 0 1 1 1 1 0 0 0 0 -0 0 0 1 1 0 1 1 0 0 1 1 1 2 1 0 0 0 2 1 0 -0 1 0 1 0 0 0 1 0 1 1 1 1 1 1 0 1 0 1 1 1 -0 0 0 1 0 0 1 1 0 0 1 1 1 1 1 0 2 0 1 1 1 -0 1 0 0 0 0 0 1 0 1 1 1 0 0 0 1 2 0 0 1 2 -0 1 0 2 0 0 0 0 0 1 0 1 0 1 1 0 0 0 2 1 0 -0 1 0 2 1 0 2 1 0 0 2 1 0 0 0 0 0 0 2 0 1 -0 1 0 2 2 0 0 1 1 0 0 1 1 2 1 0 1 0 1 2 0 -1 0 0 2 2 0 1 0 1 1 0 1 2 1 0 0 0 1 2 2 2 -0 1 1 0 1 0 0 1 0 0 0 1 0 1 2 0 2 0 0 2 1 -0 0 0 1 1 0 0 2 0 1 0 2 0 1 2 0 1 0 1 1 1 -0 1 0 0 1 0 0 2 1 1 0 1 1 1 1 1 2 0 1 1 1 -1 0 0 1 2 0 0 2 1 2 0 0 1 1 1 0 1 0 1 1 1 -0 1 0 0 1 0 0 0 0 0 2 1 0 0 0 0 1 1 2 1 0 -0 0 0 2 1 0 0 2 0 1 0 0 1 1 2 0 1 0 0 1 2 -0 1 0 1 1 1 0 0 0 0 1 1 0 0 0 0 1 0 1 2 0 -0 0 0 1 1 0 0 1 1 0 0 1 0 1 1 0 0 0 0 1 2 -1 0 0 0 2 0 1 1 0 1 1 0 2 0 1 0 1 0 2 2 2 -0 0 1 1 0 0 1 1 0 0 1 0 0 1 1 0 0 0 2 1 0 -1 0 0 1 0 0 0 0 0 2 2 1 2 0 1 0 1 0 0 1 2 -0 0 0 0 1 0 0 2 1 2 0 0 1 2 0 0 0 0 1 0 2 -1 0 0 1 1 0 0 0 1 0 0 1 0 0 0 1 2 0 1 1 1 -0 0 0 0 1 0 0 1 0 1 0 1 1 1 2 0 1 0 0 1 2 -0 0 0 1 1 1 0 2 0 1 1 1 1 0 1 1 1 0 2 2 2 -1 2 1 1 0 0 0 2 0 0 1 0 0 1 0 0 1 0 2 1 0 -0 1 0 1 0 0 0 0 1 1 0 1 1 1 1 0 2 0 2 2 2 -0 1 0 2 0 0 0 1 0 0 0 1 0 0 0 1 1 0 1 1 1 -0 1 0 0 1 0 0 2 0 2 1 1 2 1 1 1 1 0 1 0 2 -0 0 0 1 1 0 0 2 0 1 0 2 1 1 0 1 1 0 1 1 1 -0 1 0 1 1 0 1 1 0 0 0 0 1 2 1 0 1 0 1 2 0 -0 0 0 0 0 0 0 0 0 2 1 0 0 0 2 0 0 1 1 2 0 -0 0 0 1 1 0 0 1 0 0 0 0 1 1 1 0 1 0 1 2 0 -0 0 0 0 1 0 2 1 1 2 2 1 1 1 1 0 1 0 1 1 1 -0 0 0 1 2 0 0 0 0 1 1 0 2 2 1 0 1 0 1 0 2 -0 0 0 1 1 0 0 0 0 2 1 0 1 0 1 0 0 0 1 1 1 -0 0 0 0 2 0 0 1 0 0 1 1 2 0 1 0 1 0 0 2 1 -0 0 0 1 1 0 0 1 0 0 2 1 1 1 2 0 0 0 0 0 0 -0 1 0 0 1 0 0 2 0 1 1 0 0 0 1 0 0 0 1 2 0 -1 1 0 0 1 0 0 1 0 0 1 2 0 2 0 0 0 0 1 0 2 -0 0 0 1 1 0 1 1 1 0 1 0 1 0 2 1 0 0 2 1 0 -0 1 1 0 0 0 0 1 0 2 0 1 0 0 1 1 1 1 0 1 2 -0 1 0 1 2 0 0 2 0 1 1 1 0 0 2 0 1 1 0 1 2 -0 1 0 0 1 1 1 1 0 1 1 0 0 1 1 2 0 0 0 1 2 -1 1 0 0 1 0 0 0 0 1 0 1 0 2 1 0 0 1 0 2 1 -0 0 0 0 2 0 0 0 0 1 1 0 0 2 1 0 2 1 1 0 2 -0 0 0 1 1 0 1 0 0 1 1 0 1 1 2 1 1 0 0 0 0 -1 1 1 1 1 0 0 1 0 1 1 2 2 0 1 0 0 0 1 2 0 -0 0 1 2 1 0 0 0 1 1 1 0 1 1 2 0 0 0 1 0 2 -0 0 0 1 1 0 0 1 0 0 1 1 1 1 0 0 1 1 0 1 2 -0 0 0 1 1 0 0 2 0 1 2 1 1 1 1 0 1 0 1 2 0 -0 1 0 0 0 1 0 1 0 0 0 0 2 0 2 0 1 0 0 1 2 -0 1 0 1 1 0 0 1 0 1 0 0 0 2 1 1 0 0 1 0 2 -0 0 0 0 2 1 0 1 0 0 0 1 0 0 0 0 1 0 1 2 0 -0 0 0 0 1 0 1 0 0 0 0 2 2 1 1 0 0 0 1 0 2 -0 2 1 1 0 0 1 1 0 1 1 1 0 2 0 1 0 0 1 1 1 -0 2 1 1 0 1 0 0 1 0 1 0 1 1 1 0 2 0 1 1 1 -0 1 1 1 2 0 0 1 0 0 0 0 0 0 1 1 1 1 1 1 1 -0 0 0 1 2 0 0 1 1 1 1 0 0 0 0 0 1 0 1 1 1 -0 0 0 1 1 0 0 1 1 0 0 0 1 1 2 0 1 0 1 2 0 -0 0 0 0 2 0 1 1 0 0 0 1 1 1 1 1 0 1 0 1 2 -0 0 0 0 1 0 1 1 0 0 0 0 1 2 1 0 0 0 1 1 1 -0 1 0 1 1 0 0 2 0 0 0 0 0 1 1 0 0 0 1 0 2 -0 0 1 2 1 0 0 1 0 2 1 0 1 0 0 0 0 0 2 1 0 -0 1 0 0 1 0 0 1 0 1 1 2 2 1 1 0 0 1 0 2 1 -0 0 0 1 1 0 0 0 0 0 1 1 1 1 1 0 0 0 0 1 2 -0 0 1 1 2 0 0 0 0 1 0 1 0 1 0 0 0 0 1 1 1 -1 1 0 2 1 0 0 1 0 0 0 1 1 2 1 0 0 0 0 1 2 -0 0 0 1 0 0 0 2 0 1 2 1 1 1 2 0 0 1 1 1 1 -0 1 0 1 0 0 1 1 0 1 0 0 2 2 1 0 0 0 2 2 2 -0 0 0 0 1 1 0 2 0 0 0 1 1 1 1 0 1 1 2 1 0 -0 0 0 2 0 0 1 1 0 1 1 0 0 1 0 1 0 0 1 1 1 -0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 1 2 1 0 0 0 -0 0 1 0 1 0 0 1 0 2 1 2 1 1 1 0 2 0 2 1 0 -0 0 0 0 2 1 0 1 0 2 1 1 2 0 2 0 1 0 2 0 1 -0 1 0 2 1 0 1 2 0 0 0 1 1 2 2 0 0 0 0 1 2 -0 2 0 2 0 0 0 0 0 0 0 1 1 1 1 0 0 0 1 2 0 -0 0 0 1 1 1 0 2 0 1 2 1 2 1 2 1 1 1 2 0 1 -0 0 0 0 1 1 0 1 0 0 0 0 1 1 2 0 0 0 1 1 1 -0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 1 1 0 1 1 1 -1 1 0 0 0 0 0 1 0 0 1 1 0 1 1 0 1 0 0 2 1 -1 1 1 2 1 0 0 1 0 0 1 0 1 2 2 1 1 0 2 1 0 -0 0 0 1 1 0 0 1 0 1 0 1 1 1 0 0 0 1 1 1 1 -0 0 0 1 0 0 0 2 0 1 1 0 0 1 0 1 0 1 2 1 0 -1 1 1 0 2 0 0 1 0 0 0 2 1 0 1 0 1 0 1 0 2 -0 1 1 0 2 1 0 0 0 2 2 1 1 1 1 0 1 0 0 0 0 -0 1 1 2 0 0 0 2 0 1 0 0 2 2 1 0 1 1 0 2 1 -2 0 0 1 1 0 0 1 0 1 1 0 1 2 0 1 0 1 2 2 2 -0 0 0 1 1 0 0 1 0 2 2 1 1 1 0 0 1 0 1 2 0 -1 0 0 1 0 0 0 2 0 1 0 1 1 2 0 0 2 0 1 0 2 -0 0 0 0 1 0 0 2 0 0 0 1 2 1 0 1 1 0 1 0 2 -0 1 0 1 1 0 0 1 0 2 0 1 0 1 0 1 0 0 2 1 0 -0 0 1 2 0 0 0 1 1 1 0 1 2 2 1 0 0 0 0 1 2 -0 0 0 1 2 1 0 1 0 0 2 0 0 2 0 0 1 0 1 1 1 -0 0 1 1 2 0 1 1 0 2 0 1 1 1 0 0 1 0 0 0 0 -0 0 0 1 1 0 0 1 0 0 1 0 0 1 0 1 1 0 1 1 1 -0 0 1 1 0 0 0 1 0 0 0 2 1 2 0 0 1 0 1 1 1 -0 0 0 0 1 0 1 0 0 0 1 1 2 1 2 0 2 0 0 1 2 -0 0 0 1 0 0 0 1 0 0 0 0 0 1 1 1 0 0 1 1 1 -0 0 0 2 1 0 0 1 0 2 0 0 1 1 1 0 2 1 1 1 1 -0 0 0 1 0 0 0 1 0 0 1 0 1 1 1 1 1 0 1 2 0 -0 0 0 0 1 0 0 1 0 0 0 1 0 1 1 1 0 0 1 2 0 -0 0 1 1 2 0 0 2 0 1 1 0 2 2 1 0 0 0 0 0 0 -0 0 0 1 1 0 0 1 0 2 1 2 1 1 1 1 1 1 1 1 1 -0 1 0 0 2 0 1 1 0 0 2 1 0 1 0 0 0 0 0 2 1 -0 0 1 1 0 1 0 0 1 0 0 0 1 0 1 1 1 0 1 0 2 -0 0 0 2 1 0 0 1 0 1 2 2 0 0 1 0 0 0 2 2 2 -0 0 0 1 2 1 0 0 0 0 1 0 1 1 0 0 1 0 0 0 0 -0 0 0 0 0 0 0 1 0 1 2 1 2 1 1 1 0 1 1 0 2 -0 0 0 1 1 0 0 2 0 0 0 1 0 0 1 0 0 0 1 1 1 -0 0 1 1 2 0 0 1 0 0 1 2 0 0 1 0 0 0 1 1 1 -0 0 2 1 2 0 0 0 0 0 2 0 1 1 1 0 1 1 1 1 1 -0 1 1 1 0 0 0 2 0 1 0 0 2 2 1 0 0 0 1 1 1 -0 0 0 0 2 0 0 1 0 0 1 1 0 1 2 0 0 0 1 1 1 -1 0 0 1 1 1 1 0 0 0 1 0 2 1 2 1 0 1 2 0 1 -0 0 0 1 0 1 0 2 1 1 1 0 0 1 0 1 1 0 1 1 1 -0 0 0 1 0 0 0 1 0 0 2 0 1 0 1 0 0 0 1 0 2 -0 0 0 0 0 0 0 2 1 1 2 1 0 1 2 0 1 0 1 1 1 -0 2 1 0 2 0 1 0 0 0 0 1 0 2 2 0 0 0 1 0 2 -0 0 0 1 0 0 0 2 0 1 2 0 1 0 1 0 0 0 0 1 2 -0 0 0 1 1 0 1 0 0 0 0 1 2 1 0 0 1 1 1 1 1 -1 1 0 0 1 0 0 0 1 0 0 1 0 1 1 0 2 0 1 1 1 -0 0 0 2 2 0 0 2 1 2 0 2 0 1 2 0 0 0 1 2 0 -1 0 0 2 0 0 0 1 0 0 2 0 0 0 2 0 1 0 1 1 1 -0 0 0 1 1 0 0 1 0 0 1 0 2 2 1 0 0 1 1 1 1 -0 0 0 1 2 0 1 2 0 0 1 0 2 2 0 0 0 0 2 1 0 -0 0 0 0 1 0 1 1 0 0 1 0 0 0 1 0 1 0 1 1 1 -0 0 0 1 2 0 0 0 0 0 0 0 0 0 1 0 1 1 2 1 0 -0 0 0 1 1 0 0 1 0 0 1 1 1 1 0 0 0 0 0 1 2 -0 1 0 0 2 0 0 1 0 2 1 0 1 1 0 0 1 0 1 1 1 -0 0 0 2 1 0 0 2 0 2 0 1 0 0 1 0 0 1 0 0 0 -0 0 0 1 1 0 0 1 0 1 0 1 1 1 0 0 0 0 2 1 0 -0 2 0 1 0 1 1 0 0 0 2 0 1 0 2 0 1 0 1 2 0 -1 0 1 1 1 0 0 1 0 1 0 1 0 0 0 0 1 1 1 2 0 -0 1 0 0 2 0 0 2 0 1 0 1 1 1 1 0 2 1 2 1 0 -0 0 0 1 2 0 0 1 0 2 0 1 1 0 1 0 1 0 2 1 0 -0 2 0 2 0 0 1 1 0 0 2 2 0 0 1 1 0 0 1 0 2 -0 0 0 1 0 0 2 2 0 2 1 1 1 1 1 0 1 0 1 0 2 -0 0 1 1 0 0 1 1 0 0 1 1 0 1 1 1 0 0 0 0 0 -0 0 0 1 0 0 0 0 0 1 1 1 1 1 2 0 0 0 2 1 0 -0 1 0 2 1 0 1 2 0 0 0 0 1 2 0 0 0 0 2 1 0 -0 1 0 0 1 0 0 1 0 0 2 2 1 1 0 1 0 0 2 2 2 -0 1 1 1 2 0 0 1 0 0 1 2 0 1 0 0 1 1 2 2 2 -0 0 0 1 1 0 0 1 0 2 0 2 0 1 0 0 2 0 2 1 0 -0 0 0 1 0 0 0 2 0 0 1 1 1 2 0 0 0 0 1 1 1 -0 1 1 0 0 0 0 1 0 0 0 1 1 1 1 1 0 1 0 1 2 -1 0 1 1 0 0 0 0 0 0 0 2 1 0 1 0 0 0 2 2 2 -0 0 1 0 1 0 0 1 0 0 1 0 1 0 2 0 0 0 2 1 0 -0 1 1 0 2 0 0 1 0 0 2 1 2 0 0 0 2 0 2 1 0 -1 0 1 1 1 0 0 1 0 2 1 1 0 0 1 0 1 0 1 0 2 -0 0 0 2 0 0 1 1 0 0 1 1 2 1 0 1 0 2 0 1 2 -0 0 0 1 0 0 1 0 0 1 1 1 1 0 1 0 0 0 1 1 1 -0 1 0 1 1 0 2 1 0 0 0 1 0 1 0 1 1 1 0 1 2 -0 0 0 2 0 0 1 0 1 0 0 1 2 0 0 0 1 1 2 1 0 -1 0 1 1 1 0 0 1 0 0 0 0 2 1 0 0 1 0 1 1 1 -0 0 0 1 2 0 0 2 0 1 1 1 1 0 1 0 0 0 1 2 0 -1 0 0 1 1 0 1 1 0 0 1 0 0 1 2 1 0 0 1 1 1 -0 0 1 1 1 0 0 1 0 0 0 1 1 1 1 0 1 0 2 1 0 -0 0 0 0 1 0 1 1 0 1 0 2 1 2 1 0 1 1 1 0 2 -1 0 0 0 1 0 0 1 0 1 1 1 2 1 2 0 0 0 1 0 2 -0 1 0 0 2 0 1 1 0 0 0 1 0 1 1 1 1 0 2 1 0 -0 1 0 1 2 0 0 2 0 0 0 2 1 0 1 0 2 1 1 1 1 -0 0 0 1 0 0 0 1 0 1 0 1 1 1 2 1 0 0 1 0 2 -0 1 1 1 1 0 0 0 0 0 1 0 2 0 1 0 1 0 1 1 1 -0 0 0 1 0 0 0 1 0 2 0 1 1 0 1 0 1 0 1 1 1 -1 0 0 1 0 0 0 0 0 1 0 0 1 0 1 1 2 0 0 1 2 -0 2 0 1 2 0 0 1 0 0 1 2 2 1 1 0 1 1 1 0 2 -0 1 0 2 1 0 0 0 0 0 1 1 2 0 1 1 0 0 1 1 1 -0 1 0 1 0 0 1 1 0 0 1 2 1 0 0 0 0 0 1 0 2 -0 0 0 1 0 0 0 0 1 1 0 1 1 1 1 1 2 1 0 1 2 -1 1 1 1 0 0 0 1 0 0 0 1 1 1 1 0 0 0 1 1 1 -0 0 0 0 1 0 1 1 0 1 0 1 1 1 0 0 1 1 2 1 0 -0 1 0 1 2 0 0 1 0 0 0 1 0 1 0 0 0 0 0 1 2 -0 1 0 1 0 0 0 1 0 0 0 1 2 0 0 0 1 0 1 1 1 -1 0 1 2 0 0 0 1 1 0 2 0 1 1 0 0 0 0 1 0 2 -1 1 0 0 1 0 0 2 0 0 1 1 2 0 0 0 1 0 1 1 1 -0 0 0 1 1 0 1 1 0 1 1 2 1 1 2 1 1 0 1 1 1 -0 2 0 1 0 0 0 1 0 0 0 2 0 2 0 1 0 1 2 2 2 -1 1 0 1 2 1 1 1 0 0 1 0 1 0 1 0 1 1 1 1 1 -1 1 1 1 1 1 2 0 0 0 1 0 2 2 0 1 1 0 0 1 2 -1 1 1 0 1 0 1 0 0 0 0 1 0 1 1 0 2 1 0 2 1 -0 1 1 0 0 1 1 1 0 1 0 1 1 1 1 0 1 0 1 1 1 -0 1 1 0 1 0 1 0 0 2 0 0 0 0 2 1 1 1 2 2 2 -0 1 0 1 0 0 0 0 0 1 1 0 1 0 1 1 1 0 1 2 0 -1 1 0 2 0 0 0 1 1 1 2 2 1 1 1 0 0 0 1 1 1 -0 0 0 2 1 0 0 0 0 2 1 1 0 1 1 0 0 1 1 0 2 -0 0 0 1 1 0 0 1 1 1 1 2 1 2 0 0 1 0 1 1 1 -0 1 0 2 2 0 1 0 0 0 1 1 1 1 0 0 0 1 0 1 2 -1 1 0 1 2 1 1 1 0 0 0 2 2 1 0 0 1 0 0 2 1 -0 1 0 0 0 0 1 2 0 0 0 0 2 2 1 2 0 0 0 1 2 -0 0 0 2 1 0 1 1 1 2 0 1 1 2 1 0 1 1 2 1 0 -0 0 0 1 1 0 1 1 0 1 1 1 1 1 0 1 0 1 1 0 2 -1 0 0 1 1 0 0 1 0 0 0 0 0 1 1 0 1 2 2 0 1 -0 0 0 0 2 0 0 2 1 1 2 0 1 1 1 0 0 0 0 1 2 -0 0 0 1 2 0 0 2 0 2 1 1 1 1 0 0 2 0 1 1 1 -1 0 0 1 0 0 0 1 0 0 1 1 0 1 2 0 0 0 2 0 1 -0 1 0 0 0 0 0 1 0 1 0 0 2 1 1 1 0 0 1 0 2 -0 0 0 2 0 1 1 1 0 0 0 1 1 1 1 0 1 1 2 0 1 -0 1 0 0 1 0 1 1 0 1 0 1 1 0 0 1 0 1 1 1 1 -1 0 1 1 2 0 1 0 0 1 1 1 1 0 2 0 0 0 1 1 1 -0 0 1 1 0 0 0 1 0 0 0 1 0 2 2 0 1 0 1 0 2 -0 0 0 1 1 0 1 0 0 1 1 0 0 2 0 1 2 0 1 1 1 -0 0 0 1 0 0 0 2 0 1 0 1 1 1 0 0 1 0 1 2 0 -0 0 0 2 2 0 0 2 0 0 0 1 2 0 1 0 1 0 2 1 0 -0 0 0 2 0 1 2 2 0 0 0 2 1 0 0 2 2 1 1 1 1 -0 0 1 1 1 1 0 1 0 2 0 0 0 0 0 1 1 0 1 1 1 -0 1 0 0 1 0 1 2 0 0 0 2 1 2 0 0 1 0 0 1 2 -0 1 1 2 1 0 0 0 0 0 0 1 0 1 1 1 1 0 2 2 2 -1 1 0 0 0 0 0 1 0 1 0 2 1 0 1 1 1 0 1 0 2 -0 0 0 0 1 0 0 2 0 1 0 1 1 1 2 1 1 0 1 1 1 -0 0 1 1 1 0 0 1 0 0 0 1 0 1 1 0 0 0 1 1 1 -0 0 0 2 1 0 1 1 0 1 1 2 1 1 1 1 2 1 1 1 1 -0 0 0 0 1 0 1 1 0 1 1 0 0 0 2 1 1 0 2 1 0 -1 0 1 2 0 1 0 0 0 0 0 1 1 1 2 1 0 0 1 2 0 -0 1 0 0 1 0 0 0 0 0 1 1 1 0 1 0 1 0 2 2 2 -0 0 0 2 2 1 1 2 0 0 1 1 2 0 0 0 0 0 1 0 2 -0 1 0 1 1 1 1 0 0 1 0 1 1 2 2 1 2 2 0 1 2 -0 0 1 1 2 1 0 0 0 0 2 1 0 1 1 0 0 1 1 1 1 -0 0 0 1 0 0 0 0 0 0 1 0 1 0 2 0 1 0 1 1 1 -0 0 0 2 0 0 0 1 1 1 1 1 1 0 0 0 0 0 1 1 1 -0 0 0 0 1 0 0 0 0 1 0 1 1 1 1 1 0 0 0 2 1 -0 1 1 0 1 0 0 0 0 1 1 1 1 1 0 0 0 1 1 1 1 -1 0 0 1 2 0 1 1 0 1 1 0 2 0 0 1 0 1 2 0 1 -1 0 0 2 1 0 0 2 0 0 1 1 0 2 2 0 0 1 2 2 2 -1 0 0 2 0 0 0 1 0 1 1 0 1 2 1 0 0 0 1 0 2 -0 0 0 2 0 0 0 1 0 1 2 1 1 0 1 0 0 0 1 0 2 -0 0 0 0 0 0 1 2 1 1 1 1 0 1 0 0 1 0 1 1 1 -0 0 0 0 2 0 1 0 0 0 1 1 0 0 1 0 0 0 2 2 2 -0 0 0 1 0 0 0 1 0 1 1 1 0 1 1 0 1 0 0 1 2 -1 1 0 0 2 0 1 1 0 0 2 0 1 1 1 0 0 0 1 1 1 -0 0 0 0 1 0 1 1 0 1 0 1 1 0 1 0 2 0 0 0 0 -0 0 0 2 1 0 0 1 0 0 0 1 0 1 1 1 0 0 1 1 1 -0 0 0 0 1 0 1 0 0 1 1 1 1 1 0 1 1 1 0 2 1 -0 1 1 2 0 1 1 1 1 1 1 1 0 1 0 1 1 0 0 1 2 -0 1 0 0 1 1 1 2 1 1 1 1 1 0 1 0 1 0 0 0 0 -0 0 0 2 1 0 0 1 0 1 1 0 0 2 0 0 2 0 1 0 2 -0 0 1 1 2 0 1 1 0 1 1 0 0 1 0 1 1 0 2 1 0 -1 0 0 0 0 1 0 2 0 0 1 1 1 0 1 0 1 1 0 0 0 -0 1 0 1 2 0 0 2 0 2 0 1 0 1 1 0 0 1 1 2 0 -0 0 0 1 1 0 0 1 1 1 0 1 1 2 2 0 2 0 0 1 2 -0 1 0 1 1 1 0 0 0 1 2 1 2 1 0 0 2 1 2 1 0 -1 0 0 1 1 0 1 2 1 0 0 1 0 1 1 0 1 0 1 2 0 -1 1 1 2 2 0 0 1 0 1 1 1 1 0 0 1 0 1 1 1 1 -1 0 0 1 0 0 1 2 0 1 1 1 0 0 1 1 1 0 1 1 1 -2 0 0 2 0 0 0 2 0 0 1 1 0 1 2 1 0 0 1 1 1 -2 1 0 1 1 0 1 2 0 0 1 1 1 1 0 0 1 0 1 2 0 -0 1 0 1 0 1 1 1 0 2 1 2 1 2 2 0 1 1 2 1 0 -0 1 1 2 2 0 0 2 0 2 1 1 0 0 0 0 1 1 1 2 0 -0 1 1 2 0 0 1 2 0 0 0 1 1 1 2 1 0 1 1 1 1 -0 0 0 1 2 0 0 1 0 1 0 2 2 0 0 1 0 0 1 2 0 -0 0 0 0 1 0 2 2 0 0 1 2 1 1 1 1 0 0 1 1 1 -0 1 0 0 0 0 1 0 1 1 0 0 2 1 1 0 0 0 0 0 0 -0 0 0 0 2 0 0 2 0 0 0 2 1 0 2 0 0 1 0 1 2 -1 0 0 1 1 0 0 0 0 2 2 1 0 2 1 1 0 0 1 1 1 -0 1 0 1 0 0 0 0 1 0 0 1 0 1 1 1 0 1 1 0 2 -0 1 0 0 2 0 1 1 0 0 0 1 0 1 0 1 1 0 1 1 1 -0 2 0 0 1 0 0 2 0 0 0 1 0 1 2 0 0 0 2 1 0 -1 1 0 2 1 0 1 2 0 0 1 0 1 2 2 1 1 0 2 0 1 -0 0 0 0 0 0 0 1 0 1 1 1 1 1 0 0 1 1 0 2 1 -0 0 0 2 0 0 0 2 0 0 0 0 2 1 1 0 1 0 1 2 0 -0 0 0 1 1 0 0 0 0 1 0 2 0 0 0 0 1 1 2 0 1 -0 0 0 0 1 0 0 1 0 0 0 1 1 2 0 0 0 1 2 1 0 -1 1 0 2 2 0 0 1 0 0 0 1 1 1 1 0 0 0 1 1 1 -0 1 0 2 0 0 0 1 0 1 1 2 1 0 1 0 1 1 1 2 0 -0 0 0 0 2 0 2 1 0 0 1 2 1 1 1 0 0 1 1 2 0 -0 0 0 0 1 0 0 2 0 0 1 0 0 1 2 0 2 0 1 2 0 -0 1 0 1 1 0 1 1 0 1 0 2 0 1 0 0 1 1 1 0 2 -0 1 0 1 1 0 0 2 1 1 0 1 2 2 1 1 1 1 1 0 2 -0 1 0 0 2 0 0 1 0 0 1 1 0 2 1 1 0 0 1 1 1 -0 0 0 2 1 0 0 1 0 0 2 1 0 0 1 0 2 0 2 2 2 -1 1 0 1 1 0 0 1 0 0 1 0 0 1 1 0 1 0 1 1 1 -0 0 0 0 0 0 1 0 1 1 2 1 1 0 0 1 1 1 1 1 1 -1 0 0 1 0 0 0 0 0 0 1 2 1 1 1 0 1 0 1 2 0 -0 0 1 2 0 0 0 1 0 1 2 1 0 0 2 0 1 0 0 0 0 -0 1 0 2 2 0 0 1 0 0 1 1 0 1 1 0 0 0 1 0 2 -0 0 0 2 2 0 0 1 0 0 0 1 1 1 0 1 0 1 0 1 2 -0 0 0 1 0 0 0 1 1 0 1 2 2 0 0 0 2 0 1 0 2 -0 2 0 1 1 0 0 1 0 0 1 1 2 1 0 0 0 0 1 1 1 -0 1 0 2 0 0 0 1 1 0 1 1 1 1 1 2 0 0 1 1 1 -1 1 0 1 2 0 1 1 1 0 1 2 1 1 1 0 2 1 2 1 0 -0 1 1 0 0 0 0 1 0 0 1 2 0 0 0 0 1 0 1 1 1 -0 1 0 2 1 0 0 1 0 0 0 1 0 1 1 0 1 2 2 1 0 -0 0 0 0 1 0 0 1 0 0 1 1 1 1 1 1 1 0 2 1 0 -0 0 1 0 2 0 0 1 0 0 0 1 1 1 0 0 1 0 1 1 1 -0 0 0 1 1 0 0 1 0 1 2 2 2 1 1 0 1 0 0 1 2 -1 0 0 1 0 0 1 1 0 1 1 0 2 2 2 1 0 0 1 1 1 -0 0 0 1 0 0 0 2 0 0 0 1 1 1 2 0 1 1 0 1 2 -0 1 0 1 1 0 0 1 0 1 1 0 0 2 1 0 1 0 0 0 0 -0 1 0 1 1 0 0 1 0 0 0 2 0 1 0 1 1 0 1 0 2 -0 0 0 1 1 0 0 2 0 1 0 1 0 2 0 0 0 1 0 1 2 -0 0 1 1 1 0 0 0 0 0 1 1 1 1 1 0 1 0 2 0 1 -0 0 0 0 1 0 0 1 0 2 1 1 0 1 0 0 0 0 0 1 2 -0 1 0 2 1 0 1 2 0 0 1 0 1 1 1 1 1 0 0 1 2 -0 0 0 1 0 0 0 2 0 0 1 0 1 1 2 0 0 1 0 1 2 -1 1 0 1 1 0 0 2 0 2 1 1 2 2 1 1 1 0 1 0 2 -0 0 0 2 1 0 0 2 0 0 1 1 0 1 2 1 1 0 1 2 0 -0 1 0 2 1 1 1 0 0 0 1 0 0 0 2 0 1 0 1 2 0 -0 0 0 1 1 0 0 0 0 0 1 0 2 2 0 0 1 0 0 2 1 -1 0 0 1 2 0 0 1 0 1 1 2 0 1 0 0 0 1 2 1 0 -0 1 1 1 0 0 1 0 0 2 0 1 2 0 0 1 0 1 0 1 2 -0 1 0 1 0 0 0 2 0 0 1 2 1 1 1 0 0 1 2 1 0 -0 2 0 0 0 1 0 2 0 1 2 2 0 0 0 0 1 0 2 1 0 -0 0 0 1 1 0 1 1 0 0 0 0 1 1 1 0 0 0 2 1 0 -0 0 1 0 1 0 0 2 0 0 1 1 1 1 1 0 2 0 0 1 2 -2 0 1 1 1 0 0 1 0 2 0 1 1 1 1 0 2 1 1 1 1 -1 0 0 2 1 0 1 0 0 1 2 1 1 0 1 0 2 0 0 1 2 -0 0 0 1 0 0 0 2 1 0 0 1 2 1 1 0 0 1 1 2 0 -1 0 0 0 0 1 1 2 0 2 1 0 2 1 1 1 0 0 1 0 2 -0 2 1 1 2 0 0 0 0 0 0 1 1 1 1 0 1 0 2 1 0 -0 0 0 1 2 0 1 2 1 0 1 0 2 0 0 0 2 0 0 2 1 -0 1 0 1 1 0 0 1 0 0 1 0 1 1 0 1 1 0 1 0 2 -0 1 0 1 1 0 0 1 0 0 1 1 0 1 2 1 0 0 1 1 1 -1 0 0 1 1 0 0 1 0 1 2 0 0 0 2 0 0 1 1 1 1 -0 0 0 1 1 0 0 2 0 2 1 1 1 1 0 0 0 0 2 0 1 -0 1 0 0 1 0 1 0 1 0 0 1 1 1 1 0 0 0 1 2 0 -0 0 0 1 2 0 0 0 0 0 0 0 1 2 0 0 1 1 2 1 0 -0 0 1 1 0 0 0 1 0 0 1 1 1 2 0 0 0 2 0 1 2 -0 0 0 0 1 0 0 0 0 0 1 2 1 1 0 1 0 1 1 2 0 -0 0 0 1 2 1 1 2 0 2 1 1 1 0 2 1 1 0 1 1 1 -1 0 0 2 1 0 0 1 0 1 1 0 0 2 0 0 0 0 0 1 2 -0 1 0 2 1 0 0 1 0 1 1 2 1 1 1 0 0 1 1 0 2 -0 1 0 0 1 0 0 0 0 0 0 1 0 1 0 0 1 0 1 1 1 -1 0 0 2 0 0 0 1 0 0 1 1 1 1 1 1 0 0 1 1 1 -0 1 0 0 0 1 1 0 0 1 0 0 1 1 0 1 0 0 0 2 1 -0 0 0 1 1 1 1 0 0 2 1 1 1 1 2 0 1 0 0 1 2 -0 1 0 0 1 0 0 1 1 1 0 2 1 1 0 1 1 0 2 0 1 -0 0 0 2 2 0 0 1 0 0 1 1 1 0 0 0 0 0 2 1 0 -0 0 0 1 2 0 1 1 0 1 2 0 1 0 0 2 1 0 1 0 2 -1 0 1 1 0 0 1 0 0 2 2 1 1 0 1 0 1 0 1 0 2 -1 0 1 0 1 0 0 1 0 0 0 0 2 1 1 0 1 0 1 2 0 -1 0 1 1 1 0 1 0 0 1 1 1 0 1 1 0 0 0 0 1 2 -0 1 0 0 0 0 0 1 0 2 1 1 1 0 1 0 0 0 2 1 0 -0 0 0 1 0 0 0 0 0 1 1 1 1 1 0 1 2 1 0 1 2 -0 0 0 0 2 0 0 2 1 0 0 1 1 1 2 0 1 0 1 0 2 -0 1 0 1 0 0 0 0 0 1 0 2 1 1 0 0 1 0 1 0 2 -0 1 0 2 2 0 1 1 0 1 0 0 0 1 1 0 0 0 1 0 2 -0 1 0 2 0 0 1 0 0 1 0 0 0 2 1 0 0 0 2 2 2 -1 1 0 2 1 0 0 1 0 0 0 2 1 1 0 1 1 0 1 0 2 -1 0 0 0 2 0 1 2 0 0 1 2 2 2 2 0 1 0 2 0 1 -0 0 1 1 0 0 0 1 0 0 1 2 1 0 0 1 1 0 2 0 1 -0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 1 1 0 1 0 2 -1 1 1 1 1 0 0 1 1 0 0 1 0 0 2 0 1 0 1 1 1 -0 0 0 1 1 0 1 1 0 0 0 1 1 1 0 0 1 0 1 1 1 -0 1 0 1 2 0 1 1 0 1 1 0 1 1 1 0 0 0 2 1 0 -0 0 0 0 1 0 1 1 0 0 1 0 0 2 0 0 2 1 2 1 0 -0 0 0 1 2 0 0 1 1 2 0 1 1 2 0 0 2 1 1 1 1 -0 1 0 2 1 1 0 1 0 0 2 1 1 1 0 1 1 1 1 2 0 -0 0 1 1 1 0 0 1 0 1 1 0 0 1 0 0 2 0 1 1 1 -0 0 0 1 0 1 0 1 0 0 1 1 1 1 2 1 0 0 1 2 0 -0 1 0 1 2 0 0 1 0 1 1 1 2 0 1 0 0 0 2 2 2 -1 0 1 1 1 0 0 0 0 2 1 1 1 1 0 0 0 0 1 1 1 -0 0 0 0 1 0 0 2 0 0 0 0 2 1 0 0 0 0 1 1 1 -0 0 1 1 0 0 1 1 0 0 0 0 2 1 1 1 0 2 2 1 0 -0 0 0 2 1 0 0 0 0 1 1 0 1 1 0 0 0 1 2 2 2 -0 0 1 1 1 0 0 1 0 1 2 0 0 0 0 0 0 0 2 2 2 -0 0 0 1 1 0 0 1 0 1 0 1 2 1 1 0 2 0 0 2 1 -0 0 1 2 0 0 0 2 0 2 1 0 0 1 0 0 0 0 1 1 1 -0 0 0 2 0 0 1 2 0 2 2 1 2 0 0 1 1 2 1 2 0 -1 0 0 2 0 1 0 1 0 0 2 0 0 0 2 0 0 1 2 1 0 -0 0 1 0 0 0 0 2 0 0 1 1 1 0 1 0 0 0 2 0 1 -0 1 1 2 0 1 1 2 0 0 1 1 1 1 0 0 0 0 1 2 0 -1 0 0 1 1 0 0 0 0 1 0 2 0 1 1 0 2 1 1 2 0 -1 1 0 0 0 0 1 1 0 1 1 1 0 0 0 0 0 1 2 0 1 -1 0 0 1 1 0 0 0 0 0 0 2 1 2 1 1 0 1 1 0 2 -1 0 1 0 2 1 0 1 0 0 0 2 1 1 1 0 0 0 1 1 1 -0 0 1 1 1 0 0 1 0 0 0 0 0 1 1 0 1 0 0 1 2 -0 0 1 1 1 0 0 1 0 0 0 1 2 1 0 0 0 0 2 1 0 -0 0 1 1 1 0 1 2 2 1 0 2 1 2 1 0 0 0 1 1 1 -1 1 0 1 1 0 0 1 0 2 0 2 1 2 1 0 0 0 1 0 2 -0 1 1 0 1 0 0 1 0 1 0 1 1 2 1 0 1 0 2 0 1 -0 0 0 1 0 0 0 2 0 1 1 0 0 1 1 0 1 0 2 0 1 -0 1 0 2 1 1 0 0 0 1 0 0 1 1 2 1 0 0 1 1 1 -0 0 0 1 1 0 0 1 0 0 1 0 0 1 2 0 0 0 2 0 1 -0 1 1 1 1 0 1 2 0 1 2 2 0 1 0 1 1 0 0 2 1 -0 0 0 0 2 0 0 2 0 1 1 0 0 1 2 0 0 0 0 1 2 -0 1 1 1 1 0 0 1 1 1 0 1 1 1 0 0 1 1 1 1 1 -0 0 2 1 0 0 0 1 0 0 1 1 1 0 2 1 1 0 1 1 1 -0 0 0 1 0 1 0 2 0 0 1 2 1 0 1 0 0 0 1 1 1 -0 0 0 2 1 0 0 1 0 1 1 0 2 1 2 0 1 0 0 0 0 -0 1 1 0 1 0 1 0 0 0 2 1 1 1 1 0 1 1 0 1 2 -0 0 0 1 1 1 0 1 0 0 1 1 0 1 0 0 1 0 1 0 2 -1 0 0 2 1 1 2 1 0 2 0 1 1 2 1 0 0 0 0 1 2 -0 1 0 2 0 0 1 0 0 0 0 1 2 0 1 1 1 0 1 1 1 -0 0 0 1 1 0 1 2 0 0 0 1 0 0 1 0 1 0 2 1 0 -1 0 0 2 1 1 0 2 0 0 0 0 2 0 0 0 0 0 2 0 1 -0 0 1 0 0 0 1 1 0 1 1 1 0 0 1 0 0 0 1 1 1 -0 1 0 1 1 0 0 2 0 0 0 0 1 2 0 0 0 1 1 0 2 -1 0 1 1 2 1 0 1 0 2 1 0 1 1 0 0 1 0 1 1 1 -0 0 0 1 0 0 0 1 0 2 1 0 0 0 1 0 0 1 1 2 0 -0 0 1 2 2 0 0 0 0 0 0 1 1 0 1 0 1 0 2 0 1 -0 0 1 2 1 0 0 1 0 2 1 2 0 2 1 0 1 0 1 0 2 -0 0 1 2 1 1 0 1 0 1 0 0 1 1 2 0 1 0 0 1 2 -0 0 0 0 1 0 0 0 1 0 0 1 1 2 0 0 0 0 0 0 0 -0 0 0 1 2 0 0 1 0 2 0 1 1 2 1 0 1 0 2 0 1 -0 1 1 1 2 0 1 0 0 1 1 1 2 1 1 0 0 0 2 1 0 -0 1 1 1 0 0 0 1 0 1 0 0 0 0 1 0 0 0 1 2 0 -0 2 1 0 1 0 1 1 0 0 0 0 0 2 1 0 2 0 1 1 1 -1 0 0 1 1 0 0 0 0 0 0 0 1 0 1 0 1 1 1 2 0 -0 1 0 0 0 0 0 0 0 0 1 1 1 1 2 0 1 0 1 0 2 -0 1 0 2 1 1 1 1 0 0 2 1 1 1 0 0 1 0 2 0 1 -1 0 0 0 1 0 0 2 0 2 0 0 1 1 0 0 2 0 0 1 2 -1 0 1 1 0 1 1 0 0 0 0 0 2 1 1 1 2 1 0 1 2 -0 2 0 0 0 0 0 2 0 1 0 1 1 0 2 0 1 0 0 2 1 -0 0 1 1 0 0 0 0 0 0 0 1 0 1 0 0 1 1 1 1 1 -0 0 0 1 0 0 0 1 1 1 1 2 0 1 1 1 2 0 2 2 2 -0 0 0 1 1 0 1 1 0 1 1 0 2 2 1 0 1 0 1 1 1 -1 0 1 0 0 0 1 2 0 0 1 0 0 1 0 0 0 0 2 1 0 -1 0 0 1 1 0 1 1 1 1 0 1 2 2 1 0 0 0 2 1 0 -0 0 1 1 1 1 0 1 1 2 0 1 1 0 1 0 2 1 0 1 2 -0 1 0 1 0 0 0 1 0 0 0 1 1 2 1 1 1 1 2 0 1 -0 1 0 1 2 0 1 2 0 0 1 2 1 1 1 0 1 0 0 2 1 -0 1 0 1 0 1 0 1 0 1 0 1 1 0 0 1 0 0 1 1 1 -0 0 0 0 1 0 0 1 1 0 0 2 0 0 0 0 1 1 1 1 1 -1 0 0 0 0 0 0 2 0 0 1 0 1 1 0 0 1 0 0 2 1 -0 1 0 1 2 0 0 1 0 0 0 0 0 0 0 0 1 0 2 1 0 -1 1 0 1 0 0 0 1 0 0 0 1 0 1 1 2 1 0 1 2 0 -0 0 0 1 1 0 0 0 0 1 0 1 1 0 0 0 2 1 0 1 2 -0 0 0 1 0 0 1 1 0 0 0 2 2 0 0 0 0 0 0 1 2 -1 0 0 1 2 0 0 2 0 0 1 0 1 1 0 0 1 0 1 1 1 -0 0 0 0 0 0 0 1 1 1 2 0 0 1 0 0 0 0 1 2 0 -0 1 0 0 0 0 0 2 0 0 1 1 1 1 0 0 0 0 2 1 0 -0 1 0 1 1 0 1 2 0 0 0 1 1 2 0 0 1 0 2 1 0 -0 1 0 1 0 1 1 2 0 1 1 2 0 0 2 1 1 0 1 0 2 -0 0 0 1 1 0 0 1 0 1 0 0 0 0 0 0 1 0 1 2 0 -1 1 1 0 2 0 1 0 0 2 1 0 1 2 1 0 1 1 0 1 2 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 0 1 1 1 -0 0 0 1 1 0 0 1 1 2 1 1 0 1 2 0 1 1 1 1 1 -0 0 0 2 1 0 0 1 0 1 0 0 1 1 2 1 2 0 1 1 1 -0 0 0 2 1 1 1 2 0 1 1 1 2 1 1 0 1 0 1 1 1 -1 0 0 0 1 1 0 1 0 0 0 1 1 1 1 0 0 0 1 1 1 -0 1 1 0 1 0 0 0 0 1 1 1 1 0 0 0 0 0 1 2 0 -0 2 0 0 1 0 0 1 0 1 0 0 1 1 0 1 0 1 2 1 0 -0 0 1 1 0 0 1 0 1 1 0 1 1 0 0 0 0 1 1 1 1 -1 0 1 2 1 0 0 1 0 0 2 0 2 0 2 0 2 1 1 0 2 -0 1 0 1 0 0 0 1 0 0 2 2 1 2 1 0 0 1 1 2 0 -1 1 1 1 1 1 1 2 0 1 2 1 1 1 1 1 0 0 1 2 0 -2 0 0 1 2 0 0 2 0 0 0 1 0 1 0 0 1 0 2 0 1 -0 0 1 1 2 0 0 1 0 2 0 1 0 1 1 0 0 0 1 1 1 -0 0 0 1 1 0 0 0 0 1 2 1 0 1 1 1 2 1 2 1 0 -0 0 0 1 2 0 0 2 0 1 2 1 1 2 2 1 1 0 0 1 2 -0 1 0 1 1 0 0 1 0 2 0 2 1 1 1 0 1 1 1 0 2 -0 0 0 0 2 0 0 1 0 0 1 2 1 1 2 0 2 1 2 0 1 -0 0 1 1 0 0 0 1 0 2 0 1 1 1 0 2 1 1 0 1 2 -0 0 0 0 0 1 1 1 0 1 1 0 2 1 2 0 1 0 1 0 2 -0 0 0 0 2 0 0 0 0 0 1 1 1 1 0 1 1 0 1 1 1 -0 0 0 1 0 0 1 1 0 1 1 1 2 0 1 1 2 0 1 0 2 -2 1 0 0 0 0 2 2 1 0 1 2 0 1 1 0 1 0 0 2 1 -0 1 0 0 1 0 0 1 0 1 2 0 0 2 1 0 1 0 0 0 0 -0 0 1 1 1 0 0 1 0 0 0 1 0 2 0 1 1 2 2 1 0 -0 1 1 1 1 0 1 0 0 0 1 1 0 1 0 1 1 0 2 2 2 -0 1 0 0 2 0 0 1 0 0 1 0 1 2 1 0 1 0 1 1 1 -0 1 0 1 0 0 0 2 0 0 2 2 0 2 0 0 1 1 2 1 0 -0 0 0 1 2 0 0 1 0 0 0 1 0 0 1 0 0 0 1 1 1 -0 1 1 1 2 0 0 1 0 1 0 1 0 2 1 0 2 0 2 1 0 -0 0 0 2 1 0 0 1 0 0 0 1 1 1 1 0 0 1 1 0 2 -0 1 0 1 1 0 0 1 0 1 1 0 2 2 1 0 1 0 1 0 2 -0 0 0 1 2 0 1 2 0 1 0 1 1 1 1 0 1 1 0 1 2 -1 1 0 1 0 0 1 1 0 1 0 0 1 1 1 1 1 0 1 1 1 -0 0 1 1 1 1 0 0 1 0 1 1 1 0 1 0 0 0 2 1 0 -0 0 0 1 1 0 1 2 0 1 1 0 0 2 0 0 1 1 1 1 1 -0 1 0 1 1 0 0 1 0 1 1 2 0 0 1 0 1 1 2 1 0 -0 1 0 1 2 1 1 2 0 1 0 1 2 2 1 1 0 1 1 1 1 -0 0 0 1 2 0 0 1 0 0 1 2 1 0 0 0 0 1 2 1 0 -0 1 0 0 0 0 1 1 0 1 0 2 0 0 0 0 1 0 1 1 1 -0 0 0 1 0 0 0 0 0 1 1 0 0 2 0 0 0 0 2 0 1 -0 1 0 1 0 0 1 1 0 1 1 0 0 1 1 0 1 0 0 1 2 -0 0 0 0 1 0 0 1 0 2 1 1 0 0 2 0 0 0 1 1 1 -0 1 1 1 1 0 0 2 0 1 0 0 2 2 1 0 0 0 1 2 0 -1 0 0 1 2 0 0 1 0 0 1 0 1 1 2 0 0 0 0 1 2 -0 0 0 1 0 0 1 1 1 1 1 1 1 1 2 0 0 0 1 1 1 -0 1 1 0 1 0 0 2 0 0 1 1 2 0 1 0 1 0 2 2 2 -1 1 0 1 1 0 0 0 0 2 1 0 1 1 1 0 1 1 2 1 0 -0 0 0 0 0 0 1 1 0 1 0 2 1 2 0 0 1 0 1 0 2 -1 0 0 0 1 0 1 1 0 0 2 0 1 0 1 0 1 0 0 2 1 -0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 -0 0 0 0 1 0 1 2 1 0 0 1 1 1 0 0 2 0 1 1 1 -0 0 0 2 1 0 0 1 0 1 0 1 1 1 2 0 0 1 0 1 2 -1 1 0 1 1 0 0 1 0 0 0 1 0 2 1 0 2 1 0 1 2 -0 2 1 1 1 0 0 1 0 0 0 2 2 1 0 0 1 1 2 0 1 -0 1 0 0 2 1 0 1 0 1 1 2 1 1 0 1 1 1 0 1 2 -0 0 0 2 1 1 0 0 0 1 1 1 0 0 1 0 0 2 2 2 2 -0 0 0 2 1 0 0 1 0 0 2 1 0 1 1 1 1 0 0 0 0 -1 0 0 1 0 0 0 1 0 1 1 0 1 2 1 1 0 1 1 1 1 -0 0 0 2 1 0 0 1 0 1 0 1 0 1 1 0 0 0 0 1 2 -0 0 0 1 0 0 0 0 0 1 1 0 1 1 1 2 0 1 1 1 1 -0 0 0 1 1 0 1 1 0 1 0 1 0 0 0 1 1 0 2 0 1 -1 0 0 2 1 0 0 0 1 1 1 0 1 0 0 0 0 0 0 1 2 -0 1 0 1 0 0 0 1 0 0 1 1 2 1 1 1 1 1 2 1 0 -0 0 0 2 0 1 0 2 0 1 0 0 1 1 1 0 0 1 1 1 1 -0 0 0 1 1 0 0 0 0 1 2 1 1 1 1 0 0 0 2 1 0 -0 1 0 0 0 1 0 1 0 0 0 1 1 2 1 1 1 0 0 2 1 -0 0 0 1 1 0 1 1 0 1 2 0 1 0 1 0 0 1 1 0 2 -0 0 0 1 1 0 0 0 0 1 0 0 1 1 2 0 1 1 1 2 0 -1 0 0 0 1 0 0 0 0 0 0 1 0 1 1 0 1 0 1 1 1 -0 1 0 0 1 0 0 1 0 1 0 1 1 0 2 0 0 0 2 1 0 -0 0 1 0 0 0 0 1 0 1 2 1 2 2 1 1 2 0 0 2 1 -1 1 0 1 1 0 1 1 0 1 1 1 0 0 1 0 1 0 2 0 1 -0 2 0 1 1 0 0 0 1 0 1 1 1 2 0 1 1 1 1 0 2 -1 1 0 1 0 0 1 1 0 1 1 0 1 1 1 0 0 0 0 1 2 -1 0 2 1 1 0 0 1 0 0 1 0 1 1 0 0 0 0 1 2 0 -0 1 0 1 0 0 1 1 0 2 1 0 1 1 1 1 2 0 1 2 0 -0 0 0 1 1 0 0 1 0 0 0 1 2 0 1 0 0 0 1 2 0 -0 0 0 0 2 1 0 2 1 1 1 1 1 0 1 1 0 0 1 1 1 -0 0 0 0 2 0 1 1 0 0 0 1 2 1 1 0 2 1 0 1 2 -0 0 0 1 0 0 0 1 1 1 0 1 2 1 0 0 1 0 2 0 1 -0 1 0 1 2 0 0 2 0 1 2 1 0 1 2 0 0 0 2 1 0 -0 0 0 0 2 0 0 1 0 0 1 1 0 2 2 0 0 1 0 0 0 -1 2 0 2 0 0 1 2 1 0 1 2 0 1 1 0 1 1 1 2 0 -0 0 0 1 0 0 0 1 0 1 2 0 0 1 1 0 0 1 0 2 1 -0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 2 0 0 2 1 -0 0 0 2 0 0 0 2 0 1 2 1 0 1 1 1 1 1 1 1 1 -0 0 0 1 0 0 0 2 1 1 0 0 0 0 2 0 0 1 2 1 0 -1 0 0 2 1 0 0 1 0 0 1 2 1 0 0 1 0 0 1 1 1 -0 1 0 0 1 0 0 1 1 1 0 0 0 1 1 2 1 0 1 1 1 -0 0 0 1 1 0 0 1 0 1 0 1 1 0 1 1 1 0 0 0 0 -0 0 0 2 1 0 1 1 0 2 0 1 1 2 0 0 0 0 1 1 1 -0 1 0 0 1 0 1 1 0 0 1 2 1 2 1 0 0 0 2 1 0 -0 0 0 1 1 0 1 0 0 0 0 1 0 0 1 0 1 0 0 0 0 -0 0 0 1 0 0 1 1 0 1 1 1 1 1 1 2 0 0 1 1 1 -0 0 0 2 1 0 0 2 0 0 0 1 0 1 1 0 0 1 2 1 0 -1 0 0 1 0 0 0 1 0 1 0 1 1 0 1 0 2 0 0 1 2 -1 0 0 1 1 0 1 2 0 0 0 1 1 1 0 0 1 0 1 2 0 -0 0 0 1 1 1 1 2 1 1 2 2 1 1 2 0 0 0 1 1 1 -0 0 0 1 2 0 1 1 0 1 0 1 2 2 0 0 1 1 2 0 1 -1 0 1 0 1 0 0 1 1 1 0 2 0 1 1 0 1 0 1 0 2 -1 0 0 1 1 1 0 1 1 1 2 2 1 0 0 1 0 0 2 0 1 -0 1 0 2 0 0 0 2 0 1 1 2 0 1 0 0 0 0 1 2 0 -0 0 0 1 1 0 1 1 0 1 0 0 0 1 1 1 1 2 0 0 0 -0 1 0 1 2 0 0 0 0 1 0 1 1 1 2 2 0 0 1 1 1 -0 0 0 1 1 0 0 0 0 1 1 2 1 1 0 1 1 0 2 1 0 -1 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 1 1 1 -0 0 1 1 1 0 0 1 0 0 1 0 1 0 1 0 1 0 1 1 1 -0 0 0 2 0 0 0 1 0 1 1 1 1 1 1 0 0 0 2 1 0 -0 0 0 0 0 0 0 1 0 0 1 1 0 2 1 1 0 0 1 1 1 -0 0 1 2 1 0 1 2 0 0 0 0 0 2 1 0 1 0 1 2 0 -0 0 0 1 0 0 0 1 0 0 0 1 0 1 1 0 1 0 2 1 0 -0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 1 -0 1 0 1 1 0 0 1 0 1 0 2 0 2 1 1 1 0 0 2 1 -0 0 0 1 0 0 0 0 0 1 0 0 0 2 0 0 1 0 0 2 1 -1 0 0 2 1 0 1 1 0 1 2 1 1 0 1 0 0 1 2 1 0 -0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 2 0 0 1 2 -0 0 1 1 2 0 0 2 0 0 0 0 0 2 1 0 0 0 2 1 0 -0 0 0 0 1 0 0 0 0 0 0 1 1 1 0 0 2 0 0 0 0 -0 1 0 0 0 0 0 0 0 0 1 1 0 1 1 0 1 0 1 1 1 -0 0 0 0 1 0 0 1 0 1 1 0 0 1 2 0 0 0 1 1 1 -0 1 1 0 0 0 0 1 1 0 0 2 0 1 0 0 0 0 2 0 1 -0 0 0 2 0 1 1 1 0 1 1 2 0 1 1 0 0 0 1 0 2 -0 0 0 1 1 0 1 0 0 1 0 2 0 2 1 1 1 1 1 2 0 -0 1 0 0 1 0 1 1 0 0 2 2 0 0 1 0 1 0 0 2 1 -1 0 1 0 0 0 1 2 1 1 0 1 1 1 0 0 0 1 2 0 1 -0 0 1 1 0 0 0 0 0 2 0 0 0 0 1 0 0 1 2 2 2 -0 0 1 2 2 0 1 1 0 1 0 0 2 0 2 1 0 1 0 1 2 -0 1 0 1 1 0 0 1 0 0 0 1 1 1 1 0 1 0 1 1 1 -0 0 1 1 2 0 0 1 0 0 1 2 0 1 1 0 1 0 0 0 0 -1 1 0 1 2 0 0 1 0 1 0 2 0 0 0 0 1 1 1 2 0 -0 0 0 2 0 0 0 1 1 0 1 2 0 2 1 0 1 0 2 0 1 -0 0 0 0 1 0 0 1 0 1 1 1 2 0 1 2 0 0 1 0 2 -1 0 0 0 1 0 1 1 0 1 2 1 1 1 0 0 0 0 1 1 1 -1 1 0 1 0 0 1 1 0 1 1 2 1 1 1 1 0 0 1 1 1 -0 0 0 1 0 0 0 1 1 0 1 1 1 1 0 1 0 0 1 0 2 -0 0 0 1 1 0 0 2 0 1 0 1 1 0 1 1 1 1 0 2 1 -1 1 0 0 0 0 0 0 1 1 1 1 2 0 1 0 1 0 1 0 2 -0 0 0 1 1 0 1 1 1 1 0 0 1 1 1 0 1 1 2 1 0 -0 1 0 1 0 1 0 0 0 1 0 0 0 0 0 0 1 0 2 0 1 -1 0 1 1 0 0 1 1 0 1 1 2 1 0 0 0 2 0 2 0 1 -0 1 1 1 1 0 1 2 0 0 0 1 1 1 0 0 0 0 1 2 0 -0 1 0 1 2 0 0 0 0 1 0 2 1 0 1 1 1 0 0 0 0 -0 2 0 1 2 1 0 1 0 1 0 0 2 0 0 1 1 1 0 2 1 -1 0 0 0 1 0 0 0 0 1 1 0 1 1 2 0 0 0 0 1 2 -0 1 0 1 1 0 0 2 0 0 1 2 1 1 1 0 2 0 0 2 1 -1 0 0 0 1 0 0 2 0 1 1 0 2 0 1 0 1 1 0 2 1 -0 1 0 0 1 0 1 2 0 0 1 0 0 1 2 0 1 1 2 1 0 -0 0 0 1 2 0 1 2 0 0 2 1 0 0 1 1 2 0 2 1 0 -0 0 0 0 2 0 0 1 0 0 1 2 1 1 0 0 0 0 2 1 0 -0 1 0 1 2 1 0 0 0 1 1 1 1 1 1 0 1 0 1 1 1 -0 1 0 0 1 0 1 2 0 0 0 1 1 1 1 0 2 0 1 1 1 -0 1 1 1 1 0 0 1 0 0 2 0 1 0 0 0 0 0 0 2 1 -1 0 1 0 1 0 1 2 0 0 0 1 2 1 1 1 0 0 1 1 1 -0 0 0 1 1 0 0 1 0 0 0 1 1 0 0 0 0 0 0 1 2 -0 1 0 0 0 0 1 1 1 1 1 1 0 0 1 1 1 1 1 1 1 -0 0 0 1 1 0 0 0 0 1 2 0 0 1 0 0 0 0 1 2 0 -0 1 0 0 1 0 1 1 0 0 0 1 0 0 2 0 0 0 2 0 1 -0 1 1 1 1 1 0 2 0 0 0 0 1 1 1 1 1 0 1 2 0 -0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 1 0 0 2 1 0 -0 1 0 1 0 0 0 0 0 0 1 1 1 1 1 0 0 1 1 2 0 -0 0 1 2 1 0 0 0 0 0 1 1 1 1 1 1 0 0 1 1 1 -1 0 1 1 2 0 1 2 0 1 1 1 1 0 0 0 0 0 1 2 0 -0 1 0 1 1 0 0 1 0 2 0 1 1 0 1 1 2 0 2 2 2 -0 1 1 1 2 0 1 1 0 0 0 1 1 0 1 0 0 0 1 1 1 -0 1 0 0 0 0 0 2 1 0 1 0 0 1 0 0 2 0 2 2 2 -0 1 0 1 2 2 0 1 0 1 1 1 1 1 0 1 0 0 2 0 1 -0 0 0 1 0 0 1 0 0 1 1 1 0 1 0 0 1 1 1 1 1 -0 1 1 0 0 1 1 1 1 0 0 1 1 2 1 0 0 0 1 0 2 -0 0 0 2 1 0 2 1 0 2 0 2 1 0 0 0 0 0 1 1 1 -0 0 0 0 0 0 1 2 0 0 0 2 1 1 1 0 1 0 2 2 2 -0 0 0 0 2 0 1 1 0 1 0 2 2 0 1 0 1 0 0 0 0 -0 0 0 1 2 0 0 1 0 1 1 1 1 2 1 0 1 1 1 1 1 -0 1 0 2 1 0 1 2 0 0 0 2 1 2 0 0 1 0 0 1 2 -1 0 0 1 1 0 1 1 0 0 2 1 1 1 2 0 0 0 2 1 0 -0 0 0 0 1 0 1 0 0 0 0 0 1 1 2 1 1 0 1 2 0 -0 1 1 0 2 0 1 1 0 2 0 1 2 2 1 0 0 0 0 2 1 -0 1 1 1 1 1 0 1 0 0 1 1 2 1 0 0 1 0 0 1 2 -1 0 0 1 1 0 0 2 0 1 1 0 2 0 2 0 0 0 1 0 2 -0 0 0 1 2 0 0 1 0 0 0 2 1 1 0 0 0 1 1 2 0 -0 0 0 0 1 0 1 2 0 0 0 1 0 2 0 0 1 1 2 1 0 -0 0 1 1 1 0 0 1 1 1 0 0 2 2 0 1 0 0 0 1 2 -0 1 0 1 2 0 0 1 0 1 0 2 2 1 0 0 1 1 1 2 0 -0 0 0 0 1 0 0 1 0 1 0 2 1 1 1 1 1 1 1 0 2 -0 0 0 0 0 0 0 1 0 1 1 0 0 1 1 1 0 0 1 1 1 -0 0 0 0 2 1 0 1 0 0 2 0 0 1 1 0 1 0 1 0 2 -0 0 0 1 1 0 0 2 0 1 1 2 1 1 1 0 0 1 1 0 2 -0 0 0 0 2 0 1 2 0 1 0 0 0 1 0 0 1 1 0 2 1 -0 2 0 1 1 0 1 0 0 0 1 0 1 0 2 0 0 0 0 2 1 -1 0 0 2 0 0 1 1 0 0 0 2 1 1 1 0 1 0 2 1 0 -0 1 0 2 1 0 1 2 0 0 0 1 2 1 1 1 2 0 1 2 0 -0 0 0 0 1 1 0 0 0 1 2 1 0 1 1 0 1 1 0 1 2 -0 0 0 1 0 1 2 1 0 1 1 0 0 1 2 0 0 0 1 0 2 -0 1 0 2 1 0 0 0 0 0 0 0 1 1 0 0 0 0 2 0 1 -0 0 0 1 0 0 2 0 0 1 1 1 1 1 0 0 0 0 1 1 1 -0 0 0 1 1 0 0 1 1 1 0 0 0 2 0 0 0 0 1 1 1 -0 0 0 0 0 0 0 0 0 1 1 1 0 1 1 0 1 0 0 2 1 -0 0 0 1 0 0 1 0 0 1 1 2 0 0 2 0 0 1 2 1 0 -0 0 0 2 1 0 0 1 0 2 0 1 2 1 1 0 2 0 1 2 0 -0 2 0 0 1 0 0 2 0 1 1 2 1 0 1 0 0 0 1 1 1 -0 0 0 2 1 1 0 1 0 1 0 0 1 1 1 0 1 0 0 0 0 -0 0 0 1 1 0 0 1 0 2 1 1 0 0 1 0 0 0 0 2 1 -0 0 0 1 1 0 0 2 0 0 2 1 2 2 0 1 0 1 2 0 1 -0 0 0 1 1 0 1 1 0 0 0 0 1 1 0 0 2 1 2 0 1 -0 0 0 1 0 0 1 1 0 0 1 2 1 1 1 0 1 1 1 0 2 -0 1 1 1 1 0 1 1 0 0 2 1 0 2 0 0 0 0 0 1 2 -0 2 1 1 1 0 0 2 0 0 2 2 1 2 1 0 1 0 0 2 1 -0 2 0 0 0 0 1 2 0 1 1 1 0 0 2 0 2 2 2 2 2 -0 1 0 1 2 0 0 1 0 1 0 0 0 1 0 1 2 0 2 1 0 -0 0 0 1 1 0 0 1 0 0 1 1 1 1 1 0 0 0 2 1 0 -0 0 0 1 0 0 0 1 0 0 1 2 0 0 0 1 0 1 1 2 0 -0 2 0 2 1 0 2 0 1 0 1 1 0 1 0 0 1 1 2 1 0 -1 1 0 1 1 0 0 1 0 0 1 1 1 2 2 0 1 0 1 1 1 -0 0 1 0 0 0 1 1 1 0 1 0 2 1 2 0 2 0 0 1 2 -1 0 1 1 1 0 1 1 0 2 0 2 1 0 1 0 0 0 2 1 0 -0 0 1 1 2 0 0 1 0 0 0 1 0 0 1 0 1 2 1 2 0 -0 1 0 0 0 0 1 2 0 0 1 0 0 0 1 0 1 1 2 0 1 -0 1 0 0 0 0 0 1 0 0 2 2 0 0 1 0 0 0 1 2 0 -1 1 0 2 1 0 0 1 0 1 1 1 1 1 1 0 1 1 1 1 1 -0 0 1 1 1 0 0 0 0 1 1 1 2 1 1 0 0 1 1 1 1 -0 0 0 1 2 0 0 1 0 1 1 1 1 0 0 0 2 0 0 1 2 -0 1 1 1 1 0 0 1 0 1 2 2 1 0 1 0 1 0 2 1 0 -0 0 1 1 0 0 1 0 0 0 1 0 0 1 1 0 1 0 1 0 2 -0 1 0 1 1 0 1 1 0 1 2 1 0 1 0 0 1 1 0 2 1 -0 0 0 1 1 0 0 2 0 1 0 1 1 0 1 0 0 0 1 2 0 -0 0 1 1 1 0 0 2 0 0 0 2 1 1 0 0 0 0 1 1 1 -0 0 1 1 1 0 0 1 0 1 0 2 1 1 0 0 1 0 2 2 2 -0 1 1 0 1 0 1 0 0 0 1 1 1 2 0 0 0 0 1 0 2 -0 0 0 1 0 1 1 0 0 1 1 2 0 0 1 0 1 0 2 1 0 -0 1 0 0 1 0 0 1 0 1 1 1 1 2 0 0 0 0 0 1 2 -0 0 0 1 1 0 0 1 0 1 1 0 0 0 1 0 0 1 1 0 2 -1 1 0 0 0 0 0 1 0 1 1 0 2 1 1 0 0 0 2 1 0 -0 1 1 0 1 0 0 1 0 1 1 0 0 0 1 1 2 0 2 1 0 -0 0 1 0 2 0 0 2 0 1 0 1 2 0 2 0 1 0 1 2 0 -0 0 0 1 1 0 0 2 0 1 0 1 0 0 1 0 1 1 2 2 2 -0 0 2 2 2 0 0 1 0 1 1 1 1 1 1 0 2 0 0 0 0 -0 1 0 1 1 0 2 1 1 0 1 1 2 1 0 1 0 1 1 1 1 -1 1 0 1 1 1 0 1 0 0 0 1 1 0 2 0 1 0 1 1 1 -0 0 1 1 1 0 0 1 0 0 1 1 0 1 0 1 1 0 1 0 2 -1 0 0 1 0 1 1 2 1 1 1 0 0 1 1 0 0 1 0 0 0 -0 1 1 1 2 0 1 1 0 0 1 1 1 2 2 0 1 1 0 2 1 -0 0 0 1 2 0 1 2 0 1 0 1 0 2 1 0 0 1 2 1 0 -0 0 0 2 1 1 0 1 0 0 1 0 1 2 1 0 1 0 0 0 0 -0 0 1 1 0 0 0 1 0 2 0 1 0 0 1 0 1 1 0 0 0 -0 0 0 1 1 0 0 1 0 1 1 0 0 1 1 0 0 0 1 2 0 -0 1 0 1 1 0 0 2 0 1 1 1 0 1 1 0 0 0 1 2 0 -0 1 0 1 0 0 0 1 0 0 2 0 0 0 0 1 1 0 0 2 1 -0 0 0 1 1 0 1 0 0 0 0 1 2 0 0 1 1 0 1 2 0 -0 0 0 2 1 0 0 1 0 0 1 1 0 0 2 0 2 1 2 0 1 -0 1 1 1 2 0 0 2 0 2 1 0 1 1 0 0 1 1 0 2 1 -0 0 0 1 0 0 0 1 0 1 2 1 1 1 1 0 1 0 1 1 1 -0 0 0 1 0 1 0 2 0 0 1 1 1 1 1 0 1 1 2 0 1 -0 1 1 1 0 1 1 0 0 0 1 2 0 1 0 0 0 0 1 1 1 -0 2 0 2 0 0 0 0 0 0 0 1 1 0 0 0 0 0 2 1 0 -0 1 1 0 2 0 0 1 0 1 0 2 1 1 0 0 2 0 2 1 0 -0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 1 1 2 0 -0 1 0 0 1 0 0 2 0 1 1 2 1 1 1 0 0 0 2 1 0 -0 0 0 1 1 0 1 2 1 0 0 1 0 0 0 1 0 0 1 1 1 -0 1 0 0 1 0 0 1 0 1 0 1 0 1 1 1 1 0 2 1 0 -0 0 0 2 0 0 1 1 0 1 0 1 1 0 1 0 1 0 1 1 1 -0 1 0 2 1 0 0 1 0 0 0 0 1 0 1 0 1 0 0 1 2 -0 0 0 2 2 0 0 0 0 0 1 1 1 1 1 0 1 0 2 0 1 -0 0 0 1 0 1 0 0 0 1 2 1 0 1 1 0 1 1 1 1 1 -0 1 1 1 1 1 0 2 0 0 2 0 1 0 2 1 2 0 1 1 1 -0 0 0 0 1 1 0 2 0 1 1 2 1 2 0 0 0 0 2 1 0 -0 2 0 2 0 1 1 1 0 0 1 0 0 0 1 0 1 0 1 2 0 -0 0 0 1 0 0 0 1 0 1 0 0 1 1 1 0 1 0 1 1 1 -0 0 0 2 1 0 1 1 0 1 1 1 0 1 1 0 1 2 0 0 0 -0 0 0 1 1 0 0 0 0 0 0 2 1 1 2 0 1 1 2 1 0 -0 1 1 1 0 1 0 1 0 2 0 2 2 1 1 1 0 0 0 1 2 -0 0 1 1 1 0 0 2 0 0 1 0 1 0 2 1 1 0 0 1 2 -1 1 0 1 1 0 0 1 0 1 1 0 1 2 2 0 0 0 1 0 2 -0 1 0 1 2 0 1 1 0 1 1 2 0 2 0 0 1 0 1 2 0 -1 0 0 0 0 1 1 1 0 1 1 1 1 2 1 1 0 1 2 0 1 -0 0 0 0 1 0 0 1 0 1 1 1 1 0 0 1 1 0 0 2 1 -0 0 0 0 1 0 1 1 0 2 2 2 0 2 0 0 0 0 1 1 1 -1 1 1 2 2 0 0 1 1 1 0 1 0 0 1 0 1 0 2 1 0 -0 0 0 0 1 0 0 2 0 1 1 2 0 0 1 0 1 0 1 1 1 -0 0 1 1 0 0 0 2 0 1 0 1 0 0 1 0 1 0 2 1 0 -0 0 0 0 2 0 0 1 0 0 2 0 0 1 2 0 0 1 0 1 2 -1 1 0 1 1 0 0 0 0 1 2 2 0 2 1 0 0 1 1 2 0 -0 1 0 0 0 1 0 1 0 0 0 0 1 0 1 0 0 1 2 1 0 -0 0 1 0 1 0 0 1 0 1 0 1 1 0 1 0 1 1 1 1 1 -0 0 0 2 0 0 0 1 1 1 1 1 0 2 0 1 0 0 2 1 0 -0 0 0 2 2 0 0 2 0 1 1 2 2 0 0 1 0 0 1 1 1 -0 0 0 0 1 0 1 0 0 0 1 2 0 0 1 0 1 1 0 2 1 -1 1 0 0 1 0 0 1 0 0 0 1 1 1 1 0 1 1 0 1 2 -0 0 0 0 0 0 0 2 0 0 1 1 0 0 1 0 1 0 1 2 0 -0 0 0 0 1 0 0 1 0 0 1 1 2 2 2 0 0 0 2 0 1 -0 0 0 0 1 0 0 1 0 0 1 1 1 0 0 0 1 0 0 2 1 -0 1 0 1 1 0 0 1 1 1 0 0 1 1 1 0 0 0 1 0 2 -0 2 1 0 2 0 1 1 0 0 0 1 0 2 0 1 1 0 1 0 2 -0 0 0 1 0 0 1 2 0 0 0 1 2 0 0 0 1 2 1 1 1 -0 1 0 1 2 0 0 1 0 0 0 1 1 0 1 0 1 0 2 1 0 -0 0 0 1 0 0 0 1 0 1 1 1 1 1 0 1 1 1 1 1 1 -0 1 0 0 1 0 0 1 0 0 0 1 0 1 1 0 1 1 0 1 2 -0 1 0 1 1 1 0 1 0 0 0 1 1 1 1 1 1 0 2 1 0 -1 1 0 2 1 0 0 2 0 0 1 0 0 1 2 0 1 0 2 0 1 -0 0 0 0 1 0 0 1 0 0 2 2 1 1 1 0 1 0 0 1 2 -1 1 0 1 0 0 0 0 0 1 1 2 1 2 2 0 0 0 1 1 1 -1 1 0 0 2 0 0 2 0 0 1 1 1 0 2 0 1 0 1 2 0 -0 1 1 0 2 0 0 2 1 0 1 1 2 2 1 0 0 1 1 0 2 -1 0 0 0 0 0 0 1 1 1 1 2 0 2 0 0 0 0 0 0 0 -1 0 1 1 1 0 0 0 0 0 0 0 0 1 1 0 1 0 1 0 2 -0 0 0 1 1 0 0 1 0 1 2 1 1 1 1 0 1 0 1 2 0 -1 0 0 1 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 2 -1 0 1 1 1 0 0 2 0 1 1 1 1 1 0 1 1 0 1 2 0 -0 0 0 0 1 0 1 0 0 0 1 0 1 0 1 0 1 0 0 1 2 -0 0 0 0 1 0 0 2 0 0 2 1 0 1 1 0 1 0 1 1 1 -0 0 0 1 1 0 0 1 0 1 1 1 0 2 1 0 2 0 2 1 0 -0 0 0 1 1 0 2 1 0 0 0 2 2 1 2 0 0 0 1 0 2 -0 0 0 2 1 0 2 2 0 0 1 1 2 1 0 1 0 0 0 2 1 -0 0 0 1 1 0 0 1 0 1 1 1 0 1 1 0 0 1 2 1 0 -0 0 0 1 1 0 2 0 0 0 0 1 0 1 1 1 0 0 1 1 1 -0 0 0 1 1 1 0 0 0 1 0 1 0 1 0 0 0 0 2 0 1 -1 0 0 0 2 0 0 1 0 0 0 1 1 1 1 0 1 0 2 1 0 -0 1 0 2 1 0 0 2 0 0 1 0 1 0 1 0 0 1 1 1 1 -0 0 0 1 1 0 1 2 1 0 1 2 1 0 2 0 0 1 1 1 1 -1 0 0 1 2 0 0 0 0 1 1 0 1 2 0 0 1 1 1 0 2 -0 0 2 1 1 0 0 2 0 0 1 0 2 1 1 0 2 0 1 1 1 -0 1 0 0 1 1 0 1 1 0 0 1 1 1 2 0 1 0 2 2 2 -0 1 1 0 0 0 1 0 0 0 1 2 0 0 1 0 0 1 0 0 0 -0 0 0 1 0 0 1 2 0 1 0 1 0 1 1 0 2 1 2 2 2 -0 0 0 1 0 0 0 0 0 1 2 0 2 1 0 0 1 1 1 2 0 -0 0 0 2 0 0 1 0 0 1 0 1 1 1 2 0 1 1 2 2 2 -1 0 0 1 1 0 1 1 0 0 2 2 1 1 0 0 1 1 2 2 2 -1 0 0 2 2 0 0 1 0 0 0 1 0 2 0 0 1 0 2 1 0 -0 0 0 1 2 0 0 1 0 0 1 1 2 0 1 1 2 0 2 2 2 -0 0 0 1 1 0 0 0 0 2 0 0 1 1 0 0 1 0 2 1 0 -0 0 0 2 0 0 1 1 0 1 0 1 0 0 1 0 2 0 1 0 2 -1 1 0 0 1 0 1 2 0 0 0 1 1 0 0 1 1 0 1 2 0 -0 1 0 1 1 0 0 1 0 0 0 2 0 1 0 0 2 1 1 1 1 -0 1 1 2 1 0 1 2 0 1 0 0 0 1 1 0 1 0 1 1 1 -1 1 0 0 2 0 0 2 0 0 1 2 1 1 1 0 0 0 1 2 0 -0 0 0 2 1 0 0 1 0 0 0 1 2 2 2 0 2 0 1 1 1 -1 0 1 1 1 0 0 1 1 1 0 0 1 1 0 0 2 0 1 0 2 -1 0 0 1 2 1 0 0 0 0 1 2 1 2 1 0 2 0 1 0 2 -0 0 0 0 2 0 0 1 0 1 1 0 2 2 0 0 1 0 1 2 0 -2 0 1 1 0 0 0 1 0 0 1 1 2 2 0 1 0 2 2 0 1 -0 0 0 0 2 0 0 1 0 1 1 1 2 1 2 1 1 0 2 2 2 -0 0 0 1 0 0 1 2 0 1 1 1 2 1 1 0 1 0 2 0 1 -0 0 0 1 1 0 0 2 0 0 0 0 1 2 0 0 2 0 2 0 1 -0 0 0 0 1 0 0 2 0 1 0 1 0 1 1 0 0 1 2 0 1 -1 0 1 0 2 0 0 0 0 1 0 0 1 0 1 1 0 1 2 0 1 -1 0 2 1 1 0 1 0 0 0 1 1 1 1 0 0 1 0 1 1 1 -0 0 0 1 2 1 0 0 0 0 1 2 2 1 1 0 0 0 1 1 1 -0 0 0 0 1 0 0 0 0 1 1 0 1 1 1 0 0 1 1 1 1 -0 0 0 1 1 1 0 2 0 1 1 1 1 2 0 1 1 0 1 1 1 -0 0 1 2 1 0 0 1 0 0 0 1 2 0 0 0 0 1 2 1 0 -1 1 0 2 2 1 0 1 0 0 1 1 1 0 0 0 0 1 2 0 1 -0 0 0 2 0 0 0 1 0 1 1 0 2 0 2 0 2 1 2 1 0 -0 0 0 0 2 0 0 0 0 0 0 1 1 1 1 0 0 0 2 2 2 -1 1 0 2 2 0 1 1 0 0 1 0 0 0 1 0 0 0 0 1 2 -0 1 1 2 0 0 0 1 0 1 1 1 1 2 0 0 0 0 0 1 2 -0 0 0 0 0 0 1 1 0 1 0 1 0 0 2 1 0 0 2 0 1 -0 0 0 2 1 0 1 0 0 1 0 1 2 1 1 0 1 1 1 0 2 -0 1 0 0 2 0 0 1 0 1 0 0 1 1 2 0 0 1 1 1 1 -0 0 0 2 1 1 2 0 0 0 2 1 1 1 0 0 0 0 1 2 0 -0 0 2 2 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 2 -0 0 0 1 1 0 0 1 0 1 1 1 1 2 0 0 1 1 2 1 0 -0 0 1 1 2 1 1 2 0 0 1 1 0 0 1 1 1 0 1 0 2 -0 1 0 2 1 0 0 1 0 1 2 0 1 0 1 0 0 0 0 1 2 -0 1 1 1 1 0 0 2 0 0 2 1 0 1 0 0 0 1 0 0 0 -0 0 0 0 1 0 1 1 0 1 1 0 0 1 1 0 0 1 1 1 1 -0 0 0 1 1 0 0 1 0 1 1 0 0 2 0 0 0 0 0 2 1 -0 0 0 1 2 0 0 1 0 0 0 1 0 1 0 0 0 1 1 0 2 -1 1 0 2 0 0 1 1 1 0 1 2 1 1 1 0 1 0 1 1 1 -0 0 0 2 1 0 0 1 0 0 1 0 2 1 0 0 1 0 0 2 1 -0 0 0 0 1 0 0 1 0 0 1 1 0 2 1 0 2 0 0 1 2 -0 1 0 1 0 0 0 2 0 1 2 0 1 2 1 0 0 0 1 2 0 -1 1 0 1 0 0 1 2 0 0 1 1 0 2 2 0 1 0 1 1 1 -0 0 0 0 2 0 0 0 0 0 2 2 0 0 1 0 0 0 2 1 0 -0 0 0 1 2 0 1 2 1 0 0 0 2 1 1 1 1 0 1 2 0 -0 0 0 2 2 0 0 1 0 0 1 1 0 1 2 0 2 1 2 0 1 -0 1 0 1 2 0 0 0 0 0 1 1 2 0 2 0 0 0 1 0 2 -0 0 0 0 2 0 1 2 0 0 1 1 0 2 1 0 1 1 1 1 1 -0 1 0 1 0 1 0 1 0 1 0 1 0 0 0 0 0 0 1 2 0 -0 0 0 0 1 0 1 1 0 1 0 1 0 0 1 0 0 0 0 1 2 -0 1 0 1 2 0 1 1 0 1 1 1 2 1 1 0 1 0 0 2 1 -1 0 0 0 1 0 0 1 0 0 0 1 1 1 2 2 0 0 1 2 0 -0 0 0 1 1 0 0 1 1 1 1 1 0 2 0 0 0 0 1 1 1 -0 2 1 0 1 1 1 1 0 1 1 2 1 1 0 1 1 0 1 0 2 -0 0 0 1 0 0 1 1 1 0 0 2 0 1 0 0 0 0 1 0 2 -0 1 0 1 0 0 0 2 0 0 1 1 0 1 2 0 0 0 0 0 0 -0 0 0 1 0 0 0 0 0 0 0 0 2 1 2 0 0 1 1 0 2 -0 0 0 1 0 1 1 2 0 2 1 1 1 1 1 0 1 1 2 1 0 -0 1 0 1 2 0 1 1 0 1 2 0 0 0 0 0 2 0 1 0 2 -0 1 0 1 2 0 0 0 0 0 0 2 1 1 0 0 0 0 0 1 2 -0 1 0 1 1 0 0 0 0 1 0 1 1 0 1 1 1 1 1 0 2 -0 0 0 2 0 0 1 0 0 0 0 1 1 0 0 1 0 1 1 1 1 -0 0 0 1 0 0 1 1 0 0 0 1 1 2 0 0 0 0 1 2 0 -0 1 1 1 0 0 0 1 0 1 1 1 1 2 1 0 2 0 1 2 0 -0 2 0 2 0 0 0 0 1 1 1 1 1 1 2 0 0 0 1 2 0 -0 0 1 1 1 0 0 2 0 1 1 2 0 1 1 0 2 1 1 1 1 -0 2 1 1 0 0 0 1 0 1 1 2 2 1 1 0 1 1 1 1 1 -1 0 0 2 2 0 0 2 1 1 0 1 1 1 0 1 0 0 0 0 0 -0 0 0 1 0 0 1 1 1 0 1 1 0 1 0 0 0 1 0 2 1 -2 1 1 2 0 2 0 0 0 1 1 2 2 1 1 0 0 0 1 0 2 -0 0 0 0 1 0 0 1 0 0 0 1 1 1 1 1 1 0 1 1 1 -0 0 0 1 1 0 0 1 0 1 0 1 2 1 1 1 1 0 0 1 2 -0 1 0 0 0 0 1 1 0 0 1 1 2 1 1 0 0 0 1 0 2 -0 1 0 0 1 0 0 2 0 1 1 2 0 0 0 2 1 0 1 0 2 -0 1 0 0 2 0 1 1 0 0 0 2 2 1 1 0 0 1 1 2 0 -0 1 0 0 0 0 0 2 0 1 1 2 1 1 0 1 0 0 2 1 0 -0 1 0 1 0 1 0 2 0 1 1 0 0 0 0 1 1 1 0 2 1 -1 0 1 0 0 1 0 1 1 0 0 1 1 0 0 0 0 0 2 0 1 -0 0 0 0 1 0 1 2 1 2 0 1 0 1 1 0 0 0 1 0 2 -0 1 0 1 0 0 0 1 0 0 0 2 0 0 0 0 0 0 2 0 1 -0 1 0 1 1 0 0 1 0 0 1 1 1 1 0 0 1 0 1 0 2 -1 0 0 1 1 0 0 0 0 0 2 1 2 1 0 1 0 1 1 1 1 -0 1 0 0 0 1 1 1 0 1 1 1 0 0 0 1 1 0 1 2 0 -0 0 0 1 1 1 0 0 0 0 2 1 0 1 1 1 0 2 0 1 2 -0 1 0 2 2 0 1 1 0 0 0 1 1 1 2 0 0 0 0 1 2 -0 0 1 1 0 0 2 2 0 1 1 1 1 2 0 0 2 1 1 1 1 -0 0 0 0 1 0 0 2 0 1 0 2 1 1 0 0 0 1 1 2 0 -0 0 0 1 2 0 1 1 0 1 1 1 1 1 2 0 0 0 1 2 0 -0 0 0 1 0 0 1 1 0 0 1 2 0 0 1 0 2 0 1 2 0 -0 0 0 0 2 0 1 2 0 1 1 1 0 1 1 0 0 0 1 1 1 -2 0 0 0 2 0 1 1 0 0 1 1 1 1 0 0 0 0 0 1 2 -0 0 1 1 0 1 0 2 0 2 0 0 0 1 0 0 0 0 2 1 0 -0 1 0 0 1 0 0 1 1 1 0 2 1 2 1 0 1 1 0 1 2 -0 1 0 1 1 0 0 1 0 2 1 0 0 2 0 2 0 1 1 0 2 -0 1 0 1 2 0 0 0 0 0 0 1 0 1 0 0 1 0 0 1 2 -0 1 0 2 0 0 0 1 0 0 0 1 2 0 0 0 0 0 2 1 0 -0 0 0 1 2 0 0 1 0 0 0 1 1 1 0 1 0 0 0 0 0 -0 0 0 1 0 0 0 2 0 0 0 2 1 2 1 0 1 0 1 1 1 -1 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 1 2 2 2 -1 0 0 1 1 0 0 2 0 2 1 2 2 0 0 0 0 1 1 2 0 -0 0 0 2 1 0 1 2 0 1 2 0 1 0 1 0 1 1 0 0 0 -0 1 0 1 1 0 1 0 0 1 1 2 0 0 1 0 1 0 0 2 1 -1 1 1 2 2 1 1 2 0 1 1 1 1 0 0 0 1 0 1 1 1 -0 0 1 0 1 0 0 1 0 1 0 0 1 1 0 0 1 0 1 0 2 -0 1 0 1 1 0 0 1 1 1 1 2 1 1 0 0 1 0 1 0 2 -0 0 0 0 1 0 1 0 0 1 1 1 0 0 2 0 0 0 0 1 2 -0 1 0 2 1 0 0 1 0 1 1 1 1 2 1 0 0 0 0 0 0 -0 0 0 1 1 0 0 2 0 0 1 0 1 0 1 0 0 0 2 1 0 -0 0 0 0 0 1 1 2 0 0 0 1 0 1 1 0 2 0 1 2 0 -1 1 0 1 1 0 0 1 0 0 0 1 2 0 0 0 0 1 0 2 1 -0 0 0 2 0 0 0 0 0 0 1 1 1 1 1 1 0 0 2 2 2 -0 2 0 1 0 0 0 1 1 1 2 1 0 2 0 1 1 0 0 2 1 -0 1 0 0 1 1 0 0 0 0 1 1 1 2 1 0 0 0 0 1 2 -0 0 1 1 0 0 0 0 0 1 0 2 1 1 0 0 0 1 2 1 0 -0 0 0 0 0 0 0 1 0 0 1 1 0 2 1 0 2 1 2 0 1 -0 0 1 0 1 0 1 0 0 2 0 0 0 0 2 0 0 1 2 2 2 -0 1 0 2 0 0 1 1 0 0 1 1 0 0 0 1 2 0 1 1 1 -1 0 0 2 0 0 0 0 0 1 1 0 2 1 0 0 0 1 2 2 2 -0 0 1 1 0 0 0 1 0 0 0 2 0 0 1 0 0 1 2 1 0 -0 1 0 1 2 0 0 1 0 0 0 2 1 0 0 0 1 1 0 1 2 -0 0 1 1 0 0 1 2 0 1 0 2 1 2 0 0 1 1 2 1 0 -0 2 1 0 0 0 0 2 0 1 1 1 1 0 0 0 1 2 1 1 1 -0 1 1 0 1 0 0 1 0 0 0 1 0 1 1 0 1 1 2 2 2 -0 1 1 0 1 0 0 1 0 0 0 1 1 1 0 0 0 1 2 1 0 -0 0 0 2 1 0 0 2 0 1 1 1 1 1 1 1 0 0 1 0 2 -0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 2 0 1 2 0 -0 0 0 1 0 0 0 1 0 2 0 1 0 1 1 1 0 0 1 2 0 -0 1 0 0 1 0 0 2 0 2 0 0 0 0 1 0 0 1 0 1 2 -0 0 1 2 1 0 0 2 0 0 0 1 0 1 1 0 1 0 0 0 0 -0 1 0 2 1 0 0 1 0 0 1 0 0 1 2 1 0 0 0 2 1 -0 0 1 1 1 0 0 2 0 1 0 1 1 0 1 1 1 0 1 2 0 -0 0 0 1 1 0 0 1 0 1 1 0 1 1 0 0 0 0 0 0 0 -0 0 0 2 0 1 0 1 0 0 1 0 1 1 2 0 0 0 0 2 1 -0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 0 1 1 1 1 1 -0 2 0 1 1 0 0 1 1 0 0 0 0 0 2 2 0 1 0 0 0 -0 0 0 1 1 0 0 0 0 1 0 1 0 1 0 0 0 0 1 2 0 -0 1 0 0 1 0 0 1 0 2 1 1 1 2 0 0 1 1 2 0 1 -0 1 1 1 0 0 1 1 0 2 0 1 0 0 1 0 1 0 0 0 0 -0 1 0 1 1 0 0 0 0 1 2 2 0 0 0 1 0 0 1 1 1 -0 0 1 2 1 0 0 2 0 0 1 1 1 2 2 0 0 0 1 2 0 -0 1 0 1 1 0 1 1 1 1 1 2 1 0 0 0 1 0 0 1 2 -1 1 1 2 0 0 0 1 0 0 2 1 2 0 1 0 1 0 1 0 2 -0 0 0 0 1 0 1 2 0 0 1 1 1 1 0 0 0 0 1 0 2 -0 0 0 2 0 0 0 2 0 2 1 1 2 1 1 1 0 0 1 0 2 -0 1 0 0 2 0 0 1 0 0 1 0 1 0 0 0 1 0 1 2 0 -0 0 1 1 0 0 0 1 0 0 1 2 1 2 2 0 1 0 2 1 0 -0 2 0 2 1 0 0 1 0 0 1 0 1 0 2 0 1 0 2 1 0 -0 0 0 0 1 0 0 0 0 1 0 1 1 0 1 0 1 0 2 1 0 -1 0 1 1 1 0 1 2 0 0 1 1 0 0 2 0 1 1 0 1 2 -0 0 0 2 1 2 1 0 0 0 0 0 0 1 0 1 1 1 2 1 0 -0 0 0 1 1 0 1 1 0 1 2 2 0 0 0 1 0 0 0 0 0 -1 0 0 1 1 0 0 1 0 1 1 1 1 2 0 1 1 1 2 0 1 -0 0 0 2 1 0 0 1 0 1 2 0 0 2 1 0 0 0 1 1 1 -0 0 0 1 1 0 0 1 0 0 0 1 2 1 1 0 0 0 1 1 1 -1 0 1 2 2 0 0 0 0 0 0 0 2 1 2 0 0 2 0 1 2 -0 0 0 1 0 1 1 2 0 0 1 2 0 1 0 2 1 0 1 1 1 -0 0 0 1 0 0 2 0 0 1 0 1 2 1 0 0 1 0 0 1 2 -0 0 0 2 1 0 0 0 0 0 0 2 1 2 1 0 0 0 2 1 0 -0 0 0 1 0 0 1 0 0 0 0 1 1 2 0 0 1 0 0 1 2 -0 0 0 0 1 0 1 1 0 0 0 1 2 1 1 0 2 0 1 2 0 -0 0 0 0 2 1 1 2 0 0 0 1 1 0 0 0 2 1 2 1 0 -1 0 0 1 1 0 0 1 0 0 0 0 0 0 1 0 0 1 1 1 1 -0 0 1 1 2 0 1 1 0 1 1 1 0 0 1 0 1 0 2 0 1 -0 1 0 1 0 1 0 0 0 0 1 0 1 1 0 1 1 0 1 1 1 -1 1 0 1 0 0 1 0 0 1 1 0 1 1 1 0 2 0 1 1 1 -0 0 0 2 1 0 0 1 0 1 1 1 1 0 0 0 1 1 1 1 1 -2 1 1 2 0 0 0 0 0 1 1 1 1 2 1 0 1 2 0 1 2 -0 0 0 1 0 0 1 1 0 1 1 1 2 0 0 1 1 0 1 1 1 -0 0 0 1 0 0 0 0 0 2 0 1 2 1 1 1 0 1 2 1 0 -0 0 0 1 0 0 1 2 0 0 0 1 0 1 1 0 0 0 2 0 1 -0 0 1 1 1 0 0 1 0 2 1 1 1 1 1 0 0 0 1 0 2 -0 1 1 1 1 0 0 0 0 1 0 1 1 2 2 0 1 0 1 2 0 -1 1 0 1 1 0 0 0 0 2 1 0 0 1 1 1 2 0 1 0 2 -0 0 0 0 2 0 0 1 0 1 0 0 0 2 1 0 2 2 1 1 1 -1 0 0 1 2 0 0 1 0 1 0 0 0 2 1 0 0 0 2 2 2 -0 0 0 2 0 0 0 1 1 0 2 2 1 0 1 1 0 1 1 2 0 -1 1 0 0 2 0 1 1 0 1 0 1 1 1 1 0 0 1 1 0 2 -0 1 0 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 -1 1 0 0 1 1 0 2 0 0 1 0 1 1 0 0 0 0 0 1 2 -0 0 1 2 0 0 0 1 0 1 0 0 0 1 1 0 1 0 0 1 2 -0 1 0 1 2 0 0 0 0 1 0 2 1 0 0 0 1 0 1 1 1 -1 0 0 1 1 0 0 2 0 1 1 1 1 1 1 0 2 0 1 2 0 -0 1 0 2 2 0 1 2 0 0 1 0 1 1 1 0 0 0 1 1 1 -0 0 0 1 0 0 1 1 0 0 1 0 1 1 1 1 2 0 1 2 0 -0 0 0 0 2 0 0 2 0 0 1 0 1 1 1 0 0 0 0 1 2 -1 1 0 1 2 0 0 0 0 0 1 1 2 1 1 1 0 1 1 0 2 -0 0 1 2 1 0 0 1 0 1 1 1 1 1 0 0 0 1 1 1 1 -0 0 0 1 1 1 1 2 0 0 0 0 1 1 1 0 2 0 2 2 2 -1 0 0 0 1 0 1 1 0 1 0 0 0 2 2 0 2 0 0 2 1 -0 1 0 1 1 0 1 1 0 1 1 1 1 1 1 1 0 0 1 1 1 -1 2 0 0 1 0 0 1 0 1 2 0 1 1 2 0 0 0 1 2 0 -1 0 0 1 1 1 0 1 0 0 1 2 0 1 0 0 1 1 1 1 1 -0 0 0 1 1 0 0 0 0 1 1 0 0 1 1 0 0 0 2 2 2 -1 0 1 2 1 0 0 2 0 2 0 0 1 0 1 0 1 1 1 2 0 -0 1 0 2 1 0 1 1 0 0 1 1 0 0 0 0 1 1 0 1 2 -0 1 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 1 2 1 0 -0 1 0 1 1 0 1 1 1 0 0 1 0 0 1 0 1 0 1 1 1 -0 0 0 2 2 0 0 1 0 1 2 1 2 0 1 0 0 0 1 1 1 -0 0 0 1 1 0 0 0 1 0 2 0 0 1 1 0 1 0 2 2 2 -0 0 1 1 1 0 0 2 1 1 1 2 1 1 0 0 1 1 1 1 1 -0 0 1 1 1 0 0 1 0 0 2 2 1 1 2 0 0 1 0 1 2 -0 0 0 1 0 0 1 1 2 1 2 0 2 0 0 0 0 0 0 2 1 -1 0 1 0 1 0 0 1 0 0 1 0 0 2 2 1 0 1 1 1 1 -0 0 1 0 1 0 0 1 0 1 0 1 0 0 2 0 1 0 2 2 2 -0 2 0 1 0 0 1 1 0 0 0 1 1 1 1 0 1 0 1 1 1 -1 1 0 1 1 1 0 2 0 2 1 1 1 1 2 0 1 0 1 1 1 -1 1 0 1 0 0 0 1 0 0 1 2 1 1 2 0 0 1 1 2 0 -0 0 0 1 1 0 2 1 0 2 1 0 0 1 0 0 0 0 1 1 1 -0 1 0 1 0 0 0 2 0 0 1 1 0 1 1 0 1 0 1 0 2 -0 1 0 1 1 0 0 2 0 0 1 1 2 1 1 0 1 0 2 2 2 -0 0 0 0 2 0 0 2 0 0 0 2 2 0 0 1 2 1 1 1 1 -0 0 0 0 0 0 0 1 0 1 1 0 0 0 1 0 0 0 1 1 1 -0 0 1 0 2 0 1 2 0 0 0 0 0 0 1 0 1 0 1 1 1 -0 0 0 2 1 0 0 0 0 1 0 0 1 1 1 0 1 1 2 0 1 -0 0 0 1 0 0 0 2 0 1 1 0 1 1 1 1 1 0 2 1 0 -1 0 0 0 1 0 0 1 0 1 0 1 1 1 0 0 1 1 0 1 2 -0 1 0 2 0 0 0 1 0 0 0 0 1 0 1 0 0 0 2 0 1 -0 0 0 0 1 0 0 1 0 0 2 1 0 1 2 0 0 0 0 2 1 -1 0 0 2 1 0 1 1 0 0 1 0 0 1 1 0 0 0 0 0 0 -0 1 0 0 1 0 0 1 0 0 1 2 0 0 0 0 2 0 1 1 1 -0 0 0 0 1 0 1 0 0 0 2 2 1 0 1 1 0 2 1 0 2 -0 0 1 1 1 0 0 0 0 0 0 1 1 1 1 0 1 1 1 0 2 -1 1 0 1 0 0 0 1 0 1 1 2 0 2 1 0 0 1 1 1 1 -1 0 1 0 2 0 1 1 0 1 1 2 0 1 0 1 1 1 2 1 0 -0 1 0 1 1 0 0 1 0 0 1 1 1 1 0 1 1 0 2 1 0 -0 0 0 1 1 0 0 2 0 0 0 1 0 1 1 0 0 0 2 1 0 -0 0 0 1 1 0 1 0 0 1 0 1 0 1 0 0 0 1 1 1 1 -0 2 0 1 0 0 0 2 0 1 2 2 2 1 0 0 2 0 2 2 2 -0 0 0 0 0 0 1 1 0 0 1 1 0 1 2 0 1 0 0 1 2 -0 0 0 1 0 1 0 1 0 1 1 0 2 0 0 0 2 1 1 2 0 -0 0 0 1 1 0 1 1 1 1 1 0 1 0 1 0 2 0 1 0 2 -1 0 1 2 0 0 1 1 1 1 0 1 1 1 1 0 1 0 2 2 2 -1 1 0 1 0 0 0 2 0 0 0 2 1 2 1 0 1 1 1 1 1 -0 0 0 0 1 0 0 0 0 0 1 1 0 1 1 1 0 0 0 1 2 -1 0 1 0 2 0 0 1 0 0 1 0 1 1 1 0 0 0 0 1 2 -0 1 0 0 0 0 1 1 0 1 0 1 1 2 0 0 0 0 2 0 1 -0 0 0 2 1 0 1 1 0 1 0 1 0 1 1 0 0 0 0 1 2 -0 0 0 0 1 0 0 2 0 0 2 1 1 1 2 1 0 0 2 2 2 -1 1 1 1 0 0 0 0 0 1 1 1 0 0 0 0 2 0 1 1 1 -0 1 0 0 1 1 1 2 0 2 0 0 1 1 0 0 1 1 1 0 2 -0 2 0 0 0 0 0 1 0 0 2 2 0 1 2 0 0 0 2 1 0 -0 0 0 1 0 0 0 1 0 0 0 1 1 0 1 0 0 1 1 2 0 -0 1 0 0 1 0 0 2 0 2 2 1 0 1 0 0 1 1 0 1 2 -0 0 0 0 0 1 0 1 0 0 0 1 1 2 0 2 1 0 2 1 0 -0 1 1 2 1 0 0 1 0 1 0 1 0 0 0 0 0 0 1 0 2 -0 1 0 2 1 0 0 0 1 1 0 0 0 0 1 0 0 0 0 2 1 -0 1 0 0 0 1 1 1 0 0 0 0 0 0 1 0 1 0 0 1 2 -0 0 0 1 2 1 0 2 0 0 2 1 1 2 2 0 1 0 0 0 0 -0 1 0 0 2 0 1 2 0 1 0 0 0 1 1 0 0 1 1 0 2 -0 0 0 2 2 0 0 1 0 2 0 1 2 1 1 0 1 0 2 0 1 -1 1 0 0 0 0 1 0 0 1 0 1 1 1 1 1 1 1 1 1 1 -0 1 1 0 0 0 1 1 0 1 1 0 1 0 1 1 1 0 1 1 1 -1 0 0 0 2 0 0 2 0 0 1 2 1 0 0 0 2 0 0 1 2 -0 1 0 1 2 0 0 1 0 1 1 2 1 1 1 0 2 0 1 1 1 -0 0 0 0 0 0 0 1 0 2 1 1 1 2 1 0 1 2 1 1 1 -0 0 0 1 2 1 1 1 0 0 1 0 0 1 2 0 1 0 1 1 1 -0 0 0 0 0 0 0 0 0 1 2 1 0 0 0 0 0 0 0 1 2 -1 0 0 1 2 0 0 1 0 2 2 0 0 2 1 0 0 0 2 1 0 -0 1 0 0 1 0 0 1 0 0 0 0 2 0 0 0 1 0 0 1 2 -0 0 0 2 0 0 0 0 0 0 1 0 1 1 1 0 1 1 2 1 0 -0 0 0 1 1 0 1 0 0 0 1 0 0 2 0 0 0 0 2 1 0 -0 0 0 0 1 0 0 1 0 0 1 2 1 0 0 0 0 1 2 2 2 -1 0 0 1 2 0 1 1 0 0 2 2 1 2 1 1 0 0 0 0 0 -0 1 0 2 1 1 1 2 0 1 1 1 1 1 0 0 1 0 1 2 0 -0 1 0 0 0 0 0 1 0 0 1 0 1 1 1 0 1 1 0 1 2 -0 1 0 2 1 0 0 2 0 1 0 1 1 0 1 0 0 1 0 1 2 -0 1 0 2 1 0 0 1 0 0 0 1 2 1 0 0 1 0 1 2 0 -0 1 0 1 1 0 0 1 1 1 2 0 0 2 1 0 0 0 1 1 1 -0 0 0 0 2 0 0 1 0 1 1 2 1 0 0 0 1 0 2 1 0 -0 0 0 2 1 0 1 2 0 1 1 2 0 0 2 0 1 0 2 1 0 -0 0 0 1 1 0 0 1 0 1 1 2 0 0 0 0 1 0 1 2 0 -0 0 0 2 2 0 0 1 0 0 1 2 1 0 1 0 0 0 1 1 1 -0 0 0 1 1 0 0 1 0 1 0 1 1 0 2 0 2 1 1 2 0 -0 0 0 2 0 0 0 2 0 0 1 1 0 0 1 1 1 1 1 1 1 -0 0 0 1 1 0 0 2 0 1 1 0 1 1 0 1 0 2 1 1 1 -0 0 0 1 1 0 0 1 0 0 0 1 0 1 2 0 0 0 1 1 1 -0 0 0 0 2 0 0 1 0 1 0 2 1 2 1 0 1 0 0 1 2 -0 2 1 1 1 0 0 2 0 1 1 1 1 2 2 0 0 0 1 0 2 -2 0 0 1 1 0 0 1 0 0 1 1 0 1 2 0 1 0 1 1 1 -0 0 0 2 1 0 0 1 0 0 1 0 1 2 1 0 1 1 1 1 1 -0 1 0 2 2 0 1 1 0 0 2 0 0 1 1 0 0 0 2 1 0 -0 0 0 1 1 1 0 2 0 1 2 1 1 1 1 0 2 0 0 0 0 -0 1 0 1 2 0 0 2 0 1 0 1 2 1 1 0 1 1 1 0 2 -0 0 0 2 1 0 0 0 0 0 2 1 0 1 0 1 1 0 0 1 2 -0 0 0 1 0 0 0 2 0 0 1 1 2 0 0 1 0 0 0 0 0 -0 0 0 1 0 0 1 0 0 0 0 0 1 1 0 1 0 0 0 0 0 -2 0 0 2 1 0 0 2 0 0 1 1 1 1 0 0 1 1 1 0 2 -0 0 0 2 0 0 0 1 0 0 1 2 2 1 0 0 1 0 1 2 0 -0 2 0 1 2 0 0 1 0 0 1 2 0 0 1 0 1 0 1 1 1 -0 0 0 0 1 0 0 0 1 0 1 1 1 2 1 0 1 0 2 2 2 -1 0 0 1 1 0 0 2 0 0 1 1 2 2 1 0 1 0 1 1 1 -0 1 0 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 1 1 1 -0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 1 1 0 1 1 1 -0 0 0 2 1 0 0 1 0 1 1 1 1 1 1 0 1 0 1 1 1 -0 0 0 1 1 0 0 1 0 1 0 1 0 0 0 0 0 0 2 2 2 -0 1 1 1 0 0 1 0 0 0 1 2 0 1 0 0 0 0 1 1 1 -0 1 0 1 2 0 0 0 0 0 0 1 0 2 2 0 2 0 1 1 1 -0 0 0 2 1 0 0 1 0 1 2 1 0 1 2 0 0 0 0 1 2 -1 0 0 1 0 0 1 1 0 0 0 1 2 0 1 0 1 0 1 2 0 -0 1 0 1 1 0 1 1 1 0 0 1 2 1 2 0 0 0 2 2 2 -1 1 0 1 0 0 1 1 1 0 2 0 0 2 1 1 1 0 1 1 1 -0 1 0 0 1 0 0 1 0 0 0 1 1 1 1 1 0 2 2 2 2 -0 0 0 1 1 0 0 0 0 0 0 1 0 1 2 1 1 1 2 2 2 -0 0 1 1 0 0 0 1 0 1 0 1 1 1 0 1 2 0 1 2 0 -0 0 1 2 0 0 0 1 0 1 2 2 0 1 0 0 1 0 1 2 0 -0 1 0 0 1 0 0 2 0 1 0 2 1 1 1 0 0 1 0 1 2 -0 0 0 1 2 0 0 1 0 1 1 1 0 1 2 0 1 0 0 1 2 -1 0 0 1 0 0 0 1 0 0 0 1 0 1 1 1 1 1 1 1 1 -0 0 0 1 1 0 0 1 1 0 1 0 2 1 2 1 0 0 1 1 1 -0 1 0 1 0 0 0 1 0 2 1 1 1 1 1 0 1 0 0 0 0 -0 0 0 2 1 0 1 1 0 1 0 1 2 0 0 0 1 0 1 2 0 -0 1 1 1 1 0 0 2 0 1 0 0 1 1 1 0 0 1 1 2 0 -0 0 0 2 2 0 2 1 0 0 0 0 0 0 1 0 0 1 2 1 0 -0 0 0 1 0 0 1 2 0 0 1 1 1 1 1 0 1 1 1 1 1 -0 0 0 0 0 0 0 2 0 1 1 1 0 0 1 0 2 0 2 0 1 -1 0 0 1 0 0 0 0 0 0 1 1 1 0 1 0 1 0 1 2 0 -0 0 0 2 0 0 0 0 0 0 2 2 2 1 1 0 0 0 0 1 2 -0 0 1 1 0 0 0 1 1 1 2 0 1 0 0 1 1 1 2 1 0 -0 0 0 1 0 0 0 1 0 0 1 0 1 2 2 1 1 0 2 0 1 -1 1 0 1 1 0 0 1 0 0 1 1 2 0 0 0 0 0 1 1 1 -1 1 0 1 1 0 0 1 0 1 1 0 1 0 0 0 2 0 1 2 0 -0 0 0 2 0 0 0 2 0 0 0 0 0 0 1 1 1 1 0 1 2 -0 1 0 1 1 1 0 1 0 1 0 0 2 1 0 1 2 0 1 1 1 -0 1 0 1 1 0 1 1 0 0 2 1 1 0 1 1 2 1 1 0 2 -0 0 0 0 0 1 0 1 0 0 0 2 2 1 0 0 1 0 0 2 1 -0 1 0 0 1 0 1 1 0 1 0 1 1 0 0 0 1 0 0 1 2 -1 2 0 2 0 0 0 1 0 0 0 0 1 1 2 1 0 1 0 1 2 -0 0 0 0 1 0 0 0 0 0 1 2 1 1 1 0 1 0 0 1 2 -0 1 0 1 1 0 0 1 1 1 1 0 1 0 1 0 1 1 2 0 1 -0 0 0 0 1 0 0 1 0 1 1 1 1 2 1 0 0 0 2 1 0 -1 1 0 0 2 0 1 0 0 1 1 0 2 2 0 0 1 0 1 2 0 -0 1 1 1 0 0 2 2 0 1 1 1 1 1 0 1 1 0 1 0 2 -0 0 0 0 1 0 0 0 0 1 1 0 1 0 1 0 2 1 1 2 0 -0 1 0 2 2 0 0 1 0 1 1 2 0 1 1 0 1 0 1 2 0 -1 0 0 0 0 0 0 1 0 1 0 0 0 2 2 0 1 0 1 0 2 -1 0 0 1 0 1 0 1 0 1 0 1 1 0 0 0 2 0 2 1 0 -0 0 1 1 1 0 1 1 0 0 1 1 0 0 1 0 0 0 1 1 1 -0 0 0 0 1 0 0 1 0 0 0 2 1 2 2 0 0 0 0 1 2 -1 1 0 0 0 1 0 1 0 1 1 1 2 0 0 0 2 1 1 0 2 -0 0 0 1 2 0 1 1 0 0 1 0 1 1 0 0 2 0 2 2 2 -0 1 2 0 0 1 0 2 0 0 0 0 1 0 0 2 2 1 2 1 0 -0 1 0 1 1 0 1 0 0 1 1 1 2 2 1 1 0 1 0 1 2 -0 0 0 0 1 0 0 1 1 1 0 0 1 0 0 0 0 1 1 1 1 -0 0 0 1 1 0 1 0 0 1 0 2 0 1 1 0 1 0 0 1 2 -0 0 0 1 1 0 0 1 1 0 1 1 2 1 2 0 1 1 2 1 0 -0 0 0 1 0 0 0 1 0 0 0 1 1 2 0 1 1 0 2 2 2 -1 0 2 0 1 0 0 0 0 0 2 2 1 2 1 0 0 0 1 1 1 -0 0 0 1 0 0 0 1 0 1 2 2 0 2 0 1 1 0 2 2 2 -0 1 0 2 1 0 1 0 0 1 0 2 1 1 1 1 1 0 0 0 0 -0 0 0 1 1 0 0 0 0 0 1 0 0 1 0 0 1 0 2 0 1 -0 1 0 2 0 0 1 1 1 0 1 2 0 1 1 1 2 0 1 2 0 -0 0 0 0 1 0 1 1 0 0 0 1 0 2 1 0 0 0 0 1 2 -0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 1 1 1 1 1 -0 1 0 2 1 0 0 2 0 0 0 2 1 0 1 0 1 0 0 0 0 -0 1 0 1 0 0 0 1 0 0 0 1 1 1 1 1 0 0 0 0 0 -0 1 0 2 1 0 0 1 0 1 1 1 0 1 1 1 1 1 0 2 1 -0 1 2 0 1 1 2 1 0 0 1 2 1 1 0 0 0 0 2 1 0 -1 0 0 0 0 0 0 2 0 1 1 2 1 0 0 0 1 1 2 1 0 -0 1 0 0 0 0 1 2 0 0 1 1 2 0 1 0 0 1 1 1 1 -0 0 0 0 2 0 0 1 0 2 1 1 0 1 1 0 0 0 1 0 2 -0 0 0 0 1 0 0 2 1 0 0 2 1 1 1 0 0 0 0 1 2 -1 0 0 1 1 0 1 0 0 1 0 0 0 0 1 0 1 1 1 0 2 -0 1 0 1 1 0 0 0 2 1 1 1 1 1 0 1 1 0 1 2 0 -1 1 0 1 0 0 0 0 0 0 0 1 0 1 1 1 1 0 2 0 1 -1 0 0 0 1 2 0 2 0 1 1 1 2 1 1 0 1 0 2 1 0 -0 1 0 0 0 0 0 0 0 1 1 1 1 1 1 0 0 1 1 2 0 -0 0 0 1 0 1 0 1 1 1 0 1 0 0 0 0 1 1 1 1 1 -0 1 0 1 2 0 1 2 0 1 0 0 1 1 2 0 1 1 2 0 1 -1 0 0 0 1 0 0 1 1 0 0 1 1 1 1 1 0 1 2 2 2 -0 0 0 1 1 0 0 1 0 0 0 0 1 1 1 1 2 0 0 2 1 -0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 2 0 -0 2 0 1 0 0 0 1 0 0 1 0 0 1 0 1 1 0 1 2 0 -1 0 0 2 1 0 0 1 0 0 0 0 1 0 1 0 1 1 2 2 2 -0 0 1 1 1 0 0 0 1 0 0 2 2 2 0 1 1 1 2 0 1 -1 1 0 0 1 0 0 1 1 1 1 2 1 1 1 0 2 0 1 0 2 -0 0 0 1 1 1 0 1 0 0 1 0 2 1 2 0 1 1 2 1 0 -2 0 0 1 1 0 0 1 1 1 0 1 0 1 1 1 0 1 0 1 2 -0 0 0 1 1 0 0 0 0 0 1 1 1 0 1 0 0 0 1 1 1 -0 0 1 2 1 0 0 2 0 1 0 1 2 0 0 0 0 0 2 1 0 -1 1 0 1 1 0 2 1 0 0 1 1 1 2 1 0 0 0 2 1 0 -0 1 0 1 1 0 0 1 0 1 1 1 0 0 1 0 0 0 2 1 0 -0 1 0 2 1 0 0 2 0 1 1 1 1 1 1 0 1 0 0 2 1 -1 0 0 1 0 0 0 0 0 1 2 1 1 1 1 0 1 0 0 0 0 -0 1 1 0 0 0 2 1 0 1 0 0 1 1 2 0 1 0 0 1 2 -0 0 0 1 1 0 0 1 0 0 0 1 2 0 1 0 1 0 1 1 1 -1 0 1 1 1 0 0 2 0 1 1 1 1 0 1 1 0 0 1 1 1 -0 0 0 1 1 0 2 1 1 2 0 1 1 1 0 1 0 0 0 0 0 -0 0 0 1 1 0 1 0 0 0 0 1 1 2 1 0 0 0 0 0 0 -0 0 1 0 2 1 0 1 0 1 1 2 1 1 1 0 0 0 1 1 1 -0 0 0 2 1 0 1 1 0 0 1 0 0 2 0 0 1 1 0 1 2 -0 0 0 2 2 0 0 2 0 0 1 1 0 0 2 0 1 0 1 1 1 -1 0 0 0 0 0 1 1 1 0 0 0 1 2 0 1 0 1 1 1 1 -0 1 0 0 1 0 0 1 0 2 1 0 2 0 1 0 1 0 1 0 2 -0 1 0 1 0 0 1 0 0 0 1 1 2 1 1 0 1 0 1 2 0 -0 0 0 0 1 1 0 0 0 0 0 1 0 2 1 0 1 1 1 1 1 -0 1 0 1 1 1 0 0 0 2 1 1 2 0 2 0 0 0 2 1 0 -1 0 0 1 2 0 0 1 0 0 0 1 0 2 0 1 1 0 2 1 0 -1 1 0 1 2 0 0 2 0 0 2 0 0 1 0 0 0 0 0 0 0 -0 0 1 2 1 1 0 1 0 1 0 0 1 0 0 0 1 0 0 2 1 -1 0 1 0 0 0 0 1 0 0 0 1 2 1 0 0 0 0 0 1 2 -1 2 0 0 1 0 1 1 0 2 1 0 0 2 0 1 1 0 1 1 1 -0 0 1 2 1 0 0 2 0 1 1 0 2 0 1 0 1 0 2 2 2 -0 0 0 0 0 0 1 0 0 1 0 1 0 1 2 0 0 1 1 1 1 -0 0 1 0 1 0 1 2 0 1 1 2 0 1 1 1 0 0 0 1 2 -0 0 0 1 0 0 0 0 1 2 2 1 1 1 1 0 1 1 2 1 0 -0 0 0 0 1 0 1 1 0 0 2 0 0 0 1 1 1 0 1 1 1 -1 0 0 2 1 0 0 1 0 0 0 1 0 1 1 1 0 0 1 2 0 -0 0 0 2 1 0 1 1 0 1 1 2 0 0 0 1 2 0 0 0 0 -0 0 1 1 2 0 0 2 0 0 0 0 0 1 1 0 1 1 1 2 0 -0 1 0 2 0 0 0 1 0 0 0 0 0 1 1 1 0 0 0 1 2 -0 1 1 0 1 0 0 1 0 0 1 2 1 1 1 0 0 0 1 1 1 -1 1 0 1 1 0 0 1 0 1 0 1 1 1 0 0 1 1 1 0 2 -1 0 1 1 0 1 0 1 0 0 1 2 0 1 0 0 0 0 1 0 2 -0 0 1 1 1 0 1 2 0 2 1 0 0 0 1 1 1 0 2 1 0 -1 1 0 1 2 1 0 1 0 1 0 0 1 1 0 0 2 0 1 1 1 -0 0 0 1 0 0 1 2 0 0 1 2 0 0 0 0 0 0 0 1 2 -0 1 0 1 1 0 1 0 0 0 0 1 2 1 1 0 2 1 2 2 2 -0 0 1 1 2 0 0 0 0 1 1 0 0 1 0 0 0 0 1 2 0 -0 0 0 1 1 0 0 0 0 1 0 2 0 1 1 1 1 1 0 1 2 -0 0 0 0 1 0 0 0 0 1 0 1 0 1 2 0 2 1 0 0 0 -1 0 0 2 1 0 0 0 0 0 2 2 1 0 1 0 1 0 1 2 0 -0 0 0 0 1 0 0 2 0 1 0 0 2 2 1 1 2 1 0 2 1 -1 1 0 0 2 0 0 1 0 2 0 1 2 0 2 0 0 0 1 0 2 -0 0 0 1 1 0 1 0 0 1 1 1 1 0 1 0 0 0 1 1 1 -0 1 0 2 0 0 1 1 0 1 0 0 0 1 0 1 0 1 0 1 2 -1 0 0 1 0 0 0 0 0 1 1 1 1 1 1 0 1 0 1 2 0 -0 0 0 0 2 0 0 2 0 2 1 0 1 1 1 0 1 0 0 0 0 -0 1 1 2 1 0 0 0 0 1 1 0 0 0 2 1 1 0 1 1 1 -1 1 0 1 0 0 0 0 0 1 0 0 1 0 0 0 2 0 0 2 1 -0 1 0 0 1 0 0 1 0 0 0 1 2 1 0 1 1 0 1 0 2 -1 0 0 0 0 0 0 2 0 0 0 1 1 2 1 0 1 1 1 2 0 -0 1 1 0 0 0 0 0 0 0 0 0 2 1 0 0 2 0 1 1 1 -0 1 0 1 0 0 1 2 2 1 0 1 2 2 2 1 0 1 1 0 2 -0 0 0 0 2 0 0 2 1 0 0 1 2 1 1 0 1 0 1 1 1 -0 1 0 1 1 0 2 2 0 1 0 0 0 1 1 0 1 0 2 1 0 -0 0 0 0 1 0 0 1 0 1 1 2 1 2 1 0 0 0 0 1 2 -0 1 1 1 2 0 0 1 0 0 0 1 0 1 0 1 1 1 1 1 1 -0 0 1 0 0 0 0 1 1 0 1 1 1 0 1 0 2 1 1 1 1 -0 0 0 1 1 0 0 1 0 0 1 1 2 0 2 1 0 0 1 2 0 -0 1 0 1 1 0 1 1 0 0 1 1 1 2 0 0 0 0 1 2 0 -0 0 0 1 1 0 0 1 0 0 1 2 0 1 1 0 0 1 1 2 0 -0 0 1 0 2 0 0 1 1 0 1 0 1 2 1 0 1 0 0 1 2 -0 0 0 1 0 0 0 0 0 0 1 1 1 1 1 0 0 1 0 1 2 -1 2 0 0 0 1 0 1 0 1 0 1 2 1 1 1 0 0 1 0 2 -1 0 0 1 1 0 0 1 1 0 0 1 0 1 2 0 1 0 1 2 0 -0 0 0 0 1 1 0 1 0 0 0 1 2 0 1 0 1 1 1 2 0 -0 1 0 1 2 0 0 1 0 1 1 0 1 2 1 0 2 0 1 0 2 -0 0 0 1 1 0 0 0 0 1 0 1 0 0 1 1 1 0 1 0 2 -0 0 0 1 0 0 0 1 0 1 1 1 0 1 0 1 1 0 1 1 1 -0 0 0 0 0 0 0 2 0 0 2 0 1 0 0 0 0 2 2 1 0 -0 0 1 2 0 0 0 1 0 1 0 1 1 1 1 1 1 0 0 2 1 -0 1 0 1 1 0 0 2 0 1 1 0 1 0 1 2 0 0 0 2 1 -1 1 1 1 1 1 0 1 0 0 0 2 0 2 0 0 0 0 1 1 1 -0 0 0 0 1 0 0 1 0 1 1 2 0 0 0 0 1 0 0 1 2 -1 0 0 0 1 0 2 1 0 1 1 2 2 0 1 0 0 0 0 1 2 -0 0 0 1 0 0 0 0 0 0 1 1 1 0 0 0 1 1 0 0 0 -0 1 0 0 1 0 0 1 0 0 1 0 0 1 2 1 1 0 2 2 2 -0 0 0 2 0 0 0 2 0 1 1 0 1 0 0 0 2 2 1 1 1 -0 0 0 1 0 1 0 1 0 0 0 1 1 0 1 0 1 0 2 1 0 -0 0 0 0 1 0 1 1 0 1 2 0 2 0 1 0 0 0 2 2 2 -0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 1 0 0 1 2 0 -2 0 0 1 1 0 1 1 0 0 0 2 2 1 0 0 1 0 0 0 0 -0 1 1 1 1 0 0 1 1 0 0 2 1 1 0 0 0 0 0 1 2 -0 0 0 0 1 0 0 1 0 1 0 2 0 1 1 1 1 0 1 1 1 -0 0 0 2 0 0 0 1 0 1 0 2 2 1 1 0 1 0 1 0 2 -2 1 1 1 0 1 0 1 0 1 0 0 0 1 1 0 0 1 0 1 2 -0 1 0 1 1 0 0 2 0 0 1 1 2 0 1 0 1 0 2 2 2 -0 1 0 1 1 0 1 1 0 0 0 1 0 0 1 0 0 0 0 2 1 -0 1 0 1 2 0 1 1 0 0 2 1 1 1 1 0 1 1 0 2 1 -0 0 0 1 1 0 0 0 0 0 1 1 0 1 0 1 0 1 1 0 2 -1 0 0 0 1 0 0 1 1 0 1 0 2 1 1 0 2 0 1 2 0 -0 1 0 1 0 0 0 0 0 2 0 2 1 1 1 0 2 0 2 1 0 -0 0 1 1 1 0 1 1 0 1 1 1 0 0 1 0 0 0 0 2 1 -0 1 0 1 0 0 1 1 0 1 1 0 2 0 2 0 1 1 1 0 2 -1 0 0 1 0 0 0 2 0 1 1 2 0 0 0 1 1 0 2 1 0 -0 0 0 2 0 0 1 1 0 0 1 1 0 0 0 0 0 0 1 2 0 -0 0 0 0 1 0 0 0 0 0 1 2 1 1 0 0 0 1 0 1 2 -0 1 1 2 2 0 0 2 0 1 1 0 0 0 2 0 1 1 2 1 0 -0 1 0 1 1 0 2 1 0 0 0 1 1 1 2 0 2 0 0 1 2 -0 0 1 1 1 0 1 2 0 0 1 1 1 1 0 0 1 0 0 1 2 -0 1 0 0 0 0 1 2 1 2 0 1 1 1 1 1 0 0 1 1 1 -1 2 0 1 1 0 2 0 0 0 0 0 1 1 0 1 0 0 1 1 1 -0 1 0 2 0 0 0 2 0 0 2 2 1 1 0 1 1 1 2 1 0 -1 1 0 0 1 0 0 0 0 0 2 2 2 1 0 0 0 1 1 1 1 -0 0 1 1 1 1 1 1 0 0 1 2 0 1 1 1 1 0 1 1 1 -0 0 1 0 2 0 0 1 0 1 0 0 1 1 1 1 1 0 2 2 2 -0 0 0 1 0 0 1 1 0 0 1 1 0 1 1 0 0 0 1 1 1 -0 0 0 2 2 1 1 1 0 0 0 1 0 1 0 1 0 0 1 0 2 -0 1 1 1 2 1 0 2 1 0 1 0 1 1 0 0 1 0 2 1 0 -0 0 0 2 1 0 1 2 1 0 1 0 1 1 1 0 1 1 0 1 2 -1 0 0 1 2 1 2 1 0 0 0 1 0 0 1 0 0 0 1 2 0 -1 1 0 0 1 0 1 1 0 1 2 1 2 1 2 0 1 0 2 1 0 -1 1 0 1 0 0 1 1 0 1 2 0 0 1 1 0 1 0 1 1 1 -0 0 0 0 0 0 0 1 0 0 1 1 0 2 0 0 2 0 2 1 0 -0 1 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 1 0 2 1 -0 1 0 0 2 1 0 1 0 0 1 0 1 2 2 1 0 0 2 0 1 -0 0 0 0 0 0 0 0 0 0 1 1 0 2 0 0 1 1 0 1 2 -0 0 0 1 0 1 1 2 0 0 0 2 2 2 1 0 0 0 1 1 1 -0 1 0 1 2 0 0 1 0 0 0 2 0 2 0 0 2 0 0 1 2 -0 1 0 0 1 0 2 1 0 1 0 1 1 1 0 0 1 0 0 2 1 -0 0 0 1 1 0 0 2 0 0 0 0 0 1 0 2 1 0 0 0 0 -1 1 0 1 0 0 0 2 0 0 1 1 1 0 1 0 1 0 1 1 1 -0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 1 1 -0 1 1 2 2 0 1 1 0 0 1 1 1 1 0 1 1 0 0 1 2 -0 0 2 2 0 0 0 1 0 0 0 0 2 1 1 1 1 0 0 1 2 -0 1 0 0 1 0 1 1 0 1 1 2 0 1 0 0 1 0 2 2 2 -0 0 0 2 1 0 1 1 0 0 1 1 0 2 1 0 1 1 0 1 2 -0 0 0 1 2 1 1 2 0 0 1 0 0 0 1 0 1 0 1 1 1 -0 0 0 1 0 0 0 1 0 1 1 0 0 1 1 1 1 0 1 1 1 -0 0 0 0 1 0 0 2 0 1 0 0 1 0 0 0 2 1 0 1 2 -0 2 0 0 2 0 0 1 0 0 2 0 0 0 0 0 0 0 2 1 0 -0 0 0 2 1 0 1 1 0 1 1 1 0 1 1 1 0 0 1 0 2 -0 0 0 0 0 0 0 2 0 0 0 0 1 2 2 0 0 0 1 2 0 -0 1 1 1 0 0 0 1 0 2 1 1 1 0 2 0 1 0 2 1 0 -0 0 0 1 0 0 0 0 0 0 1 2 1 2 1 0 1 0 1 0 2 -1 0 0 2 2 0 0 1 0 0 0 0 1 1 1 1 0 0 1 0 2 -0 0 0 2 1 0 0 0 0 0 0 2 1 0 1 0 0 0 0 0 0 -1 0 0 1 0 0 0 2 0 2 0 2 0 1 0 0 1 0 1 2 0 -0 0 0 0 2 0 0 1 0 1 0 0 1 1 0 1 2 1 1 1 1 -0 0 1 2 0 1 1 0 0 1 1 1 0 0 1 1 2 0 1 0 2 -0 1 0 1 0 1 1 1 0 0 1 2 1 0 1 0 2 0 1 2 0 -0 0 1 0 2 0 0 1 0 0 1 1 0 2 1 1 1 1 0 0 0 -0 0 0 2 1 1 1 0 0 0 1 1 2 1 0 1 0 0 1 0 2 -0 1 1 2 1 0 1 2 0 0 0 0 1 1 0 1 1 0 0 2 1 -1 0 0 0 0 0 1 1 0 0 2 0 1 0 1 0 1 1 0 1 2 -0 1 0 0 0 0 0 1 0 2 0 0 0 1 1 0 0 1 1 1 1 -0 1 0 1 1 0 0 2 0 1 0 0 0 1 1 0 2 0 1 1 1 -0 0 0 2 0 1 0 2 0 0 1 1 0 1 1 0 2 0 1 0 2 -1 1 2 0 2 0 0 2 0 1 0 0 0 1 0 0 1 0 1 1 1 -0 1 0 0 0 0 0 1 0 1 1 1 2 0 1 0 0 0 0 1 2 -1 0 0 2 1 0 1 2 0 1 1 2 2 1 1 0 0 0 1 1 1 -0 0 0 2 2 0 1 0 0 1 0 0 1 0 1 0 0 0 0 1 2 -0 0 0 1 1 1 0 1 0 1 0 0 0 0 1 0 0 0 2 0 1 -0 0 0 1 0 0 1 1 0 0 0 1 1 0 1 0 0 0 1 2 0 -0 0 0 1 1 0 0 2 0 0 0 1 0 1 1 0 0 1 2 1 0 -0 1 0 1 1 0 0 1 0 0 1 1 0 0 1 0 0 1 1 0 2 -1 1 1 1 1 0 1 1 0 1 1 1 0 1 2 1 1 0 1 2 0 -0 0 0 1 2 0 1 1 0 1 0 1 1 1 0 0 1 1 2 1 0 -2 0 0 1 2 0 0 1 0 0 0 1 1 0 0 0 2 0 1 0 2 -0 1 0 2 1 1 0 1 0 1 1 1 0 1 0 0 1 0 0 0 0 -0 0 0 0 1 0 0 1 0 0 0 0 0 2 1 1 1 0 1 2 0 -0 0 0 1 2 0 0 0 0 0 0 1 0 2 0 1 1 1 1 1 1 -0 1 0 1 1 0 0 1 0 2 1 0 0 1 0 0 1 0 2 0 1 -0 0 0 1 1 1 1 2 0 0 1 2 1 0 1 0 0 1 0 1 2 -0 1 0 1 0 1 0 1 0 0 1 0 2 1 1 1 0 1 1 0 2 -1 1 0 1 2 0 0 1 0 0 0 0 1 0 1 1 0 1 1 1 1 -0 1 0 0 0 0 0 1 1 0 0 2 1 0 2 0 0 0 2 2 2 -0 0 1 1 1 0 0 1 0 1 2 1 0 1 1 0 0 1 1 1 1 -0 1 1 1 1 0 0 2 0 1 1 2 0 2 1 0 0 0 0 2 1 -0 1 0 0 1 0 0 1 0 1 0 1 1 1 1 0 0 1 0 1 2 -1 1 0 0 1 0 1 2 0 1 0 0 0 0 1 0 0 1 2 1 0 -0 0 0 1 2 0 0 2 0 2 1 1 1 0 1 1 1 0 0 0 0 -0 0 0 0 1 1 0 2 0 0 0 1 0 0 1 1 0 2 0 1 2 -0 0 1 2 0 0 0 1 0 1 1 1 1 0 0 0 0 0 1 0 2 -0 0 0 1 2 1 0 1 0 0 2 1 1 1 0 1 0 0 1 0 2 -0 0 0 2 0 0 0 1 0 0 0 0 0 1 1 1 0 0 2 2 2 -0 1 0 2 1 0 1 2 1 0 1 0 1 1 0 2 1 0 1 1 1 -1 0 0 1 0 0 0 0 0 2 2 2 0 0 1 0 1 0 1 1 1 -0 1 0 1 1 1 1 0 0 1 2 0 1 0 2 0 2 0 1 1 1 -0 0 0 1 0 1 1 2 0 2 1 0 0 0 1 0 0 0 2 1 0 -0 1 0 0 2 0 0 2 0 1 1 0 1 1 1 1 2 0 1 2 0 -0 0 0 1 1 0 0 2 0 2 0 1 1 2 1 0 0 0 2 0 1 -1 0 0 2 2 1 0 1 1 0 1 2 2 1 1 1 0 0 1 1 1 -0 0 0 1 0 0 0 1 0 2 1 1 1 2 0 0 1 1 2 1 0 -0 0 0 0 0 1 0 2 1 1 1 0 0 1 0 0 1 0 1 2 0 -1 0 0 1 1 0 1 1 0 0 0 1 2 0 0 0 1 1 0 0 0 -1 1 0 1 1 0 0 2 0 2 1 2 1 1 1 0 1 0 1 1 1 -0 1 0 1 2 0 0 1 0 1 0 1 0 1 2 0 0 0 0 1 2 -1 1 0 1 1 0 1 1 1 0 1 1 1 1 1 1 0 0 0 1 2 -0 0 0 0 1 0 0 1 1 1 1 0 1 0 2 0 0 0 1 1 1 -0 0 0 0 1 0 0 1 1 1 0 1 1 1 0 0 0 0 1 1 1 -0 1 0 1 0 0 0 1 0 0 0 0 1 0 0 1 0 0 1 2 0 -0 0 1 1 1 0 1 2 1 1 1 0 1 0 0 0 1 0 0 2 1 -1 0 0 1 2 0 0 1 1 0 1 0 1 1 1 0 0 0 1 2 0 -0 0 0 1 0 0 1 1 0 0 1 1 1 2 2 0 0 2 1 2 0 -1 0 1 1 1 0 1 1 0 1 1 1 0 2 0 0 1 0 1 1 1 -0 0 0 0 1 0 0 1 0 0 0 1 1 0 2 0 0 1 0 2 1 -0 0 1 0 1 0 0 2 0 1 0 0 0 0 1 0 1 1 2 0 1 -0 0 0 1 1 0 0 1 0 0 0 0 1 1 1 1 1 0 2 0 1 -0 1 0 1 1 1 1 1 0 1 0 1 2 0 1 1 0 1 1 1 1 -0 1 0 1 1 0 1 1 1 2 1 1 1 1 1 0 0 2 1 1 1 -0 0 1 0 1 0 0 2 1 2 2 0 1 2 1 1 0 0 1 1 1 -0 0 0 1 1 0 0 1 2 1 1 1 0 1 0 1 0 1 0 2 1 -1 0 2 2 1 0 0 1 0 1 1 0 1 1 1 0 0 2 1 0 2 -0 0 0 2 2 0 1 0 0 0 1 2 1 1 0 0 1 0 2 1 0 -0 1 0 1 1 0 2 2 0 1 0 0 0 0 0 1 0 0 1 1 1 -0 2 0 0 1 0 0 0 0 0 1 1 0 0 1 0 1 0 1 1 1 -0 1 0 1 0 0 1 2 0 1 0 0 1 1 1 0 0 1 2 1 0 -0 0 0 1 0 0 0 0 0 1 2 2 1 1 1 0 0 1 1 1 1 -0 1 0 0 0 0 1 1 0 0 1 1 1 0 1 0 1 0 0 1 2 -0 0 0 1 0 0 0 0 1 0 1 0 2 2 1 0 1 1 2 0 1 -0 0 0 1 2 0 0 1 0 0 0 1 0 0 0 0 0 1 2 1 0 -0 1 0 1 1 0 0 0 0 1 0 0 1 1 1 0 0 0 1 1 1 -0 0 0 1 1 1 1 2 0 1 1 0 2 0 2 0 2 0 0 0 0 -0 1 0 2 1 0 0 0 0 0 0 1 2 0 0 1 0 1 1 0 2 -1 1 0 1 1 0 0 0 0 1 1 0 1 0 0 0 0 1 1 2 0 -0 0 2 0 2 0 0 1 0 0 2 2 0 0 1 1 0 0 1 0 2 -0 0 0 1 1 0 0 1 0 0 1 2 0 0 1 0 2 0 1 0 2 -0 0 0 1 1 0 0 0 0 1 1 1 1 1 1 1 0 0 0 2 1 -0 1 0 0 0 0 1 0 0 1 0 1 1 0 0 0 0 0 1 1 1 -0 1 0 1 2 0 1 1 0 0 1 1 1 1 0 0 2 1 1 0 2 -0 1 0 2 2 0 0 1 0 0 1 2 2 0 1 0 2 0 1 0 2 -1 0 0 0 0 0 0 2 0 0 0 1 2 1 1 0 1 0 2 2 2 -0 0 0 1 1 1 0 2 0 1 0 1 1 1 0 0 0 2 2 1 0 -0 0 0 1 1 1 0 1 0 2 1 1 0 0 1 0 1 0 1 1 1 -0 1 0 0 2 2 2 2 0 2 0 2 0 1 0 0 1 1 1 0 2 -0 0 0 2 1 0 0 1 0 1 1 1 1 0 1 0 0 0 1 1 1 -0 0 0 0 1 0 0 2 0 0 1 1 1 1 1 0 1 1 1 0 2 -1 0 0 0 2 0 0 0 0 0 1 1 1 1 2 0 0 0 0 1 2 -0 0 0 0 2 0 0 0 0 2 1 1 1 1 1 0 0 1 1 2 0 -0 0 0 2 1 1 0 2 0 1 0 0 0 1 0 1 0 0 0 1 2 -0 1 0 0 2 0 0 1 0 1 0 1 2 1 0 0 0 0 1 1 1 -1 0 0 1 1 0 0 1 0 1 0 1 1 1 1 0 1 0 0 0 0 -0 0 0 1 0 0 0 0 0 0 0 2 1 1 2 1 0 0 0 1 2 -0 0 0 0 2 0 0 2 0 1 0 0 2 1 0 1 1 1 0 1 2 -0 0 0 1 2 0 1 0 0 0 1 0 1 0 1 0 0 0 1 0 2 -0 0 1 1 2 0 0 0 0 0 1 0 1 2 1 0 0 0 1 1 1 -0 0 1 1 0 0 0 1 1 0 1 0 1 2 0 0 0 0 2 1 0 -0 0 0 1 1 0 1 1 0 0 0 0 1 1 2 1 1 0 1 1 1 -1 1 0 0 1 0 0 2 0 1 0 1 2 1 0 0 1 0 0 1 2 -0 0 0 1 1 0 1 2 1 1 0 1 1 2 0 1 0 1 1 1 1 -0 0 0 2 2 0 1 1 0 1 0 1 0 1 0 1 1 1 1 1 1 -0 0 0 0 1 0 0 1 0 1 1 1 1 0 1 1 2 1 1 1 1 -1 1 0 2 0 0 0 0 0 0 1 0 0 1 1 0 1 0 1 1 1 -1 0 0 0 1 0 2 1 0 1 1 0 0 1 1 0 1 1 1 1 1 -0 2 2 0 2 0 1 1 0 0 1 0 0 2 0 1 1 0 1 1 1 -0 1 1 0 0 0 1 1 0 1 2 2 0 2 0 0 0 0 1 2 0 -0 1 0 0 0 1 0 2 0 0 1 1 2 1 1 0 1 0 0 1 2 -0 1 0 1 2 1 0 1 0 0 0 0 1 1 1 0 1 0 2 0 1 -0 1 1 2 0 0 0 2 0 0 2 2 0 1 0 0 0 0 0 2 1 -1 0 0 1 2 1 0 1 0 0 1 2 0 0 0 0 0 0 1 2 0 -1 1 0 1 1 0 0 2 0 0 0 1 0 0 1 0 0 0 0 1 2 -0 0 1 1 2 0 0 0 0 1 0 1 1 1 1 0 0 0 1 2 0 -1 0 0 1 2 1 0 2 0 1 1 1 1 2 1 0 1 1 1 0 2 -0 0 0 1 1 0 0 1 0 1 0 2 1 1 1 0 1 1 2 1 0 -0 1 1 0 2 0 0 1 0 0 1 1 0 0 2 0 0 0 0 2 1 -1 0 0 1 2 0 1 1 0 2 1 1 0 0 0 0 0 0 1 0 2 -0 1 0 0 1 0 0 1 0 0 1 1 1 0 1 1 1 0 1 1 1 -0 0 0 2 1 1 0 1 0 1 1 2 0 0 2 1 2 0 1 1 1 -0 1 0 0 1 0 0 1 0 2 2 0 0 2 0 1 2 1 2 0 1 -1 0 0 2 1 0 0 2 0 1 2 0 1 1 2 0 2 0 0 1 2 -0 1 2 0 1 0 0 1 0 2 0 2 1 0 0 1 1 1 2 1 0 -1 0 0 1 0 0 0 1 0 0 1 0 2 0 1 1 0 0 1 1 1 -0 0 0 2 1 0 0 2 0 0 1 1 0 1 1 0 0 0 1 1 1 -1 0 0 0 2 1 1 0 1 1 0 2 1 1 1 0 2 0 1 1 1 -1 0 0 1 1 0 0 1 0 0 1 1 0 2 1 0 1 0 2 2 2 -0 0 0 1 1 0 0 1 0 0 0 2 1 0 0 0 1 1 2 0 1 -0 0 1 0 0 1 0 0 0 0 1 2 0 0 1 0 1 1 0 1 2 -1 1 1 0 0 1 1 2 0 0 0 1 2 1 1 0 1 0 2 1 0 -0 1 0 1 1 0 1 2 0 1 0 0 1 2 1 0 0 0 1 0 2 -0 0 0 0 2 0 1 1 0 0 1 0 0 0 2 0 0 0 2 1 0 -0 2 0 1 2 1 1 1 0 0 0 0 0 0 1 0 1 0 0 0 0 -0 0 0 0 1 0 0 1 0 0 1 0 0 1 2 0 1 1 2 1 0 -0 1 0 2 1 0 0 0 0 0 1 0 0 0 1 0 1 0 1 2 0 -0 1 0 2 1 0 0 1 0 1 1 1 1 1 2 0 1 0 1 2 0 -0 1 1 1 0 0 0 1 0 2 1 1 1 1 0 0 0 0 1 2 0 -0 1 0 2 2 0 0 1 0 0 2 0 0 0 1 1 0 0 0 1 2 -0 0 0 2 2 0 0 1 0 0 1 1 1 0 0 0 2 1 1 2 0 -0 0 0 1 0 1 1 1 0 1 0 2 2 0 0 0 0 0 1 0 2 -0 1 0 1 1 0 0 1 0 1 1 0 1 0 1 0 2 0 0 0 0 -0 0 1 0 1 0 1 2 0 0 1 2 1 1 1 1 0 1 1 2 0 -0 1 0 0 1 0 0 1 0 0 1 1 0 1 2 0 0 0 0 1 2 -0 1 0 0 2 1 1 0 0 0 1 2 1 0 1 0 0 1 2 1 0 -0 0 0 0 1 0 1 2 0 1 0 1 1 1 1 0 0 0 2 1 0 -0 0 0 1 1 0 0 2 0 0 0 2 1 0 0 0 1 0 1 0 2 -0 0 0 1 1 0 1 0 0 0 0 1 0 1 0 0 1 0 1 2 0 -0 0 0 0 1 0 0 0 1 0 1 1 0 2 0 0 0 0 2 1 0 -0 0 1 1 1 0 0 1 1 1 0 0 1 1 0 0 2 0 1 0 2 -0 1 1 0 1 0 0 0 0 0 0 1 0 0 1 1 1 0 1 2 0 -1 1 0 0 0 0 0 0 0 0 1 1 1 1 2 0 1 0 1 0 2 -0 0 1 1 1 0 1 1 1 1 1 2 1 1 0 0 0 0 2 1 0 -1 0 0 1 0 0 0 1 0 1 0 1 1 2 1 0 1 0 2 2 2 -1 0 0 0 1 0 0 1 0 0 1 1 1 1 0 0 1 1 2 1 0 -1 0 0 2 0 0 1 0 0 0 1 0 2 0 0 1 0 0 2 1 0 -0 0 0 0 2 0 0 2 0 2 1 2 1 0 1 1 0 0 0 1 2 -1 1 0 1 1 0 0 1 0 1 1 1 1 2 0 0 1 0 1 0 2 -1 0 0 1 0 1 1 1 0 0 0 0 0 1 1 1 2 0 0 1 2 -0 1 0 0 2 0 0 0 0 0 0 0 0 0 2 0 0 0 2 2 2 -0 0 1 2 1 1 1 2 0 0 1 1 1 1 1 0 0 0 2 1 0 -1 1 0 2 1 0 1 0 0 2 0 0 0 2 1 0 0 0 1 2 0 -0 1 0 1 1 0 1 1 0 0 2 1 1 1 1 0 2 0 2 2 2 -0 1 0 0 1 0 1 2 0 0 0 1 1 1 2 0 0 1 0 1 2 -0 0 1 0 0 0 0 2 1 0 0 2 2 0 1 0 2 0 1 0 2 -0 1 0 1 2 0 0 0 0 0 1 1 0 1 0 0 0 1 1 0 2 -0 0 0 1 0 0 1 1 0 0 0 1 1 1 2 0 1 0 0 0 0 -1 1 0 0 1 1 1 1 0 0 1 0 0 0 1 0 0 0 2 1 0 -0 1 0 1 0 0 1 2 0 1 1 1 1 1 0 0 0 0 2 1 0 -0 1 0 1 2 0 1 2 0 0 0 1 0 1 0 1 0 0 2 1 0 -0 0 0 0 1 0 0 1 1 0 2 1 2 1 0 0 0 0 1 2 0 -1 0 0 1 1 1 0 1 0 1 1 1 0 1 1 2 0 0 0 1 2 -0 1 0 0 0 0 2 2 0 0 1 2 0 0 1 0 1 1 1 2 0 -1 1 1 1 1 1 0 1 0 1 1 1 1 1 1 0 0 0 1 2 0 -1 1 1 1 1 0 0 1 0 0 2 0 1 2 0 2 0 0 2 2 2 -0 0 0 1 0 0 0 2 0 0 0 1 0 1 1 0 0 0 2 2 2 -1 1 0 1 1 0 0 1 0 0 2 2 2 1 1 0 1 0 1 2 0 -0 0 0 1 2 1 1 0 0 0 2 1 1 1 1 1 0 0 1 0 2 -1 0 0 1 2 1 1 1 0 0 1 0 2 2 0 0 0 0 2 1 0 -0 0 0 2 2 0 0 1 0 1 0 1 2 1 1 1 1 0 1 2 0 -1 1 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 2 1 0 -0 0 0 2 1 0 0 1 0 1 2 1 0 1 1 1 1 2 0 1 2 -1 1 0 1 0 0 2 1 0 0 1 0 0 2 1 0 0 0 1 0 2 -1 1 0 2 1 0 0 2 0 0 0 0 2 2 0 1 0 0 2 1 0 -0 1 1 1 2 0 1 1 0 2 0 1 0 0 1 0 0 0 1 2 0 -0 0 0 1 0 1 0 1 0 2 1 2 1 1 1 0 1 1 0 1 2 -0 0 0 0 2 1 1 1 0 0 0 1 2 2 2 0 1 0 1 0 2 -0 0 0 0 0 1 1 1 0 1 1 1 0 0 2 0 0 0 2 2 2 -0 0 0 0 2 1 0 1 0 2 1 2 1 1 1 0 1 0 0 0 0 -0 1 0 1 2 1 2 1 1 1 0 1 1 0 0 0 0 1 0 1 2 -1 0 0 0 2 0 0 2 0 1 0 1 1 1 1 0 1 1 1 2 0 -0 1 0 1 0 0 0 2 0 0 2 1 0 2 0 0 0 0 2 1 0 -0 0 1 2 0 1 1 1 1 0 1 0 1 1 2 0 0 0 1 0 2 -0 1 0 1 2 0 1 1 0 1 0 1 2 2 0 0 2 0 0 0 0 -0 1 0 0 1 0 0 1 0 0 0 1 0 2 0 1 0 1 2 1 0 -0 0 1 0 0 0 1 1 0 0 0 1 1 0 0 0 0 1 2 1 0 -1 1 0 2 1 0 0 2 0 1 2 1 0 1 1 0 0 0 0 1 2 -1 0 0 1 0 0 1 1 0 0 1 1 1 1 0 1 1 0 1 2 0 -1 1 0 2 1 0 0 1 0 1 1 1 1 1 0 0 1 1 2 2 2 -0 0 1 1 2 0 1 0 0 0 1 1 1 1 1 1 1 0 1 0 2 -0 0 0 1 2 1 0 2 0 1 1 0 1 0 1 0 0 1 0 1 2 -1 0 0 0 1 0 0 1 1 1 0 2 0 0 1 1 1 2 2 1 0 -0 0 0 2 0 0 0 1 0 0 0 0 2 0 2 0 0 1 2 1 0 -0 1 0 0 1 0 0 0 0 0 0 2 0 2 0 0 1 1 1 2 0 -0 1 0 1 0 0 0 2 0 1 1 0 2 1 1 0 1 1 2 2 2 -0 0 0 1 1 1 1 1 0 1 0 0 2 0 2 0 0 2 0 1 2 -1 0 0 2 0 0 1 0 0 0 0 1 0 1 0 0 1 0 0 1 2 -1 0 0 0 0 0 0 2 0 2 0 1 1 1 1 1 0 0 0 0 0 -0 0 0 0 0 0 2 2 0 1 1 1 1 0 1 1 1 0 2 1 0 -0 0 0 2 0 0 0 2 0 1 1 0 2 1 0 0 1 1 1 2 0 -0 0 0 1 0 1 0 1 0 0 1 0 2 1 0 1 1 0 0 1 2 -0 0 0 1 0 0 0 1 0 1 2 0 1 1 0 0 0 0 1 0 2 -0 1 0 0 1 0 1 1 0 0 2 0 0 1 0 0 0 0 1 2 0 -0 0 1 1 1 0 0 1 0 1 1 1 1 0 2 0 1 0 0 1 2 -0 1 1 1 1 0 0 1 1 0 0 0 0 0 1 0 1 1 0 0 0 -0 0 0 1 2 0 0 0 0 1 1 1 0 0 2 0 0 0 2 1 0 -0 1 1 1 2 1 0 1 1 0 0 1 1 1 1 0 1 0 2 2 2 -0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 1 0 1 0 2 -1 0 0 1 1 0 0 1 0 2 1 1 1 1 1 1 1 1 1 2 0 -0 0 0 0 2 0 1 2 0 0 1 0 0 0 1 1 1 1 0 1 2 -0 1 0 0 2 0 0 1 0 1 0 0 0 1 1 1 0 0 0 1 2 -1 0 1 0 1 1 0 0 0 1 1 2 0 0 0 0 2 0 2 1 0 -0 0 0 0 2 1 1 1 0 2 0 1 2 1 0 1 1 0 1 0 2 -0 1 0 1 0 1 0 2 0 1 0 0 1 2 0 0 0 1 0 1 2 -0 0 1 1 0 0 0 2 0 0 0 2 1 0 1 1 0 0 1 0 2 -0 0 0 0 0 0 0 1 0 1 1 1 1 1 0 0 1 0 1 0 2 -0 0 0 1 1 0 0 2 0 1 2 2 1 1 0 0 1 0 0 0 0 -0 2 0 1 0 0 0 2 1 2 0 1 2 0 1 0 0 0 0 1 2 -0 0 0 0 1 1 0 1 0 0 0 2 1 1 1 0 1 0 0 0 0 -1 1 1 1 1 0 0 1 0 1 0 1 1 1 1 1 1 0 0 1 2 -0 0 0 1 1 0 0 2 0 1 0 0 1 2 0 1 0 2 1 2 0 -0 1 0 0 1 0 0 2 0 1 1 0 1 2 1 0 0 0 1 2 0 -0 0 0 1 0 0 0 2 0 0 1 1 0 1 0 0 0 0 0 0 0 -0 0 0 0 2 0 1 2 0 1 1 1 1 1 1 0 2 0 0 0 0 -1 0 1 1 2 0 0 1 0 0 1 2 2 1 0 0 0 0 1 0 2 -0 0 1 1 2 0 0 0 0 0 1 2 1 1 1 1 2 0 1 2 0 -0 0 0 0 1 0 1 1 0 1 2 2 0 1 1 0 0 1 2 1 0 -0 1 0 1 2 0 0 1 0 2 0 1 0 0 0 1 1 1 1 0 2 -1 1 0 2 1 0 0 1 0 1 1 1 1 0 2 0 0 0 0 0 0 -0 1 0 1 0 1 1 2 0 0 2 0 1 1 1 0 1 1 2 2 2 -0 0 1 1 1 0 1 1 1 1 1 0 0 0 1 0 1 0 1 2 0 -1 0 0 1 1 0 0 1 0 1 1 1 1 1 1 0 1 0 2 1 0 -1 0 0 1 1 0 1 0 0 2 0 1 1 0 0 0 1 1 1 0 2 -0 0 1 1 2 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 2 -0 1 0 1 1 0 0 2 0 0 0 0 1 2 1 1 1 0 2 1 0 -0 1 0 1 1 0 0 0 0 1 0 2 1 1 1 0 1 1 0 1 2 -0 0 0 2 1 0 0 1 0 0 1 0 0 0 0 0 0 1 2 1 0 -0 0 0 0 1 0 0 1 0 1 1 2 2 0 1 0 2 0 2 2 2 -0 0 0 1 1 1 0 2 0 0 0 0 1 2 0 0 0 1 1 0 2 -1 0 0 1 1 0 0 1 0 1 1 1 0 1 2 1 0 0 2 2 2 -0 0 0 2 1 0 1 0 0 0 1 1 2 1 1 0 1 0 2 1 0 -0 0 1 0 0 0 1 1 0 1 1 0 0 0 1 1 1 0 2 1 0 -1 1 1 1 0 0 0 1 0 2 0 2 1 0 1 1 1 0 1 0 2 -0 0 1 1 1 0 0 0 0 0 2 1 1 1 1 0 1 0 1 2 0 -1 0 0 1 2 0 0 0 0 1 0 2 0 0 1 0 0 1 0 1 2 -0 0 0 0 1 0 0 0 0 1 1 0 1 1 2 0 2 1 2 2 2 -0 1 0 1 2 0 1 1 0 1 2 0 0 0 1 0 0 0 1 0 2 -0 0 0 1 1 0 0 1 0 0 0 0 1 1 1 0 0 0 0 1 2 -0 1 1 0 0 0 0 1 0 1 0 0 2 1 0 0 2 1 2 2 2 -0 0 0 1 0 0 0 0 0 0 2 1 2 1 0 0 0 0 1 0 2 -0 1 0 1 1 0 0 1 0 0 0 1 1 1 0 0 1 0 1 0 2 -1 1 0 1 0 0 1 0 0 0 2 2 0 1 0 1 1 0 1 2 0 -0 1 0 1 2 0 0 1 0 0 0 1 0 1 0 0 2 0 2 1 0 -0 0 0 2 2 1 0 2 0 0 0 2 2 0 1 0 2 0 0 1 2 -0 0 1 1 1 0 0 1 0 1 0 2 1 1 1 0 0 0 1 2 0 -1 0 1 2 1 0 0 1 0 0 1 0 2 1 0 1 1 0 2 1 0 -0 1 2 0 0 0 0 1 0 0 0 1 2 0 1 0 2 0 2 1 0 -1 0 0 1 2 0 0 1 0 0 0 1 0 1 1 1 1 0 1 0 2 -0 1 0 0 1 0 0 2 0 0 0 0 1 1 1 0 1 1 1 0 2 -0 1 0 1 0 0 0 1 0 2 0 0 1 0 2 0 2 1 0 1 2 -0 0 0 1 2 0 0 2 0 1 1 0 1 1 1 0 0 0 1 0 2 -0 0 1 2 0 0 1 1 0 2 1 2 0 1 2 0 0 1 1 2 0 -0 0 1 1 0 0 0 2 0 1 0 0 1 1 1 0 1 1 0 1 2 -0 0 0 2 1 0 0 1 0 0 1 0 0 1 1 0 0 1 1 0 2 -1 0 0 1 1 0 1 2 0 2 0 0 2 0 0 1 0 0 1 2 0 -1 0 0 2 1 0 0 1 0 1 0 2 2 1 0 0 1 0 2 2 2 -0 1 0 1 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 1 2 -0 1 1 0 2 1 0 1 0 2 0 2 0 0 1 1 1 0 1 0 2 -0 0 0 0 1 1 0 1 0 1 2 2 1 1 1 0 0 1 2 2 2 -0 0 1 0 0 0 0 0 0 0 1 2 1 1 1 0 0 0 2 1 0 -0 0 1 0 0 0 0 2 0 0 1 0 1 2 1 1 2 0 0 0 0 -0 1 0 2 1 0 0 1 0 2 1 0 2 1 1 0 0 1 2 2 2 -0 0 0 1 1 0 0 0 0 0 0 1 0 1 0 0 1 0 1 0 2 -0 0 0 0 1 0 1 1 0 1 1 0 1 2 0 0 0 0 0 0 0 -0 1 1 1 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 2 -0 1 0 2 1 0 0 1 0 0 0 1 2 1 0 0 1 0 2 1 0 -1 1 0 0 0 0 1 1 0 0 1 1 1 1 1 0 2 0 1 0 2 -0 0 1 0 0 0 0 1 0 1 1 0 0 1 1 1 1 1 2 1 0 -1 0 0 1 2 0 1 1 1 1 0 2 1 2 0 0 2 1 1 0 2 -0 1 0 1 1 0 0 1 0 0 2 1 1 2 0 1 2 0 1 0 2 -1 0 0 2 0 1 1 2 0 1 0 0 0 1 1 0 2 0 1 0 2 -0 1 0 2 2 0 0 1 0 1 1 0 1 1 1 0 2 1 0 0 0 -1 0 0 1 0 0 0 1 0 1 1 0 2 2 2 0 0 0 1 0 2 -0 0 0 1 0 0 0 0 0 1 2 2 1 1 1 1 0 0 1 2 0 -0 1 0 1 1 0 0 1 0 1 0 1 0 1 1 1 1 0 0 1 2 -1 0 0 2 2 0 0 1 0 1 1 1 2 1 1 0 0 1 0 0 0 -1 1 0 1 1 0 0 1 1 1 0 0 2 1 2 1 0 0 0 0 0 -0 0 0 2 1 0 0 2 0 1 1 1 0 1 0 0 1 0 2 1 0 -0 0 0 1 1 0 0 1 1 0 1 0 2 1 1 1 1 0 0 1 2 -1 0 0 1 1 0 0 0 0 0 1 1 1 2 1 0 2 0 2 1 0 -0 0 0 1 1 0 0 0 0 0 0 0 0 1 2 1 0 1 2 1 0 -0 1 0 1 0 0 1 2 0 0 1 2 1 1 1 1 1 1 1 2 0 -0 1 0 2 1 0 1 1 0 1 0 1 0 1 0 0 1 1 1 0 2 -0 0 0 2 1 0 0 0 0 2 2 0 2 0 0 0 1 2 1 2 0 -0 1 1 1 1 0 0 1 0 1 0 2 1 0 2 1 1 0 0 1 2 -0 0 0 2 0 0 0 1 0 1 1 1 2 0 0 0 1 0 2 1 0 -0 1 0 1 1 0 0 1 0 0 0 1 0 1 0 1 0 0 0 0 0 diff --git a/data/GAMETES_Epistasis_2-Way_20atts_0.4H_EDM-1_1.csv b/data/GAMETES_Epistasis_2-Way_20atts_0.4H_EDM-1_1.csv new file mode 100644 index 0000000..ea6df41 --- /dev/null +++ b/data/GAMETES_Epistasis_2-Way_20atts_0.4H_EDM-1_1.csv @@ -0,0 +1,1601 @@ +N0,N1,N2,N3,N4,N5,N6,N7,N8,N9,N10,N11,N12,N13,N14,N15,N16,N17,M0P0,M0P1,class +0,0,2,1,1,0,0,2,0,1,0,2,1,0,0,0,0,0,0,1,1 +0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,1 +0,0,0,1,0,2,0,0,0,0,0,1,1,0,0,2,2,0,0,0,1 +0,1,0,2,0,1,0,2,0,0,0,1,1,0,1,1,0,1,1,0,1 +0,0,1,1,0,0,0,1,1,0,0,1,0,0,1,0,0,1,1,0,1 +0,0,0,1,1,1,1,1,0,2,0,1,0,0,0,1,0,0,1,0,1 +0,0,0,1,1,2,2,0,1,0,0,2,0,0,1,1,0,1,1,0,1 +0,1,1,0,1,0,1,0,0,0,0,1,0,0,0,0,1,0,1,0,1 +0,0,1,1,0,1,1,2,0,2,0,0,1,0,0,0,0,2,0,1,1 +0,1,2,1,0,1,1,1,0,2,0,0,0,0,1,0,0,1,1,0,1 +0,0,1,1,2,0,0,2,0,1,0,1,1,1,0,1,1,1,0,0,1 +0,1,1,1,0,0,2,2,0,1,0,2,0,0,0,1,0,0,0,1,1 +0,1,0,1,0,1,0,1,1,1,0,1,1,0,1,0,1,0,1,0,1 +0,0,1,0,1,0,2,0,0,0,0,2,1,0,0,1,1,0,0,0,1 +0,0,1,1,1,1,2,0,1,0,0,1,0,0,1,0,0,1,1,0,1 +0,0,1,0,0,0,0,0,0,1,0,2,1,0,0,1,0,1,1,0,1 +0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1 +0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,1,0,1 +0,2,1,2,0,1,2,1,0,0,0,1,1,0,0,0,0,1,0,0,1 +0,0,2,2,0,1,0,1,0,0,0,1,1,0,0,0,1,1,0,0,1 +0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,1,0,0,0,1 +0,1,1,1,0,0,0,1,0,1,0,1,1,0,1,0,0,0,1,0,1 +0,1,0,0,0,2,0,1,0,0,0,1,0,0,0,2,0,2,0,1,1 +0,0,1,1,1,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1 +0,0,0,1,0,0,1,1,0,2,0,2,1,0,0,1,0,1,0,1,1 +1,1,1,1,0,1,1,0,1,0,0,1,1,0,0,0,2,1,0,0,1 +0,0,2,2,1,1,0,1,0,1,0,1,0,0,0,1,0,1,0,0,1 +0,0,1,1,0,2,0,1,1,2,0,1,0,0,1,0,0,0,2,1,1 +0,0,1,1,0,1,1,1,1,1,0,1,1,0,0,1,0,2,0,1,1 +0,2,0,2,0,0,0,1,1,0,0,0,0,0,0,2,0,0,0,1,1 +0,1,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,1,0,1,1 +0,1,0,0,0,1,0,0,0,2,0,1,0,0,0,1,0,2,0,0,1 +0,0,0,1,0,1,1,0,0,1,0,2,1,0,0,1,1,0,1,0,1 +0,0,2,1,0,1,1,1,0,2,0,1,0,0,0,1,1,1,1,0,1 +0,0,2,1,1,0,0,1,1,1,0,1,0,1,0,1,0,0,0,0,1 +0,0,0,1,0,0,1,1,0,1,0,1,0,0,1,1,1,0,0,0,1 +0,1,1,1,0,1,0,0,0,1,0,0,0,0,0,1,0,1,0,1,1 +0,0,1,1,1,0,0,2,0,0,0,0,1,0,0,0,1,0,0,1,1 +0,0,2,0,0,1,0,1,0,1,0,2,1,0,0,1,0,0,1,0,1 +0,0,1,2,0,0,0,0,2,0,0,0,0,0,0,1,1,1,1,0,1 +0,0,0,1,0,2,0,0,1,1,0,0,0,0,0,1,1,0,2,0,1 +0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1 +0,0,1,2,0,0,0,1,1,0,0,0,1,0,0,1,0,0,0,1,1 +0,0,0,2,0,0,0,1,0,1,0,0,0,0,0,1,1,1,1,0,1 +0,1,0,0,1,2,0,0,0,0,0,1,2,0,0,1,1,2,0,1,1 +0,0,2,1,0,0,1,0,2,0,0,0,0,0,0,0,0,0,1,0,1 +0,0,1,1,1,2,0,0,0,1,0,2,1,0,1,1,0,0,0,1,1 +0,0,1,2,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,1,1 +0,0,1,1,0,1,0,1,0,0,0,1,0,0,0,0,2,1,2,1,1 +0,1,0,1,0,1,0,1,0,0,0,0,1,0,1,1,2,1,1,0,1 +0,0,1,0,1,0,1,2,0,1,0,0,1,0,0,0,1,1,0,0,1 +0,0,1,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1 +0,0,1,1,1,0,1,0,1,1,0,0,0,0,0,0,2,1,0,0,1 +0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,1,0,2,0,1,1 +0,0,1,1,1,1,1,1,0,1,1,0,0,0,0,1,0,0,1,0,1 +0,0,1,1,0,0,0,0,0,2,0,1,1,0,0,1,1,1,2,0,1 +0,0,2,0,0,1,1,1,0,1,0,1,0,0,0,0,1,1,0,0,1 +0,0,0,0,0,2,0,1,0,0,0,1,1,0,0,0,1,1,0,0,1 +0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 +0,0,1,1,1,1,0,0,1,2,0,0,1,0,0,1,1,0,0,1,1 +0,0,1,1,0,2,0,1,0,2,0,1,0,0,1,2,0,0,0,1,1 +0,0,1,0,0,0,1,1,1,2,0,0,0,0,1,1,1,0,1,0,1 +0,0,1,1,0,0,0,0,0,1,1,1,1,0,0,1,0,0,0,1,1 +0,1,1,2,1,0,0,1,0,1,0,1,1,0,1,1,0,1,0,1,1 +0,1,1,0,1,0,0,2,0,1,0,1,0,0,0,0,1,1,0,0,1 +0,0,0,1,1,0,2,2,0,0,0,2,0,0,0,1,0,1,1,0,1 +0,0,1,1,0,1,0,1,0,1,0,2,2,0,0,0,0,0,1,0,1 +0,0,1,1,0,0,2,0,0,1,0,2,1,0,0,2,0,1,0,0,1 +0,0,1,1,1,1,0,1,0,0,0,0,1,0,1,1,1,0,1,2,1 +0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,1,0,1,1 +0,1,2,0,1,0,1,0,0,1,0,0,1,0,0,1,0,1,1,0,1 +0,0,0,2,0,1,0,0,2,1,0,1,0,1,0,1,0,0,1,0,1 +1,1,0,0,0,0,1,2,0,1,0,0,1,0,0,0,1,0,0,1,1 +0,0,0,1,0,0,1,0,2,1,0,2,1,0,0,2,0,0,0,0,1 +0,1,0,1,0,1,0,1,0,1,0,0,0,0,0,0,1,2,2,0,1 +0,0,0,0,0,0,0,1,0,1,0,2,0,0,0,1,0,1,0,1,1 +0,0,1,2,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,1,1 +0,0,1,1,1,1,0,1,0,1,0,1,0,0,0,1,1,1,0,1,1 +0,1,1,1,1,2,0,0,0,2,0,1,1,0,0,2,1,1,1,0,1 +0,1,2,2,0,0,0,1,0,1,0,2,0,1,0,0,1,2,1,0,1 +0,0,0,1,1,0,1,0,1,1,0,2,1,0,0,0,0,1,0,0,1 +0,1,1,0,0,1,1,0,0,1,0,2,1,0,1,0,0,2,0,0,1 +0,1,0,0,0,2,0,1,0,1,0,1,0,0,1,0,2,0,1,0,1 +0,0,1,2,1,0,0,1,1,0,0,2,1,0,0,2,0,1,1,2,1 +0,1,1,1,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0,1 +0,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,2,0,1,1 +0,0,1,1,1,1,0,1,0,1,0,2,2,0,0,0,0,0,0,0,1 +0,1,1,0,0,1,0,0,0,0,0,0,2,0,0,2,1,0,1,0,1 +0,1,0,1,0,2,1,1,0,1,0,1,0,0,0,1,0,0,0,0,1 +0,0,1,1,0,1,0,0,0,2,0,1,0,0,0,1,2,2,1,0,1 +0,0,1,0,1,2,0,0,0,0,0,1,1,0,0,1,0,1,1,0,1 +0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,0,2,1 +0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,2,0,1,1 +0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1 +0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,0,1,0,1 +0,0,1,2,0,1,1,2,0,1,0,1,1,0,0,0,0,1,0,0,1 +0,0,1,1,1,1,1,1,1,1,1,2,0,0,1,0,0,0,0,1,1 +0,0,1,0,0,0,2,1,0,1,0,1,1,0,0,2,0,1,1,0,1 +0,1,1,1,0,1,1,2,0,1,0,2,1,0,0,1,1,2,0,0,1 +0,0,2,2,0,0,0,1,0,2,0,0,1,0,1,1,0,1,1,0,1 +0,1,1,0,0,1,0,1,1,0,0,1,0,0,0,1,0,1,1,0,1 +0,0,0,0,0,1,1,1,2,1,0,0,0,0,0,1,0,0,1,0,1 +0,0,2,2,0,0,2,2,0,2,0,0,1,0,0,0,0,0,0,2,1 +0,2,1,1,0,1,0,1,2,1,0,2,1,1,0,0,0,0,0,0,1 +0,0,1,1,0,0,1,1,0,1,0,0,0,1,0,1,1,1,0,0,1 +0,0,0,1,1,0,0,1,1,0,0,2,0,0,0,0,0,1,1,0,1 +0,0,2,2,0,0,1,1,2,1,0,0,0,0,0,1,1,2,1,0,1 +0,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,1,1,0,1,1 +0,0,0,1,0,2,0,1,0,2,0,1,1,1,0,1,1,2,0,0,1 +0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,0,1 +0,0,1,0,1,0,1,1,1,2,0,0,2,0,0,1,1,1,1,0,1 +0,0,1,1,1,0,0,2,0,0,0,1,0,1,1,1,0,1,0,0,1 +0,0,1,1,1,2,1,1,1,1,0,1,0,0,0,1,2,1,0,1,1 +0,0,1,0,1,0,0,1,0,0,0,1,0,0,1,1,0,2,0,0,1 +0,0,2,1,1,2,1,0,0,0,0,1,1,1,0,1,1,1,0,1,1 +0,1,0,1,0,1,0,2,0,1,0,2,0,0,0,1,1,1,2,0,1 +0,1,1,1,0,0,1,2,1,0,1,1,1,0,0,1,0,0,0,0,1 +0,0,2,1,0,0,1,0,0,2,0,1,0,0,0,1,0,1,1,0,1 +0,1,0,2,1,1,1,2,1,2,0,1,1,0,0,2,1,1,0,0,1 +0,1,0,1,0,1,0,1,0,0,0,1,0,0,0,1,1,1,0,0,1 +0,1,1,1,0,1,0,0,1,2,0,1,1,0,0,0,0,1,0,1,1 +0,0,2,1,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,1,1 +0,0,1,1,1,1,0,0,0,0,0,1,1,0,0,0,1,0,0,1,1 +0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0,1 +0,0,1,2,1,1,1,0,0,1,0,1,1,0,0,0,1,0,0,1,1 +0,0,0,2,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,1,1 +0,0,1,2,0,0,1,1,1,1,0,0,0,0,1,0,1,1,0,0,1 +0,0,1,0,0,2,0,1,1,1,0,0,0,0,0,1,0,1,0,0,1 +0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1 +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1 +0,1,1,1,1,0,1,1,0,0,0,0,1,0,0,1,1,1,0,1,1 +0,0,0,1,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1 +0,0,1,1,2,1,0,0,1,0,0,2,0,0,0,0,2,1,0,1,1 +0,0,0,0,1,1,0,1,0,1,0,0,1,1,0,0,1,1,1,0,1 +0,0,0,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1 +0,1,0,0,1,0,0,2,0,2,0,1,0,0,2,2,1,1,0,1,1 +0,0,2,1,0,0,2,1,0,1,0,1,1,0,0,1,0,0,1,0,1 +0,0,0,1,0,1,0,1,0,2,0,0,0,0,0,0,0,1,0,0,1 +0,1,1,2,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,0,1 +0,0,1,2,0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,1,1 +0,1,0,1,0,0,0,1,0,0,0,1,2,0,0,1,1,0,2,1,1 +0,0,0,2,1,0,1,1,1,0,0,0,0,0,0,0,1,1,0,1,1 +0,0,1,0,0,1,0,1,0,0,0,2,0,0,0,2,0,1,0,0,1 +1,0,1,1,0,0,2,0,1,1,0,2,0,0,0,1,1,1,2,1,1 +0,0,0,0,1,2,1,0,1,0,0,1,0,0,0,1,1,0,0,0,1 +0,0,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,2,0,1,1 +0,1,1,1,1,1,0,1,0,1,0,0,0,1,0,1,0,0,0,0,1 +0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,1 +0,1,0,0,0,0,0,1,1,1,0,2,1,0,0,1,1,0,1,0,1 +0,0,0,1,0,0,1,2,0,0,0,2,0,0,0,0,0,0,0,0,1 +0,1,1,1,1,0,1,2,0,1,0,0,2,0,0,0,0,0,0,1,1 +0,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,1 +0,0,0,2,0,0,0,0,1,1,0,1,1,0,0,1,0,1,0,0,1 +0,0,0,1,0,1,1,1,0,0,0,0,1,0,0,0,0,0,1,0,1 +0,0,2,0,0,1,1,0,0,1,0,2,0,0,0,1,0,0,0,1,1 +0,0,0,1,0,1,0,2,0,1,0,2,1,0,0,1,1,1,1,0,1 +0,1,0,0,0,0,1,2,0,2,0,0,0,0,1,0,1,1,0,1,1 +0,1,1,1,0,1,0,0,0,1,0,1,1,0,0,2,2,1,1,0,1 +0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1 +0,0,0,0,0,1,1,0,1,2,0,0,1,0,1,1,2,1,1,0,1 +0,0,1,2,0,0,0,1,0,1,0,0,0,0,0,1,0,2,0,0,1 +0,0,2,0,0,1,0,1,0,1,0,1,0,0,1,2,0,0,0,1,1 +0,1,0,2,0,1,0,1,0,1,0,0,0,0,0,2,1,1,0,0,1 +0,0,2,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,1,1 +0,0,0,0,1,1,1,1,0,1,0,0,1,0,0,0,0,1,0,0,1 +0,0,0,2,1,2,1,2,0,1,0,1,0,0,0,1,1,1,0,1,1 +0,0,2,1,0,1,0,0,2,1,0,1,0,0,0,1,0,1,1,0,1 +0,1,1,0,0,0,1,0,2,1,0,1,1,0,0,0,0,0,1,0,1 +0,0,1,1,0,1,2,2,1,0,0,1,0,0,0,1,0,1,0,0,1 +0,0,2,1,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1 +0,0,1,1,0,0,1,1,0,1,0,1,1,0,0,0,0,2,0,1,1 +0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,2,1,1,0,1,1 +0,1,2,0,0,1,0,1,1,2,0,0,0,0,0,0,0,1,0,0,1 +0,0,1,2,0,1,1,0,0,0,0,1,1,0,0,1,0,0,0,0,1 +0,0,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,0,1 +0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,1 +0,0,1,1,0,1,0,0,0,1,0,1,0,0,0,2,0,1,0,1,1 +0,0,0,2,0,1,0,1,1,0,0,1,0,0,0,2,0,0,1,0,1 +0,0,1,1,0,1,1,0,0,0,0,2,0,0,0,1,1,0,1,2,1 +0,0,1,0,1,0,0,2,0,0,0,0,0,0,0,1,0,0,0,1,1 +0,2,1,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,1,0,1 +0,0,0,1,1,0,1,1,0,0,0,2,1,0,0,0,0,1,0,0,1 +0,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1 +0,0,0,1,1,1,2,0,1,2,0,0,1,0,0,1,1,1,2,1,1 +0,0,1,2,0,1,2,1,0,2,0,2,0,0,0,2,0,1,1,0,1 +0,1,1,2,0,0,0,0,1,1,0,1,0,0,0,0,1,0,0,0,1 +0,0,0,1,1,1,1,0,0,1,0,1,0,0,0,1,0,0,0,0,1 +0,0,1,2,0,1,1,0,0,1,0,1,0,0,0,0,0,0,1,0,1 +0,0,1,1,0,1,0,0,0,0,0,2,1,0,0,0,0,2,0,0,1 +0,0,1,1,0,1,0,0,2,1,0,1,1,0,1,1,0,1,1,0,1 +0,0,0,1,1,1,0,0,1,1,0,2,0,0,0,0,0,1,0,0,1 +1,0,0,1,0,1,2,2,0,1,0,0,0,0,0,1,0,0,0,0,1 +0,0,0,1,0,1,1,2,1,1,0,1,1,0,0,1,0,1,0,1,1 +0,0,1,1,0,2,0,1,0,1,0,1,1,0,1,0,0,0,0,1,1 +0,0,1,1,0,0,0,1,0,2,0,2,0,0,1,2,0,1,0,0,1 +0,1,0,0,0,1,0,1,1,2,0,1,1,0,0,2,1,0,0,0,1 +0,0,0,1,1,2,1,1,0,1,0,1,1,0,0,0,1,1,0,1,1 +0,1,2,1,0,0,0,1,0,1,0,0,0,1,1,1,0,0,1,0,1 +0,1,0,0,0,1,1,1,0,1,0,0,2,0,0,1,0,0,2,0,1 +0,0,0,1,0,1,1,1,0,1,0,1,0,0,0,0,0,1,0,2,1 +0,0,0,2,0,1,0,0,0,1,0,2,0,0,0,1,1,0,0,1,1 +0,0,0,1,0,1,1,1,1,1,0,2,1,1,0,2,1,1,0,0,1 +0,0,0,1,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,1 +0,0,0,2,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1 +0,0,1,0,1,1,0,1,1,1,0,1,0,0,1,2,1,0,1,0,1 +0,0,0,1,1,1,0,1,0,1,0,0,0,0,0,0,0,0,1,1,1 +0,1,1,0,0,1,0,0,0,1,0,0,1,0,1,0,1,0,0,1,1 +0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1 +0,1,1,1,0,2,0,1,0,0,0,1,0,0,1,1,1,1,1,0,1 +0,0,1,2,1,2,2,0,0,0,0,1,1,1,0,0,0,2,0,1,1 +0,1,0,2,1,0,1,1,0,2,0,2,2,1,1,1,1,0,1,0,1 +0,0,0,2,0,1,0,1,1,0,0,1,0,0,0,1,0,1,0,1,1 +0,0,1,1,1,0,0,1,0,1,0,1,0,0,0,0,1,1,1,0,1 +0,0,0,0,1,0,1,0,1,1,0,2,1,0,0,0,1,1,0,0,1 +0,1,1,0,1,2,1,0,0,1,0,1,0,0,0,1,0,1,0,1,1 +0,0,0,2,0,0,1,1,0,1,0,2,1,0,0,0,0,0,1,0,1 +0,0,0,1,0,0,1,1,0,1,0,2,0,0,0,1,1,1,1,0,1 +0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,2,1,0,1 +0,0,1,2,0,0,0,2,0,1,0,2,0,0,0,1,0,1,2,0,1 +0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1 +0,0,2,1,1,1,1,0,0,1,0,0,0,0,0,1,0,0,1,0,1 +0,1,1,2,1,0,0,1,0,0,0,2,1,0,0,0,0,0,0,2,1 +0,1,0,2,0,0,1,0,1,1,0,1,0,0,0,1,1,0,0,1,1 +0,2,0,0,0,1,0,2,0,2,1,1,0,0,0,0,0,0,2,0,1 +0,0,1,1,0,2,0,1,0,1,0,1,0,0,1,2,0,0,1,2,1 +1,0,1,0,1,1,1,1,0,0,0,0,1,0,1,0,2,2,1,0,1 +0,0,1,1,1,0,0,0,1,1,0,0,1,0,0,1,0,1,0,1,1 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1 +0,0,1,0,0,2,2,1,1,0,0,2,2,0,0,1,0,0,1,0,1 +0,1,2,0,0,0,1,0,0,0,0,2,0,0,0,0,1,0,0,1,1 +0,0,2,0,0,1,0,0,0,1,0,2,1,0,0,0,0,1,1,0,1 +0,0,1,1,1,2,1,0,0,1,0,1,0,0,0,1,0,2,1,0,1 +0,1,1,0,2,2,0,0,0,1,0,2,0,0,0,1,0,0,0,1,1 +0,0,1,1,1,1,1,1,1,1,0,1,1,0,0,1,0,0,1,1,1 +0,0,2,1,1,1,0,0,0,1,0,1,0,1,1,1,0,2,0,0,1 +0,1,1,2,1,1,1,0,0,2,0,1,0,0,0,0,0,2,1,0,1 +0,0,2,2,1,1,1,0,0,0,0,1,1,0,0,0,0,2,0,1,1 +0,0,1,0,0,1,1,0,1,0,0,1,1,0,0,2,0,1,1,0,1 +0,1,0,1,0,1,0,1,1,1,0,1,0,0,0,0,1,1,0,0,1 +0,0,1,1,0,2,0,1,0,0,0,1,0,0,0,0,1,1,2,1,1 +0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,2,0,0,1 +1,0,0,1,0,1,1,0,0,0,0,1,1,0,0,2,1,0,1,0,1 +0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,2,0,0,1,2,1 +0,1,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,1,0,0,1 +0,1,0,0,1,2,0,1,0,0,0,2,0,0,0,0,0,0,2,1,1 +0,1,0,1,1,1,0,2,0,0,0,0,0,0,2,0,0,1,0,0,1 +0,2,1,0,0,2,2,1,0,0,0,0,0,0,1,1,1,1,0,0,1 +0,0,1,0,0,1,2,0,0,1,0,0,2,0,0,1,0,0,0,0,1 +0,0,0,1,0,2,1,2,0,1,0,2,1,0,0,2,0,1,2,0,1 +0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,1,2,1,0,1 +0,0,1,0,0,1,1,1,0,0,0,1,0,0,0,1,0,2,0,1,1 +0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0,1,0,0,1 +0,0,1,2,0,2,0,2,2,0,0,2,0,0,0,1,0,0,0,2,1 +0,0,2,0,0,1,1,0,0,1,0,0,0,0,0,1,0,1,0,0,1 +0,0,0,1,1,0,2,2,0,0,0,1,0,0,0,1,0,0,0,0,1 +0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1 +0,0,1,0,0,0,1,0,0,0,0,1,1,0,0,1,0,1,1,0,1 +0,0,1,1,0,1,0,1,0,0,0,2,0,0,0,0,0,0,2,1,1 +0,0,1,0,0,1,1,0,0,0,0,1,1,0,1,2,0,2,0,0,1 +0,0,1,1,1,1,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1 +0,0,1,2,0,1,0,0,0,1,0,1,1,0,0,0,0,1,1,0,1 +0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,1,2,0,0,1 +0,0,1,0,0,0,2,1,0,1,0,1,0,0,1,0,1,1,0,1,1 +0,0,0,1,0,1,1,0,2,1,1,1,0,0,0,0,0,1,0,0,1 +0,0,1,0,0,2,1,1,0,0,0,1,1,0,0,1,1,1,1,2,1 +0,0,0,1,0,0,0,1,0,1,0,2,1,0,0,0,1,1,1,0,1 +0,0,0,0,0,1,0,0,0,2,0,1,1,0,0,2,0,2,0,0,1 +0,1,2,1,0,0,0,0,0,2,0,1,1,0,0,1,1,1,0,0,1 +0,0,0,2,1,2,1,1,0,1,0,2,0,0,0,1,0,0,1,0,1 +0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,1 +0,0,0,1,1,0,1,0,1,0,0,1,1,0,0,0,1,2,0,0,1 +0,0,1,1,0,1,0,1,0,0,0,0,0,0,0,1,0,1,0,0,1 +0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,1,1,1,0,0,1 +1,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,2,0,0,1 +0,0,1,1,0,0,1,1,1,1,0,1,1,0,0,0,0,0,1,0,1 +0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,1,1,0,1,0,1 +0,1,1,1,0,0,0,1,1,0,0,0,0,0,1,0,0,1,0,1,1 +0,0,1,1,0,0,0,2,0,0,0,2,0,0,0,0,1,0,0,1,1 +0,1,1,1,0,2,1,1,1,1,0,0,1,0,0,2,1,1,0,1,1 +1,0,1,0,0,0,2,1,1,0,0,1,1,1,0,1,1,2,1,0,1 +0,0,0,2,0,0,1,0,0,2,0,0,1,0,1,0,0,1,1,0,1 +0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,1 +0,1,0,2,2,1,1,0,0,1,0,1,0,0,0,2,1,1,1,0,1 +0,0,0,2,0,0,0,0,1,0,0,2,1,0,0,1,0,1,0,0,1 +0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,1,1 +0,0,0,0,1,1,1,2,0,0,0,0,2,0,0,2,0,0,0,0,1 +0,1,1,2,1,0,1,2,0,1,0,1,1,0,0,1,0,1,0,1,1 +0,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0,0,1 +0,0,0,2,1,1,1,0,0,1,0,1,1,0,0,2,1,0,1,1,1 +0,0,1,1,0,0,2,0,0,1,0,1,0,0,1,1,0,1,1,0,1 +0,0,0,2,1,1,0,1,0,0,0,0,0,0,0,2,0,0,1,0,1 +0,0,1,2,0,1,0,1,0,0,0,0,0,1,0,0,1,1,1,0,1 +0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,1 +0,1,0,1,1,2,0,0,0,1,0,0,1,0,0,1,0,0,0,1,1 +0,0,1,0,1,2,1,0,1,0,0,1,2,0,1,0,1,0,1,0,1 +0,0,0,2,0,2,2,0,1,2,0,2,1,0,0,1,0,1,0,0,1 +0,1,1,1,1,0,0,2,0,1,0,1,1,0,0,1,0,0,1,0,1 +1,1,1,1,0,0,1,0,1,1,0,0,1,0,0,1,1,1,1,0,1 +0,0,1,1,0,0,0,1,0,1,0,1,0,0,0,1,0,1,1,0,1 +0,0,0,1,1,1,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1 +0,1,1,1,1,1,1,1,1,2,0,2,0,1,0,0,0,1,0,0,1 +0,0,0,1,1,0,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1 +0,1,1,1,0,1,0,2,0,0,0,1,0,0,0,0,1,2,0,0,1 +0,1,1,2,0,1,1,1,0,2,0,1,1,0,0,1,0,1,0,1,1 +0,0,0,2,0,2,0,1,1,1,0,2,1,0,0,0,0,0,0,1,1 +0,0,0,2,1,1,2,1,0,0,0,2,1,0,0,0,1,1,0,1,1 +0,0,2,0,0,2,1,1,1,0,0,0,1,0,0,0,0,2,1,0,1 +0,0,1,1,0,1,0,1,0,0,0,1,1,0,0,1,0,0,1,0,1 +0,0,1,2,0,0,1,2,0,2,0,1,0,0,0,1,1,0,1,0,1 +0,1,0,1,0,1,0,0,0,2,0,1,0,0,2,0,0,1,0,1,1 +0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1 +0,1,2,0,0,1,1,1,0,2,0,1,1,0,1,2,1,1,1,0,1 +0,0,2,1,1,0,0,2,0,2,0,0,0,0,0,1,0,1,0,1,1 +0,1,0,1,0,2,0,0,1,1,0,0,1,1,0,0,1,0,0,1,1 +0,0,0,1,0,2,0,1,0,1,0,1,1,0,0,1,1,2,0,2,1 +0,2,1,2,1,0,0,0,0,1,0,1,1,0,1,0,0,2,0,0,1 +0,1,0,1,0,1,0,1,1,1,0,0,1,0,0,0,2,1,0,0,1 +0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1 +0,0,2,1,0,1,1,1,0,2,0,2,0,0,1,1,0,1,1,0,1 +0,1,0,0,1,0,0,0,1,0,0,2,0,0,0,1,0,0,0,0,1 +0,1,1,1,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1 +0,0,1,1,0,1,0,0,1,1,0,2,1,0,0,1,1,0,1,0,1 +0,1,1,1,0,0,1,2,0,0,0,1,1,0,0,0,0,1,0,1,1 +0,1,1,2,1,1,0,1,0,0,0,1,1,0,0,1,0,1,0,0,1 +0,0,0,2,1,1,1,0,0,0,0,0,0,0,1,1,0,1,0,0,1 +0,0,1,0,0,1,0,1,0,0,0,2,0,0,0,0,1,0,0,1,1 +0,0,1,1,0,1,0,1,2,1,0,2,1,0,0,1,0,1,1,0,1 +0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,1,1,1,2,1,1 +0,0,1,1,1,0,0,2,1,0,0,0,0,0,0,0,0,2,2,0,1 +0,0,0,1,2,0,0,1,0,1,0,1,0,0,0,0,0,1,0,0,1 +0,0,1,0,0,1,0,1,0,0,0,2,1,0,0,1,0,1,0,1,1 +0,0,0,0,0,1,1,0,0,1,0,1,0,1,1,0,1,1,0,1,1 +0,1,0,2,0,1,1,0,0,1,0,1,0,0,0,1,1,1,1,2,1 +0,0,0,0,0,1,0,1,0,0,1,2,0,0,1,2,0,0,1,0,1 +0,0,1,1,0,0,0,0,0,2,0,0,1,0,0,1,1,1,0,1,1 +0,0,0,1,0,1,0,2,0,1,0,1,1,0,0,1,0,2,0,0,1 +0,0,2,2,0,1,1,0,1,0,0,1,0,0,0,1,0,2,2,1,1 +0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,2,0,0,1 +0,1,0,0,0,1,1,0,0,1,0,1,0,0,0,1,0,0,0,1,1 +0,0,0,1,0,0,0,2,0,1,0,1,0,0,0,0,0,1,0,0,1 +0,1,2,1,0,1,1,1,0,0,0,2,0,0,0,0,0,1,1,0,1 +0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,2,1,1,0,1,1 +0,0,0,1,0,0,2,2,0,2,0,1,0,0,0,0,0,1,1,0,1 +0,0,0,2,1,1,1,1,1,0,0,2,0,0,1,0,0,0,0,1,1 +0,0,0,2,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,1,1 +0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,2,0,1,1 +0,1,2,1,1,1,0,1,0,1,0,2,0,0,0,1,1,1,1,0,1 +0,0,0,1,0,0,1,1,0,0,0,0,2,0,0,1,0,0,0,0,1 +0,2,0,1,0,2,0,0,0,1,0,0,0,0,0,0,0,2,0,0,1 +0,0,0,1,1,2,2,1,0,0,0,0,2,0,0,2,1,0,1,0,1 +0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,1 +0,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0,1,2,0,1,1 +0,0,1,0,1,1,1,1,0,1,0,1,1,0,0,0,0,1,0,0,1 +0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0,1,0,1 +0,0,0,2,0,2,0,0,0,0,0,2,1,0,0,0,1,1,2,1,1 +0,1,0,1,1,1,1,1,0,1,0,1,2,0,0,0,1,0,0,0,1 +0,0,1,1,0,1,2,0,0,1,0,1,0,0,0,0,2,1,0,0,1 +0,0,1,0,1,0,1,0,1,0,0,1,0,0,0,0,1,1,1,0,1 +0,1,1,1,0,0,2,1,0,2,0,1,1,2,1,1,0,0,0,0,1 +0,2,0,0,1,0,1,0,0,1,0,2,0,0,0,0,0,1,0,0,1 +0,1,1,1,1,0,0,0,1,1,0,1,1,0,0,1,0,1,0,0,1 +0,0,2,2,0,2,0,1,1,1,0,1,1,0,0,0,0,0,0,1,1 +0,0,1,1,1,2,0,1,0,0,0,1,0,0,1,0,0,0,0,1,1 +0,1,2,1,0,0,1,1,0,0,1,0,0,1,0,0,2,1,1,2,1 +0,0,0,2,1,0,1,1,0,1,0,1,1,0,0,1,0,1,1,0,1 +0,0,1,2,0,0,1,0,0,2,0,1,1,0,0,0,0,1,0,0,1 +0,0,1,1,0,2,0,1,1,1,0,0,0,0,0,0,0,2,0,1,1 +0,0,0,0,0,0,0,1,0,1,0,1,1,0,0,1,1,0,0,1,1 +0,1,0,1,0,0,1,0,1,2,0,1,1,0,0,2,0,1,0,0,1 +0,1,1,2,0,0,0,0,1,0,0,0,1,0,0,1,1,1,0,0,1 +0,1,1,1,1,0,1,1,1,2,0,1,0,0,0,1,1,0,0,0,1 +0,0,1,1,0,1,1,0,0,0,0,1,1,0,0,1,1,0,0,0,1 +0,0,0,0,0,1,1,0,0,1,0,1,0,0,0,0,0,0,0,0,1 +0,1,1,2,1,1,0,1,1,1,0,1,0,1,0,0,0,0,1,0,1 +0,1,1,1,0,1,0,1,0,1,0,1,0,0,0,1,1,2,0,0,1 +0,0,0,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1,1 +0,0,1,0,0,0,0,1,0,2,0,1,0,0,0,1,1,0,1,0,1 +0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,2,0,2,1,0,1 +0,0,0,2,0,0,1,0,1,1,0,0,0,0,0,0,0,0,1,0,1 +0,0,0,2,0,2,0,0,0,1,0,2,0,0,0,1,0,2,0,1,1 +0,0,1,0,1,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,1 +0,1,2,1,1,0,0,2,1,1,0,0,0,0,0,0,1,1,0,1,1 +0,0,1,1,1,1,0,1,1,0,0,2,1,0,1,0,0,0,1,0,1 +0,0,0,1,0,1,1,0,2,1,0,1,0,0,0,0,0,2,1,0,1 +0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,1,0,0,1,0,1 +0,0,1,1,0,0,0,1,1,0,0,1,0,0,1,1,0,1,1,0,1 +0,0,1,2,0,2,0,0,0,0,0,0,1,0,0,1,0,0,1,0,1 +0,0,2,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,1,0,1 +0,0,0,1,1,1,0,1,1,1,0,1,0,0,0,1,0,1,0,0,1 +0,0,1,0,1,1,1,1,1,0,0,1,1,0,0,1,0,0,0,0,1 +0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,1 +0,0,0,2,0,1,1,0,0,1,0,0,0,0,0,0,1,2,0,1,1 +0,0,1,2,0,1,1,2,0,0,0,0,0,0,0,0,0,0,2,0,1 +0,1,0,0,1,1,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1 +0,0,2,0,0,1,2,0,0,2,0,1,0,0,1,1,0,1,1,0,1 +0,0,1,2,0,1,0,2,1,0,0,1,0,0,1,1,0,0,0,1,1 +0,0,0,1,2,1,0,1,1,1,0,1,0,1,1,0,1,1,2,1,1 +0,0,0,1,0,1,0,2,0,1,1,0,1,0,0,1,0,0,1,0,1 +0,0,1,0,1,0,1,1,0,1,0,1,0,0,0,1,0,0,0,2,1 +0,0,1,0,2,0,0,1,0,2,0,0,2,0,0,2,2,1,1,0,1 +0,1,1,1,0,1,0,0,1,1,0,2,1,1,0,0,0,0,0,1,1 +0,1,0,1,0,2,2,0,0,0,0,1,1,0,1,0,0,1,0,1,1 +0,1,0,2,0,1,1,2,0,0,0,1,1,0,0,1,0,1,1,0,1 +0,0,2,1,1,1,1,0,2,2,1,1,0,0,0,1,0,0,0,2,1 +0,0,1,1,1,1,1,0,1,0,0,1,1,1,0,1,0,1,1,0,1 +0,0,1,2,2,1,1,1,2,0,0,0,0,0,0,2,0,1,1,0,1 +0,1,1,0,0,0,1,1,0,1,0,1,0,0,0,2,1,1,0,0,1 +0,0,2,1,0,1,1,0,1,0,0,1,1,0,0,2,1,2,1,0,1 +0,0,1,0,0,1,1,1,0,1,0,1,1,0,0,1,0,0,0,0,1 +0,0,2,1,0,1,1,2,0,1,0,1,0,0,0,1,0,0,1,0,1 +0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1 +0,1,1,1,1,1,0,1,1,0,0,0,0,0,1,0,0,2,1,0,1 +0,1,1,1,0,1,0,0,0,0,0,0,0,0,1,0,1,2,0,1,1 +0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1 +0,0,0,0,0,0,1,2,0,1,0,1,1,0,0,0,0,1,1,0,1 +0,0,0,1,0,1,1,1,1,0,0,1,0,0,0,1,1,0,2,1,1 +0,0,1,0,1,2,2,0,0,0,0,1,0,0,0,0,0,0,0,0,1 +0,0,0,0,0,1,1,1,0,0,0,1,2,0,0,0,1,2,0,0,1 +0,0,1,1,1,2,0,1,0,2,0,0,1,0,0,1,0,0,0,1,1 +0,0,0,1,0,1,0,1,0,0,0,2,0,0,0,0,0,1,1,0,1 +0,1,2,1,0,1,0,1,0,0,0,1,0,0,0,0,1,0,1,0,1 +1,1,0,2,0,0,0,2,1,1,0,0,0,0,0,0,1,1,1,0,1 +0,0,1,2,0,0,0,1,0,1,0,1,0,0,0,1,2,1,0,1,1 +0,0,0,1,1,0,0,2,0,0,0,0,1,0,0,1,0,1,0,0,1 +0,0,2,1,0,2,1,1,0,0,0,2,0,0,0,0,0,1,0,0,1 +0,2,1,1,0,0,1,0,0,1,0,1,0,0,0,1,0,1,1,0,1 +0,0,1,1,1,0,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1 +0,0,1,2,0,1,0,1,0,0,0,0,0,0,0,1,0,1,1,0,1 +0,1,1,1,0,0,1,0,0,0,0,1,0,0,0,0,0,2,0,1,1 +0,0,0,1,0,0,0,1,1,2,0,0,0,1,0,1,0,0,1,0,1 +0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,2,0,0,1 +0,0,0,1,1,1,0,1,0,1,0,2,0,1,0,2,0,0,1,0,1 +0,0,2,0,0,1,0,0,0,1,0,0,1,0,0,0,0,1,1,0,1 +0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,1 +0,0,1,1,0,0,1,1,0,1,0,0,1,0,0,1,0,2,0,0,1 +0,0,0,1,0,0,2,1,1,1,0,0,0,1,0,2,0,1,0,1,1 +0,1,1,2,1,2,1,1,0,0,0,2,0,0,0,2,1,0,0,1,1 +0,0,1,1,0,2,1,2,0,0,0,2,0,1,0,1,1,0,0,1,1 +0,0,2,1,0,1,1,2,0,2,0,2,1,0,1,1,0,2,0,1,1 +0,1,0,2,1,1,1,1,1,0,0,0,1,1,0,0,2,0,0,1,1 +0,0,1,1,0,0,0,1,0,2,0,0,1,0,0,0,0,0,0,0,1 +0,1,1,0,1,2,0,0,1,1,1,0,0,0,0,1,0,1,2,1,1 +0,1,0,0,1,0,0,0,2,1,0,0,1,0,0,0,1,0,1,0,1 +0,0,1,1,1,0,1,0,0,0,0,1,1,0,1,0,1,1,1,0,1 +0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,0,0,1 +0,0,1,0,1,1,0,1,1,1,0,0,2,0,0,0,2,2,2,0,1 +0,0,0,0,0,1,1,2,2,1,0,1,0,0,0,0,1,0,1,0,1 +0,1,1,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1 +0,1,0,2,0,1,1,1,1,0,0,1,1,0,1,1,1,0,0,1,1 +0,0,1,1,1,2,0,0,0,1,0,2,1,0,0,1,0,0,0,1,1 +0,0,1,1,1,1,0,0,0,1,0,2,0,0,0,1,0,0,1,0,1 +0,0,0,2,0,2,0,0,0,0,0,1,1,0,0,1,0,1,1,1,1 +0,0,1,2,1,2,0,1,0,1,0,0,1,0,0,1,1,0,0,1,1 +0,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,1 +0,0,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,1,0,1,1 +0,0,1,2,0,2,0,2,0,1,0,1,0,0,0,0,1,2,0,1,1 +0,0,0,0,0,1,0,0,1,1,0,2,1,0,0,1,0,1,1,0,1 +0,0,1,1,0,0,1,1,1,0,0,1,0,0,0,0,1,1,0,0,1 +0,0,0,1,1,0,0,1,0,1,0,2,1,0,0,0,0,1,0,0,1 +1,0,0,2,0,2,0,2,1,0,0,0,0,0,1,0,1,1,0,0,1 +0,1,0,0,0,0,1,1,0,1,0,1,1,0,0,1,0,2,1,0,1 +0,1,1,1,0,1,1,2,1,1,0,2,0,0,0,1,0,0,0,1,1 +0,1,0,1,0,2,1,2,0,0,0,1,0,0,0,1,0,1,0,0,1 +0,0,1,0,1,1,1,1,0,1,0,0,1,0,0,1,1,0,0,1,1 +0,0,1,0,0,2,1,1,0,1,0,1,0,0,0,2,0,2,0,2,1 +0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,1 +0,0,1,0,0,1,0,1,1,1,0,1,0,0,0,2,1,0,0,1,1 +0,1,0,1,0,0,0,1,0,1,0,1,1,0,0,2,1,1,0,1,1 +0,0,1,1,0,0,0,0,0,0,0,2,2,0,0,1,1,1,1,0,1 +0,0,1,2,0,1,1,1,1,2,0,0,1,0,0,0,0,1,2,1,1 +0,0,1,2,0,1,0,1,1,1,0,1,2,0,0,0,1,0,1,0,1 +0,0,2,1,1,1,0,0,1,2,0,0,0,0,0,0,0,0,0,0,1 +0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,1,1,0,1,1 +0,0,0,1,0,2,0,0,0,0,0,0,0,0,1,1,1,2,1,0,1 +0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,1,0,1,1 +1,0,1,0,0,0,0,1,0,0,0,2,2,0,0,1,0,2,1,0,1 +0,1,0,1,0,1,1,1,0,1,0,2,1,0,0,1,1,0,0,1,1 +0,0,0,2,1,0,0,1,1,1,0,2,0,0,0,1,1,0,0,0,1 +0,0,0,1,0,0,0,0,0,0,0,2,1,0,0,1,0,0,0,1,1 +0,1,2,2,0,0,2,0,0,0,0,0,1,0,1,1,0,1,0,0,1 +0,1,0,0,0,0,0,2,0,1,0,1,0,0,0,0,0,0,1,0,1 +0,1,1,1,1,0,1,1,0,0,0,0,0,0,0,1,0,0,1,0,1 +0,0,1,2,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,1,1 +0,0,0,2,1,2,0,1,0,1,0,2,0,0,0,0,1,2,0,0,1 +0,0,0,1,1,1,0,0,0,0,0,1,1,0,0,2,1,1,0,0,1 +0,0,2,1,0,2,0,1,0,0,0,1,0,0,0,1,1,1,0,0,1 +0,2,0,0,0,0,0,1,0,1,0,0,0,0,0,1,1,1,1,0,1 +0,0,0,0,1,1,0,2,0,1,0,1,0,0,0,1,1,1,0,1,1 +0,0,1,1,0,1,0,1,0,1,0,2,1,0,0,0,0,1,0,0,1 +0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,1,1,1,0,0,1 +0,1,0,1,0,1,0,0,1,2,0,0,0,0,0,1,0,1,0,1,1 +0,1,0,0,1,1,0,1,0,1,0,2,0,0,0,1,0,1,0,0,1 +0,1,0,1,0,2,0,2,0,0,0,0,0,0,0,1,0,1,1,0,1 +0,0,0,0,0,1,1,2,0,2,0,0,0,0,0,1,1,1,0,1,1 +0,0,2,2,0,2,0,2,1,0,0,1,1,0,0,0,0,2,0,0,1 +0,0,0,0,0,1,1,0,0,1,0,2,0,0,0,1,0,1,0,0,1 +0,0,2,0,0,0,1,2,0,0,0,0,0,0,1,0,0,0,0,0,1 +0,0,0,1,0,0,0,1,1,2,0,1,0,0,0,0,0,0,0,0,1 +0,1,2,0,1,0,0,0,0,1,0,1,1,0,0,1,0,0,0,1,1 +0,0,1,1,1,1,0,1,1,0,0,1,0,0,0,1,0,0,1,2,1 +0,0,2,2,0,2,1,1,1,1,0,1,0,1,0,0,0,0,0,1,1 +0,0,1,0,0,2,0,0,0,1,0,1,1,0,0,1,0,0,0,1,1 +0,0,0,0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,0,1 +0,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0,2,1,0,0,1 +0,1,1,0,1,1,2,0,1,0,0,2,2,0,0,1,0,2,0,1,1 +0,0,1,2,1,1,1,1,0,2,0,0,0,0,0,1,2,1,0,1,1 +0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1 +0,0,0,1,1,2,0,1,0,1,0,1,1,0,0,1,1,0,0,1,1 +0,1,1,1,0,0,1,1,0,1,1,0,2,0,0,1,0,1,0,0,1 +0,0,1,1,1,0,0,1,0,0,0,1,0,0,1,0,1,0,0,1,1 +0,0,1,1,2,0,0,0,1,0,0,2,0,0,0,1,1,2,2,1,1 +0,0,1,0,0,0,0,2,0,2,0,0,0,0,0,1,0,0,0,1,1 +0,0,2,1,0,0,1,1,0,1,0,1,2,0,1,1,0,1,0,0,1 +0,0,0,0,1,1,1,0,0,1,0,1,0,0,0,1,0,1,1,1,1 +0,0,1,2,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1 +0,0,1,1,1,1,0,0,1,1,0,1,0,0,0,1,1,1,1,0,1 +0,0,1,1,0,1,2,1,0,1,0,1,0,0,0,1,1,1,0,2,1 +0,1,0,0,0,1,1,1,1,1,0,1,1,0,0,0,0,0,0,0,1 +0,0,1,2,0,0,1,0,0,1,0,1,1,0,0,0,1,1,1,0,1 +0,0,2,2,0,1,0,1,0,1,0,1,1,0,0,1,0,1,1,1,1 +0,0,1,1,0,2,1,1,0,1,0,1,0,1,0,0,1,0,0,0,1 +0,0,1,1,0,1,0,0,0,1,0,1,0,0,0,0,2,1,2,0,1 +0,1,1,1,0,2,0,0,0,0,0,1,1,0,2,1,0,1,1,0,1 +0,0,1,1,0,1,1,1,0,1,0,1,0,0,0,0,1,1,0,1,1 +0,0,0,1,1,1,1,1,1,2,0,1,1,0,0,1,0,0,0,0,1 +0,0,0,1,1,1,0,0,1,0,0,0,1,0,0,0,1,1,0,0,1 +0,1,1,0,1,0,1,1,0,0,0,1,0,0,1,1,0,0,2,1,1 +0,0,0,2,0,1,0,0,0,0,0,0,2,0,0,2,0,2,1,0,1 +0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,1,0,2,0,0,1 +0,0,1,0,1,0,1,1,1,1,0,0,1,0,0,0,1,1,0,0,1 +0,1,0,1,1,1,1,2,0,0,0,1,1,0,0,0,0,1,0,1,1 +0,0,1,1,1,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,1 +0,0,1,2,1,1,0,1,0,2,0,1,0,0,0,1,0,0,0,1,1 +0,0,1,1,1,0,0,0,1,1,0,0,1,0,0,0,1,1,0,0,1 +0,1,0,0,0,2,0,1,1,1,0,2,1,0,0,1,0,0,0,0,1 +0,0,1,1,1,0,0,0,1,2,0,0,0,0,0,2,0,2,0,0,1 +0,0,0,1,1,2,1,0,1,0,0,2,0,0,0,1,0,1,0,2,1 +0,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,1,0,1,2,1 +0,0,0,1,1,2,1,0,0,0,0,1,1,0,0,1,0,0,0,0,1 +0,0,1,2,1,1,0,1,0,1,0,1,0,0,0,1,1,0,2,0,1 +0,0,2,1,0,1,2,1,1,0,0,1,1,0,0,1,1,0,0,0,1 +0,1,1,1,1,2,0,1,1,1,0,0,0,0,0,0,0,1,1,0,1 +0,0,0,0,0,0,0,0,1,0,0,1,1,1,0,0,0,1,0,0,1 +0,0,1,0,0,2,0,0,0,1,0,1,1,0,0,2,0,1,0,1,1 +0,2,1,1,0,0,1,0,1,1,0,1,1,0,0,1,1,1,0,1,1 +0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,1 +0,1,1,1,0,1,0,0,0,0,0,2,0,0,1,1,0,0,1,0,1 +0,0,0,1,0,0,0,0,1,2,0,2,0,1,0,0,0,0,1,0,1 +0,0,0,2,0,0,1,1,0,2,0,0,1,0,0,1,0,2,0,0,1 +0,0,1,2,1,2,2,1,1,1,0,0,1,0,0,0,0,0,0,1,1 +0,0,1,1,0,1,1,1,0,1,0,0,1,0,0,0,2,2,1,0,1 +0,1,1,1,0,2,0,1,1,0,0,0,0,0,1,0,1,0,1,0,1 +0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,1,1,0,0,1,1 +0,0,0,1,1,0,0,1,0,1,0,1,1,0,0,0,1,1,0,0,1 +0,0,1,2,1,1,0,2,1,1,0,1,0,0,0,1,0,1,0,0,1 +0,0,1,1,1,2,1,0,0,1,0,1,0,0,0,2,0,0,0,1,1 +0,0,2,1,1,1,0,1,0,1,0,1,0,0,1,0,1,2,0,2,1 +0,0,0,2,1,1,2,1,1,0,1,0,0,0,1,1,1,1,0,1,1 +0,1,1,1,0,1,1,2,0,2,0,2,2,0,0,0,0,0,0,0,1 +1,0,1,0,0,0,0,2,0,0,0,1,2,0,0,2,0,0,1,0,1 +0,1,1,1,0,0,2,0,0,2,0,1,0,0,0,0,0,0,0,1,1 +0,0,1,0,0,1,0,2,1,0,0,1,1,0,0,0,0,1,2,0,1 +0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1 +0,1,2,1,1,2,2,1,0,0,0,1,2,0,0,1,1,2,0,1,1 +0,0,1,0,1,0,0,0,0,1,0,2,1,0,0,1,0,2,0,0,1 +0,0,1,1,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,1 +0,0,1,1,1,0,0,0,0,0,0,1,0,0,0,1,0,1,1,0,1 +0,0,0,0,0,0,0,0,0,0,0,2,2,0,1,0,0,2,0,1,1 +0,0,0,0,1,1,0,0,0,0,0,1,0,1,0,2,0,1,0,1,1 +0,1,2,1,0,0,0,1,0,1,0,1,0,0,0,1,0,0,1,0,1 +0,0,0,2,0,1,1,1,0,2,0,1,0,0,0,0,0,0,0,0,1 +0,1,1,0,0,2,0,1,0,1,0,2,0,0,0,0,0,1,0,0,1 +0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,1 +0,0,2,0,0,0,0,0,0,1,0,1,0,1,0,1,1,2,0,1,1 +0,0,1,0,0,2,1,1,0,1,1,1,0,1,0,2,0,2,1,0,1 +0,0,1,2,1,0,0,0,1,1,0,0,1,0,0,1,1,1,0,1,1 +0,0,0,1,0,2,0,2,0,0,0,1,1,0,0,1,2,0,0,1,1 +0,0,0,1,0,2,1,2,1,2,0,2,0,0,0,0,0,1,0,1,1 +0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,1 +0,0,1,0,1,0,0,1,1,1,0,2,1,1,0,0,1,0,0,0,1 +0,0,1,0,0,1,1,2,2,2,0,2,0,0,0,1,1,2,0,1,1 +0,1,1,1,0,1,0,2,1,1,0,1,0,0,1,0,0,0,1,0,1 +0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1 +0,1,0,0,1,0,1,1,0,1,0,1,0,0,0,2,1,1,1,0,1 +0,0,0,1,0,2,2,2,0,1,0,1,2,0,0,1,2,0,0,0,1 +0,0,0,1,0,2,0,1,0,2,0,1,1,0,0,1,0,1,1,0,1 +0,0,2,1,0,0,0,0,0,1,0,0,1,1,0,1,0,0,0,1,1 +0,1,0,0,0,0,0,0,1,1,0,1,2,0,1,0,1,1,0,0,1 +0,0,1,0,0,2,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1 +0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,1 +0,0,1,1,0,0,1,1,1,1,0,1,0,0,0,0,0,0,1,0,1 +0,1,1,0,1,2,0,0,0,0,0,0,1,0,1,1,0,0,1,0,1 +0,2,1,1,0,0,0,0,0,0,0,1,0,0,1,1,0,1,2,0,1 +0,0,1,2,0,1,0,1,1,1,0,2,1,0,0,2,1,1,0,1,1 +0,0,0,1,0,0,2,1,1,2,0,2,1,0,0,1,1,1,1,0,1 +0,0,1,2,1,0,0,1,0,2,0,1,0,0,0,1,0,0,0,0,1 +0,0,0,0,0,1,1,2,2,0,0,1,0,0,0,0,1,1,0,1,1 +0,0,1,0,0,1,1,1,1,1,0,1,0,0,0,0,0,0,1,0,1 +0,0,1,2,0,1,1,0,0,2,0,0,1,0,1,1,0,0,2,0,1 +0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,1,0,1 +0,0,0,1,0,1,1,1,1,0,0,2,1,0,0,0,0,0,0,1,1 +0,0,2,0,0,0,0,0,1,1,0,1,2,0,0,0,0,1,0,0,1 +0,0,0,1,1,0,2,1,1,1,0,1,0,0,1,0,1,1,0,1,1 +0,1,0,2,0,1,0,1,1,1,0,0,0,0,0,1,0,1,0,1,1 +0,0,2,1,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1 +0,1,1,2,0,0,1,2,0,0,0,1,1,0,0,0,1,2,1,0,1 +0,0,1,1,1,1,1,1,0,2,0,1,1,0,1,1,1,2,0,0,1 +0,1,0,1,0,0,1,2,0,0,1,1,1,0,1,0,1,2,1,0,1 +0,0,1,1,2,0,0,2,0,1,0,1,0,0,0,0,1,1,1,0,1 +0,1,1,1,0,0,1,1,0,1,0,1,0,0,0,1,2,1,1,0,1 +0,0,1,1,1,2,1,1,1,1,0,2,1,0,0,1,0,1,2,0,1 +0,0,1,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0,0,1 +0,0,0,0,0,0,0,0,2,0,0,2,0,1,0,2,0,1,1,0,1 +0,0,1,1,0,2,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1 +0,0,0,2,0,0,0,0,0,0,0,1,1,0,0,1,0,0,1,0,1 +0,0,2,1,1,0,0,1,0,1,0,1,0,0,0,1,2,0,0,1,1 +0,0,2,0,0,1,0,0,0,0,0,1,1,0,0,1,0,0,1,0,1 +0,1,0,0,0,1,1,0,0,1,0,2,0,0,0,2,0,1,1,0,1 +0,0,1,0,1,0,0,0,0,0,0,1,0,0,1,2,1,1,0,0,1 +0,1,1,0,0,1,0,0,1,2,0,1,0,0,0,1,1,1,0,1,1 +0,0,1,0,1,0,1,2,0,1,0,1,0,0,0,1,0,0,1,0,1 +0,1,1,1,0,1,1,1,1,0,0,1,0,0,0,1,0,2,0,1,1 +0,0,1,2,0,2,0,1,0,0,0,2,0,0,0,0,0,1,0,0,1 +0,0,0,1,2,1,0,0,0,0,0,0,1,0,0,0,1,1,0,1,1 +0,0,0,1,1,1,0,2,0,1,0,2,0,0,0,0,0,0,1,0,1 +0,0,1,2,1,1,0,1,0,1,0,0,0,0,1,1,0,0,0,1,1 +0,0,0,1,0,1,1,2,0,1,0,0,0,0,0,1,0,2,1,2,1 +0,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1 +0,0,0,1,0,1,1,1,0,0,0,0,2,0,1,1,0,2,0,1,1 +0,0,2,0,1,1,0,0,0,0,0,2,1,0,0,1,0,1,0,1,1 +0,0,0,2,1,0,0,1,0,0,0,0,0,1,1,1,0,2,0,1,1 +0,1,0,1,0,1,1,0,0,0,0,2,2,0,0,2,2,0,0,0,1 +0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,1,1,2,0,0,1 +0,1,2,1,0,1,1,0,1,0,0,1,0,0,0,1,2,1,0,0,1 +0,0,2,2,1,2,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1 +0,1,1,0,0,2,1,1,0,1,0,1,0,0,0,0,1,0,0,0,1 +0,0,0,0,0,1,1,1,0,1,0,1,0,0,0,2,1,1,0,2,1 +0,0,0,0,0,2,1,0,1,2,0,2,0,0,0,1,1,0,0,1,1 +0,0,0,2,0,0,0,1,0,0,0,1,1,0,0,0,0,1,0,0,1 +0,0,2,1,0,0,0,0,0,1,0,1,1,0,1,1,0,1,0,0,1 +0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,1,0,1 +1,1,0,1,1,0,0,0,0,1,0,2,0,0,0,1,0,2,0,1,1 +0,1,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1 +0,0,1,1,0,2,0,1,0,0,0,1,1,0,0,1,1,2,0,0,1 +0,0,1,0,0,1,0,0,0,0,0,1,1,0,0,1,0,1,0,1,1 +0,0,1,1,0,2,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1 +0,0,1,1,1,1,1,0,0,2,0,0,0,0,1,0,0,0,0,0,1 +0,0,1,0,1,1,0,1,0,0,0,0,0,1,0,0,1,2,1,0,1 +0,0,1,1,0,0,1,1,0,1,0,2,0,0,0,1,0,1,0,0,1 +0,0,2,1,1,2,0,0,1,0,0,1,0,0,0,1,0,0,0,1,1 +0,0,0,1,0,1,1,0,1,1,0,0,1,0,0,2,0,0,0,1,1 +0,0,1,1,0,1,0,0,0,0,0,2,2,0,1,1,1,0,0,1,1 +0,0,1,0,1,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,1 +0,1,0,1,1,1,0,2,0,1,0,2,1,0,0,0,0,2,0,0,1 +0,1,0,1,1,1,0,2,0,2,0,0,0,0,0,1,0,1,1,0,1 +0,0,0,0,0,0,0,1,0,2,0,2,1,0,1,1,0,2,0,1,1 +0,1,0,1,0,2,0,0,0,0,0,0,1,0,0,1,0,1,0,1,1 +0,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,0,1,1 +0,0,0,0,1,2,1,0,0,2,0,1,0,0,0,0,1,1,0,0,1 +0,1,0,1,0,1,0,0,0,2,0,1,0,0,0,2,1,1,0,1,1 +0,1,0,1,0,2,0,0,0,1,0,0,1,0,1,1,0,1,0,1,1 +0,0,1,2,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1 +0,0,0,0,1,1,0,2,1,1,1,2,0,0,0,0,0,1,0,0,1 +0,1,2,0,0,2,0,2,1,0,0,0,1,0,0,1,1,1,0,1,1 +0,0,1,1,0,0,0,1,1,0,0,2,0,0,0,0,1,0,0,2,1 +0,0,1,1,0,0,1,2,0,1,0,2,0,0,0,2,1,1,0,0,1 +0,0,0,1,0,1,1,0,0,2,0,0,1,0,0,0,1,0,0,1,1 +0,0,0,0,0,2,1,1,0,2,0,2,0,0,0,0,0,1,0,0,1 +0,0,2,1,1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,1 +0,0,1,1,0,2,0,0,0,0,0,1,1,0,0,1,0,1,0,1,1 +0,1,2,0,1,0,1,0,1,0,0,1,1,0,0,0,2,2,0,1,1 +0,0,1,2,1,0,0,1,1,0,0,1,0,0,0,2,0,1,1,0,1 +0,0,1,1,0,0,0,1,0,1,0,2,1,0,0,1,1,0,1,0,1 +0,0,0,1,0,0,1,0,0,0,0,2,0,0,1,2,1,1,0,1,1 +0,1,0,2,1,0,1,1,2,0,0,1,0,0,0,0,1,0,0,0,1 +0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,1 +0,0,0,1,0,1,0,2,0,0,0,0,1,1,0,1,0,1,0,1,1 +0,0,0,1,0,1,0,1,2,1,0,1,0,0,0,0,0,1,1,0,1 +1,0,1,1,1,0,0,0,1,0,0,2,1,0,0,2,0,1,1,0,1 +0,1,0,0,0,1,0,1,0,1,0,2,0,0,0,0,0,1,0,0,1 +0,0,1,2,0,1,0,0,1,0,0,2,0,0,0,0,0,1,0,1,1 +0,0,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1 +0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1 +0,0,1,1,0,1,0,2,0,0,0,2,0,0,0,0,0,2,0,0,1 +0,0,0,0,0,0,1,1,0,0,0,1,1,0,1,0,0,0,0,0,1 +0,0,1,2,0,0,0,1,0,0,0,0,0,0,1,2,1,1,1,0,1 +0,0,0,1,0,1,0,1,1,2,0,0,0,0,0,1,0,1,0,1,1 +0,0,1,1,0,1,0,1,1,0,0,0,1,0,0,1,0,1,0,1,1 +0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,2,0,0,1 +0,0,2,0,0,0,0,1,0,0,0,1,2,0,0,2,1,1,1,0,1 +0,0,2,1,0,0,0,1,0,0,0,1,0,0,0,0,1,1,0,0,1 +0,0,2,1,0,2,2,0,0,1,0,2,1,0,0,0,1,0,0,1,1 +0,0,0,1,1,1,0,0,0,0,0,0,1,0,0,1,0,0,2,1,1 +0,1,1,2,0,1,1,1,0,0,0,2,1,0,0,0,0,2,1,0,1 +0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,1,2,2,1,2,1 +0,0,0,2,0,1,0,0,0,1,0,0,1,0,0,0,0,2,0,0,1 +0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,2,0,0,1,1 +0,0,0,1,1,2,1,1,0,0,0,2,1,0,1,0,1,0,0,1,1 +0,0,2,2,0,1,1,0,1,1,0,2,0,0,0,1,0,0,0,1,1 +0,0,0,0,0,1,0,0,0,1,0,0,0,0,1,2,0,0,0,0,1 +0,0,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1 +0,1,0,1,0,2,1,1,0,0,0,0,0,1,0,1,0,1,0,0,1 +0,0,1,2,1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,1 +0,0,0,1,0,2,0,1,1,1,0,1,1,0,2,0,0,1,2,1,1 +0,0,0,1,1,1,0,2,0,1,0,0,0,0,1,0,0,0,0,0,1 +0,0,1,0,2,1,0,1,0,0,0,0,0,0,0,1,1,1,1,0,1 +0,1,1,1,0,1,0,1,0,1,0,1,0,0,0,0,0,1,0,1,1 +0,0,2,2,0,1,1,0,2,1,0,1,0,0,0,0,0,1,0,1,1 +0,0,0,0,0,1,0,1,0,2,0,2,0,1,0,1,0,0,1,2,1 +0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1 +0,0,0,0,0,2,1,0,1,1,0,2,1,0,0,2,1,2,1,0,1 +0,0,2,1,0,0,2,2,0,1,0,0,1,0,0,0,0,1,0,0,1 +0,0,1,0,0,1,2,0,1,0,0,2,0,0,0,0,0,0,0,0,1 +0,1,0,2,0,1,1,0,2,1,0,0,1,0,0,0,1,0,0,0,1 +0,0,0,0,1,1,1,2,2,1,0,1,0,0,0,0,0,1,0,2,1 +0,0,0,2,0,0,0,1,0,1,0,1,0,1,0,0,1,1,1,0,1 +0,0,2,1,0,2,1,1,0,1,0,1,2,0,0,0,0,1,1,0,1 +0,0,0,0,0,1,1,2,0,1,0,0,1,0,0,0,1,2,0,1,1 +0,0,2,2,0,2,1,1,0,1,0,2,1,0,0,1,0,2,0,1,1 +0,0,0,2,1,1,1,0,1,1,0,1,0,0,0,0,0,2,2,0,1 +0,0,1,1,0,1,1,0,0,1,0,0,1,0,1,0,1,1,1,0,1 +0,1,0,2,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1 +0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,1,0,0,0,1,1 +0,1,0,1,0,1,1,0,0,0,0,1,0,0,0,1,1,1,1,0,1 +0,2,1,1,0,0,0,0,0,2,0,0,2,2,1,0,0,0,1,0,1 +0,1,0,1,0,1,0,1,0,0,0,1,0,0,0,1,1,2,2,1,1 +0,0,1,2,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,1 +0,1,0,1,0,2,0,2,0,0,0,1,0,0,0,0,0,1,1,0,1 +0,0,1,1,0,1,1,0,0,1,0,1,0,0,0,1,1,1,0,0,1 +0,0,0,1,0,1,1,2,0,2,0,0,1,0,0,1,0,1,1,0,1 +0,0,2,0,0,2,0,0,1,1,0,1,0,0,0,0,1,1,0,1,1 +0,0,1,0,1,1,1,1,0,1,0,2,1,0,0,2,1,1,0,0,1 +0,0,0,2,0,1,0,2,0,1,0,2,0,0,0,1,2,0,0,0,1 +0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,2,1,2,1,0,1 +0,1,0,1,0,1,0,1,0,1,0,1,0,0,0,0,0,2,0,0,1 +0,0,0,0,2,0,1,0,0,2,0,1,0,1,0,1,0,0,1,0,1 +0,0,1,1,0,1,0,0,2,1,0,1,0,0,1,1,0,0,2,0,1 +0,0,1,1,0,1,0,1,1,0,1,1,0,0,0,0,0,1,0,0,1 +0,0,2,2,0,1,0,2,0,1,0,0,0,0,0,0,0,2,0,1,1 +0,1,1,2,0,0,0,1,1,2,0,1,0,0,0,1,1,2,0,0,1 +0,0,0,2,1,1,0,1,1,0,0,1,1,0,0,0,0,1,0,1,1 +0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,2,0,0,1,1 +0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,1,0,0,0,0,1 +0,0,0,1,0,1,1,0,1,0,0,1,0,0,1,2,1,1,0,1,1 +0,0,1,1,0,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0,1 +0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,1,1,0,1,1 +0,0,1,2,0,0,2,1,1,1,0,2,0,0,0,1,0,1,0,0,1 +0,0,0,1,1,2,0,1,1,0,0,2,1,0,0,1,0,0,0,1,1 +0,0,1,1,0,1,0,1,0,2,0,1,0,1,0,0,2,0,0,0,1 +0,0,0,2,1,1,0,0,0,1,0,1,2,0,0,0,0,0,1,0,1 +0,1,1,1,0,0,1,1,0,0,0,1,0,0,0,1,1,1,1,0,1 +0,0,0,1,0,0,0,0,0,2,0,0,0,0,1,0,1,1,0,0,1 +0,1,1,0,1,2,1,1,0,0,0,0,1,0,1,0,1,1,0,0,1 +0,0,1,1,0,1,1,1,1,1,0,2,0,0,0,0,0,2,1,0,1 +0,1,1,1,0,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,1 +0,0,0,1,1,1,0,1,0,1,0,1,2,0,0,0,0,0,0,0,1 +0,0,1,1,0,1,0,2,0,1,0,1,2,0,0,1,0,0,0,1,1 +0,1,1,0,1,0,0,1,1,1,0,2,0,0,1,0,1,1,0,1,1 +0,0,1,0,0,1,1,1,0,2,0,1,0,0,0,1,0,1,0,1,1 +0,0,1,0,0,1,1,1,0,1,0,0,1,0,0,0,2,0,0,0,1 +0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,2,1,1 +0,0,1,0,0,1,0,0,0,2,0,0,0,1,1,1,0,1,0,1,1 +0,0,2,1,0,1,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1 +0,1,1,2,1,1,1,1,0,0,0,2,1,0,0,0,0,0,0,1,1 +0,0,0,1,0,0,1,1,1,1,0,1,0,0,0,1,0,1,0,0,1 +0,1,0,0,0,1,1,1,2,1,0,1,1,0,0,1,1,0,0,1,1 +0,1,1,1,1,0,0,0,0,1,0,0,0,0,0,1,0,1,1,0,1 +0,0,0,1,0,1,1,1,0,0,0,2,1,0,1,0,0,0,0,0,1 +0,0,1,0,0,1,0,1,0,2,0,1,2,0,1,0,1,1,0,0,1 +0,0,2,0,1,1,1,0,1,1,0,1,0,0,0,0,0,0,1,0,1 +0,2,1,2,0,1,0,2,1,1,0,1,0,0,0,0,0,2,0,1,1 +0,1,1,1,1,1,1,1,1,1,0,2,0,0,0,1,1,0,1,0,1 +0,0,1,0,0,1,0,2,0,2,0,1,2,0,0,1,2,0,0,1,1 +0,0,1,2,1,1,1,1,0,0,0,0,0,0,1,1,0,2,0,1,1 +0,1,0,0,0,1,1,2,0,0,0,1,0,0,0,0,0,0,0,1,1 +0,0,1,1,1,1,0,1,0,0,0,0,0,0,0,1,0,2,0,1,1 +0,0,2,1,0,1,1,0,1,0,0,1,0,0,0,1,0,0,0,1,1 +0,0,1,1,0,1,0,0,0,1,0,1,0,0,1,1,1,2,1,0,1 +0,0,1,1,0,1,0,0,0,0,0,2,2,0,0,1,1,1,1,0,1 +0,0,1,0,1,0,0,1,0,1,0,1,0,0,0,0,1,0,1,0,1 +0,0,1,1,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,1 +0,0,2,0,1,0,0,1,0,0,0,2,1,0,0,1,0,0,0,1,1 +0,0,1,0,0,1,1,1,0,0,0,0,1,0,0,2,0,0,0,0,1 +0,1,0,2,0,2,0,2,0,1,0,2,0,0,0,1,0,0,0,0,1 +0,0,1,1,1,0,1,1,0,0,0,2,0,0,0,0,0,2,1,0,1 +0,0,0,2,0,1,0,0,0,2,0,1,0,0,0,0,1,1,1,0,1 +0,1,1,1,0,0,1,1,0,0,0,1,0,0,0,1,0,1,1,0,1 +0,0,1,1,1,0,0,0,0,1,0,2,0,0,0,1,1,0,1,0,1 +0,0,2,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,0,0,1 +0,0,1,2,0,1,0,0,0,2,0,2,0,0,1,1,0,1,0,0,1 +0,0,2,0,1,0,1,1,0,2,0,1,1,0,0,1,1,1,0,1,1 +0,0,2,2,1,1,1,0,0,2,0,1,0,0,0,2,0,1,1,2,1 +0,0,0,0,0,1,0,1,1,2,0,0,2,0,0,0,0,1,0,1,1 +0,0,1,1,1,0,0,1,0,2,0,0,0,0,0,1,0,1,0,1,1 +0,0,0,1,0,1,1,0,0,0,0,2,0,0,0,1,0,0,1,0,1 +0,0,0,2,0,0,2,1,0,2,0,0,0,0,0,0,0,0,0,0,1 +0,0,2,1,1,2,0,1,0,0,0,1,0,0,0,1,2,1,0,1,1 +0,0,1,2,0,0,0,0,1,2,0,0,1,0,0,0,0,0,0,1,1 +0,1,0,0,0,1,1,1,0,2,0,2,0,0,0,1,1,0,0,1,1 +0,0,2,1,1,1,1,1,0,1,0,2,0,0,0,1,0,1,2,0,1 +0,1,0,0,1,1,0,2,0,0,0,1,0,0,0,0,0,2,0,0,0 +0,0,1,2,2,1,1,1,1,1,0,0,0,1,1,2,1,1,1,1,0 +0,0,0,0,0,1,1,1,1,0,0,1,0,0,1,1,0,2,0,0,0 +0,0,1,2,0,1,0,0,0,1,0,1,1,0,0,0,0,1,1,1,0 +0,1,0,1,1,0,1,0,0,1,0,2,1,1,0,2,0,1,0,0,0 +0,0,0,2,0,0,0,0,0,2,0,2,0,0,0,1,1,0,0,0,0 +0,0,1,0,0,2,0,0,0,1,0,1,0,0,1,1,1,1,0,0,0 +0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0,1,1,1,1,0 +0,0,2,1,0,1,1,1,0,1,0,1,1,0,0,2,1,0,0,0,0 +0,0,1,1,1,1,1,1,0,1,0,1,1,0,0,0,0,0,0,0,0 +0,0,0,1,0,1,1,0,0,2,0,2,0,1,0,0,0,1,0,0,0 +0,0,2,1,0,2,2,0,1,0,0,0,0,0,0,1,1,0,2,0,0 +0,0,1,0,0,1,0,2,0,0,0,2,1,0,0,0,0,0,0,0,0 +0,0,0,1,0,1,0,2,1,0,0,0,0,0,1,1,0,2,1,1,0 +0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0,1,2,0,0 +0,0,2,1,2,1,1,2,0,2,0,2,0,0,0,1,1,2,0,0,0 +0,0,0,0,0,0,1,2,0,0,0,1,0,0,0,1,0,1,1,1,0 +0,0,1,1,0,2,1,1,1,0,0,0,0,0,0,2,2,2,0,0,0 +0,0,0,1,0,0,2,1,1,1,0,0,1,0,0,2,0,2,1,1,0 +0,0,1,1,1,2,0,1,0,1,0,1,1,0,0,1,0,1,0,0,0 +0,0,0,2,1,1,0,1,1,0,0,1,1,1,0,0,1,1,1,1,0 +0,0,1,1,0,0,0,0,1,1,0,1,0,0,0,1,0,1,1,1,0 +0,0,1,1,0,1,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0 +0,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,1,1,0,0,0 +0,0,0,1,0,1,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0 +0,0,1,2,0,0,0,2,0,2,0,2,0,0,0,1,0,1,0,0,0 +0,0,0,1,0,0,1,1,1,2,0,1,0,0,0,0,0,2,2,0,0 +0,0,2,1,0,0,0,1,1,0,0,0,1,0,0,0,0,2,0,0,0 +0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0 +0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0 +0,0,0,1,1,0,1,2,0,1,0,2,1,0,0,1,0,2,0,0,0 +0,0,1,1,1,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0 +0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,1,0,0,0 +0,1,1,1,0,0,0,1,1,1,0,1,1,0,1,1,0,1,1,1,0 +0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0 +0,0,1,1,1,0,2,1,0,1,0,1,1,0,0,0,1,0,0,0,0 +0,0,1,1,0,1,1,1,0,1,0,1,0,0,1,0,2,0,0,0,0 +0,1,1,2,1,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +0,0,2,1,1,2,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0 +0,0,1,1,1,1,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0 +0,0,0,2,1,1,1,0,0,2,0,0,0,0,0,0,0,1,0,0,0 +0,0,1,0,0,2,2,1,0,1,0,2,0,0,0,1,0,1,0,0,0 +0,0,1,1,0,1,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0 +0,0,0,1,1,0,0,2,0,1,0,1,1,0,1,1,0,0,1,1,0 +0,1,0,1,0,0,1,2,0,1,0,1,1,0,0,2,1,1,1,0,0 +0,1,0,1,0,1,0,1,0,0,0,1,2,0,0,2,0,0,0,0,0 +0,0,1,1,1,0,1,0,0,1,0,0,0,0,0,0,0,0,1,1,0 +0,0,0,1,0,1,1,1,2,2,0,1,0,0,0,1,0,0,1,1,0 +0,0,1,1,1,1,0,1,1,2,0,1,0,0,1,1,0,1,0,0,0 +0,0,1,1,1,1,0,0,0,2,0,1,1,1,0,2,1,0,0,0,0 +0,0,1,2,0,1,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0 +0,0,1,0,0,1,0,1,1,1,0,1,0,0,0,2,0,0,1,1,0 +0,0,0,2,1,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0 +0,1,0,1,1,1,1,0,0,0,0,2,1,0,0,1,0,0,0,0,0 +0,0,1,2,1,1,0,0,1,1,0,1,1,1,1,0,0,1,1,1,0 +0,1,1,1,0,0,2,1,0,0,0,2,1,0,0,1,1,0,0,0,0 +0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,2,0,1,0,0,0 +0,0,0,1,0,0,1,1,1,1,0,1,0,0,1,0,1,0,1,1,0 +0,0,2,0,1,1,1,2,0,1,0,2,0,0,0,1,2,0,1,1,0 +0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,2,0,0,0 +0,0,1,2,1,1,0,0,1,1,0,1,0,1,1,1,0,0,1,1,0 +0,0,0,1,0,1,1,0,1,1,0,0,0,0,0,0,0,2,1,1,0 +0,1,0,0,0,2,1,2,0,0,0,1,1,0,0,0,1,0,0,0,0 +0,1,1,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,0,0,0 +0,0,2,0,0,1,1,0,1,1,0,0,1,1,0,0,0,0,0,0,0 +0,0,1,1,0,1,0,0,1,2,0,0,1,0,0,1,1,0,1,1,0 +0,0,0,2,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0 +1,0,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0 +0,0,1,1,0,1,0,0,0,2,0,2,2,0,0,1,1,2,0,0,0 +0,0,0,2,0,2,1,1,0,0,0,1,1,0,0,0,0,1,1,1,0 +0,0,1,0,1,0,0,0,1,0,1,2,1,0,1,1,0,0,0,0,0 +0,0,2,1,0,1,1,1,1,1,0,0,1,0,0,0,1,0,0,0,0 +0,1,0,1,1,2,0,1,1,0,0,0,1,0,0,0,0,1,0,0,0 +0,1,1,2,0,2,0,0,1,2,0,1,1,0,1,1,0,0,0,0,0 +0,0,0,1,1,0,1,0,0,1,0,2,0,0,0,1,0,0,0,0,0 +0,0,1,0,0,1,1,2,0,0,0,2,0,0,0,2,0,0,1,1,0 +0,0,1,0,2,1,0,1,0,0,0,2,0,0,1,1,0,0,0,0,0 +0,1,1,0,0,1,0,1,0,2,0,1,1,0,1,0,0,2,1,1,0 +0,0,1,1,0,1,0,2,0,1,0,0,1,1,0,1,0,0,1,1,0 +0,0,1,0,0,0,0,1,0,1,0,1,0,0,1,1,0,2,2,0,0 +0,0,1,0,0,1,2,1,0,1,0,1,1,0,0,1,0,1,2,1,0 +0,0,1,0,0,1,1,0,1,1,0,0,0,0,0,2,0,1,0,0,0 +0,0,1,0,1,0,1,2,0,1,0,1,0,0,1,1,1,2,1,1,0 +0,0,0,1,1,1,1,0,1,1,0,1,0,1,1,0,0,0,1,1,0 +0,1,0,2,0,1,0,2,1,1,0,1,0,0,1,1,0,2,1,1,0 +0,0,0,1,0,0,0,2,0,1,0,0,0,0,0,0,1,0,0,0,0 +0,1,1,1,0,0,0,0,1,0,0,1,1,0,1,0,0,2,0,0,0 +0,0,0,0,0,2,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0 +0,0,1,0,0,0,0,1,0,1,1,1,2,0,0,1,1,0,1,1,0 +0,0,1,1,1,0,0,0,1,0,0,2,0,0,0,1,0,1,0,0,0 +0,0,1,0,0,1,2,2,2,1,0,1,0,0,0,1,0,1,1,1,0 +0,0,0,2,0,0,0,1,0,2,0,1,0,0,0,0,1,0,0,0,0 +0,0,0,1,1,0,0,0,1,0,0,2,0,0,0,1,0,1,0,0,0 +0,1,2,0,0,0,1,2,0,2,0,0,0,0,0,0,0,1,0,0,0 +0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,0 +0,0,1,2,0,0,1,1,0,1,0,1,1,0,0,1,0,1,0,0,0 +0,0,0,0,2,1,1,1,0,1,0,1,1,0,0,1,2,0,0,0,0 +0,0,1,0,1,0,1,1,0,1,0,1,0,0,0,0,1,1,0,0,0 +0,1,0,0,1,0,0,1,0,1,0,1,1,0,0,0,2,2,0,0,0 +0,2,2,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1,1,1,0 +0,1,1,1,0,1,0,2,1,1,0,0,2,0,0,1,0,1,2,0,0 +0,0,1,2,1,1,2,1,0,1,0,1,1,0,1,1,0,0,0,0,0 +0,1,0,1,0,0,0,1,1,1,0,0,1,0,0,0,2,1,0,0,0 +0,1,0,1,0,0,0,1,0,1,0,2,2,0,0,0,0,0,0,0,0 +0,1,1,0,1,0,0,0,0,1,0,1,1,0,0,1,1,1,0,0,0 +0,0,2,2,0,0,0,0,0,0,0,1,1,0,0,0,2,1,0,2,0 +0,0,1,1,0,1,0,0,0,0,0,0,2,0,0,1,0,1,1,1,0 +0,0,1,0,2,2,0,0,1,1,1,1,0,0,0,2,0,0,1,1,0 +0,0,1,1,0,1,0,1,1,0,0,0,1,0,0,0,1,1,0,1,0 +0,1,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,1,0 +0,0,1,1,0,1,0,1,0,0,0,2,1,0,0,1,0,1,0,0,0 +0,1,1,1,0,1,0,2,1,0,0,1,0,0,0,0,0,2,0,0,0 +0,1,1,2,0,1,0,1,0,0,0,0,0,0,0,1,0,0,1,1,0 +0,1,1,1,0,1,1,0,0,1,0,1,1,0,0,1,0,2,1,0,0 +0,1,1,2,0,1,0,0,0,1,0,2,0,0,0,2,0,1,1,1,0 +0,1,0,2,1,0,0,0,0,2,0,0,1,0,1,0,0,0,1,1,0 +0,0,2,0,0,1,1,1,0,0,0,2,1,0,0,1,0,1,1,1,0 +0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0 +0,1,0,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,0 +0,0,1,1,0,0,0,1,0,2,0,2,0,0,0,1,0,2,0,0,0 +0,0,0,1,0,1,2,0,0,0,0,1,1,0,0,1,0,1,0,0,0 +0,0,1,1,0,1,1,1,0,2,0,0,0,0,0,1,0,1,0,0,0 +0,1,2,0,1,1,1,1,1,1,0,0,0,0,0,1,0,0,1,1,0 +0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0,1,2,0,0 +0,0,2,1,0,1,0,1,0,1,0,1,1,0,0,1,0,1,1,1,0 +0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,1,0,2,0,0,0 +0,0,2,0,0,0,1,1,1,0,0,0,0,0,1,1,0,1,1,1,0 +0,0,1,1,0,0,0,1,1,2,0,1,0,0,0,0,0,0,0,0,0 +0,0,0,2,1,1,0,0,0,1,0,1,0,0,0,0,0,1,1,1,0 +0,0,1,1,0,2,0,0,1,2,0,1,2,0,0,1,0,1,1,1,0 +0,0,0,1,0,2,0,2,1,2,0,0,0,0,1,0,0,2,1,1,0 +0,1,1,0,2,1,0,2,0,0,0,1,0,0,1,1,0,1,0,0,0 +0,0,2,0,0,1,0,1,1,2,0,1,1,0,0,0,0,1,2,0,0 +0,1,1,1,1,1,1,1,1,0,0,1,0,0,1,2,0,1,1,1,0 +0,0,0,0,1,2,0,2,0,1,0,2,0,0,1,0,0,1,1,1,0 +0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0 +0,0,0,0,0,1,2,0,1,1,0,2,2,0,0,0,1,0,0,0,0 +0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,1,1,0,0,0 +0,1,0,0,1,1,0,0,0,1,0,2,0,0,1,0,1,2,0,0,0 +0,0,0,0,0,1,1,0,0,0,0,1,0,1,0,0,1,0,1,1,0 +0,0,0,1,1,0,0,1,0,2,0,0,1,0,0,0,0,1,0,0,0 +0,0,1,0,0,1,1,1,1,0,0,0,1,0,2,0,0,1,0,0,0 +0,0,1,0,0,0,0,1,0,2,0,0,2,0,0,1,1,2,0,2,0 +0,0,2,0,0,1,0,1,1,0,0,1,0,0,0,0,1,2,0,0,0 +0,0,1,1,0,0,1,1,0,1,0,1,0,0,0,1,0,0,0,0,0 +0,2,2,2,1,2,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0 +0,0,1,1,0,0,0,2,0,1,0,1,1,0,0,2,0,2,1,1,0 +0,0,1,2,1,0,0,0,0,2,0,2,1,0,0,1,0,1,0,1,0 +0,0,0,1,2,1,0,0,0,1,0,1,0,0,0,0,0,2,1,1,0 +0,0,2,2,1,2,2,0,1,0,0,0,0,0,0,1,1,1,0,0,0 +0,0,1,2,0,1,0,0,0,0,0,1,1,0,0,1,0,1,1,1,0 +0,1,2,2,0,2,0,0,0,0,0,2,0,0,0,1,1,0,0,0,0 +0,0,1,1,1,1,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0 +0,0,0,2,0,2,0,1,2,1,0,0,0,0,0,2,1,1,0,0,0 +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0 +0,0,1,2,0,0,1,2,0,2,0,2,0,0,0,0,1,1,1,1,0 +0,0,1,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,0,0,0 +0,0,1,1,0,0,1,1,0,2,0,1,1,0,1,1,0,0,0,1,0 +0,0,0,1,0,0,1,2,0,1,0,0,1,0,0,1,0,2,0,0,0 +0,0,2,1,1,1,0,0,0,0,0,1,0,0,1,0,1,1,0,0,0 +0,0,1,1,1,1,0,0,0,0,0,0,1,0,0,1,2,1,1,1,0 +0,0,0,1,0,0,1,1,0,2,0,2,0,0,1,1,1,1,0,0,0 +0,0,1,1,2,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,0 +0,0,0,1,0,1,1,0,0,1,0,1,0,0,0,1,0,1,0,0,0 +0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,2,0,0,0 +0,0,2,1,1,0,0,0,0,1,0,2,0,0,0,1,0,0,0,0,0 +0,0,1,1,1,1,0,2,0,1,0,1,0,0,0,0,1,0,1,1,0 +0,0,1,0,0,1,0,1,1,1,1,2,1,0,0,1,2,0,0,0,0 +0,0,0,0,2,0,0,1,0,0,0,2,1,0,0,1,1,0,0,0,0 +0,0,1,1,0,2,1,0,0,0,0,2,1,0,0,0,2,0,0,0,0 +1,2,0,0,0,1,0,1,0,0,0,2,1,0,0,0,1,2,1,1,0 +0,1,2,0,0,0,0,1,0,2,0,0,0,0,0,0,1,0,1,1,0 +0,1,2,1,0,0,1,1,0,2,1,1,1,0,0,1,0,0,2,0,0 +0,0,0,2,0,0,0,0,2,0,0,0,0,0,0,1,1,2,1,1,0 +0,1,1,0,0,2,1,2,0,1,0,2,0,1,0,0,0,1,0,0,0 +0,0,0,2,0,0,1,2,1,0,0,1,1,0,0,0,1,0,0,1,0 +0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,1,2,0,0,0,0 +0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,2,0,0,1,1,0 +0,0,1,1,0,2,1,0,1,0,0,0,0,0,0,1,1,1,1,1,0 +0,1,0,1,0,1,0,1,0,0,0,2,1,0,0,0,0,0,0,0,0 +0,0,2,1,1,0,1,0,0,0,0,1,0,0,0,1,1,2,1,1,0 +0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +0,1,1,1,0,1,0,0,1,0,0,0,1,0,0,1,1,0,0,2,0 +0,0,2,0,0,1,1,0,0,0,0,1,1,0,0,1,0,2,2,0,0 +0,0,0,1,0,1,1,0,0,1,0,2,0,0,0,1,1,2,0,1,0 +0,0,1,1,0,0,0,0,1,1,0,1,0,0,0,2,0,0,0,0,0 +0,0,2,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,2,0,0 +0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0 +0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0 +0,0,1,1,0,2,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0 +0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,2,0,0,0 +0,1,0,1,1,2,1,0,0,1,0,0,2,0,1,0,0,1,1,1,0 +0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,2,0,0,0 +0,0,0,0,0,0,0,1,1,1,0,1,1,0,0,0,0,1,0,0,0 +0,0,1,2,1,1,0,1,0,2,0,0,0,0,1,1,0,0,0,0,0 +0,0,0,1,0,2,1,1,0,0,0,2,0,0,0,1,1,1,0,0,0 +0,0,0,0,0,0,0,0,0,2,1,1,0,1,0,0,0,1,1,1,0 +0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,2,1,1,0 +0,0,0,0,1,1,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0 +0,0,0,2,0,1,1,0,0,0,0,1,0,0,0,1,0,0,1,1,0 +0,0,1,1,1,2,0,2,1,0,0,1,0,0,1,1,1,2,0,0,0 +0,0,1,0,0,2,0,0,0,2,0,2,0,0,0,1,0,1,0,0,0 +0,2,0,0,1,1,1,2,1,1,0,1,1,0,0,1,1,1,2,0,0 +0,1,2,0,0,0,0,1,1,0,0,1,0,0,1,1,1,1,0,0,0 +0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +0,0,0,1,0,2,0,1,1,0,0,0,1,1,1,1,0,1,1,1,0 +0,1,1,2,0,1,0,1,0,2,0,1,1,0,0,1,0,2,1,1,0 +0,0,0,1,0,1,1,1,0,2,0,1,1,0,0,2,0,1,0,0,0 +0,0,1,1,0,2,2,0,0,1,0,0,0,0,1,0,0,0,0,0,0 +0,1,2,0,0,1,0,1,0,1,0,1,1,0,0,1,0,1,1,1,0 +0,1,0,1,0,1,1,0,0,1,1,1,0,0,1,1,1,2,2,0,0 +0,1,2,1,0,1,1,1,0,2,0,2,1,0,0,0,1,1,0,0,0 +0,0,0,0,1,1,1,1,1,0,0,2,1,0,0,0,0,1,0,0,0 +0,0,0,2,1,1,0,0,1,0,0,1,0,0,0,1,1,2,0,0,0 +0,0,1,1,0,0,2,2,0,0,0,1,0,0,0,0,0,2,2,0,0 +0,0,1,1,0,0,2,0,1,2,0,1,0,0,1,0,0,0,0,0,0 +0,1,1,0,0,1,0,0,2,2,0,0,1,0,1,1,0,1,0,0,0 +0,0,0,1,0,1,0,0,2,1,0,2,1,0,0,0,1,0,1,1,0 +0,0,1,2,0,0,1,0,0,1,1,2,0,0,0,0,1,1,0,0,0 +0,0,0,2,0,2,1,1,2,1,0,0,0,0,1,0,1,1,0,0,0 +0,1,0,0,1,2,1,1,0,1,0,1,1,0,1,1,0,2,1,1,0 +0,1,1,0,0,1,0,1,1,1,0,0,1,0,0,1,1,2,0,0,0 +0,0,0,2,1,0,0,1,1,2,0,0,1,0,0,0,0,0,0,0,0 +0,0,1,0,0,2,0,2,0,0,0,0,1,0,0,0,0,1,0,2,0 +0,1,1,0,0,2,2,0,0,1,0,1,0,0,1,1,0,1,2,1,0 +0,0,0,2,0,1,2,1,0,1,0,1,0,0,0,0,0,1,0,0,0 +0,1,1,2,1,1,0,1,1,0,0,0,0,0,0,1,0,1,0,0,0 +0,0,1,1,0,2,0,0,2,2,0,1,0,0,0,0,0,1,0,0,0 +0,0,2,2,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,2,0 +0,0,1,1,1,0,0,1,0,1,0,1,0,0,0,2,2,1,0,0,0 +0,0,2,1,0,2,1,0,0,0,0,0,0,0,0,1,0,2,1,1,0 +0,0,1,1,1,1,1,0,0,0,0,2,0,1,2,0,1,2,0,0,0 +0,1,1,0,1,1,0,0,0,1,0,1,0,1,1,0,0,2,1,1,0 +0,0,0,0,0,2,0,1,0,1,0,0,1,0,0,0,1,0,1,1,0 +0,0,1,1,0,0,0,2,0,1,0,0,0,0,1,0,1,1,1,1,0 +0,0,2,0,1,1,1,1,0,0,0,0,0,1,0,0,1,0,1,1,0 +0,1,0,2,1,1,1,1,1,0,0,1,1,1,0,0,1,1,0,1,0 +0,0,1,1,0,1,0,0,1,1,0,2,0,0,0,1,0,0,0,0,0 +0,0,1,1,0,0,2,2,0,2,0,2,1,0,0,0,0,0,0,0,0 +0,0,2,2,1,2,2,0,2,0,0,0,0,0,1,0,1,2,0,0,0 +0,0,1,2,0,0,0,0,0,1,0,2,1,0,0,0,0,0,1,1,0 +0,1,0,1,0,1,1,0,0,1,0,0,1,0,0,0,1,0,1,1,0 +0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0 +0,0,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,1,0,2,0 +0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0 +0,0,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,1,0,1,0 +0,0,0,0,0,1,2,1,0,0,0,2,0,0,0,1,1,2,0,0,0 +0,0,1,1,1,0,1,0,0,1,0,1,0,0,0,0,0,1,1,1,0 +0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,1,1,0,0,0 +0,0,0,1,0,2,0,0,1,0,0,0,1,0,0,1,1,1,2,0,0 +0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,1,1,0,0,0,0 +0,0,0,1,1,2,1,0,0,0,0,2,0,0,0,1,1,0,1,1,0 +0,0,1,0,1,1,0,1,1,0,0,0,1,0,0,1,1,2,1,1,0 +0,0,2,0,1,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0,0 +0,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0 +0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,1,0 +0,0,0,0,1,1,1,0,0,1,0,0,1,0,0,0,1,0,0,0,0 +0,0,2,2,1,2,1,0,0,2,0,1,2,0,1,0,0,0,0,2,0 +0,1,1,2,0,0,1,1,0,1,0,2,0,0,0,1,0,1,0,0,0 +0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0 +0,0,1,1,1,0,1,0,2,0,0,0,0,0,0,1,0,1,0,0,0 +0,1,2,1,0,1,0,2,0,0,0,1,1,0,0,1,2,0,1,1,0 +0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0 +0,1,1,1,0,2,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0 +0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1,0,0,1,1,0 +0,0,1,1,1,2,0,1,0,0,1,0,0,0,0,0,2,1,0,0,0 +0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,1,1,1,1,1,0 +0,0,1,0,1,0,0,1,0,0,0,0,0,0,0,2,0,2,0,0,0 +0,0,1,2,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0 +0,0,0,1,0,1,1,1,0,1,0,1,1,0,0,1,0,2,0,0,0 +0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,2,0,1,0,0,0 +0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,1,2,2,0,0,0 +0,0,0,0,0,0,1,2,0,1,0,2,0,1,0,0,0,0,1,1,0 +0,0,0,2,2,0,0,1,1,1,0,1,0,0,0,0,0,1,0,0,0 +0,0,2,0,0,1,2,0,1,0,0,0,0,0,0,1,0,0,0,0,0 +0,0,0,1,0,0,1,0,0,1,0,2,0,0,0,0,1,0,0,0,0 +0,1,1,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0 +0,0,1,2,0,2,0,0,0,0,0,1,1,0,0,1,1,2,1,1,0 +0,0,1,1,0,1,2,1,1,0,0,1,0,0,0,0,0,0,0,0,0 +0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0 +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0 +0,0,1,1,0,0,1,2,0,2,0,1,1,0,0,1,1,0,1,1,0 +0,1,1,0,1,1,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0 +0,0,0,1,0,2,0,0,0,1,0,1,0,0,0,2,0,1,1,1,0 +0,0,2,0,0,1,0,1,0,0,0,1,0,0,0,1,1,1,0,0,0 +0,0,1,1,0,0,1,2,1,0,0,0,1,0,0,0,1,1,0,0,0 +0,0,1,0,1,1,1,1,0,1,0,0,1,0,1,1,0,0,1,1,0 +0,0,0,0,1,1,2,2,1,1,0,2,0,0,0,1,0,0,0,0,0 +0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,1,0,1,0,0,0 +0,1,1,0,0,0,0,2,0,0,0,0,1,0,0,1,0,0,1,1,0 +0,0,1,1,0,0,2,1,0,1,0,0,0,0,0,1,1,2,0,2,0 +0,1,1,2,1,0,0,2,0,1,0,2,1,0,0,0,0,1,1,1,0 +0,0,0,1,2,1,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0 +1,1,1,1,0,0,0,1,2,1,0,2,0,1,0,0,0,0,1,1,0 +0,0,1,1,0,2,2,1,0,0,0,2,1,0,1,2,0,2,0,0,0 +0,0,1,1,1,0,1,1,1,0,0,0,2,0,0,1,0,1,0,0,0 +0,0,1,2,0,2,2,1,0,0,0,1,0,1,1,1,1,1,1,1,0 +0,0,0,2,0,0,1,0,1,1,0,1,0,0,0,1,1,0,1,1,0 +0,0,0,2,0,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0 +0,0,0,1,1,0,1,0,1,1,0,1,1,0,0,1,0,2,1,1,0 +0,0,1,1,1,1,1,0,1,1,0,1,2,0,0,1,0,1,0,2,0 +0,1,1,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0 +0,0,0,1,0,2,0,1,0,1,0,1,1,0,0,1,1,0,1,1,0 +0,0,2,0,0,1,1,2,0,1,0,0,0,0,0,1,1,2,1,1,0 +0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +0,0,1,2,1,2,0,2,0,0,0,1,1,0,1,1,0,0,0,0,0 +0,0,1,2,0,0,1,1,0,1,0,1,0,0,0,0,0,2,0,0,0 +0,0,1,2,0,0,1,0,0,1,0,0,0,0,0,0,1,1,0,0,0 +0,0,0,2,0,1,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0 +1,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,1,1,1,1,0 +0,1,0,0,0,0,0,2,1,1,0,1,0,0,0,1,0,0,1,1,0 +0,0,0,1,0,1,0,0,1,0,0,2,0,0,0,0,0,1,0,0,0 +0,1,1,0,0,1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0 +0,0,1,0,0,1,0,1,0,0,0,1,1,0,1,1,0,1,1,1,0 +0,0,1,2,1,1,1,0,1,1,0,0,0,0,0,2,0,0,1,1,0 +0,0,2,2,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0 +0,0,2,0,1,0,0,2,1,1,0,0,0,1,0,0,0,1,0,0,0 +0,0,1,1,0,0,1,1,1,1,0,1,0,0,0,2,1,1,0,0,0 +0,0,2,1,1,1,0,1,0,1,0,1,0,0,0,0,0,2,0,0,0 +0,1,0,1,0,1,0,0,1,0,0,1,2,0,1,1,1,1,0,0,0 +0,0,1,0,0,1,0,1,1,1,0,0,0,0,0,1,0,1,0,0,0 +0,0,1,0,0,2,1,0,0,1,0,1,1,0,0,1,1,0,1,1,0 +0,0,1,0,1,0,0,0,1,1,0,1,2,0,0,1,0,0,0,0,0 +0,0,1,0,0,2,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0 +0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,2,0,0 +0,0,1,2,1,2,1,0,1,1,0,0,0,0,0,1,0,1,1,1,0 +0,1,1,2,0,1,0,0,1,0,0,2,1,0,1,0,0,1,0,0,0 +0,1,1,1,0,0,1,2,0,1,0,1,1,0,1,1,0,2,0,0,0 +0,0,1,1,0,2,1,1,0,1,1,0,1,0,1,1,1,0,0,0,0 +0,0,2,0,0,1,0,2,1,2,0,0,2,0,0,0,1,2,0,0,0 +0,1,1,2,0,2,0,0,2,1,0,2,1,0,0,0,0,2,0,0,0 +0,0,1,2,0,2,0,1,1,1,0,2,1,0,0,1,1,1,1,1,0 +0,1,1,0,0,2,1,0,0,1,0,0,0,0,0,0,0,1,1,1,0 +1,1,0,2,0,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,0 +0,1,1,0,0,1,1,1,0,0,0,2,1,0,0,1,1,1,0,0,0 +0,1,0,1,0,0,0,1,0,1,0,1,0,0,0,0,1,0,0,0,0 +0,0,1,2,0,2,1,1,0,1,0,1,1,0,0,1,1,1,1,1,0 +0,0,0,2,0,2,1,1,0,0,0,1,1,0,0,1,0,1,0,0,0 +0,0,2,1,0,0,0,1,0,1,0,0,1,0,0,1,1,1,1,1,0 +0,0,2,1,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0 +0,0,0,1,0,1,1,0,0,1,0,1,0,0,0,0,0,1,0,0,0 +0,0,0,0,0,1,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0 +0,0,1,0,0,2,0,0,0,2,0,0,0,0,0,0,1,2,1,1,0 +0,0,0,2,0,1,1,1,0,1,0,1,2,0,0,1,1,1,0,0,0 +0,0,1,1,1,0,2,2,1,0,0,1,0,0,0,2,0,0,2,0,0 +0,0,2,2,0,0,0,1,0,1,0,2,0,0,0,0,0,1,1,1,0 +0,0,0,2,0,1,1,0,0,1,0,2,2,0,0,0,1,0,1,1,0 +0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,2,1,1,1,1,0 +0,0,2,0,0,1,1,0,2,1,0,2,1,0,0,0,1,0,1,1,0 +0,0,0,1,0,1,1,0,1,1,0,0,0,0,0,1,0,1,0,0,0 +0,0,0,1,0,1,0,2,0,1,0,1,0,0,0,1,0,0,0,0,0 +0,0,1,1,0,1,2,0,0,2,0,0,0,1,0,1,0,1,0,0,0 +0,0,1,2,0,2,1,1,0,1,0,1,2,0,0,0,0,2,0,0,0 +0,0,1,1,0,1,0,0,0,2,0,1,0,0,0,1,0,2,0,0,0 +0,0,0,1,0,2,0,0,0,1,0,1,0,1,0,0,0,0,1,1,0 +0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,2,1,0,1,1,0 +0,0,2,1,1,0,0,0,1,1,0,1,1,0,0,1,0,1,0,0,0 +0,0,0,1,0,0,0,2,0,1,0,1,0,0,0,0,0,1,0,0,0 +0,0,1,1,0,1,0,0,0,1,0,1,0,0,0,2,0,2,0,0,0 +0,0,0,0,0,1,0,1,0,2,0,2,1,0,0,0,1,2,1,1,0 +0,1,0,0,0,0,0,1,2,0,0,0,1,0,0,1,0,1,0,0,0 +0,0,1,2,0,1,0,1,1,2,0,1,1,0,0,1,1,0,0,0,0 +0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,1,1,1,0,0,0 +0,0,0,2,0,0,0,2,0,0,0,1,0,0,0,1,0,1,1,1,0 +0,1,2,1,0,1,1,0,2,0,0,1,1,0,0,1,1,1,0,0,0 +0,0,2,1,0,0,0,1,0,2,0,0,0,0,0,0,0,1,0,0,0 +0,1,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0 +0,1,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,0,1,1,0 +0,0,0,1,1,0,0,1,0,1,0,1,0,0,1,1,1,1,1,1,0 +0,1,1,2,1,0,0,0,0,2,0,0,0,0,0,0,1,2,0,0,0 +0,0,2,2,0,1,0,1,0,1,0,1,1,0,0,0,0,1,1,1,0 +0,0,1,0,1,0,1,1,0,2,0,1,0,0,0,0,2,1,0,0,0 +0,1,1,0,0,0,0,1,0,1,0,2,0,0,0,1,0,0,1,1,0 +0,1,1,0,0,0,1,0,0,1,0,1,0,0,0,0,1,2,0,0,0 +0,0,2,1,1,0,0,0,1,2,0,2,1,0,0,0,0,1,0,0,0 +0,1,0,1,0,0,0,1,0,1,0,0,2,0,0,1,0,0,1,2,0 +1,0,1,2,0,0,0,0,0,1,0,2,1,0,0,0,0,1,0,0,0 +0,1,1,1,0,0,1,1,0,0,0,1,0,0,0,0,1,0,0,0,0 +0,0,1,1,1,0,0,1,0,0,0,1,1,1,0,0,0,1,2,0,0 +0,1,1,0,0,1,1,1,0,1,0,1,0,0,0,1,1,0,2,0,0 +0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0 +0,0,0,1,1,1,0,1,0,2,0,2,0,0,0,1,1,1,1,1,0 +0,0,2,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 +0,1,1,1,1,0,0,0,2,1,0,0,2,0,0,2,0,1,0,0,0 +0,1,1,1,0,0,0,1,0,0,0,2,0,0,1,1,1,1,0,0,0 +0,0,2,1,1,1,0,2,0,0,0,0,0,0,0,2,1,1,0,0,0 +0,0,0,0,1,0,0,0,0,2,0,1,0,0,0,1,0,0,0,0,0 +0,0,1,0,1,0,0,1,0,1,0,1,0,0,0,1,0,0,1,1,0 +0,0,0,0,0,1,1,1,1,1,0,2,0,0,0,1,2,1,0,0,0 +0,0,1,1,0,1,0,0,0,2,0,0,0,0,0,1,1,0,0,0,0 +0,0,1,0,1,0,0,1,0,0,0,2,0,0,0,2,1,1,0,0,0 +0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +0,0,2,2,0,1,0,0,2,1,0,1,1,0,0,1,0,1,1,1,0 +0,1,1,0,0,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0 +0,0,0,1,2,1,0,2,0,0,0,2,0,0,0,0,0,1,0,0,0 +0,0,1,2,0,1,2,1,0,1,0,0,0,0,0,1,0,0,0,0,0 +0,0,1,1,1,1,1,1,1,1,0,1,1,0,0,0,0,1,0,2,0 +0,0,1,0,0,1,0,1,0,0,0,2,2,0,0,0,1,1,0,0,0 +0,0,1,0,0,0,0,1,0,2,0,0,1,0,0,0,1,2,0,0,0 +0,0,0,1,1,1,1,1,0,2,0,0,0,0,0,0,1,0,0,0,0 +0,0,2,1,2,1,1,2,0,1,0,0,0,0,0,1,0,2,0,0,0 +0,1,1,2,0,2,1,1,1,0,0,0,0,0,0,1,0,2,0,0,0 +0,0,2,1,1,2,0,1,0,0,0,0,0,1,0,1,1,1,1,1,0 +0,0,1,1,0,0,1,1,0,2,0,0,0,0,0,1,1,2,1,1,0 +0,0,0,1,1,0,1,1,1,1,0,0,2,0,1,1,0,0,0,0,0 +0,0,1,1,0,1,0,1,1,2,0,0,2,0,0,1,0,0,0,0,0 +0,0,1,1,0,1,0,1,1,0,0,1,1,0,2,2,1,1,1,1,0 +0,0,1,1,0,1,0,0,1,0,1,1,0,0,1,0,0,1,0,0,0 +0,0,0,0,1,1,0,2,1,1,0,1,2,0,1,0,0,0,0,1,0 +0,0,0,1,1,1,1,0,0,1,0,2,0,0,0,0,0,1,0,0,0 +0,0,2,0,0,1,0,0,1,2,0,0,0,0,0,0,0,1,0,0,0 +0,0,1,1,0,0,2,0,1,1,0,1,0,0,0,1,0,2,0,0,0 +0,0,1,1,0,1,0,1,0,1,0,0,1,1,0,0,1,2,0,0,0 +0,1,1,1,0,1,0,0,0,0,0,1,0,0,0,2,0,2,1,1,0 +0,0,1,1,0,1,1,1,0,1,0,0,0,0,0,0,1,1,0,0,0 +0,1,1,0,1,0,1,1,0,0,0,1,1,0,0,0,1,1,0,0,0 +0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0 +0,0,2,1,0,0,0,1,0,0,0,1,0,0,0,2,1,1,0,2,0 +0,0,1,0,1,1,1,2,0,0,0,1,1,0,0,0,0,1,0,0,0 +0,1,0,2,0,2,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0 +0,1,0,1,1,2,0,0,0,1,0,0,0,0,1,2,0,2,0,0,0 +0,1,0,2,0,1,0,1,0,1,0,1,1,0,0,0,0,1,1,1,0 +0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,2,0,0,0 +0,1,2,0,0,0,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0 +0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0 +0,0,0,1,0,1,0,0,1,1,0,1,2,0,0,0,0,0,2,0,0 +1,0,2,0,1,2,1,1,0,2,0,0,1,0,0,0,0,2,2,1,0 +0,0,1,1,1,1,1,1,0,2,0,0,0,0,1,0,0,1,1,1,0 +0,1,2,1,0,2,1,2,0,0,0,1,1,0,0,0,0,1,0,1,0 +0,0,0,2,0,0,0,0,0,2,0,1,1,0,0,0,1,0,1,1,0 +0,0,1,1,1,1,1,1,0,0,0,1,1,0,0,0,2,1,0,0,0 +0,0,0,2,0,1,2,1,0,0,0,2,1,0,0,1,1,0,0,0,0 +0,0,1,1,0,1,1,1,1,0,0,2,1,0,1,1,0,1,0,0,0 +0,0,0,0,0,2,0,1,1,2,0,1,1,0,0,1,2,1,0,2,0 +0,0,1,1,0,1,1,0,1,1,0,1,1,0,0,0,0,0,1,1,0 +1,1,1,1,1,1,0,1,1,0,0,1,0,0,0,0,1,0,0,0,0 +0,1,0,0,0,2,1,0,0,0,0,1,1,0,1,2,0,0,1,1,0 +0,0,0,2,0,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0 +0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,1,1,0,1,1,0 +0,1,0,0,2,2,0,1,0,2,0,0,0,0,0,0,1,0,0,0,0 +0,1,1,0,1,0,1,1,0,1,0,0,1,0,0,0,1,0,0,0,0 +0,0,2,2,0,0,0,2,1,1,0,0,0,0,2,0,0,0,2,0,0 +0,0,0,0,0,0,1,1,2,0,0,1,0,0,1,0,0,1,1,1,0 +0,0,1,1,1,1,0,1,1,2,0,0,0,0,1,2,0,2,0,0,0 +0,1,0,0,1,2,0,1,0,0,0,1,0,0,1,0,2,2,0,0,0 +0,0,1,1,0,2,0,2,1,0,0,0,1,0,0,1,0,1,1,1,0 +0,0,2,1,0,1,0,1,0,1,0,2,0,0,0,1,0,2,0,0,0 +0,0,1,2,0,0,0,1,1,2,0,0,0,0,0,1,0,1,0,0,0 +0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0 +0,0,1,1,0,0,0,1,0,1,0,2,0,0,1,1,1,1,0,0,0 +0,1,1,1,0,1,1,1,0,0,0,0,1,0,0,0,0,1,0,0,0 +0,1,2,0,1,2,1,2,1,1,0,0,1,0,0,1,1,1,0,0,0 +0,0,2,1,1,0,1,1,1,1,0,1,0,0,0,2,0,0,0,0,0 +0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,0 +0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,1,1,0 +0,0,0,0,1,1,1,2,0,0,0,1,0,0,0,0,0,0,0,0,0 +0,0,0,1,1,1,1,0,0,1,0,1,0,0,0,1,0,0,0,0,0 +0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0,0,2,0,0,0 +0,0,1,2,0,1,1,1,0,1,0,0,2,0,0,2,0,1,1,1,0 +0,0,0,1,0,1,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0 +0,0,0,1,0,0,0,0,0,1,0,0,2,0,0,1,0,0,1,1,0 +0,0,0,1,0,1,0,1,0,0,0,1,0,0,0,0,0,2,0,0,0 +0,0,1,0,1,1,1,0,0,0,0,1,1,0,1,1,0,0,1,1,0 +0,0,2,0,1,1,1,1,0,1,0,0,1,0,0,0,1,1,0,1,0 +0,0,0,0,1,1,0,1,0,0,0,1,1,0,0,1,0,1,1,1,0 +0,0,0,1,1,0,0,2,0,2,0,2,0,0,0,2,0,1,0,0,0 +0,0,1,2,0,1,1,2,0,0,1,1,0,0,0,1,0,1,2,1,0 +0,0,1,1,1,1,1,0,1,2,0,1,0,0,1,0,1,0,1,2,0 +0,0,0,2,1,0,0,1,0,0,0,2,2,0,0,2,0,1,2,0,0 +0,0,0,0,2,1,0,0,1,0,0,1,1,0,0,1,0,1,0,0,0 +0,1,0,1,0,0,1,1,0,0,0,1,0,0,1,1,1,0,0,0,0 +0,0,1,1,0,0,1,2,1,1,0,2,0,0,0,0,1,1,0,0,0 +0,0,1,2,1,1,1,0,1,2,0,2,0,0,0,2,0,0,0,0,0 +0,0,1,1,0,2,0,0,0,1,0,0,1,0,1,1,1,1,0,0,0 +0,0,1,1,0,1,0,1,1,2,0,0,0,0,0,2,1,0,1,1,0 +0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0 +0,1,0,1,0,0,0,1,0,2,0,0,1,0,0,0,0,0,0,0,0 +0,0,0,2,0,2,0,2,1,1,0,1,0,0,0,1,1,1,0,0,0 +0,0,0,2,0,1,1,1,1,1,0,1,1,0,0,0,1,2,0,0,0 +0,0,1,2,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +0,0,1,1,1,1,0,0,2,1,0,1,0,0,0,1,0,0,1,1,0 +0,1,0,1,1,2,0,0,1,1,0,2,2,0,0,1,0,0,0,0,0 +0,0,1,2,1,1,1,0,1,1,0,1,0,0,0,1,0,0,0,0,0 +0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,0,0,0,0 +0,0,1,1,0,0,1,1,0,0,0,1,1,0,0,1,1,1,1,1,0 +0,0,1,1,0,1,2,0,0,1,0,1,0,0,0,0,1,1,0,0,0 +0,0,1,1,0,1,0,0,1,2,0,1,0,0,0,1,1,0,1,1,0 +0,1,1,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0 +0,1,0,2,1,0,0,1,0,2,0,1,0,0,0,0,0,0,1,1,0 +0,0,2,1,0,0,2,0,1,1,0,0,0,0,0,0,1,1,1,1,0 +0,0,0,2,0,0,1,1,0,0,0,2,2,0,0,0,0,0,0,0,0 +0,0,1,1,1,0,0,2,0,2,0,0,0,0,0,1,1,0,0,0,0 +0,0,0,2,0,1,0,0,0,1,0,0,0,0,1,1,1,0,0,2,0 +0,0,1,1,0,1,1,0,1,2,0,0,0,0,0,1,0,1,0,0,0 +0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,1,1,1,0,0,0 +0,0,0,0,0,2,1,2,1,0,0,1,1,0,0,0,1,1,0,0,0 +0,1,0,1,0,0,0,0,0,2,0,2,1,1,0,0,1,0,0,0,0 +0,0,1,0,1,1,0,1,1,1,0,1,0,0,0,2,0,1,1,1,0 +0,0,1,2,0,1,0,0,0,0,0,2,1,0,0,0,1,1,0,2,0 +0,2,0,0,0,1,1,0,0,1,0,2,0,1,0,0,0,1,0,0,0 +0,1,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,2,0,0,0 +0,0,0,1,0,1,0,2,0,1,0,2,1,0,0,2,1,0,1,1,0 +1,0,0,0,0,1,1,1,1,1,0,2,0,0,0,1,2,0,0,0,0 +0,1,1,0,0,1,0,0,0,2,1,2,0,0,0,0,0,1,1,1,0 +0,0,0,2,0,1,1,2,1,1,0,1,0,1,1,0,0,2,1,0,0 +0,2,0,1,1,1,0,0,1,1,0,1,0,0,0,1,0,0,0,0,0 +0,0,1,1,1,1,1,2,1,2,0,1,1,0,0,0,0,0,0,0,0 +0,0,0,1,0,0,1,1,0,1,0,1,0,0,0,1,1,1,1,1,0 +0,1,2,0,0,0,1,0,1,0,0,2,1,0,1,0,0,0,0,0,0 +0,0,1,1,1,1,1,0,0,1,0,0,0,0,0,1,1,2,0,0,0 +0,0,1,1,0,2,1,0,0,0,1,0,1,0,0,0,1,1,1,0,0 +0,0,1,0,1,1,0,1,0,1,0,0,0,0,0,0,1,1,1,1,0 +0,0,1,2,0,0,0,1,0,1,0,1,0,1,0,1,1,1,2,0,0 +0,0,0,1,0,1,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0 +0,0,0,0,0,0,0,1,1,2,0,1,0,0,0,0,0,0,1,1,0 +0,0,2,2,1,1,1,0,0,1,0,0,1,1,0,1,1,0,0,2,0 +0,1,1,1,0,0,1,1,0,0,0,1,0,0,0,0,0,2,1,1,0 +0,1,0,0,1,1,1,1,0,1,0,1,1,1,0,0,0,0,1,1,0 +0,2,0,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0 +0,1,1,1,0,0,1,0,1,0,0,1,1,0,0,2,0,1,1,0,0 +0,0,1,0,0,1,2,2,0,1,0,0,1,0,0,0,1,0,1,1,0 +1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +0,0,1,2,0,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0 +0,0,1,1,0,2,0,0,0,2,0,1,1,0,1,1,0,0,0,0,0 +0,0,1,2,0,2,1,1,0,1,0,0,1,0,0,2,1,1,0,0,0 +0,0,2,1,0,1,0,2,0,0,0,2,1,0,0,0,0,1,0,0,0 +0,0,1,2,1,1,0,1,0,2,0,0,1,0,0,0,0,0,1,1,0 +0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,1,1,2,0,0,0 +0,0,1,1,0,1,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0 +0,0,2,2,0,0,0,1,0,0,0,2,0,0,0,1,0,2,0,0,0 +0,0,2,1,0,0,0,1,1,1,0,2,1,0,0,0,0,0,1,1,0 +0,0,1,1,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0 +0,0,1,1,0,2,2,2,0,1,0,1,0,0,0,0,0,2,0,0,0 +0,0,0,1,1,2,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0 +0,0,0,1,1,0,0,0,1,1,0,1,0,0,0,0,1,0,1,1,0 +1,0,0,1,0,1,0,1,1,1,0,1,1,0,0,0,1,1,0,0,0 +0,0,0,1,0,1,1,2,1,1,0,1,1,1,0,1,1,1,0,0,0 +0,1,2,1,1,1,0,2,1,1,0,1,2,1,0,0,0,0,1,1,0 +0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0 +1,0,1,1,0,2,0,0,0,2,0,0,0,0,1,2,0,2,0,0,0 +0,1,0,1,0,2,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0 +0,1,1,1,0,1,0,0,0,1,0,1,0,0,0,0,1,0,0,2,0 +0,1,0,0,0,1,1,1,1,2,0,0,1,0,1,0,0,0,0,0,0 +0,0,0,1,1,1,0,1,0,1,0,0,0,0,0,0,0,2,1,1,0 +0,0,1,0,0,1,0,1,1,1,0,2,0,0,0,0,0,1,0,0,0 +0,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,1,1,0,0,0 +0,0,0,2,0,2,1,0,0,1,0,1,1,0,1,0,2,1,0,0,0 +0,0,0,1,1,1,1,1,1,0,0,2,0,0,0,1,0,1,1,1,0 +0,0,2,1,0,0,0,2,0,1,0,0,1,0,1,1,0,2,0,0,0 +0,2,0,0,1,1,0,0,0,0,0,2,1,0,1,0,0,2,1,1,0 +0,0,1,2,0,1,1,1,0,0,0,2,0,0,0,2,1,0,0,0,0 +0,1,2,1,0,0,0,0,0,2,0,1,1,0,0,0,2,2,1,1,0 +0,0,2,1,0,0,0,1,1,1,0,0,0,1,1,0,0,2,1,1,0 +0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0 +0,0,1,1,0,2,1,1,0,0,1,0,0,1,0,1,0,0,0,0,0 +0,1,2,0,0,0,0,1,0,1,0,0,2,0,0,0,0,0,0,1,0 +0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,1,0,1,0,0,0 +0,0,2,1,0,0,1,1,0,1,0,0,0,0,0,0,0,1,0,0,0 +0,0,1,1,0,1,1,1,0,1,0,0,1,0,0,0,0,1,0,0,0 +0,0,0,1,0,2,0,0,1,1,0,0,0,0,1,1,0,2,0,0,0 +0,0,0,1,0,2,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0 +0,0,1,0,0,0,0,1,1,1,0,2,1,0,0,0,0,0,0,0,0 +0,0,0,2,0,1,0,1,0,1,0,1,1,0,1,0,0,2,0,0,0 +0,0,1,0,0,1,0,1,0,1,0,1,1,0,0,2,1,1,0,0,0 +0,0,0,0,0,1,0,1,0,2,0,0,0,0,0,1,0,0,0,0,0 +0,0,1,1,0,1,0,0,1,2,0,0,1,0,0,1,0,2,2,0,0 +0,0,0,2,0,2,1,0,0,1,0,0,0,1,0,0,1,1,0,0,0 +0,1,1,0,0,0,1,0,0,2,0,1,0,0,0,1,0,0,0,0,0 +0,0,0,1,0,0,1,0,0,0,0,2,1,0,0,1,0,1,0,0,0 +0,0,1,1,1,0,0,0,0,0,0,1,0,0,0,1,2,0,0,0,0 +0,1,0,1,0,2,1,0,0,1,0,1,0,0,1,1,1,1,0,0,0 +0,0,2,1,1,1,1,1,0,1,0,1,2,0,0,0,0,1,1,1,0 +0,0,2,1,0,2,0,0,1,1,0,1,0,1,0,0,1,0,0,0,0 +0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,2,1,0,0,0,0 +0,0,1,2,1,1,2,0,1,0,0,1,0,0,0,1,0,2,0,0,0 +0,0,1,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0 +0,1,1,0,0,1,0,1,0,1,0,0,1,0,0,1,1,2,0,0,0 +0,0,1,1,1,0,2,1,0,2,0,2,0,0,1,2,1,1,0,2,0 +0,0,1,1,1,1,0,0,0,1,0,1,0,0,0,1,0,2,0,0,0 +0,0,1,2,0,0,0,0,0,1,0,0,1,0,0,0,0,1,1,1,0 +0,0,1,1,0,1,0,0,1,0,0,0,1,0,2,1,1,0,1,1,0 +0,0,2,2,1,1,1,2,0,0,0,2,0,0,0,0,0,1,0,0,0 +0,0,0,1,1,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0 +0,1,1,0,0,0,0,0,0,0,0,2,0,1,1,2,1,1,1,1,0 +0,0,0,2,0,1,1,2,0,1,0,2,0,0,0,1,1,1,2,0,0 +0,0,1,1,0,0,1,0,1,0,0,2,1,0,1,0,1,0,0,0,0 +0,0,0,1,1,1,0,1,0,2,0,2,0,0,1,0,0,1,2,0,0 +0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,2,0,1,1,1,0 +0,0,1,2,1,0,0,1,1,1,0,1,0,0,1,0,1,1,0,0,0 +0,0,0,1,0,1,0,0,1,0,0,2,0,0,0,1,0,1,0,2,0 +0,1,1,0,1,1,1,0,1,2,0,1,0,0,0,2,0,0,0,0,0 +0,0,1,1,0,1,0,0,0,1,0,2,0,0,0,0,0,0,0,1,0 +0,1,0,2,0,1,0,0,2,0,0,1,0,0,0,0,0,1,1,1,0 +0,0,0,1,0,0,1,2,0,0,0,0,0,0,0,0,1,2,0,2,0 +0,0,1,1,0,1,2,1,1,0,0,1,0,0,0,2,0,1,0,0,0 +0,0,1,2,0,0,0,0,0,0,0,0,2,1,0,2,0,0,0,0,0 +0,0,2,0,0,1,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0 +0,0,1,2,0,0,1,1,0,0,0,2,1,0,0,1,1,0,0,2,0 +0,1,1,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1,0,0,0 +0,1,1,1,0,2,0,1,0,1,0,1,0,1,0,2,2,2,0,0,0 +0,0,1,1,1,1,0,1,1,0,0,1,1,0,0,1,1,1,0,0,0 +0,1,0,0,0,2,1,0,2,0,0,2,1,0,1,1,0,1,0,0,0 +0,1,0,2,1,1,0,0,0,0,0,1,0,0,0,1,1,2,0,2,0 +0,0,1,2,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 +0,0,2,0,1,1,0,2,0,0,0,0,1,0,0,1,0,1,1,1,0 +0,0,0,2,0,2,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0 +0,1,0,2,0,1,0,1,1,2,1,1,1,0,0,1,0,0,0,0,0 +0,0,0,1,0,1,0,1,0,0,0,0,1,0,0,0,0,1,0,1,0 +0,0,2,2,1,1,1,1,0,1,0,0,0,1,0,0,1,0,0,0,0 +0,0,2,1,0,1,1,1,0,0,0,1,1,0,0,0,0,1,0,0,0 +0,1,0,1,0,0,0,1,1,0,0,2,0,0,0,1,0,1,0,0,0 +0,1,1,2,0,2,1,1,0,1,0,1,2,0,0,2,0,0,1,1,0 +0,0,1,1,0,1,1,0,0,1,0,0,1,0,0,0,0,1,0,0,0 +0,0,1,0,1,1,0,0,0,0,0,0,0,0,1,0,0,1,1,1,0 +0,0,0,1,1,1,0,1,1,0,0,1,1,0,0,0,1,2,0,0,0 +0,0,1,1,1,2,0,2,0,0,0,0,1,0,0,1,1,0,0,0,0 +0,0,1,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,1,1,0 +0,0,0,1,1,1,0,1,1,2,0,1,0,0,0,0,1,0,0,0,0 +0,1,0,1,1,0,1,1,0,1,0,2,0,0,0,1,0,0,0,0,0 +0,0,1,0,2,2,0,0,1,1,0,0,1,0,0,1,1,2,0,0,0 +0,0,0,1,1,1,1,0,0,2,0,1,0,0,0,0,1,1,0,0,0 +0,0,1,1,0,1,0,1,0,2,0,0,0,0,0,0,1,2,0,1,0 +0,0,0,0,0,2,1,1,0,1,0,2,0,0,0,1,0,0,0,0,0 +0,0,0,1,0,1,2,1,1,2,0,1,0,1,0,0,0,0,1,1,0 +0,0,1,1,0,2,0,0,1,1,0,1,0,0,0,1,0,1,0,0,0 +0,0,1,1,0,1,1,1,0,1,0,2,1,1,0,1,0,1,1,1,0 +0,0,1,2,0,1,1,0,0,1,0,1,1,0,0,1,0,0,0,0,0 +0,0,2,0,0,0,1,0,0,1,0,0,0,0,1,2,1,0,0,0,0 +0,1,0,1,0,2,0,2,0,1,0,1,1,0,0,1,0,1,1,1,0 +0,1,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,2,0,0,0 +0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,1,0,1,0,0,0 +0,0,1,0,0,2,0,2,0,1,0,2,0,0,0,1,1,0,0,0,0 +0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,2,1,0,1,1,0 +0,0,1,2,0,2,0,2,2,1,0,2,0,0,1,1,0,0,0,0,0 +0,0,1,1,1,2,0,1,0,0,0,2,0,0,0,0,1,1,1,1,0 +0,0,0,1,0,0,0,2,1,2,0,2,0,0,0,2,1,1,0,0,0 +0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0 +0,0,0,2,2,1,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0 +0,0,1,1,1,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0 +0,0,1,1,0,1,2,1,0,1,0,0,1,1,0,1,0,0,1,1,0 +0,0,0,1,1,1,2,1,0,0,0,2,1,0,1,1,0,0,1,1,0 +0,0,1,2,1,0,0,2,0,0,0,1,0,0,0,2,0,1,0,0,0 +0,1,1,1,0,1,0,1,0,0,0,1,0,0,0,2,0,1,0,0,0 +0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,1,1,1,0 +0,0,0,0,0,2,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0 +0,1,0,1,1,1,1,1,0,2,0,2,0,0,0,1,1,2,1,1,0 +0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0 +0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0,0,0 +0,0,1,1,1,1,0,2,0,1,0,1,0,0,0,2,0,1,1,1,0 +0,0,0,2,1,0,1,1,1,1,0,2,0,0,0,0,1,0,0,2,0 +0,0,2,0,1,1,1,1,0,1,0,2,1,0,0,2,0,0,0,0,0 +0,0,1,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0,0,0 +0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0 +0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0 +0,0,0,0,0,0,0,1,0,1,0,2,1,0,1,1,0,1,0,0,0 +0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0 +0,0,1,1,0,0,0,1,0,1,0,1,1,0,0,1,1,0,1,1,0 +0,0,1,1,0,2,1,1,0,1,0,1,2,0,0,0,1,1,0,1,0 +0,1,1,1,0,1,1,1,0,0,0,1,1,0,0,1,1,1,0,0,0 +1,0,1,1,1,1,1,0,0,1,0,1,1,0,0,0,0,0,1,1,0 +0,0,1,0,0,1,1,1,1,2,0,2,0,0,0,2,0,0,0,0,0 +0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,1,0,0,0,0 +0,0,0,2,1,0,0,0,0,2,0,1,0,0,0,1,0,0,0,0,0 +0,0,1,0,0,0,2,0,0,1,0,1,1,0,0,1,0,2,0,0,0 +0,0,0,0,0,0,0,2,0,1,0,1,0,0,0,1,0,1,0,0,0 +0,0,1,0,1,0,2,1,0,1,0,1,1,0,0,1,0,2,2,0,0 +0,0,0,1,0,0,0,1,0,1,0,2,0,1,0,2,1,1,1,1,0 +0,0,0,1,0,1,0,2,0,1,0,1,1,0,0,1,0,2,0,0,0 +0,0,1,1,1,1,1,1,1,2,0,2,0,0,0,0,1,1,1,1,0 +0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,1,0,0,1,1,0 +0,0,1,0,0,1,1,2,0,1,0,0,2,0,0,0,0,2,0,0,0 +0,0,0,0,0,2,0,1,0,1,0,2,0,0,0,0,1,1,0,2,0 +0,0,2,0,0,1,1,1,1,0,0,0,0,0,1,0,1,1,0,0,0 +0,0,1,1,0,0,1,1,0,0,0,1,0,0,0,1,0,1,1,1,0 +0,0,0,2,1,1,1,1,0,1,0,1,2,0,0,1,2,2,0,0,0 +0,0,0,1,0,2,0,1,0,0,0,0,1,1,0,2,1,1,0,0,0 +0,0,0,0,0,1,1,2,1,2,0,1,1,1,0,1,2,2,0,0,0 +0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,2,0 +0,0,0,1,0,2,0,0,1,1,0,1,0,0,1,1,0,1,0,0,0 +0,0,1,1,0,2,0,1,0,2,0,1,0,0,0,1,1,1,0,0,0 +0,0,0,1,2,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0 +0,1,1,2,0,2,0,2,1,0,0,1,1,0,0,1,1,1,0,0,0 +0,0,2,0,0,1,0,1,1,0,0,2,1,0,1,1,0,1,0,1,0 +0,1,0,1,1,0,1,1,1,2,0,1,0,0,1,0,1,0,1,1,0 +0,0,0,1,0,1,1,1,0,1,0,1,1,0,0,1,1,1,1,1,0 +0,1,0,0,1,1,0,1,0,0,0,1,1,1,0,0,1,2,0,2,0 +0,0,0,0,0,1,0,1,2,1,1,1,2,0,0,2,1,1,0,0,0 +0,1,1,1,0,1,0,0,1,1,0,1,1,1,0,2,0,1,0,0,0 +0,1,1,0,2,0,1,2,1,1,0,1,0,0,0,0,0,0,1,1,0 +0,1,0,0,0,0,2,1,1,1,0,0,1,0,0,0,0,1,0,0,0 +0,0,1,1,1,1,1,1,0,1,0,1,1,0,0,0,0,0,1,1,0 +0,0,0,0,1,1,0,2,0,0,0,0,2,0,0,1,0,0,1,1,0 +0,0,1,0,0,1,1,0,0,1,0,1,1,0,0,1,1,2,0,0,0 +0,0,0,1,1,0,0,1,0,0,0,2,0,0,1,1,0,0,0,0,0 +0,1,2,1,1,1,1,0,0,1,0,1,1,0,0,1,0,1,1,1,0 +0,0,2,2,0,0,1,2,0,1,0,1,1,0,1,2,0,1,2,0,0 +0,1,1,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0 +0,0,1,2,1,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0 +0,0,0,2,0,0,0,2,0,0,0,2,0,1,0,1,0,1,0,0,0 +0,0,1,1,0,0,2,1,0,0,0,2,0,0,1,0,1,2,2,0,0 +0,0,1,1,0,2,1,1,0,2,0,1,2,0,0,1,0,1,0,0,0 +0,0,1,2,0,0,0,1,0,2,0,0,1,0,1,1,1,1,0,0,0 +0,0,1,2,0,0,0,0,1,1,0,2,0,0,1,1,0,0,0,0,0 +0,1,1,2,0,1,1,0,0,1,0,0,1,0,1,0,1,1,1,1,0 +0,0,1,1,1,0,1,1,1,0,0,1,0,0,1,0,1,1,1,1,0 +0,0,1,1,1,2,1,0,0,1,0,2,1,0,0,0,1,0,1,1,0 +0,1,1,2,0,1,1,1,0,2,0,1,0,0,0,0,1,1,0,0,0 +0,0,2,1,0,1,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0 +0,0,1,2,1,1,1,1,1,2,0,2,1,1,0,1,1,0,0,0,0 +0,1,1,0,0,1,1,1,0,1,0,0,1,0,0,0,1,1,0,0,0 +0,0,1,0,0,1,2,0,0,0,0,0,0,0,0,1,1,1,0,0,0 +0,0,0,1,0,2,0,1,0,1,0,1,1,0,1,1,0,1,0,0,0 +0,0,0,1,1,1,1,0,1,1,0,1,0,0,0,1,0,0,0,0,0 +0,0,1,0,2,1,0,2,0,1,0,0,0,0,1,0,0,1,0,0,0 +0,0,0,0,0,0,2,0,0,1,0,0,1,1,0,1,1,0,0,0,0 +0,0,2,0,1,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,0 +0,0,1,1,1,0,2,0,0,0,0,1,0,0,0,1,1,1,0,0,0 +0,0,2,1,1,2,1,0,1,1,0,2,0,0,0,0,0,1,0,1,0 +0,0,0,1,1,2,1,0,1,0,0,1,0,0,0,1,0,0,1,1,0 +0,0,0,1,1,1,1,0,1,1,0,0,1,0,1,2,1,1,0,0,0 +0,0,2,1,0,1,0,1,0,2,0,0,0,0,0,0,1,1,0,0,0 +0,0,1,0,0,1,2,1,1,2,0,1,0,0,0,1,0,0,0,0,0 +0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,1,0,1,0,0,0 +0,1,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0 +1,0,1,0,0,2,1,2,0,1,0,0,1,0,0,0,0,2,0,0,0 +0,1,2,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1,0,1,0 +0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0 +0,1,0,1,0,1,0,2,0,0,0,0,0,0,0,1,0,2,0,0,0 +0,1,1,0,1,1,2,0,0,1,0,1,1,0,1,2,0,0,1,1,0 +1,0,1,0,1,1,1,1,1,1,0,1,0,0,0,0,1,1,0,0,0 +0,1,2,0,1,2,1,2,0,2,0,0,0,1,0,0,1,1,0,0,0 +0,0,0,1,0,1,0,1,1,0,0,1,0,0,0,1,1,0,0,0,0 +0,0,2,2,1,1,0,1,1,1,0,0,1,0,0,1,0,2,0,0,0 +0,0,1,1,0,1,1,1,1,2,1,1,0,0,0,1,0,0,0,2,0 +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,2,0,0,0 +0,0,0,2,0,1,0,1,0,1,0,0,0,0,1,1,0,1,0,0,0 +0,0,1,1,1,0,0,0,1,1,0,0,0,0,1,1,0,1,0,0,0 +0,0,1,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0 +0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,2,0,0 +0,0,0,0,2,0,1,1,1,1,0,1,0,0,1,1,0,0,1,1,0 +0,0,2,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,1,1,0 +0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0 +0,1,1,0,0,1,1,1,1,2,0,1,0,0,0,1,0,1,1,1,0 +0,0,2,0,1,2,0,1,0,0,0,1,0,0,0,1,1,0,1,1,0 +0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,2,0,0,0,0,0 +0,0,0,2,1,0,0,1,1,2,0,0,0,0,0,1,2,1,1,1,0 +0,1,1,1,0,2,0,0,1,2,0,0,0,0,0,1,0,2,0,0,0 +0,0,2,1,0,2,1,2,0,1,0,1,1,0,0,0,1,1,0,0,0 +0,0,1,0,1,1,1,2,0,1,0,0,0,0,0,0,1,0,0,0,0 +0,0,1,2,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0 +0,0,1,2,0,2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0 +0,0,1,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0 +0,0,0,0,0,2,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0 +0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0 +0,0,0,1,2,0,0,1,0,0,0,0,0,0,0,2,1,1,0,0,0 +0,0,1,1,0,0,0,2,0,0,0,1,0,0,0,0,0,1,1,1,0 +0,0,2,1,0,0,0,2,1,1,0,0,0,0,0,0,0,1,0,0,0 +0,0,1,2,0,0,0,1,0,2,0,1,0,1,1,1,0,2,1,1,0 +1,0,1,1,0,0,0,0,1,1,0,2,1,0,0,0,0,1,0,0,0 +0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,0,0,0 +0,0,1,1,0,2,2,1,0,0,0,0,0,0,0,0,1,1,0,2,0 +1,0,0,0,1,0,0,1,1,1,0,2,0,0,0,0,2,0,0,0,0 +0,0,2,0,0,1,0,1,0,1,1,1,1,0,0,0,1,1,0,0,0 +0,0,0,0,0,0,1,0,0,1,0,2,0,1,0,0,0,1,1,1,0 +0,0,1,1,0,1,0,1,0,2,0,1,0,0,0,1,1,1,1,1,0 +0,0,0,1,0,2,1,1,1,2,0,2,1,0,0,1,0,1,0,0,0 +0,1,1,0,0,1,0,1,0,1,0,1,1,0,0,1,1,1,0,0,0 +0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0 +0,0,0,1,0,0,0,0,1,1,0,2,0,0,1,0,0,0,0,0,0 +0,1,0,2,1,0,1,0,0,0,0,1,0,0,0,1,2,1,1,1,0 +0,0,0,0,1,2,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0 +0,1,0,1,0,2,2,2,0,1,0,1,0,1,1,0,1,2,0,0,0 +0,1,1,2,1,0,0,1,0,1,0,1,1,0,0,0,0,1,1,1,0 +0,1,0,1,0,1,1,1,0,1,0,0,0,0,0,0,0,1,0,0,0 +0,0,1,1,0,1,0,1,1,1,0,0,0,0,0,1,0,2,0,0,0 +0,0,1,1,0,2,1,0,1,2,0,1,1,0,0,0,2,1,0,0,0 +0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0 +0,0,0,1,0,1,1,2,1,2,0,1,1,0,0,2,0,0,0,2,0 +0,0,1,1,0,2,1,1,0,0,0,0,1,0,1,1,0,1,0,0,0 +0,0,0,1,0,2,1,0,2,1,0,1,0,0,0,1,1,1,1,1,0 +1,0,2,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1,0,0,0 +0,0,1,1,0,1,0,2,0,0,0,0,1,0,0,0,0,1,0,0,0 +0,0,0,1,1,0,0,0,1,2,1,0,1,0,0,0,0,0,1,1,0 +0,0,1,1,0,1,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0 +0,0,1,0,0,0,0,2,0,1,0,0,1,1,0,1,0,1,0,0,0 +0,1,1,1,0,0,1,1,0,1,0,1,0,0,1,2,0,2,0,0,0 +0,0,0,0,1,2,0,0,1,2,0,0,0,0,0,0,0,1,1,1,0 +0,0,0,2,0,2,1,0,1,2,0,1,1,0,0,0,0,2,1,1,0 +0,1,1,0,2,1,0,1,0,2,0,1,0,0,0,1,1,1,0,0,0 +0,0,0,1,0,2,0,0,0,2,0,0,1,0,0,0,0,1,0,0,0 +0,0,1,1,1,1,0,1,0,1,0,1,1,0,1,1,1,0,1,1,0 +0,0,0,1,0,0,1,1,0,2,0,1,0,0,0,1,0,1,0,0,0 +0,1,1,0,0,1,1,1,0,1,0,1,2,0,0,0,0,0,0,0,0 +0,0,0,1,0,1,0,1,1,0,0,0,0,0,1,0,0,0,0,2,0 +0,0,0,2,0,0,1,0,0,2,0,1,2,0,0,1,0,1,0,0,0 +0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0 +0,1,1,2,0,1,1,1,1,1,0,1,1,0,0,1,0,2,1,1,0 +0,0,1,2,1,1,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0 +0,1,0,1,0,0,0,1,0,1,0,0,1,0,0,0,1,0,1,1,0 +0,1,2,0,0,1,0,1,0,2,0,0,0,0,0,1,0,1,1,1,0 diff --git a/data/GAMETES_Epistasis_2-Way_20atts_0.4H_EDM-1_1.tsv.gz b/data/GAMETES_Epistasis_2-Way_20atts_0.4H_EDM-1_1.tsv.gz deleted file mode 100644 index 667cfe9..0000000 Binary files a/data/GAMETES_Epistasis_2-Way_20atts_0.4H_EDM-1_1.tsv.gz and /dev/null differ diff --git a/data/GAMETES_Epistasis_2-Way_continuous_endpoint_a_20s_1600her_0.4__maf_0.2_EDM-2_01.csv b/data/GAMETES_Epistasis_2-Way_continuous_endpoint_a_20s_1600her_0.4__maf_0.2_EDM-2_01.csv new file mode 100644 index 0000000..9c4f03c --- /dev/null +++ b/data/GAMETES_Epistasis_2-Way_continuous_endpoint_a_20s_1600her_0.4__maf_0.2_EDM-2_01.csv @@ -0,0 +1,1601 @@ +N0,N1,N2,N3,N4,N5,N6,N7,N8,N9,N10,N11,N12,N13,N14,N15,N16,N17,M0P0,M0P1,class +0,1,0,1,1,2,0,1,0,0,0,1,2,1,2,2,1,0,0,2,1.1530579075 +0,2,2,1,1,1,0,1,0,1,0,0,0,1,1,1,1,1,0,0,1.3577478102 +0,2,2,1,2,1,0,1,0,1,0,0,0,2,0,0,1,0,0,0,0.8081868086 +1,1,0,0,0,1,1,0,1,1,1,0,1,0,0,1,1,1,0,0,0.8353526852 +0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0.2758354284 +2,0,0,0,0,0,0,1,0,1,1,1,1,0,0,0,0,0,0,1,0.1074002829 +1,2,2,1,2,1,0,1,1,1,1,0,0,1,1,1,0,1,0,0,0.7653551331 +1,0,0,2,2,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1.2680436752 +1,1,0,1,2,1,0,0,0,0,0,1,2,0,0,1,1,0,0,0,0.8279025255 +1,1,1,0,1,1,0,0,0,1,0,1,1,1,1,0,1,0,0,0,0.5823818416 +1,1,0,2,0,0,0,0,1,1,1,0,2,1,0,0,0,0,0,0,-0.2778195598 +1,1,1,2,0,1,0,1,0,0,1,0,1,0,0,1,1,2,0,2,-0.6166994416 +1,2,1,0,1,1,0,1,0,1,1,1,2,1,0,0,0,0,0,0,0.9242526213 +0,2,0,2,0,1,0,1,0,1,1,0,1,0,0,1,0,0,0,1,-0.0132552881 +0,1,0,1,1,1,1,2,0,0,0,0,1,0,0,0,1,1,0,0,0.664042047 +0,1,1,2,0,0,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0.9726936979 +1,1,0,0,0,1,0,0,2,1,0,0,0,2,0,0,0,0,1,0,0.1460966221 +1,1,1,1,0,1,0,0,0,0,0,0,2,1,0,1,2,0,0,1,2.0089264652 +0,1,0,0,1,1,0,1,1,0,1,0,0,0,1,1,1,1,0,0,0.9333950231 +2,0,0,1,0,1,0,2,0,0,0,0,0,1,0,0,1,0,0,0,0.7697176438 +0,0,2,1,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,1,-0.0421148509 +1,2,1,1,1,0,0,0,0,0,2,0,2,0,0,2,2,1,1,1,1.1963091536 +1,0,1,1,1,1,0,0,0,0,1,1,0,0,0,1,0,1,0,1,-0.1333404151 +0,1,1,1,1,0,0,1,0,0,0,1,1,0,0,0,1,0,0,1,-0.0451829923 +0,0,1,0,0,2,0,2,0,2,1,0,0,0,0,1,0,0,1,0,-0.6707343693 +1,2,1,0,1,1,0,2,1,0,1,1,0,0,0,1,0,0,1,0,0.2057254896 +0,2,1,0,0,1,0,2,1,1,0,1,2,2,1,1,1,1,0,0,0.5542537182 +0,0,1,0,0,2,0,0,0,1,1,0,0,0,1,0,1,0,1,0,0.5452566196 +1,1,1,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,1,0,-0.5977621316 +0,1,2,0,2,1,0,1,1,0,0,0,1,0,0,1,1,0,0,0,1.0229703862 +0,0,0,1,0,1,1,2,0,0,0,1,1,1,0,1,2,1,0,0,0.8544804605 +0,2,1,2,1,1,0,1,0,2,0,0,1,0,0,0,1,0,0,1,0.3888989347 +1,1,0,1,1,0,0,1,0,1,1,1,0,1,0,1,1,0,0,1,-0.8559511843 +0,1,2,0,0,1,0,0,0,1,2,0,0,0,0,1,0,0,1,1,0.4753687507 +1,2,1,0,0,2,0,1,0,1,1,0,0,1,0,1,0,1,1,1,0.6790097771 +0,2,1,0,1,0,1,1,0,1,1,2,0,1,1,0,0,0,0,0,0.276760688 +0,1,1,0,1,1,0,1,0,0,1,1,0,2,0,0,0,0,0,0,-0.175894335 +1,2,0,1,1,2,0,0,0,0,0,1,0,0,0,0,1,2,0,0,-0.0252619912 +0,1,1,0,1,0,0,0,0,1,2,2,1,1,1,1,2,0,0,0,-0.4490272002 +1,1,1,0,1,0,0,0,1,2,0,0,0,0,0,1,0,1,0,0,0.4128009685 +1,1,1,1,1,1,0,2,0,0,1,1,1,1,0,0,1,0,1,0,-0.0366662615 +1,2,2,0,0,1,0,2,1,0,0,0,2,0,0,0,1,0,1,0,-0.3416794137 +0,2,1,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0.5820632877 +0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,0,0.3709011295 +1,2,2,0,0,2,0,0,0,1,1,0,0,1,0,0,2,0,0,0,1.5743001586 +0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,1,-0.820350953 +1,0,1,0,1,2,0,1,0,1,1,0,1,0,1,0,1,1,0,0,0.4471523667 +1,0,1,1,1,2,0,0,0,2,0,0,2,0,0,0,0,0,1,0,-0.2055368773 +1,0,0,0,1,1,0,1,0,0,1,1,1,0,0,0,1,1,2,1,0.4998427685 +1,0,0,0,2,1,0,2,0,2,0,0,2,1,1,1,0,0,1,2,1.1104403649 +0,1,0,1,1,1,0,0,1,0,1,0,2,0,1,1,1,1,0,0,0.8095750497 +0,2,1,1,2,1,0,1,0,2,0,1,1,2,0,0,2,0,0,0,0.4737955742 +2,2,1,0,1,2,0,0,1,0,0,0,0,0,0,0,1,0,0,1,-0.263285809 +0,0,2,2,2,2,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0.0705535802 +0,1,0,0,2,1,0,0,0,1,0,0,0,1,1,0,1,0,0,1,0.9137895074 +0,0,2,1,1,0,0,1,0,0,1,1,1,0,0,0,1,0,0,0,0.1917154007 +0,1,0,0,0,0,0,0,1,0,1,0,0,1,1,1,2,0,0,0,0.6248500794 +1,2,0,0,1,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0,0.4273147602 +1,1,0,0,0,0,0,2,0,1,0,1,2,0,0,0,1,0,0,1,0.2070722697 +1,0,1,2,2,1,0,2,0,0,2,0,0,1,0,1,2,0,0,0,0.2986893329 +0,1,2,1,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,-0.6596923847 +1,1,2,2,0,1,0,2,0,1,0,0,0,0,1,2,2,1,1,1,0.9805215052 +1,0,1,1,1,1,0,0,1,0,1,0,1,0,0,0,1,1,0,0,0.8602156785 +1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,0,1,1,0,0,0.5729621413 +0,2,0,0,1,2,0,2,0,1,1,0,1,1,0,0,0,0,0,1,-0.1603749549 +1,1,1,0,1,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0,-0.3214130621 +1,1,1,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0.0547749372 +1,0,1,1,0,2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0.1787422829 +0,1,0,1,0,0,0,0,1,0,0,2,2,0,0,1,1,0,1,1,0.01712801 +1,0,1,1,0,1,0,1,0,1,1,1,0,0,0,1,1,0,1,0,-0.5635933935 +0,1,2,0,0,1,0,1,1,0,0,0,0,1,0,0,0,0,0,0,1.1308304614 +0,0,1,0,1,2,0,2,1,0,1,0,1,0,1,0,1,0,1,0,-0.2679317926 +1,0,1,0,1,1,0,1,0,1,0,1,0,0,1,0,2,0,0,0,-0.1786670916 +0,2,0,0,0,0,0,0,1,0,0,0,0,1,0,1,2,0,0,1,0.9812288722 +1,1,0,2,0,1,0,1,1,1,0,0,1,0,0,1,0,0,0,0,0.4368489937 +1,1,1,1,0,1,0,0,1,0,0,1,0,1,0,1,2,0,0,0,-0.0323292159 +0,0,2,0,2,2,0,1,0,0,0,1,0,1,0,0,2,0,0,0,0.5131145437 +1,1,0,1,1,0,0,2,1,0,0,0,0,1,0,0,1,0,0,0,1.1017418243 +1,1,0,1,1,2,0,1,0,1,0,1,0,0,0,0,1,1,0,0,-0.313251649 +0,1,0,0,1,0,0,0,1,1,2,0,1,1,0,0,1,0,0,0,0.3775945491 +1,2,1,0,1,1,0,1,0,0,0,0,1,2,0,0,1,0,0,0,0.4391864914 +1,1,1,0,1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,0.0740266591 +0,1,0,0,0,1,0,0,1,1,0,0,1,2,0,1,0,1,0,0,0.7969326103 +1,2,1,0,2,1,0,1,0,0,0,1,1,1,0,0,1,0,0,0,0.641247493 +1,1,0,1,2,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0.9758475819 +1,1,1,1,1,0,0,1,0,0,1,1,1,0,0,1,1,0,0,1,0.2236827067 +1,1,0,1,0,1,0,2,0,1,1,0,1,0,0,0,0,0,0,1,-0.5231385573 +1,0,1,1,1,1,0,1,0,0,0,0,1,0,0,0,0,0,1,0,-0.3018881673 +0,0,0,1,0,1,0,1,0,1,0,0,2,1,0,1,2,1,0,0,0.7028969091 +2,1,0,0,1,0,0,0,1,0,0,0,0,2,0,0,1,0,1,1,0.1211173788 +1,1,0,0,0,2,0,1,2,0,0,0,0,1,0,0,2,0,1,1,1.4956983049 +1,1,2,1,0,0,0,1,0,0,1,1,1,1,0,0,1,1,1,0,-0.1905291265 +0,1,0,0,0,2,0,1,1,1,1,0,0,1,0,0,0,0,0,0,0.7027160405 +0,0,1,0,1,1,0,1,2,0,1,1,0,1,0,0,0,1,0,0,0.0629443522 +2,2,0,0,0,2,1,2,0,1,1,0,2,1,0,0,0,0,0,0,0.7196136977 +0,0,0,1,1,1,0,0,0,1,2,0,0,0,0,1,1,0,0,0,0.5298201583 +0,1,1,1,1,0,0,0,0,1,2,1,0,0,0,0,1,0,0,0,0.86187801 +0,0,0,1,1,0,0,0,0,0,0,1,1,2,0,1,1,0,0,0,0.2865418653 +0,1,1,0,1,0,0,1,1,0,0,2,2,0,0,0,0,0,0,0,0.2645924833 +1,1,0,1,0,1,0,1,0,0,0,0,2,1,0,0,2,0,1,0,0.4368180233 +0,0,1,0,0,0,0,0,0,1,0,0,1,2,0,0,1,0,0,0,0.375475394 +2,1,2,0,1,1,0,1,0,0,1,1,0,1,0,0,1,0,0,0,0.7062262782 +1,1,1,0,0,1,0,0,1,0,1,0,1,2,0,0,0,0,0,0,-0.5292497826 +1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,2,1,1,0.2740526528 +0,2,0,2,1,1,0,0,0,0,0,1,2,0,1,0,1,0,0,1,-0.7241470771 +0,2,1,0,1,2,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0.5227410841 +0,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,-0.0528530539 +1,0,1,1,1,1,0,0,0,0,2,1,1,1,0,0,0,1,1,0,0.2300025533 +0,1,0,1,2,1,0,0,1,0,1,0,0,2,0,0,1,0,0,1,-0.295426721 +0,1,1,0,0,1,0,1,0,0,0,0,0,1,0,1,1,1,0,0,0.2501478131 +0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,1.2070070007 +0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,1,0.7186239735 +1,2,0,2,0,1,0,1,0,0,2,0,0,1,0,0,1,1,0,1,0.5621095396 +0,0,0,0,0,2,0,0,1,2,1,0,0,1,2,0,1,0,1,0,0.5229871619 +1,0,0,1,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,1,0.2791859181 +1,2,1,0,1,2,0,2,0,0,0,1,1,0,0,0,0,0,0,0,0.1296879555 +1,0,0,0,1,2,0,1,0,2,1,0,0,0,0,1,0,0,0,0,0.423606421 +2,1,1,1,0,2,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0.7382296465 +2,1,1,0,0,1,0,1,0,0,1,0,0,1,1,1,2,0,0,0,-0.3361312097 +0,1,0,2,1,0,0,0,0,2,0,1,1,0,0,1,1,0,1,0,-0.1609297613 +1,1,0,1,1,1,0,2,1,0,1,0,0,0,0,0,1,0,1,0,0.1046617646 +0,1,0,0,0,0,0,1,1,0,1,0,2,0,0,1,0,0,0,0,1.2786018014 +0,1,0,2,0,1,0,1,0,0,1,0,0,2,0,0,0,0,0,0,0.5563581671 +0,1,1,1,1,1,0,1,0,0,1,0,1,2,1,1,2,0,0,0,0.320973857 +2,1,0,1,2,0,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0.0652952886 +1,0,1,1,0,1,0,2,0,1,1,0,0,0,0,0,1,1,0,0,0.7824364659 +0,0,0,0,1,0,0,1,0,1,1,0,1,0,0,0,1,0,0,0,0.3244093981 +1,2,1,0,1,1,0,1,0,1,0,0,0,0,2,0,1,1,0,1,-0.1609862481 +0,1,0,1,0,0,0,1,0,1,0,1,0,0,1,1,1,1,1,0,-0.7093072714 +0,0,0,0,1,1,0,1,0,0,0,1,1,1,0,2,1,0,0,0,1.0297553801 +1,0,0,1,0,0,0,1,1,1,1,0,1,0,0,1,1,1,0,1,-0.4893036273 +1,2,0,2,2,1,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0.6449336104 +0,2,0,0,0,1,0,0,1,1,0,0,0,1,0,0,0,0,1,0,0.831388692 +0,1,1,1,1,2,0,2,0,1,0,0,1,0,0,0,2,0,0,0,-0.0878360169 +0,1,1,2,0,1,0,0,0,0,1,0,0,0,1,0,1,1,1,1,1.3244183612 +2,0,1,1,1,0,0,0,0,1,0,1,1,1,1,0,2,0,0,0,0.2207909044 +1,1,0,1,2,1,0,0,0,0,0,0,2,1,0,0,2,0,1,1,0.8687869832 +0,2,1,0,1,1,0,1,0,1,1,1,1,1,0,0,1,0,1,0,0.4749928963 +0,0,2,0,0,0,0,1,1,2,1,0,0,0,2,1,2,0,0,2,-0.6408130492 +1,2,0,1,0,1,0,0,0,0,0,1,2,0,0,1,1,0,1,0,0.8532804978 +0,2,1,1,0,1,0,0,0,0,2,0,1,1,0,1,0,0,1,0,-0.0983431315 +0,0,1,0,0,1,0,1,1,0,0,0,1,2,0,1,1,0,0,0,0.7694177376 +1,2,1,1,0,0,0,1,0,0,1,0,0,1,1,0,2,0,2,0,0.012663784 +1,2,1,0,2,1,0,1,0,0,0,0,1,0,0,0,0,0,0,1,-0.1505503045 +1,0,0,1,1,2,0,2,0,1,1,1,1,1,0,1,2,0,0,1,-0.6472449551 +0,2,1,0,1,1,0,2,0,0,1,0,2,0,0,0,1,1,0,0,0.7313650226 +1,1,0,0,0,1,0,2,0,0,1,0,0,1,0,0,0,0,1,0,0.1653764438 +0,0,0,0,1,1,0,1,1,0,1,1,1,0,0,2,2,0,1,1,1.2031476672 +0,0,1,1,2,2,0,1,0,0,0,0,1,1,0,0,1,0,1,0,-0.4127623955 +1,0,0,1,0,0,0,2,0,0,0,1,0,0,0,0,0,1,0,0,-0.2678979664 +1,1,0,1,0,1,0,2,1,1,2,0,2,1,0,0,1,1,0,0,0.7540079065 +1,0,0,1,0,1,0,1,0,0,1,1,0,0,1,0,1,0,1,1,1.6320270958 +1,0,0,1,0,2,0,1,0,1,1,0,0,0,0,0,0,0,1,0,-0.2213692233 +1,2,1,2,1,2,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0.6171372975 +0,0,1,1,1,1,0,2,0,0,1,0,2,1,0,0,0,1,0,1,-0.1715641796 +0,1,1,0,1,1,0,1,0,1,1,1,2,0,0,0,2,0,0,0,-0.0007117737 +1,0,0,1,1,1,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0.8413028328 +0,0,0,0,2,0,0,1,1,0,1,0,1,0,0,0,1,0,0,0,0.021386361 +2,1,0,1,0,1,0,2,0,0,1,0,1,0,1,0,1,0,0,0,0.4159695941 +2,1,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.4645603472 +0,2,1,1,1,0,0,0,2,2,1,0,2,0,0,1,0,0,0,1,-0.9580970505 +1,1,2,0,1,1,0,1,0,1,2,0,0,0,0,1,2,0,1,0,0.863046083 +0,2,0,0,1,1,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0.0956291205 +0,0,1,1,2,1,0,1,0,1,1,0,2,1,2,1,0,0,0,0,0.2524604737 +0,2,1,1,0,1,0,1,0,1,0,1,2,1,0,2,2,0,0,1,0.8323131827 +0,2,1,1,0,2,0,1,0,0,1,0,0,0,0,0,1,0,2,0,0.3853459359 +1,1,1,0,0,0,0,0,0,1,1,2,1,1,0,0,1,0,1,0,-0.4269603507 +1,1,0,2,1,0,0,2,0,1,0,0,0,0,1,1,0,0,0,0,0.1905617844 +0,1,1,0,1,2,0,1,1,0,0,1,0,1,0,1,2,0,1,0,0.3821808724 +1,0,1,1,0,1,0,1,0,1,1,1,1,1,0,1,1,0,0,0,-0.8460604705 +1,1,2,1,1,1,0,1,0,0,1,1,2,2,1,0,1,0,0,0,0.304727872 +0,1,1,0,1,1,0,0,0,0,1,1,1,1,0,1,2,0,1,0,-0.1621564179 +0,1,2,2,0,1,0,1,1,1,1,0,1,1,0,1,1,0,1,0,-0.0194938709 +0,0,1,1,2,1,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0.5420006266 +0,1,0,1,0,0,0,2,1,1,0,0,1,1,1,1,0,0,1,0,0.6094924557 +1,0,0,0,1,2,0,0,0,0,1,0,0,1,0,1,1,0,0,1,-0.6418692456 +2,0,0,1,2,1,0,2,0,1,1,0,0,1,0,0,1,0,1,0,-0.0839891994 +1,0,0,0,2,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0.680722276 +0,0,0,1,0,1,0,0,1,0,0,2,0,1,1,0,0,0,1,1,2.3523097275 +0,1,0,2,1,1,1,1,0,0,0,1,0,0,0,0,2,1,0,1,0.5539775476 +0,2,0,1,1,1,1,1,0,0,0,1,2,1,0,1,1,1,1,0,0.6032860423 +0,1,1,1,1,2,0,2,0,1,1,0,0,0,0,1,0,0,0,0,0.6768479541 +0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,1,0,0,0,1.015385181 +1,1,1,0,1,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0.1812394673 +0,0,0,0,0,2,0,1,0,1,1,1,1,0,1,0,2,1,2,0,-0.367358399 +0,1,2,0,1,0,0,0,0,0,1,1,0,1,1,0,1,0,1,1,0.5232406601 +0,2,1,0,0,2,0,1,0,0,0,0,2,0,0,0,1,0,0,1,0.5109672395 +1,1,0,0,0,0,0,2,0,1,1,1,0,0,0,1,2,0,1,0,-0.4252484835 +0,1,0,0,0,1,0,1,0,0,0,0,2,2,0,0,0,0,0,0,-0.1267667201 +0,1,0,1,1,1,0,2,0,1,0,0,0,0,1,1,1,1,0,0,0.054289956 +1,1,0,1,0,1,0,0,0,1,0,1,0,0,1,0,2,0,0,0,0.1642853889 +1,2,1,0,1,1,0,1,0,1,0,1,0,0,0,0,0,1,1,0,-0.2776568827 +0,1,1,1,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,0,0.8782160227 +1,1,2,1,0,2,0,1,0,1,0,0,1,2,0,0,2,0,0,0,0.0036881847 +0,1,0,0,1,1,0,0,0,1,0,1,1,1,0,0,1,0,0,1,0.411309975 +0,0,2,0,0,1,0,1,1,0,1,0,1,1,0,0,0,0,0,1,-0.3625281273 +0,0,2,0,1,0,0,1,0,0,2,1,0,1,0,1,1,1,0,1,0.3186729755 +0,2,1,2,1,1,0,1,1,1,0,1,1,0,0,1,0,0,0,0,0.4317879643 +1,2,1,0,0,1,0,1,1,1,0,1,0,0,0,0,0,0,1,1,0.9984530961 +0,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0.1836407211 +0,2,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,2,1,0,-0.2607653508 +0,0,0,0,2,1,0,2,0,0,0,0,0,1,0,0,2,0,0,1,0.0665723906 +0,1,2,0,1,1,0,1,0,0,1,0,0,1,1,1,2,0,0,0,0.655179301 +0,2,1,1,0,1,0,1,0,1,1,0,1,1,1,2,1,1,0,0,0.8871304555 +0,1,2,1,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,-0.1897382652 +2,0,1,1,0,1,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0.5549760327 +0,2,1,1,0,0,0,0,0,0,2,1,2,0,0,0,1,1,1,0,-0.3858177445 +0,1,2,1,1,2,0,1,0,1,0,1,0,1,1,0,1,1,0,1,0.549390286 +0,1,2,0,1,1,0,2,0,0,1,0,2,0,1,0,0,0,1,1,0.9151744259 +1,1,0,0,1,1,0,1,0,0,0,1,2,1,0,0,0,0,0,1,0.8239593903 +0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0.1121943395 +0,2,1,1,0,1,0,1,0,0,0,0,2,0,0,1,1,0,0,1,-0.2469561875 +1,2,0,1,2,1,0,0,0,2,0,1,1,1,1,1,0,0,0,0,1.2162231746 +0,1,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1.1841346316 +0,1,1,1,1,2,0,2,0,2,0,0,2,1,0,0,1,0,1,2,-0.0440389643 +0,2,2,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,-0.0719304628 +1,2,2,0,0,2,0,1,0,0,1,1,0,0,0,0,1,1,0,1,0.1391670014 +0,2,0,1,1,1,0,1,0,2,1,0,2,1,0,1,0,1,0,0,0.5010407139 +0,1,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,1,-0.4100777672 +1,1,1,0,1,1,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0.1320606945 +0,1,0,1,2,1,0,1,0,0,0,1,0,1,0,0,0,0,1,0,0.1424527279 +1,0,1,0,1,0,0,1,0,0,1,0,1,1,0,0,2,2,0,0,0.7283883554 +1,1,1,1,0,2,0,1,1,0,0,1,0,0,0,0,1,0,1,0,0.4824809509 +0,1,2,0,1,0,0,2,1,0,1,1,0,0,1,0,2,0,0,0,0.417720961 +0,1,1,0,0,2,0,1,0,0,0,0,1,1,0,0,1,1,0,1,-0.0054084032 +0,1,0,1,1,0,0,1,1,0,1,0,1,1,1,0,2,0,0,0,0.5094778303 +0,2,0,1,2,0,1,0,2,1,2,1,0,1,1,1,1,0,0,0,0.4518132674 +1,1,1,1,1,1,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0.6652838825 +1,1,1,1,0,1,0,0,0,0,2,0,0,0,0,1,1,0,0,1,-0.7289169113 +2,0,1,0,0,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0.2139937953 +0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,2,1,1,1,0.9197551656 +0,1,1,0,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,-0.422208967 +1,1,1,0,1,1,0,2,0,1,0,0,1,0,0,1,1,1,0,0,1.0081479905 +0,2,1,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,2,0.6894492492 +0,1,1,2,1,0,0,1,0,0,1,0,1,0,0,0,2,0,1,0,-0.0148349811 +0,0,0,1,0,1,0,1,0,0,1,0,1,0,0,0,1,0,0,0,-0.2972613153 +1,1,0,1,1,1,0,1,1,0,0,0,1,0,0,1,1,0,0,1,-0.4005838308 +0,0,0,1,1,0,0,0,1,0,0,2,2,2,0,0,1,0,1,0,-0.1151469676 +0,0,1,0,1,0,0,1,0,0,1,1,0,1,2,0,2,0,1,1,0.9558170275 +0,0,0,0,0,2,0,1,0,0,1,2,0,0,0,1,1,1,0,0,-0.031473307 +1,1,1,0,0,1,0,1,1,1,1,1,1,1,0,2,2,0,0,0,-0.0378538158 +0,2,2,2,0,0,0,1,1,1,0,0,0,1,0,0,1,1,1,0,-0.5687983358 +0,1,0,0,0,2,0,1,0,1,1,0,1,0,0,0,1,0,0,0,0.0184101906 +0,2,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,1,0,0,-0.1664396695 +0,2,0,1,0,2,0,0,0,0,1,1,2,0,1,0,0,1,1,0,-0.5083334202 +1,2,0,0,1,2,0,1,0,0,0,1,2,1,1,0,2,1,1,0,0.5114634147 +0,0,2,1,0,1,0,2,1,1,0,1,1,1,1,2,1,1,0,2,-0.3122589775 +0,2,0,1,0,1,0,1,0,0,2,1,0,2,1,1,1,0,1,0,0.7454853876 +1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1,-0.3271402021 +1,1,1,0,0,1,0,1,0,1,1,1,2,1,2,1,2,0,0,0,0.0469286555 +2,1,1,0,1,2,0,2,0,2,0,0,0,0,0,0,0,0,0,1,-0.2169551809 +0,0,1,0,0,1,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0.1919216312 +0,1,0,0,0,2,0,2,0,1,0,0,1,0,0,0,1,0,0,0,1.4348724156 +1,2,1,0,0,0,0,0,0,0,2,0,0,0,1,1,0,0,0,0,0.5685750243 +0,0,0,1,1,0,0,2,0,0,0,0,0,2,0,0,2,0,0,0,0.5027928949 +0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,2,0,0.0318209604 +1,1,0,0,0,1,0,2,1,1,2,0,2,1,1,0,1,0,0,2,0.3140359683 +0,0,0,0,2,0,0,0,0,0,2,1,1,2,0,1,1,1,0,0,0.7443633005 +0,1,0,1,0,1,0,0,1,1,1,0,0,1,1,0,1,0,0,0,0.6251662499 +0,0,0,2,2,1,0,1,0,2,0,0,1,2,1,1,1,1,0,0,0.271598879 +1,1,0,1,0,1,0,0,0,2,1,1,1,1,0,0,1,0,0,1,0.016867449 +1,1,0,0,1,0,0,1,0,1,0,2,1,0,1,0,0,0,1,0,0.864871523 +1,1,0,1,1,1,0,0,0,1,0,0,2,0,1,2,0,0,0,1,-0.4008946766 +1,2,0,1,1,0,0,1,0,1,1,0,2,0,0,0,2,0,0,0,0.232301477 +1,1,0,0,1,0,0,1,1,0,1,0,1,1,1,1,1,0,0,0,0.0071053625 +1,0,0,1,0,1,0,1,0,0,0,1,1,0,0,1,1,1,0,1,0.1318757737 +0,1,1,0,0,1,0,1,0,0,0,1,0,1,0,0,1,0,1,1,1.02683873 +1,0,0,0,0,2,0,0,0,0,1,0,1,0,1,0,2,0,1,0,-0.1194266037 +1,0,0,1,0,1,0,1,1,0,1,0,1,1,0,0,1,0,2,0,-0.0275037813 +1,2,1,0,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,1.0895216582 +1,1,1,1,1,2,0,1,0,0,0,0,1,0,2,0,1,1,0,1,-0.6532672051 +0,0,0,2,0,1,0,1,1,0,0,0,2,1,0,1,1,2,0,0,-0.3386341437 +0,0,0,0,2,0,0,2,0,0,1,0,0,2,0,2,0,0,0,0,0.4965638266 +0,2,0,0,0,1,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0.2806221692 +1,1,0,1,1,0,0,0,0,1,1,0,1,1,0,1,1,0,1,0,0.0631927498 +1,1,1,0,0,2,0,1,0,1,1,0,1,1,0,0,1,0,1,1,0.4593610903 +0,1,0,0,0,2,0,1,0,1,0,1,1,1,0,1,1,0,0,0,0.2617114033 +0,1,0,2,1,1,0,0,1,0,0,0,0,1,0,1,2,1,1,0,-0.5088558336 +0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,-0.1357554437 +0,1,0,0,2,2,0,0,0,1,0,0,1,0,0,0,1,1,0,2,0.4061473228 +1,0,1,2,1,1,0,1,0,0,0,1,1,1,0,1,0,0,1,1,1.0910853075 +0,1,1,0,0,1,0,0,1,0,0,0,2,1,0,0,0,2,1,0,0.2380194839 +2,2,0,0,0,1,0,1,0,0,0,0,2,0,0,1,1,0,0,0,0.7857733016 +1,0,1,1,2,1,0,1,0,1,0,0,1,0,0,1,2,0,0,0,0.3909003715 +0,2,0,0,0,0,0,1,0,1,1,2,0,1,0,0,0,0,0,0,1.0799190135 +0,0,2,1,0,1,1,0,0,1,1,0,0,1,0,0,1,1,1,0,0.0507331147 +0,1,0,1,0,0,0,0,0,1,1,0,2,1,0,1,2,1,0,0,0.2262149983 +0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,1,0,0,1,-0.0574943365 +2,1,0,1,0,0,0,2,0,1,1,0,0,0,0,0,1,0,0,0,1.4193000387 +1,2,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,-0.8665954393 +0,2,0,0,0,1,0,1,0,1,1,1,1,2,1,0,1,0,1,0,0.2043811951 +0,2,0,0,1,2,0,0,0,1,0,0,1,0,0,0,0,2,0,0,0.9746519437 +0,1,1,1,0,1,0,1,0,0,0,0,0,0,0,1,1,0,1,0,0.9085221129 +0,0,0,1,1,1,0,2,1,0,2,1,0,0,0,0,2,0,0,0,0.6743683649 +1,1,1,0,1,1,0,0,0,1,0,1,0,1,0,0,2,0,0,0,0.0218774467 +1,1,1,0,1,1,0,0,1,0,2,1,1,0,1,1,1,0,0,1,0.3331422789 +1,0,1,0,1,1,0,0,0,0,0,1,0,2,0,0,1,0,0,1,-0.2870694874 +0,1,1,1,0,1,0,0,0,0,1,1,1,1,0,0,2,1,1,0,0.2106078446 +1,1,0,0,1,0,0,2,0,1,0,1,1,0,1,0,0,0,0,0,0.3092575152 +0,2,1,0,0,1,0,1,1,1,0,0,1,0,0,1,1,1,2,0,-0.0477352404 +2,0,2,0,2,1,0,0,0,0,0,1,0,2,0,0,1,1,1,0,0.4939957142 +0,2,1,1,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0.7737677025 +0,1,1,1,0,2,0,1,0,0,1,1,0,0,1,1,2,0,0,0,0.9948037195 +1,1,1,1,0,2,0,0,0,1,0,0,1,0,0,1,2,0,0,0,0.7388373704 +0,2,1,1,1,1,0,2,0,0,0,0,0,2,0,1,2,1,1,0,-0.3182940214 +1,0,1,0,0,0,0,1,0,0,2,1,0,0,1,0,1,1,1,0,0.0245227226 +0,1,1,1,2,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0.3779951372 +0,1,0,2,0,0,0,1,0,1,1,2,1,1,0,0,0,0,0,0,-0.5486111615 +0,1,0,1,2,1,0,1,0,0,1,0,1,1,1,0,0,0,0,1,-0.0671112618 +0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,1.06595199 +0,2,1,1,1,1,0,2,0,1,0,0,2,1,1,0,1,0,1,1,1.2229259111 +0,0,1,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,0.3834426782 +1,2,1,0,1,2,0,1,0,1,0,0,1,0,0,0,1,1,1,0,-0.0686592219 +1,1,1,0,1,2,0,1,0,1,0,0,1,0,1,0,1,1,0,0,0.6141582234 +0,2,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1.1409298321 +0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,1,-0.9772939562 +0,1,2,0,0,0,0,2,0,0,2,0,1,0,0,0,2,0,0,1,0.1003787024 +0,0,1,0,1,0,0,1,0,1,2,0,1,1,1,1,0,0,0,1,0.1881415731 +1,2,1,0,2,1,0,1,1,2,0,0,1,1,0,0,2,0,1,0,-0.3733908205 +0,2,1,1,2,1,0,1,0,0,1,0,0,0,1,0,1,0,1,0,-0.6575650456 +1,1,0,1,0,2,0,1,0,0,2,0,0,0,0,1,1,1,1,0,0.5541555404 +0,0,2,0,1,0,0,1,1,1,1,0,0,0,0,1,1,0,2,0,0.5823035603 +0,1,0,0,0,2,0,2,1,0,0,1,0,0,0,0,2,1,0,0,0.8862524678 +0,1,1,1,1,2,0,2,0,1,1,1,1,1,1,1,1,1,0,0,-0.0662016233 +1,1,0,0,1,1,0,0,1,1,2,1,2,1,0,0,2,2,0,0,-0.3654208915 +0,0,0,1,1,0,0,0,0,0,1,1,1,1,0,0,2,0,0,0,0.8825167597 +0,1,1,2,1,0,0,1,0,1,0,1,1,0,1,0,1,1,0,1,-0.2554920739 +0,1,0,0,1,2,0,2,0,1,1,0,0,0,2,0,1,1,0,0,0.7878299807 +1,0,1,0,0,1,0,1,0,0,0,1,1,0,1,0,1,1,0,0,1.0120383134 +0,2,1,1,1,1,0,1,0,0,0,0,0,0,0,1,0,1,1,0,-0.6763125699 +0,2,1,1,0,2,0,1,0,0,1,1,1,0,0,1,1,0,0,0,1.1407106188 +1,1,0,0,2,0,0,1,1,0,1,0,0,1,0,0,1,1,0,0,0.3921435405 +1,1,0,1,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0.4031335841 +0,2,1,1,0,1,0,1,0,0,1,1,1,0,0,0,2,1,0,2,-0.1866544553 +1,0,1,1,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,-0.3986754146 +0,1,0,1,1,0,0,1,0,0,1,1,1,1,0,0,2,0,1,0,0.4848154741 +0,0,1,1,1,1,1,1,0,0,0,0,0,1,0,1,0,0,0,0,0.6956915655 +1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,-0.6872232328 +0,1,0,1,0,2,0,1,0,1,0,0,0,0,1,1,1,1,1,0,-0.0970403042 +0,2,1,0,1,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,-0.4237078861 +0,2,0,0,0,0,0,1,0,2,0,1,0,0,0,0,1,0,0,0,-0.0118408355 +0,1,0,1,2,1,0,1,0,0,2,1,1,1,1,0,0,0,0,0,0.649782337 +0,0,0,2,0,0,0,1,0,1,1,0,1,1,0,1,2,0,1,1,2.0973597282 +1,1,0,0,0,2,0,0,1,0,0,1,2,1,1,0,2,1,0,0,0.4447108304 +0,1,2,1,0,2,1,1,0,1,2,0,1,0,1,1,0,0,0,0,0.6307320349 +0,0,1,0,0,1,0,1,1,1,0,0,0,0,0,0,2,0,0,0,0.2422510491 +0,1,0,1,1,0,0,1,0,0,1,0,1,0,0,0,0,1,1,1,1.3277157748 +2,1,1,0,0,1,0,1,1,0,1,1,1,1,0,0,1,0,0,0,0.9156256818 +1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,0,0,-0.1931390268 +0,1,1,2,0,0,0,2,1,0,1,0,0,1,0,0,1,1,2,0,0.7498850983 +0,1,1,0,0,2,0,1,1,1,1,0,1,0,1,1,1,0,0,0,0.7283546842 +0,0,2,1,0,1,1,0,1,0,1,0,0,1,0,0,1,0,0,1,0.3004143447 +0,1,0,1,1,1,0,0,0,1,2,0,1,2,0,0,1,0,0,0,-0.073005732 +0,1,1,0,0,0,0,1,0,1,0,1,0,2,0,1,2,0,1,0,0.0777060414 +0,1,1,0,0,2,0,0,0,0,0,1,1,1,0,0,2,0,0,0,0.2870168213 +0,1,2,2,1,0,0,1,1,1,1,0,1,1,0,1,1,1,0,0,0.6228496857 +0,2,1,0,2,2,0,0,0,2,1,0,0,0,1,1,1,0,1,0,-0.0600382804 +1,1,0,0,0,1,1,0,0,1,0,1,1,0,1,0,1,0,0,0,0.1403171364 +0,0,1,1,0,2,0,2,0,1,0,1,0,0,0,1,1,1,0,1,-0.0424654424 +0,2,1,0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,1,0.1405135058 +0,1,0,2,0,1,0,1,0,0,0,0,1,1,0,0,1,1,2,1,0.7395767023 +0,1,1,0,0,2,0,0,0,1,0,0,1,2,1,1,2,0,0,1,0.1375313675 +1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.1380512118 +0,2,1,1,1,1,0,1,0,1,0,0,0,1,0,1,1,0,1,1,-0.0396840084 +1,0,0,1,1,2,0,1,0,0,0,0,0,2,1,1,2,0,0,1,1.2213535391 +0,1,0,0,1,1,0,0,0,0,0,0,2,0,0,1,2,1,0,0,0.1780751472 +0,1,0,0,0,2,0,1,0,0,2,0,0,0,0,0,1,0,0,0,-0.1249034101 +0,0,1,0,1,1,0,1,0,0,1,0,0,1,1,1,1,1,0,0,0.2886597749 +1,1,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,-0.0266413466 +0,0,1,2,0,0,0,1,1,1,1,0,1,2,0,0,2,0,0,0,0.4308294097 +1,1,1,1,1,2,0,0,0,1,1,0,1,2,0,0,0,0,0,0,-0.2063043552 +1,0,1,1,1,1,0,0,1,2,2,0,1,2,0,0,1,0,0,0,0.5350603856 +0,1,1,1,0,2,0,1,0,0,0,1,1,1,0,1,0,2,0,0,0.6165864207 +1,2,2,1,0,0,1,1,0,1,1,1,0,1,0,1,1,0,2,0,0.4780530327 +0,1,0,0,1,0,0,2,0,1,1,0,1,1,0,0,2,0,0,0,1.035006862 +1,1,1,0,2,0,0,1,0,1,1,0,1,0,1,0,1,0,0,0,0.0036053518 +0,1,1,0,1,0,0,0,1,0,1,0,0,1,1,1,1,0,1,1,0.3534433639 +0,2,0,1,0,1,0,2,0,1,0,0,1,0,0,0,1,0,0,0,0.1706781115 +0,1,0,1,0,1,0,2,0,0,0,0,1,0,0,1,0,0,0,1,-0.2628819357 +1,2,1,0,0,2,0,1,0,1,0,2,0,1,1,0,2,0,0,2,0.0861898017 +0,2,0,1,0,2,0,1,2,1,0,0,0,0,0,0,1,0,1,0,0.2329757183 +1,1,2,0,0,1,0,1,0,0,2,1,0,0,0,0,2,1,0,0,0.0037898839 +0,1,1,1,0,2,0,1,0,1,0,0,0,1,0,0,2,0,1,1,0.9960270959 +0,1,0,0,2,1,0,1,0,1,0,1,2,1,0,1,1,0,0,0,0.3217732349 +1,0,1,1,1,1,0,0,0,0,0,0,1,0,0,2,1,0,0,1,0.7739628291 +0,1,0,1,0,1,0,0,1,1,1,0,1,0,0,1,2,2,0,0,-0.1966045926 +1,1,1,1,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0.5378250721 +0,2,1,2,0,2,0,1,0,2,0,0,1,0,0,0,1,1,0,1,-0.1116240337 +1,1,0,2,0,0,0,0,0,1,1,0,1,1,1,0,1,0,0,0,0.4396499488 +0,0,1,0,0,1,0,1,0,2,1,0,1,0,1,1,2,1,0,0,0.3289557106 +0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,-0.0273423176 +2,1,0,0,1,1,0,1,0,1,1,0,1,0,0,0,0,1,0,1,-0.5494953304 +0,1,1,1,0,2,0,1,0,1,1,0,0,0,0,1,0,0,0,0,0.7292713852 +0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,1,2,1,0,0,0.1599897193 +0,1,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,-0.3562997616 +1,1,0,1,1,1,0,1,0,0,1,0,2,1,0,0,2,0,0,0,0.9125676535 +0,1,1,2,2,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0,1.154767652 +0,2,1,1,0,2,0,0,0,1,1,0,0,0,0,0,1,1,1,1,0.5759219767 +0,2,2,1,1,1,0,1,0,1,0,0,2,0,1,2,0,1,1,1,0.7439459916 +0,1,0,0,0,2,0,1,1,1,1,0,1,0,0,0,1,0,0,0,-0.219982961 +1,2,0,2,0,0,0,1,0,0,1,1,1,0,0,0,1,0,1,0,0.0359862395 +0,2,1,2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0.2839841529 +0,0,1,1,0,1,0,1,2,1,0,0,0,0,0,0,0,0,0,0,0.6053321056 +0,2,0,0,1,1,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0.6140667677 +0,1,0,0,1,2,0,1,0,1,0,0,0,0,0,0,1,0,1,0,0.6387669705 +0,2,1,0,1,2,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0.7150944121 +0,0,0,0,0,2,0,0,0,2,0,1,2,0,0,1,1,1,0,0,0.2560359403 +1,0,1,0,0,1,0,2,1,1,0,0,1,0,0,1,1,1,0,0,0.5792778496 +2,2,0,2,1,1,0,0,0,0,0,1,1,0,0,0,0,0,1,0,-0.4362335774 +0,0,2,0,0,0,0,2,0,1,1,0,0,1,0,0,1,0,0,0,0.0290697882 +0,1,2,0,0,0,0,0,0,1,1,0,1,0,1,0,1,1,0,0,0.5741908888 +0,2,2,0,0,2,0,0,0,0,1,0,0,1,0,1,2,1,1,1,1.0407269556 +0,1,0,1,1,0,0,1,0,1,1,0,0,1,0,0,1,1,1,0,-0.5369517646 +0,0,1,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,-0.3224222862 +1,0,0,1,1,2,0,2,0,0,1,0,0,1,0,0,1,0,1,1,1.0422025964 +0,1,1,2,0,2,0,0,0,1,1,0,0,2,0,1,0,1,1,1,0.9667374581 +1,1,2,0,1,1,0,1,1,1,1,1,0,0,0,0,1,0,2,2,1.1227558845 +2,2,2,1,1,2,0,0,0,2,0,0,0,0,1,0,1,0,1,0,0.249514043 +0,2,1,1,1,0,0,1,0,1,1,0,1,0,0,2,2,1,1,0,-0.6689307421 +1,1,1,0,1,1,0,1,1,0,0,1,1,1,0,1,1,0,0,1,-0.6367023269 +1,1,0,1,0,2,0,1,0,1,1,0,2,2,1,0,0,0,0,0,0.7436916818 +1,1,1,0,0,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,-0.0736440615 +1,1,2,0,1,1,1,1,0,1,1,0,1,0,1,1,1,0,0,1,0.4882516924 +0,1,1,1,0,1,0,2,1,1,1,0,0,0,0,1,1,0,0,0,0.3500462978 +1,2,0,0,1,2,0,2,0,0,0,1,0,0,1,0,1,1,0,0,0.3310247592 +1,2,1,0,1,2,0,0,1,0,0,1,0,0,0,0,0,0,1,0,-0.0273193516 +1,1,1,1,1,0,0,1,0,0,0,0,1,0,0,0,2,0,1,1,0.582574222 +0,0,0,2,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1.2595421594 +1,2,0,0,0,2,0,0,0,0,2,1,2,0,0,0,2,0,1,0,-0.4604234196 +0,1,0,1,0,1,0,0,0,0,1,0,2,1,0,1,0,1,0,0,0.6816954033 +1,1,1,0,0,0,0,0,0,0,1,0,2,1,0,0,0,0,0,1,-0.2371016919 +0,1,0,0,1,1,0,1,0,0,0,1,0,1,0,0,1,1,1,1,-0.0753753727 +0,1,0,0,0,2,0,0,0,0,0,1,0,1,1,0,2,1,0,0,0.9781027309 +0,0,1,0,1,1,0,1,0,0,1,1,1,0,0,0,0,0,0,0,-0.7612349658 +1,2,2,1,1,1,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0.8148874943 +0,0,0,1,2,1,0,1,0,1,0,0,0,2,1,1,1,0,0,1,0.4204772034 +2,2,2,0,0,1,0,0,0,2,0,0,0,1,0,0,0,0,0,1,-0.9210719927 +1,1,1,0,2,2,0,0,1,1,0,1,0,0,0,0,1,0,0,0,0.0797370776 +1,1,0,1,0,1,0,1,0,1,1,1,0,0,0,0,2,0,0,1,0.5229634578 +1,2,1,1,2,1,0,0,0,0,0,1,2,0,0,0,0,0,1,1,0.7186952525 +1,2,1,0,0,0,0,0,0,2,1,0,0,2,0,0,2,0,0,0,0.7308277299 +0,0,1,0,2,1,0,0,0,0,0,0,2,0,0,0,1,0,1,0,-1.0614086711 +1,0,1,1,0,1,1,1,1,1,1,1,1,2,0,1,2,0,0,0,0.3760233342 +2,1,1,0,0,1,0,1,0,1,0,0,1,2,1,1,1,0,0,0,0.860483106 +2,1,1,1,0,1,0,1,0,0,1,0,1,1,0,0,1,1,0,0,1.1729054718 +1,1,2,0,1,1,0,1,0,1,1,1,1,0,0,0,0,1,2,1,0.1143431893 +0,2,0,0,0,0,0,2,0,1,0,0,2,2,0,1,0,0,1,1,1.35828258 +1,1,1,1,2,1,0,0,0,1,1,1,0,1,1,0,0,0,1,0,0.7527649322 +0,2,1,2,1,1,0,2,0,0,0,0,0,0,0,1,2,0,0,0,0.4931620246 +0,1,1,0,2,0,0,1,0,0,0,1,1,2,0,1,2,0,0,2,-0.0115871331 +1,1,0,0,1,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0.2792984336 +0,2,0,1,1,1,0,0,0,0,1,0,0,2,0,1,0,0,0,0,-0.3398994398 +1,2,2,1,1,1,0,1,2,1,0,0,1,1,0,0,0,1,0,0,1.0325647911 +0,1,2,0,1,1,0,0,0,2,0,0,0,1,0,2,0,0,0,0,0.7141003582 +2,2,1,1,0,1,1,1,0,2,1,1,0,0,0,0,1,0,0,0,0.9931747183 +1,1,0,0,1,1,0,0,0,1,1,0,0,1,0,1,0,0,0,1,-0.0683379382 +0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0.2724200395 +0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0,2,1,0,-0.0182551691 +0,2,1,2,1,1,0,0,0,0,1,1,1,1,0,0,1,0,2,1,1.0228444847 +0,1,1,0,0,0,0,1,0,0,1,1,1,2,0,0,2,0,0,0,-0.1092780187 +1,1,1,1,0,1,0,1,0,2,0,0,1,1,1,0,1,0,0,0,1.4775951954 +0,1,1,0,0,2,0,2,0,1,1,0,0,0,0,2,1,0,0,0,1.0204028024 +1,1,0,1,0,0,0,2,0,0,1,1,1,2,1,0,2,1,1,1,0.6570198776 +1,1,2,1,1,1,0,1,0,1,2,0,1,0,0,0,2,0,0,0,0.3050836874 +0,0,0,0,0,1,0,1,0,1,1,1,1,0,0,1,1,1,0,0,0.3532055301 +0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0.1596854388 +0,0,0,0,2,2,0,0,0,1,1,1,2,1,2,0,1,0,0,0,-0.2652694019 +0,1,1,0,0,1,0,0,0,1,0,0,1,2,0,2,0,0,0,0,-0.6055803034 +2,2,1,0,0,1,0,1,0,0,0,1,0,0,0,1,0,1,0,1,-0.2810474367 +0,2,1,1,0,2,0,2,0,0,2,0,1,0,0,1,0,0,0,0,-0.3031075963 +0,1,1,1,1,1,0,2,0,0,1,0,0,0,0,0,1,0,0,1,0.7431447593 +2,0,0,1,1,1,0,1,1,0,1,0,1,0,1,2,0,1,0,1,1.0093010154 +0,1,1,1,0,1,0,1,1,0,1,1,0,2,0,0,0,0,2,0,0.4906366465 +0,1,1,2,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.4658691458 +1,0,2,0,0,1,0,2,0,2,1,0,2,0,1,0,1,0,0,0,-0.0939638021 +0,2,0,0,0,0,0,2,0,1,0,0,2,1,1,1,1,0,1,0,0.441876928 +1,2,0,1,0,1,0,0,1,1,2,1,1,2,0,1,0,0,0,0,-0.6085285864 +1,0,1,0,0,0,0,1,0,2,1,0,0,1,0,0,0,0,0,1,0.0992890867 +0,2,1,0,1,1,1,1,0,1,1,0,1,1,0,1,1,0,0,0,-0.0850190942 +1,2,1,1,1,1,0,0,1,1,0,0,2,1,0,1,0,0,0,2,0.1862863334 +0,1,0,1,1,0,0,1,0,0,0,0,0,0,1,0,2,1,0,1,-0.2874404437 +1,1,1,1,1,0,0,1,0,0,0,0,1,1,1,1,1,0,1,0,0.2792777349 +1,1,1,1,0,1,0,0,0,0,1,1,2,1,0,0,2,0,0,1,-0.220919275 +0,1,0,1,1,2,0,1,2,2,0,0,0,1,0,1,2,0,0,0,-1.1910781745 +0,1,1,0,0,0,0,1,1,0,0,0,0,1,0,0,2,1,0,0,1.0503693868 +0,0,1,0,1,2,0,1,0,1,1,0,1,0,0,1,1,1,1,0,-0.4528768103 +1,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,2,-0.2930205912 +0,2,1,1,0,1,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0.0428950173 +1,1,1,0,1,2,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.5488197002 +0,0,1,1,1,2,0,0,0,0,1,1,0,1,0,1,2,1,1,2,0.9093841555 +0,1,0,0,1,2,0,2,0,0,0,1,1,0,0,1,2,0,1,0,0.2001910567 +1,0,2,0,1,1,0,1,0,0,1,0,1,0,0,0,2,0,0,0,0.5730056499 +1,0,0,0,0,0,0,0,0,0,1,0,1,1,0,1,2,1,0,0,0.1741805018 +1,1,1,1,0,0,0,1,0,0,1,0,2,1,0,0,1,0,1,0,0.4127606691 +0,1,0,0,0,1,0,0,1,1,1,1,0,0,0,1,2,0,2,0,0.0602480275 +1,2,2,0,1,2,0,1,0,1,1,0,1,1,0,1,0,0,0,1,0.347929043 +1,2,0,0,0,1,0,1,0,1,1,1,1,1,1,0,1,1,0,0,0.0353664888 +0,1,1,1,1,2,0,1,1,1,1,1,0,1,0,0,0,1,1,1,0.8462559785 +1,1,1,0,1,0,1,0,0,2,0,0,0,1,0,0,0,1,0,0,0.513563454 +0,1,0,1,1,2,0,0,0,1,0,0,0,1,0,0,2,0,0,2,0.4291908165 +1,1,0,0,1,1,0,1,0,1,0,1,0,1,0,1,1,0,1,1,0.8886751113 +0,2,0,0,0,1,0,2,0,0,2,0,0,0,0,1,0,0,0,0,0.5916819823 +1,2,1,1,1,2,0,0,0,1,0,1,1,1,0,0,1,1,1,0,0.0690626052 +1,2,1,1,0,2,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0.5977896244 +0,1,0,2,0,2,0,1,0,0,1,2,1,1,1,0,1,0,0,1,-0.1130254801 +1,1,0,1,0,0,0,1,0,1,0,1,1,0,0,0,1,0,2,0,0.4631832983 +0,2,0,1,0,1,0,1,0,0,0,0,0,2,0,0,2,0,0,0,0.2761613855 +1,0,1,1,2,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1.071115004 +0,0,2,0,0,0,0,0,1,1,0,0,1,0,1,0,1,1,0,0,-0.6776979938 +0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,1,0,1,0,1,0.3837941535 +1,2,0,1,1,0,0,0,0,2,1,0,1,1,1,1,0,0,0,0,0.7789302408 +0,2,2,0,2,1,0,1,0,1,1,1,1,0,0,1,0,0,1,1,0.5800526094 +1,0,0,1,0,1,0,1,0,2,1,0,0,0,1,1,2,1,0,1,0.1127774572 +1,1,0,0,1,2,0,1,1,1,0,0,2,0,0,0,2,0,0,0,0.5688395865 +0,1,0,2,0,2,0,1,0,0,1,1,0,1,0,0,1,1,0,1,-0.5593087167 +0,0,1,1,1,0,0,1,0,0,1,0,1,1,1,1,1,0,1,0,-0.3358845506 +1,1,2,1,0,2,0,2,0,0,1,0,1,0,0,0,1,1,0,0,0.5134813454 +0,1,2,1,2,1,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0.5525917154 +0,1,1,1,1,1,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0.7221590823 +0,2,2,0,1,1,0,1,1,0,0,0,0,1,0,0,1,0,1,0,0.1413865377 +0,2,1,1,0,1,0,2,2,0,1,2,0,1,0,0,1,1,0,0,0.4450502141 +1,1,0,0,1,2,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0.1925567607 +0,1,0,0,0,1,0,1,0,1,0,1,1,1,0,1,0,1,1,1,1.4278417563 +0,1,2,0,0,1,0,0,1,2,0,1,1,0,1,1,2,0,0,0,0.5329403321 +1,1,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,1,-0.1171683716 +2,1,1,0,1,1,0,2,0,1,0,0,1,2,1,0,1,0,0,0,0.7535284794 +1,2,1,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-0.6903899588 +2,1,1,0,1,1,0,1,0,0,0,0,2,1,0,0,0,0,1,0,0.5950290886 +1,1,0,0,0,1,0,0,0,0,2,0,1,0,0,0,1,0,1,0,0.5692922889 +2,2,0,0,1,1,0,2,1,1,1,0,0,0,0,0,0,1,1,2,0.3700569033 +0,1,2,1,2,0,0,1,0,1,0,1,1,2,1,0,1,1,0,1,-0.3098728738 +0,1,2,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,1.2103276546 +0,1,1,1,1,0,0,2,0,1,0,0,1,1,0,1,0,0,1,1,1.0323024967 +1,0,1,2,1,1,0,0,0,0,0,1,0,2,0,0,0,0,0,1,-0.1519230906 +0,2,1,0,1,1,0,1,1,1,1,0,1,0,0,1,0,1,0,1,0.1003071478 +2,1,2,0,0,0,0,2,0,1,1,1,2,1,1,0,2,0,0,0,0.5776319276 +0,2,2,0,1,2,0,0,0,0,1,1,1,1,0,1,0,1,0,1,-0.811307468 +0,0,1,1,0,0,0,2,0,1,0,1,0,0,1,1,1,0,1,0,0.1761724328 +1,0,1,2,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,-0.3900976141 +0,1,0,1,1,1,0,0,0,1,1,1,0,2,0,0,1,0,1,0,-0.3368182089 +0,2,2,2,1,0,0,1,0,0,0,1,2,1,0,1,1,1,1,0,0.3512943799 +1,1,1,0,0,2,0,1,0,0,0,0,1,0,1,0,1,1,0,1,-0.1230694605 +1,1,1,1,1,1,0,0,0,2,1,0,1,0,0,0,0,0,1,0,0.3653221213 +1,1,0,1,1,1,0,1,1,1,0,1,0,1,0,0,0,1,1,0,0.0808261465 +2,0,0,0,0,1,0,2,0,1,1,0,1,2,0,0,0,0,0,1,0.2428952162 +0,1,0,0,1,1,0,2,0,0,0,0,0,1,0,1,0,0,1,0,0.4991702013 +0,1,0,1,1,0,0,1,0,2,0,2,1,0,0,1,1,0,0,1,-0.2000927794 +0,0,1,1,1,1,0,0,0,1,2,0,1,1,1,0,1,1,0,1,-0.3166095279 +2,2,0,0,1,2,0,1,0,0,0,0,1,1,0,0,2,0,0,1,1.0547552327 +0,2,2,2,0,0,0,1,0,2,1,1,2,1,0,0,1,0,0,0,0.2068477342 +1,1,1,0,1,1,0,1,1,0,1,2,0,1,2,0,0,0,0,0,0.7839147187 +1,1,1,1,1,1,1,0,0,2,0,0,1,1,0,0,1,1,0,0,0.959976994 +0,2,1,0,0,2,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.8216902573 +1,1,0,0,1,1,0,2,0,1,0,1,2,0,0,1,1,0,0,0,-0.2102067924 +1,0,1,0,1,2,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0.8048321003 +0,0,0,1,1,2,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0.4933955788 +0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0.7756518648 +0,1,1,0,0,1,0,0,0,0,1,0,1,1,0,0,1,1,0,0,1.1489989265 +0,1,1,2,0,1,0,1,0,0,1,0,1,2,0,1,2,0,1,0,0.2122550955 +0,1,2,0,1,1,0,0,1,0,1,0,0,0,0,0,2,1,0,0,0.0054276991 +0,1,2,1,0,2,1,0,0,2,1,1,1,0,0,0,0,1,0,0,-0.2091745908 +0,1,1,0,0,2,0,2,1,0,1,0,2,1,0,0,1,0,0,0,0.4581356946 +1,1,1,1,0,2,0,0,0,0,1,0,1,1,0,2,1,0,0,0,0.3463660401 +0,1,1,1,2,2,0,1,1,0,1,1,0,0,0,1,2,0,2,1,0.7925036332 +0,0,0,0,0,2,0,1,1,1,0,0,0,0,0,0,0,0,1,2,0.9410787609 +1,0,0,1,1,1,0,0,1,1,2,0,1,2,0,0,0,0,0,0,0.5975271376 +1,1,0,1,2,2,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0.6585844455 +1,1,1,0,0,1,0,0,0,0,2,0,0,0,1,0,1,0,0,0,0.8403670221 +1,2,0,0,0,1,0,1,0,0,2,2,0,0,0,2,0,2,0,0,0.725726103 +1,1,2,1,1,1,0,0,1,0,1,1,1,0,0,0,2,1,2,0,1.0316298097 +1,2,2,0,1,1,0,1,0,1,1,0,0,0,0,0,1,0,0,0,0.5608295114 +1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,2,1,0.0076720557 +2,2,1,0,2,1,0,2,0,0,0,1,0,0,1,0,1,0,1,0,-0.7117186166 +1,1,0,0,2,1,0,1,1,2,1,0,0,2,2,1,2,0,0,0,0.5706409351 +1,1,2,0,1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0.0940076156 +1,2,1,0,0,1,0,1,0,1,2,1,0,1,1,0,2,1,1,0,0.2621529525 +1,0,1,0,0,1,0,1,0,0,0,1,2,1,0,0,0,0,0,0,0.8006364171 +1,1,1,2,0,1,0,2,0,1,0,2,1,0,0,1,2,0,0,1,0.5896329475 +0,1,1,1,0,1,0,1,0,1,1,0,1,1,1,1,1,0,0,0,0.2292810444 +0,1,0,1,0,2,0,1,0,0,1,0,0,1,1,0,1,0,1,2,0.4899582262 +1,1,0,0,0,1,0,1,0,0,0,1,1,1,0,1,1,0,0,2,-0.7030645844 +0,0,1,2,0,1,0,2,0,1,0,0,0,0,1,1,1,0,0,0,0.8949140245 +0,0,1,1,0,1,0,1,0,1,1,1,1,0,0,2,1,0,0,1,0.401797551 +0,1,1,0,0,2,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0.4978484046 +0,2,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,1,1,0,0.3389731655 +1,2,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,-0.5645881137 +0,1,2,1,0,1,0,1,0,2,1,1,1,0,0,0,1,0,0,1,0.2441408726 +1,1,1,0,1,1,0,1,0,1,0,0,1,1,0,0,1,0,0,1,-0.1337514226 +1,0,0,1,0,2,0,0,0,1,0,0,0,2,0,0,0,0,0,1,0.4990084202 +0,1,1,0,1,2,0,2,0,1,0,1,1,0,0,0,1,0,0,0,1.0539913731 +1,0,1,1,0,2,0,0,0,1,1,0,0,1,0,1,1,0,0,0,0.6555579526 +0,2,1,0,1,2,0,0,0,1,0,1,0,0,0,0,2,0,0,1,-0.3237837979 +1,1,1,0,0,1,0,1,1,0,1,0,1,1,0,0,1,0,0,0,-0.055567411 +1,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,2,0,0,0,1.2854862168 +0,0,1,1,1,2,0,2,0,0,2,1,1,1,0,0,1,0,0,1,-0.0839166541 +1,0,1,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,-0.3739312562 +1,1,0,1,1,1,0,1,0,0,1,0,0,0,0,1,2,0,1,0,-0.730048292 +1,1,1,1,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.6579204003 +1,0,1,1,1,1,0,0,0,0,1,0,2,0,0,1,2,0,0,0,0.935101074 +1,2,2,0,1,0,0,0,1,0,0,0,1,1,0,0,1,0,1,0,-0.2334813565 +0,1,1,2,1,1,0,2,0,0,0,1,1,0,0,0,2,0,0,0,0.3828082914 +1,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,1,1,0,0,0.8888997315 +1,2,1,0,0,2,0,0,0,0,2,1,1,1,0,0,1,0,0,0,0.3443010147 +1,1,0,0,1,1,0,2,2,2,1,1,1,1,0,0,1,0,1,0,-0.2443941834 +0,1,1,0,0,0,0,2,0,1,1,0,1,0,1,1,2,0,1,0,0.3255178245 +2,0,1,0,0,2,1,0,0,0,0,0,1,0,1,0,1,0,1,0,-0.3772781445 +0,0,0,0,2,0,0,1,1,2,1,0,2,0,0,0,1,0,1,0,0.3598459702 +2,1,0,0,1,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,-0.1707855352 +0,1,1,1,0,0,0,1,1,1,1,0,1,0,0,1,0,0,0,0,0.6976548739 +0,0,1,1,1,0,0,0,1,1,0,0,2,0,1,0,0,0,1,0,0.6851363869 +1,0,0,1,0,1,0,1,0,0,0,0,1,2,1,0,0,1,0,0,1.008938329 +0,1,0,0,1,0,0,1,0,0,1,0,2,1,0,0,0,0,0,0,0.4587326193 +0,1,1,0,1,1,0,2,1,1,0,0,1,1,1,0,1,0,0,1,0.2355059698 +1,0,1,0,0,0,0,1,0,1,0,1,0,2,1,1,1,0,0,0,0.4262434222 +0,1,1,1,1,2,0,1,1,0,1,0,0,0,0,1,2,0,1,0,0.7540837736 +2,2,2,1,1,2,0,1,0,0,0,0,1,1,0,1,1,0,1,0,-0.7242929612 +0,2,0,0,1,0,0,2,0,0,2,1,0,0,1,1,1,1,0,1,-0.3889335983 +1,1,2,0,0,1,0,1,0,0,2,0,0,0,0,1,1,0,1,1,1.2619692334 +0,0,0,0,0,2,0,1,1,1,1,2,1,2,0,0,2,0,1,0,-0.8018167991 +2,1,1,0,1,1,0,0,1,0,0,0,1,0,0,1,0,1,0,1,0.0820627039 +1,1,1,0,0,2,0,1,0,1,1,1,1,1,1,1,1,0,0,0,-0.1189129003 +0,0,0,0,0,0,0,0,0,1,1,1,2,0,0,1,2,0,0,1,-0.4287044202 +0,0,1,0,1,1,0,2,0,0,0,1,1,0,0,0,0,0,0,0,0.469674434 +1,1,0,1,1,1,1,1,0,1,0,0,2,2,0,1,1,0,0,1,0.1064397569 +1,2,0,0,1,2,0,0,0,0,0,1,1,0,1,1,0,0,0,2,-0.5152580996 +1,0,1,1,1,0,0,1,0,0,1,2,0,1,0,1,2,0,1,0,0.3455972542 +0,0,1,1,0,1,0,1,0,0,0,1,1,2,1,0,1,0,1,1,0.621988485 +1,2,0,1,0,0,0,0,0,1,0,0,1,0,0,0,2,0,0,0,0.1203753844 +1,1,1,1,0,1,0,1,0,1,0,0,1,0,1,0,1,0,1,0,0.6019528669 +0,1,0,0,1,1,0,2,1,0,0,1,0,0,0,0,1,1,0,0,-0.1846907885 +1,1,1,2,0,0,0,1,1,0,0,0,1,0,1,0,2,1,0,1,0.0505063429 +1,0,2,0,1,1,0,0,0,1,1,1,0,1,0,0,1,0,0,0,0.7010657323 +0,1,0,0,2,0,0,0,0,0,1,0,1,2,0,0,1,0,0,1,-0.580906664 +1,1,1,2,0,2,0,1,1,0,0,1,0,1,0,0,1,0,0,0,0.5006559686 +0,0,1,0,0,1,0,0,0,1,0,0,1,1,0,0,2,0,0,0,0.0676008472 +0,1,1,0,0,0,0,1,0,1,0,1,1,2,1,0,2,0,1,0,-0.0189049802 +1,1,0,0,0,1,0,2,0,1,0,0,1,1,0,0,1,0,0,0,1.1105273125 +1,1,2,1,0,1,0,2,0,1,1,0,0,0,1,0,1,0,0,1,-0.9160590062 +0,1,0,0,0,1,0,0,0,0,2,0,1,1,0,1,0,0,0,0,1.225289712 +0,0,1,1,0,1,0,0,0,0,1,0,0,0,2,1,0,0,0,1,-0.7610835306 +2,2,1,1,0,2,1,0,0,1,0,0,0,1,0,0,1,1,1,0,-0.3557225771 +1,0,1,1,0,0,1,1,1,1,1,0,1,0,1,1,0,0,0,0,1.0876962529 +1,0,1,1,1,1,0,1,0,1,0,0,1,2,0,0,2,1,0,0,0.8303835948 +0,2,1,0,0,2,0,1,0,0,0,0,1,0,0,0,1,0,1,0,-0.1373928065 +0,2,1,1,0,1,0,0,0,0,1,0,0,2,0,0,0,0,2,0,-0.1577776726 +0,2,0,1,1,2,0,1,0,1,0,2,0,1,0,0,0,1,0,1,-0.2035080722 +0,1,0,2,1,2,0,1,0,0,1,0,1,1,0,0,0,0,1,0,-0.1223733496 +0,1,2,0,1,2,0,0,0,0,1,0,1,1,0,0,0,1,0,1,0.2556857139 +0,1,1,1,1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,0,0.5209359519 +0,1,0,1,0,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0.2783592076 +1,1,0,1,0,2,0,1,1,1,1,0,1,1,0,1,1,0,0,0,0.1648635613 +0,1,0,1,0,2,0,0,1,1,1,1,0,2,0,1,2,0,1,1,0.3197887294 +2,1,0,0,1,1,0,1,1,1,0,0,0,1,0,0,1,0,1,1,0.2512664515 +0,2,0,1,0,1,0,2,1,0,1,1,0,0,0,0,0,0,1,0,0.1078535032 +1,1,2,0,1,1,0,0,0,1,1,1,2,1,0,1,1,0,0,0,0.1527057226 +1,0,1,0,1,1,0,1,0,0,1,2,1,0,0,0,1,0,1,0,0.4987599445 +2,1,0,1,1,1,0,1,1,0,0,1,1,1,0,1,2,2,1,0,0.2991505402 +0,0,0,1,0,0,0,0,0,1,1,0,1,1,1,1,1,0,0,1,0.3437752204 +1,0,0,0,2,1,0,0,0,1,0,0,1,1,1,0,1,1,0,1,1.1774364889 +0,0,0,0,1,1,1,2,1,0,0,0,1,1,1,0,1,0,0,1,-0.2335392877 +0,2,1,1,1,1,0,2,0,0,1,1,1,0,0,0,1,1,0,0,1.2854810038 +1,1,2,1,0,2,0,1,0,1,0,0,0,1,0,1,2,2,2,0,0.8150839758 +1,1,0,1,0,1,0,1,0,1,0,1,2,0,0,0,0,0,2,1,0.7273698457 +0,1,1,1,0,2,0,1,0,0,0,1,1,1,0,0,1,0,0,0,0.1237218211 +0,0,0,0,1,0,0,2,0,0,1,0,0,1,1,0,0,0,1,1,0.873927315 +0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,1,-0.4405043939 +1,2,0,1,0,2,0,1,0,0,1,1,1,1,0,1,0,0,0,1,0.1467909461 +0,0,1,0,1,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0.6341676749 +1,1,1,0,0,0,0,1,0,0,0,0,1,0,1,0,1,0,1,1,0.3972606168 +1,1,1,1,2,1,0,0,0,0,1,0,1,0,0,1,1,1,1,2,0.5589642991 +2,0,1,1,0,1,0,2,0,1,0,0,0,1,0,0,1,1,2,0,0.6469807129 +1,1,0,1,1,1,0,2,0,1,1,2,2,0,0,0,0,1,0,0,0.6689219083 +0,1,1,1,2,0,0,1,0,0,1,1,1,1,0,1,2,1,0,1,0.6213938605 +0,0,2,1,1,0,0,1,0,1,0,0,2,2,1,0,2,0,0,0,-0.1901456544 +0,1,0,2,0,2,0,0,1,0,0,0,0,0,0,0,2,0,0,0,-0.0709683494 +0,2,1,0,1,1,0,1,0,2,1,1,1,1,0,0,1,1,0,1,-0.657805347 +0,2,1,1,0,1,0,2,0,0,1,1,0,0,0,0,1,1,0,0,-0.2882586315 +1,0,0,0,1,1,0,2,0,0,0,0,2,0,0,0,0,1,2,2,0.2237448823 +1,0,1,0,0,1,0,1,1,1,0,0,0,1,1,1,2,0,0,0,1.0511701431 +1,1,0,1,0,1,0,1,0,2,2,1,2,0,0,0,1,1,0,0,1.1855093678 +1,1,1,1,1,2,0,1,0,0,0,1,2,0,0,0,0,0,1,0,-0.2318120956 +1,0,0,1,0,1,1,0,0,1,1,1,0,0,1,1,0,0,1,0,0.1852482631 +1,0,1,0,0,2,0,0,1,1,0,0,2,1,0,0,1,0,1,0,-0.9836362558 +0,1,0,2,2,0,0,0,0,1,1,0,1,0,0,0,1,0,1,1,0.7655981622 +0,0,0,2,0,2,0,1,1,2,1,0,2,0,0,0,2,0,0,0,0.3266498853 +1,2,0,1,0,2,0,0,0,0,1,0,1,0,1,1,1,0,2,1,0.08094699 +0,2,1,1,1,1,0,0,1,1,2,0,1,1,1,0,1,0,0,0,0.868575779 +0,0,2,1,0,0,0,1,0,1,1,0,1,0,0,0,1,1,2,1,0.348015772 +0,1,0,1,0,1,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0.4381848603 +1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0.2182603314 +2,2,0,0,1,1,0,1,0,0,0,0,1,0,0,0,1,1,1,1,0.5365192456 +0,1,0,1,2,2,0,0,0,1,0,0,1,0,1,1,0,0,0,1,0.1142732095 +1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0.3679477772 +2,1,1,1,0,1,0,1,0,0,0,1,1,0,1,0,1,0,0,0,-0.2510909435 +0,1,1,1,1,1,0,1,1,0,2,0,1,0,1,0,1,2,1,1,0.6193527134 +1,0,2,0,0,0,0,2,0,2,0,1,1,1,0,0,1,0,0,0,0.6857407771 +2,1,1,1,0,2,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0.4613403726 +0,1,2,0,0,1,0,0,0,0,0,1,1,0,1,2,2,0,1,1,0.8221552006 +0,0,0,2,1,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,-0.4730678123 +1,0,0,0,1,1,0,2,0,2,0,0,1,0,1,0,1,0,1,0,2.0451117203 +0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0.1469773344 +1,1,2,0,0,0,0,0,0,1,1,0,0,0,0,1,2,0,0,1,-0.6012086122 +0,1,2,0,0,0,0,1,0,1,1,0,2,1,0,2,1,0,0,2,-0.2285405129 +1,1,1,0,0,1,0,1,0,0,0,1,1,2,0,1,0,0,0,0,0.4693085096 +0,0,0,2,1,1,0,1,0,1,0,0,1,0,2,0,1,0,0,0,0.5254247392 +0,1,1,0,0,1,0,1,0,1,2,0,1,0,0,0,1,0,0,0,0.0583354842 +1,1,1,1,1,1,0,1,0,2,0,0,0,0,1,1,1,0,0,0,1.2442785341 +0,1,2,0,0,0,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0.0594194056 +1,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,1,0,0,0,0.7039622503 +1,1,0,0,1,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,-0.2867577658 +0,2,1,0,1,0,0,0,1,2,0,0,0,1,0,0,2,1,1,0,-0.3067698384 +0,1,1,0,1,1,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0.7645468392 +0,1,1,0,1,2,0,1,0,1,2,1,1,1,1,0,1,0,1,0,0.6769616751 +0,1,1,0,1,0,0,0,0,1,1,0,2,1,1,0,1,0,0,0,0.1394430227 +2,1,0,0,1,0,0,1,1,1,1,0,0,1,0,0,1,1,0,0,0.7522203299 +0,0,0,1,0,1,0,2,0,1,1,1,1,1,0,1,1,0,1,1,0.8374047154 +0,1,0,0,1,1,0,2,0,1,1,0,0,0,1,0,1,0,0,0,0.9814362196 +0,0,0,1,1,2,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0.8383575712 +1,0,1,0,0,1,0,0,0,1,1,0,1,0,0,0,1,0,1,1,1.4358113928 +0,0,2,0,0,1,0,0,1,1,0,0,1,1,0,0,0,2,0,0,1.1666078225 +0,1,1,0,1,0,0,0,1,0,2,0,0,0,0,0,1,1,1,0,0.2569398757 +1,1,1,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0.8793460229 +1,1,1,1,2,2,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1.2680870477 +0,2,0,1,0,2,0,1,0,2,1,0,0,1,0,1,1,0,0,1,0.3630839953 +0,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0.3147308181 +0,1,1,1,1,2,0,0,0,1,1,1,0,0,1,0,1,0,0,0,0.9689625873 +2,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0.8647294894 +1,0,1,0,0,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0.2076178259 +0,2,1,0,0,2,0,1,1,0,1,0,0,0,0,0,0,0,0,0,-0.3253091096 +0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,-0.3537099257 +0,1,1,1,0,1,0,0,0,0,1,0,0,0,0,0,1,0,1,1,0.6924523726 +0,2,1,0,0,1,0,0,1,0,1,0,2,1,0,0,1,0,1,0,-0.2994240809 +0,2,1,0,1,2,0,1,0,0,1,0,1,0,0,0,0,0,1,0,0.3366358737 +0,1,0,0,0,1,0,2,0,1,1,0,0,1,1,0,2,0,0,0,0.417032958 +0,1,1,0,1,2,0,2,0,0,1,0,0,1,0,0,2,0,1,0,-0.1489469033 +1,1,1,1,0,0,0,1,0,1,1,1,2,2,1,0,1,0,0,1,0.6796028552 +0,0,1,1,1,1,0,0,0,0,1,0,2,0,0,1,1,0,0,0,-0.7839278531 +0,2,1,0,0,2,1,0,1,1,1,0,0,1,1,1,1,0,0,1,-0.3909284475 +0,1,1,0,0,0,0,0,0,1,1,1,1,1,0,2,0,0,1,0,0.7519262728 +0,2,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,1,0,1,-1.0256216498 +1,1,2,2,1,1,0,1,0,1,1,1,0,1,0,1,1,1,0,1,0.6575161325 +1,0,0,0,2,1,0,0,0,0,1,0,1,0,0,1,0,0,1,0,-0.1254503954 +0,2,0,1,1,1,0,1,0,0,1,0,1,1,0,1,2,0,1,0,0.0109789402 +0,0,1,1,1,0,0,2,0,1,1,0,0,2,0,1,2,0,0,2,0.2651459481 +1,1,0,1,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0762487282 +0,2,1,0,1,1,0,1,2,0,1,0,0,1,0,0,1,1,0,1,-0.0934763585 +1,2,1,0,1,1,1,1,0,0,0,0,1,0,0,0,0,0,0,1,-0.6730114524 +0,1,1,0,0,2,0,1,1,1,0,0,1,2,1,0,1,0,1,0,-0.2045437326 +1,2,0,1,2,1,0,0,0,0,1,0,2,1,0,1,1,0,0,0,0.5829371689 +0,1,0,0,0,1,0,0,0,1,1,0,1,1,0,0,1,0,1,0,-0.1807393152 +2,2,0,1,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0,0,-0.2559375034 +0,2,0,0,1,0,0,0,1,0,1,0,1,1,0,1,0,0,2,0,0.2630020074 +0,0,0,0,0,2,0,1,0,0,1,0,0,0,0,1,2,0,0,0,1.4892057269 +1,1,2,0,0,2,0,1,0,2,0,0,2,0,0,0,1,1,0,0,0.3008015223 +1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,0,0,1,-0.5533763833 +1,0,1,0,0,2,0,1,0,0,1,0,1,1,0,1,1,0,0,0,0.2995500107 +0,0,1,0,0,2,0,1,0,1,1,0,2,1,0,0,0,0,0,1,0.5270306356 +0,1,0,1,1,1,0,2,0,0,1,1,0,0,0,1,1,1,2,1,0.9212905226 +0,1,1,0,0,2,0,0,0,0,0,2,0,2,1,0,0,1,0,0,0.8470651064 +0,1,1,0,1,1,0,2,0,1,1,0,1,0,0,0,0,1,0,0,0.8441825014 +1,1,0,0,1,0,0,0,0,0,1,1,0,0,0,0,1,1,1,0,-0.369373192 +2,0,0,0,0,2,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0.2506166081 +1,1,2,0,2,2,0,1,1,1,1,0,0,1,0,1,1,0,0,0,0.5558237028 +0,1,2,0,1,0,0,1,0,0,0,1,1,0,0,1,0,1,0,0,0.4123656806 +1,1,2,1,0,1,0,2,0,0,1,0,0,0,0,0,1,0,0,2,-0.2707367545 +1,2,2,1,0,0,1,1,0,2,1,0,1,1,0,0,0,0,1,0,-0.2810738167 +1,1,1,0,0,2,0,1,0,1,1,0,2,0,1,0,0,0,1,0,-0.4157746991 +0,1,2,1,0,2,0,1,0,1,0,0,1,0,0,2,1,0,0,0,-0.4763110147 +0,0,0,1,0,0,0,0,1,0,1,1,1,1,0,1,1,0,0,1,0.5929941561 +0,1,0,1,1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1.0635995913 +1,2,2,1,2,2,0,0,0,0,0,1,0,1,0,0,0,0,0,0,1.4931036721 +2,1,2,1,1,2,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0.6176103553 +1,1,1,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1.1359798676 +0,1,0,0,1,1,0,0,1,1,1,1,0,0,0,0,1,0,0,2,0.476285241 +1,1,0,1,1,2,0,2,0,1,0,0,0,1,0,0,0,0,1,0,0.6071263205 +0,1,2,0,1,0,0,0,1,1,1,1,0,0,0,2,1,0,0,1,0.3232113799 +1,1,2,2,1,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,-0.1021576625 +0,1,0,0,1,1,0,0,0,1,1,1,2,1,0,1,0,0,0,0,-0.0564359456 +0,2,0,1,1,1,0,1,0,1,0,1,0,0,1,0,1,2,0,1,-0.5392470847 +0,2,1,0,0,1,0,2,1,0,1,0,1,1,0,1,1,1,0,1,-0.7748477671 +0,1,0,0,1,0,0,1,2,0,1,0,1,1,0,1,0,0,0,1,0.1293176004 +0,1,2,0,1,1,0,0,0,0,0,0,1,2,0,0,1,1,0,0,0.9034873705 +0,1,1,0,0,0,0,0,0,1,1,0,1,1,1,1,0,0,0,1,0.0754801259 +0,0,1,0,0,1,0,1,0,1,1,2,0,0,0,1,0,0,1,1,0.4477696217 +0,0,1,2,0,1,0,2,1,1,1,0,2,0,0,0,0,0,1,2,0.5913175577 +0,0,2,1,1,1,0,0,0,0,1,0,2,1,1,0,0,0,0,1,0.3548621412 +0,1,0,1,2,2,0,1,0,1,1,0,1,1,0,1,1,0,0,1,0.318092096 +0,1,2,0,0,1,0,1,0,1,1,0,1,0,1,1,1,1,1,0,0.1348197357 +0,0,1,0,2,1,1,1,0,2,0,0,1,1,1,0,2,0,0,0,0.5065033486 +0,2,2,0,0,1,0,1,1,0,0,2,1,0,0,0,2,0,1,1,1.6019828399 +0,0,0,1,0,2,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0.8713417619 +1,0,0,1,0,1,0,1,0,0,0,0,0,2,1,1,1,0,0,0,0.076491503 +1,1,1,0,2,1,0,0,1,1,1,0,1,1,2,0,0,0,1,1,1.387446057 +1,1,0,1,1,2,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1.021879974 +0,0,1,0,1,1,0,0,1,0,2,1,0,2,0,0,0,0,0,0,0.2850273827 +0,1,1,0,1,1,0,2,0,0,1,0,0,2,1,0,0,0,0,0,0.8605494178 +0,2,2,1,0,1,0,0,0,1,1,1,2,1,0,1,1,0,0,1,-0.4542182384 +1,1,0,0,1,0,0,2,0,0,0,0,2,0,1,1,0,0,1,0,0.7904623691 +1,1,1,0,0,2,0,0,0,0,1,1,1,0,1,2,2,0,0,0,0.0929465461 +0,1,2,1,1,1,0,0,0,0,1,0,0,0,1,0,1,1,0,1,-0.5660713917 +1,1,0,2,1,0,0,2,0,0,0,0,2,0,1,1,0,1,1,0,-0.4582315541 +0,1,0,0,1,1,0,1,2,0,1,0,0,0,0,0,0,0,0,0,1.1357714983 +0,1,1,0,1,1,0,1,0,0,1,0,1,0,0,0,2,0,0,0,0.6484179863 +1,1,1,1,0,0,0,1,0,0,0,1,1,1,1,0,1,0,1,1,0.3543393397 +0,1,1,1,1,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0.8899593649 +0,0,2,0,1,0,0,0,0,1,1,0,0,1,0,1,2,1,1,1,1.102412979 +0,1,0,1,1,2,0,1,0,1,1,1,0,1,0,0,1,2,0,0,1.2452971315 +0,1,1,0,1,0,0,1,0,0,1,0,0,1,0,2,1,1,1,0,-0.2843006474 +0,1,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1,-0.4159441628 +1,1,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,1,1,1,1.5224809027 +0,1,0,0,1,1,0,2,0,0,0,0,1,1,0,1,1,0,1,0,0.768546079 +0,1,0,1,0,1,0,2,0,0,0,0,0,0,0,0,1,1,0,0,0.3331045863 +0,0,1,0,0,1,0,2,0,1,2,1,1,0,1,0,1,1,0,0,0.1181935318 +1,1,1,1,0,1,0,1,0,1,1,0,1,2,0,0,0,0,0,0,0.8716018401 +0,1,2,0,1,2,0,1,0,0,1,0,2,0,0,1,2,0,0,1,0.4819699615 +0,1,1,0,1,1,0,1,0,0,1,0,2,1,0,0,1,0,1,0,-0.1774202599 +0,2,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,-0.9781783165 +0,1,0,1,0,1,0,0,0,1,0,0,2,1,0,1,1,0,0,0,0.2828358242 +0,0,0,0,1,2,0,1,0,0,1,0,0,0,0,0,1,1,1,0,-0.476283516 +1,1,0,1,1,2,0,1,0,1,1,0,1,0,1,0,0,1,0,0,0.039160182 +0,2,1,1,1,1,0,1,0,1,1,0,0,2,0,0,1,0,1,1,0.548512816 +1,2,1,0,1,2,0,1,0,0,1,1,1,0,0,0,2,0,0,0,0.741206163 +0,2,1,0,1,1,0,0,0,1,1,0,0,0,0,0,1,0,1,1,1.0851267532 +0,1,0,1,0,0,0,2,1,0,0,1,1,0,0,1,1,1,0,1,0.3391793248 +1,0,0,0,1,1,0,2,0,0,0,0,1,1,0,0,0,0,0,0,0.3608218012 +1,1,1,0,0,1,0,1,0,0,0,0,1,0,1,1,1,0,0,0,1.1964074211 +1,1,2,0,0,1,0,0,0,1,0,1,1,0,0,0,1,0,1,0,0.1742283997 +0,1,0,1,1,1,0,1,0,1,1,1,1,1,0,0,0,0,0,0,1.3190297856 +0,1,0,0,2,1,0,1,0,2,0,0,1,1,0,1,1,0,1,1,1.5280250348 +0,0,0,1,0,1,0,0,0,0,1,0,2,1,0,0,1,0,0,2,-0.7169507736 +2,0,0,2,2,0,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0.6929286292 +2,1,0,0,1,1,0,0,1,0,1,0,1,0,1,0,2,0,1,0,0.4598989758 +0,0,0,0,0,2,0,2,0,0,1,0,1,0,0,1,2,0,0,1,-0.1024348432 +1,1,1,0,1,1,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0.1263688478 +1,1,1,1,1,2,0,2,0,0,1,0,1,0,1,0,0,0,0,1,0.7318290402 +1,1,2,1,0,1,0,1,1,1,0,0,0,1,0,0,0,0,0,2,0.608573293 +1,1,2,0,1,1,1,1,0,0,0,0,1,1,1,0,1,0,0,0,-0.0524807625 +0,0,0,2,0,1,0,0,0,1,2,0,2,0,0,1,2,0,0,0,0.8034012826 +0,1,2,1,0,2,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0.1961004984 +1,1,1,0,1,2,0,1,0,1,0,1,2,1,0,1,0,0,0,1,0.6799527611 +0,1,1,0,2,1,0,1,1,1,1,1,2,0,1,0,1,1,1,1,0.7466211265 +0,0,1,1,1,1,0,1,1,1,1,0,1,2,1,0,1,0,0,0,-0.8031765887 +0,1,0,1,0,2,0,0,1,1,2,1,1,1,0,0,1,0,0,0,-0.0186110161 +1,2,1,1,1,2,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0.1047765784 +0,1,0,0,0,1,0,2,0,1,1,1,1,1,1,0,1,0,0,0,-0.344568863 +0,0,1,0,0,2,0,1,1,0,0,1,0,1,1,2,1,0,0,1,-0.1025263204 +0,0,0,1,0,1,0,1,0,0,1,1,1,2,0,0,0,0,0,0,0.3910159882 +1,0,1,0,1,0,0,1,0,0,0,1,1,0,0,0,1,1,0,1,0.6287552094 +1,1,1,0,0,1,0,1,1,2,2,0,1,0,0,1,1,1,0,1,0.05203749 +1,1,0,0,2,0,0,0,0,1,1,0,1,1,0,0,1,0,0,1,-0.0390674055 +0,2,1,1,0,0,0,1,1,1,0,0,1,0,1,0,1,1,1,0,0.3772416206 +1,0,1,1,0,2,0,1,0,0,2,0,0,0,0,1,1,1,1,0,0.3495625775 +1,1,1,1,0,1,0,1,0,1,0,1,0,0,0,0,1,0,1,0,0.3987572478 +0,1,1,1,0,0,0,1,0,1,0,0,1,0,0,0,2,1,0,0,0.6478106539 +0,1,1,2,1,2,0,0,2,0,0,2,1,2,0,0,1,0,0,0,1.3171247071 +1,1,0,1,1,1,0,1,1,1,0,1,0,0,1,2,1,1,0,0,-0.0899462859 +1,1,0,0,1,1,0,0,0,0,0,0,1,0,1,0,0,0,1,1,0.4909460172 +1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0.2190216945 +1,0,1,0,0,1,0,2,0,1,1,0,2,0,1,0,1,0,0,0,0.0906397326 +1,0,1,0,0,0,0,1,0,0,1,2,1,1,0,0,0,0,0,1,0.5101768809 +1,1,1,1,0,2,0,1,0,0,1,1,1,1,0,1,0,0,0,1,0.6326502634 +1,2,0,1,0,1,0,0,0,1,1,0,2,2,0,1,0,0,1,1,0.7546261551 +1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0.5711769924 +1,1,2,1,0,2,0,0,1,1,0,1,1,0,0,2,1,1,0,0,0.620795663 +0,0,0,0,1,2,0,1,0,1,0,0,0,1,0,1,1,0,1,0,-0.5744239806 +1,0,1,0,1,2,0,1,1,1,0,0,1,0,0,0,1,0,0,0,0.4364332982 +0,1,1,0,1,1,0,0,1,0,1,0,1,0,0,1,2,0,0,1,-0.1883797486 +0,1,1,1,0,0,0,2,1,0,1,1,0,2,0,0,0,0,1,0,-0.3584387156 +0,2,0,1,0,1,0,2,1,1,0,0,1,0,0,1,0,0,1,0,-0.2071894803 +1,1,2,1,0,1,0,1,1,1,0,0,1,0,0,1,2,0,0,0,0.7445313226 +1,1,0,0,0,1,0,2,0,0,1,0,1,0,0,0,1,0,1,0,-0.25566954 +0,1,1,0,0,2,0,1,0,1,1,1,0,2,0,0,0,0,0,0,1.0188638627 +0,2,0,1,2,2,0,1,0,1,0,0,1,0,0,1,0,1,0,1,-0.4942727138 +1,0,1,1,0,1,0,1,1,2,0,1,0,1,0,1,1,1,0,1,0.0336891329 +1,1,0,0,0,1,0,2,0,1,0,0,1,0,0,1,0,0,0,1,0.0242742607 +1,1,0,1,0,1,0,2,0,0,2,0,0,1,0,0,2,0,0,1,0.0112568713 +0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,2,0,1,1,1,0.9245822265 +0,2,1,1,0,0,0,0,1,0,1,1,0,1,0,1,1,0,0,1,-0.545430601 +1,2,1,1,0,0,0,1,1,0,2,0,0,0,0,0,2,0,0,1,0.3453266935 +0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,1,0,0.386327605 +1,1,0,0,2,2,0,1,0,0,0,1,1,1,1,0,2,0,0,1,0.0317388768 +0,2,1,0,0,0,0,1,1,0,0,1,0,1,1,1,0,1,0,0,-0.360937209 +1,2,2,0,1,0,0,2,0,0,0,1,1,0,1,0,2,0,0,0,-0.2125086854 +1,1,0,0,1,1,0,0,0,2,2,0,1,0,1,0,1,1,0,0,-0.1061376643 +1,1,1,1,1,2,0,1,0,1,0,1,0,1,0,1,2,1,1,1,0.4281668676 +1,1,1,1,0,1,0,1,0,1,0,1,1,1,0,0,1,1,0,0,0.78902712 +0,2,0,0,0,2,0,1,1,0,0,0,1,0,0,1,0,0,2,1,0.6472211105 +0,2,2,0,0,2,0,1,0,1,0,2,1,1,0,0,0,0,0,1,0.2972313346 +0,1,0,1,2,2,1,1,1,1,0,0,2,0,0,1,2,0,0,1,-0.8005897409 +0,0,0,0,1,1,0,1,1,1,0,2,0,1,0,0,1,0,0,1,-1.1947806311 +1,0,1,0,2,2,0,2,0,0,0,1,2,0,2,0,0,0,0,1,0.8538645488 +0,1,0,1,0,2,0,0,0,2,1,0,0,1,0,0,2,1,0,1,-0.5551601249 +0,0,0,1,2,1,0,0,1,1,0,0,2,0,0,0,0,0,0,1,-0.2334052877 +0,1,0,2,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,1,-0.2678726613 +0,1,1,0,0,0,0,1,1,0,1,1,0,1,1,0,0,0,1,2,0.4602426207 +1,1,0,1,0,0,0,1,0,0,1,1,1,1,1,0,0,1,0,0,0.1129297702 +1,1,1,1,1,1,0,0,0,0,0,0,2,0,0,0,1,0,0,1,-0.1815769633 +2,1,0,1,0,1,0,2,1,0,0,0,1,1,0,1,0,0,1,1,0.9530997527 +1,1,0,2,0,1,0,1,0,1,1,0,1,2,1,0,1,0,0,1,0.4632925129 +1,0,0,1,1,1,0,2,0,0,0,1,1,0,0,1,0,1,0,0,1.1385458281 +1,1,1,2,1,1,0,0,0,0,0,1,0,0,1,1,1,1,1,0,0.0654394967 +1,2,1,0,1,1,0,0,0,0,1,0,1,1,0,1,0,0,0,1,-0.1186876454 +0,2,1,1,0,2,0,0,0,0,1,0,0,1,1,0,2,1,0,1,0.4409483912 +1,1,0,2,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,-0.3724293284 +1,2,0,0,1,2,0,0,0,1,1,0,1,2,0,0,1,1,0,1,0.0853194364 +0,2,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.9407218671 +0,1,0,0,2,1,0,0,0,0,0,1,2,1,1,1,2,0,0,0,0.044809791 +1,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,1,0,1,0,0.5756317861 +1,0,0,1,2,2,0,0,1,2,0,0,0,0,0,1,2,0,0,0,0.3727530216 +1,0,0,1,0,0,0,0,0,1,2,0,1,0,1,0,1,1,0,2,0.247327061 +1,2,0,1,1,0,0,0,1,0,2,0,1,1,0,0,0,0,0,0,0.4881658238 +0,1,0,1,1,2,0,0,1,1,0,0,1,1,1,1,1,0,0,0,0.3608996008 +0,1,0,1,1,2,0,2,0,0,1,1,1,0,0,0,0,2,0,0,0.511159109 +1,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,-0.0796537989 +0,1,2,0,0,1,0,0,0,1,1,1,2,1,0,0,1,1,0,0,1.1866627475 +0,1,1,0,0,1,0,0,1,1,0,1,1,1,0,1,1,0,1,1,1.3308361146 +2,1,0,0,2,0,0,0,1,1,1,1,2,1,0,1,1,0,0,1,-0.7111511335 +0,2,0,0,1,1,0,2,1,1,2,1,0,1,0,0,1,1,0,0,-0.3466352143 +0,1,1,0,0,0,0,1,0,2,0,0,1,2,0,1,0,0,0,1,-0.1272694676 +1,1,1,0,1,1,0,1,0,1,1,1,2,0,1,0,1,0,1,0,-0.4305884096 +0,1,0,0,1,1,0,1,1,1,0,0,1,1,0,1,0,0,0,1,-0.2381679415 +0,1,0,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1.1266557983 +1,0,0,0,0,1,0,1,2,1,0,0,2,0,0,1,1,0,0,0,0.5276838473 +1,1,1,1,0,0,0,0,0,1,0,2,1,1,0,1,0,1,0,0,-0.1642126469 +0,1,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,0,0,0,-0.3535663743 +0,0,0,1,1,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.9656345533 +0,2,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0.5253676217 +1,2,0,0,1,1,0,1,0,1,1,0,2,0,1,2,1,0,1,0,-0.2971127583 +1,1,0,1,0,0,0,1,0,2,0,0,1,0,0,1,1,0,1,1,0.828013985 +0,1,2,1,0,1,0,1,0,0,1,0,2,1,1,1,1,1,0,0,0.1408399216 +0,1,1,1,0,1,0,1,0,0,2,0,2,0,0,0,0,0,0,1,-0.288784291 +0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,1,1,1,0,2,-0.159750335 +0,0,0,0,0,1,0,1,1,0,0,1,1,1,0,0,2,1,0,0,0.7903539746 +0,2,1,2,2,2,0,0,0,1,1,0,0,0,0,1,1,0,0,0,-0.4397032187 +2,0,1,0,1,0,0,0,0,0,0,1,0,0,0,1,2,0,1,0,-0.0880515304 +0,1,0,0,0,1,0,2,0,1,1,1,0,1,0,0,1,0,1,1,0.9682780152 +1,1,1,0,1,1,0,0,0,2,1,0,0,1,0,0,1,0,0,0,0.6312381463 +1,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,1,0,0,1,0.5351798071 +0,1,0,1,0,2,0,1,0,0,1,0,1,0,2,0,0,1,0,0,0.7068466413 +0,0,1,1,1,1,0,0,0,0,1,1,1,0,0,0,1,0,0,1,-0.0009890567 +0,1,0,0,1,2,0,1,0,1,1,1,1,1,0,0,1,0,0,0,-0.9534128988 +0,2,1,0,0,1,1,1,0,0,1,1,1,0,0,0,1,0,0,1,-0.6714298795 +1,2,0,0,1,2,0,1,0,1,1,0,0,2,1,1,2,0,0,1,0.3255227905 +1,1,2,1,0,1,1,1,0,0,2,1,0,2,0,0,1,1,1,1,1.4147186186 +0,1,1,1,0,1,0,2,0,2,2,0,1,2,0,1,2,0,0,0,0.5634439413 +0,0,1,0,1,1,0,0,0,0,1,0,0,2,1,0,2,0,0,1,0.2935054542 +0,1,1,1,1,0,0,1,0,0,1,0,2,1,0,0,1,0,0,1,-0.2364982083 +0,2,0,0,0,1,0,2,0,1,1,0,0,0,1,0,1,0,1,0,-0.7624242486 +0,1,1,1,1,1,0,1,0,1,0,0,1,0,0,2,1,1,1,0,-0.0549038525 +0,0,0,1,1,2,0,1,1,0,0,1,1,0,0,0,1,0,1,0,0.5604235727 +0,0,1,0,1,1,0,0,0,0,0,1,1,1,0,0,2,1,0,0,0.8779293393 +2,2,1,2,1,1,0,1,1,0,1,0,0,0,0,0,1,0,0,0,0.4594043494 +1,2,0,1,0,1,0,1,0,1,0,0,0,0,0,0,1,0,1,0,-0.0787725144 +0,0,0,0,0,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0,1.0790061291 +1,0,1,1,1,0,0,1,0,1,1,0,1,0,1,0,0,1,0,0,0.7991844633 +0,0,1,0,0,1,0,0,0,0,0,1,0,1,0,0,0,1,0,1,0.062176507 +0,2,2,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,-0.0098861973 +0,0,1,0,1,2,0,0,0,1,1,1,0,0,1,0,0,0,0,0,-0.441121312 +0,0,1,0,1,1,0,1,0,1,2,1,2,1,0,0,1,0,0,0,0.560343549 +0,1,0,1,0,0,0,2,0,0,1,0,0,0,0,0,1,0,1,0,0.7097897121 +1,2,1,1,0,1,0,0,1,1,1,0,0,1,0,0,1,0,0,0,0.1618823054 +1,1,0,1,0,0,0,1,1,2,0,0,0,0,0,1,1,0,0,0,1.0112960377 +0,0,1,1,0,1,0,1,0,1,0,1,1,0,1,0,0,0,0,1,-0.3972020836 +1,2,0,1,0,2,0,1,0,1,0,1,1,0,0,0,2,1,2,0,0.1628995878 +0,0,1,1,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,1,-0.0611085943 +0,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,0,0,0,-0.1089676619 +0,0,1,1,1,2,0,1,0,1,1,0,0,0,0,1,1,0,0,0,0.9393658133 +0,0,0,1,1,2,0,2,0,0,1,0,0,1,0,0,1,1,0,0,0.6483424627 +0,2,1,0,0,1,0,0,0,1,0,0,0,1,1,1,1,0,1,0,0.1211557849 +0,2,0,0,1,1,0,1,0,0,2,0,1,2,0,0,1,0,0,0,0.000354697 +1,0,0,0,0,1,0,2,0,1,1,0,1,1,0,0,2,1,0,2,-0.0407052919 +0,1,0,0,0,1,0,1,0,0,1,1,1,0,0,0,2,0,0,1,0.2585943918 +0,2,0,0,0,0,0,1,0,2,0,0,0,0,0,0,1,0,0,0,0.0580405272 +1,2,2,1,0,0,0,2,0,0,0,1,1,0,0,0,0,0,1,0,-0.2166595136 +0,0,0,0,2,1,0,0,1,0,0,1,1,2,0,0,1,1,1,0,-0.4032057773 +1,2,1,0,1,1,0,1,0,0,1,2,0,0,0,0,1,0,2,0,-0.0480583907 +0,1,0,1,1,2,0,1,1,1,1,1,0,1,1,1,1,0,0,0,0.7476591942 +0,0,1,0,1,1,1,0,1,1,2,0,1,0,1,0,2,0,0,0,-0.0925788919 +0,1,1,1,0,1,0,2,0,0,0,2,1,1,0,1,2,0,1,0,0.1243595485 +1,1,0,1,1,2,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0.4608191646 +1,1,0,0,0,2,0,0,0,0,1,0,1,0,0,0,1,1,1,2,0.3496127816 +0,2,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1.0179415117 +0,1,0,0,0,1,0,0,0,0,0,1,2,1,0,0,1,1,1,0,-0.2252143383 +0,0,1,0,1,2,0,2,0,0,1,0,0,0,0,0,1,1,0,0,1.1295738989 +0,1,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,1,1,1,0.7729955176 +0,1,1,0,0,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,-0.0680552767 +0,2,1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,1,0,-0.3602048912 +1,1,1,1,1,1,0,1,1,0,1,1,1,0,1,1,1,1,0,0,-0.3802689837 +2,1,1,0,1,1,0,1,0,1,1,1,0,1,0,1,0,0,1,0,0.7070598158 +0,1,0,0,1,0,0,2,0,0,0,0,0,2,0,1,2,0,0,0,0.0834749534 +1,1,2,0,0,1,0,1,0,1,1,2,0,1,0,0,2,1,1,0,-0.3926763469 +0,2,1,0,1,2,0,1,0,0,0,0,2,1,0,0,0,0,0,1,0.3222374579 +0,1,0,1,0,2,0,1,0,1,1,0,1,0,1,1,2,0,0,0,0.7310747263 +1,1,2,0,1,1,0,1,0,0,1,1,2,1,0,1,1,0,2,0,-0.1864613575 +0,1,2,0,0,1,0,0,1,2,1,0,0,1,0,1,1,0,0,1,-0.4558998867 +1,2,0,1,0,1,0,1,1,0,0,1,2,1,0,0,0,0,0,0,-0.755208274 +2,2,1,1,1,2,0,1,0,1,2,0,0,1,1,0,0,0,1,0,-0.3385656997 +0,1,1,0,2,2,0,1,0,0,0,1,2,1,0,0,1,0,1,0,0.2241351185 +1,0,0,0,2,1,0,1,1,2,0,1,0,1,0,0,1,0,0,1,-0.0143562477 +1,0,1,0,0,1,0,1,1,0,0,1,0,1,2,0,2,1,1,0,0.9010925049 +1,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,1,0.0624037377 +0,1,1,0,1,2,0,1,0,1,1,1,1,2,0,0,2,2,0,0,0.7636791432 +0,1,0,1,1,1,0,0,0,1,0,0,1,1,1,0,2,0,2,1,0.1487814689 +1,0,1,0,0,1,0,0,0,0,1,0,2,1,0,0,1,0,1,0,0.186976275 +0,1,0,1,0,0,0,0,0,0,0,1,1,2,0,0,2,1,1,1,0.6166552004 +0,1,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,1,0.8410638836 +0,0,1,0,0,2,0,2,0,1,0,0,0,0,0,1,1,1,0,1,0.4217262586 +0,1,1,1,0,1,0,1,1,0,0,1,0,2,0,1,2,0,0,0,-0.0862918414 +0,2,1,1,1,2,0,2,1,1,1,1,2,0,0,0,0,0,1,0,0.7491663324 +0,1,2,2,0,2,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0.3185339364 +0,0,1,2,1,1,0,2,0,0,1,2,0,2,0,0,1,0,2,0,0.3940718368 +1,2,0,1,0,0,0,2,0,1,0,0,1,1,0,0,1,0,0,0,0.3855560104 +0,1,1,2,0,0,0,0,1,0,1,0,0,0,0,0,2,0,1,0,0.6609496756 +2,1,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,1,0,0.3242273555 +0,2,1,1,1,1,0,2,0,1,2,0,1,1,0,1,2,0,0,2,-0.3830027769 +1,2,1,0,1,1,0,2,0,0,0,0,1,0,0,1,0,0,2,1,1.1799601095 +1,0,1,0,1,1,0,1,0,0,1,1,0,0,0,1,1,0,1,1,0.9338088909 +0,0,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0.4923332704 +0,2,2,0,1,2,0,1,0,0,1,1,1,0,1,1,0,0,1,1,0.9041566946 +1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0.7581998179 +2,1,1,1,0,1,0,1,0,1,1,1,0,0,1,1,1,0,1,0,0.3142285027 +0,0,1,1,0,1,0,1,0,0,1,0,0,1,0,2,0,1,0,1,-0.0130855955 +0,2,1,0,0,2,0,2,0,0,0,0,0,0,1,1,1,0,0,0,0.7047308243 +0,0,0,2,0,1,0,2,0,0,1,0,2,2,0,1,1,2,0,1,0.4829111088 +1,0,0,1,0,1,0,1,0,2,2,0,1,1,0,1,1,0,2,2,0.6785553316 +0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,2,1,0,1,0.0959932124 +1,0,0,1,1,1,0,0,1,2,0,0,0,0,0,0,1,0,0,0,-0.1008944228 +1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0,-0.0402182074 +1,1,1,0,0,0,1,1,0,1,0,0,1,1,0,0,2,2,0,0,1.4911816702 +0,2,1,0,0,2,0,1,0,2,1,0,1,2,0,0,0,0,0,0,0.067828059 +0,1,0,2,0,1,0,1,0,0,1,0,0,2,1,0,0,1,0,1,-0.3096193039 +0,1,1,1,1,1,0,1,0,0,1,1,0,1,0,0,0,0,0,0,-0.1582284891 +0,2,2,0,0,0,0,2,0,1,1,0,0,2,0,0,1,2,0,0,1.6055238992 +1,1,0,0,0,0,0,0,0,1,1,0,0,2,0,1,1,0,1,1,0.172535827 +0,1,0,2,1,1,0,1,0,0,2,0,1,0,0,1,1,0,1,0,0.2669848412 +1,1,0,1,1,0,0,1,2,0,2,0,1,1,0,0,1,0,0,0,0.1229982757 +1,0,1,1,1,1,0,2,0,1,0,0,1,1,0,0,2,0,1,0,0.5874358873 +0,2,0,0,1,2,0,2,0,1,0,0,1,0,0,0,1,1,1,1,0.8909009484 +0,2,0,1,1,0,0,1,0,0,1,1,1,1,1,0,1,0,0,0,0.3096834865 +0,0,1,0,1,0,0,0,0,1,0,0,2,1,0,0,1,0,0,0,0.5117179817 +0,0,1,0,0,1,0,0,0,1,1,0,1,0,2,0,0,0,0,1,-0.5016155917 +0,2,0,1,0,0,0,2,0,0,1,0,1,0,0,1,0,0,1,0,-0.2313466719 +0,1,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0.1325507495 +0,0,0,0,1,0,0,1,0,0,1,0,2,0,0,0,0,1,1,1,0.5258367828 +0,1,2,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,-0.3785402857 +0,2,0,0,1,1,0,2,1,1,0,0,2,0,0,0,1,0,0,0,-0.0505791512 +1,1,1,0,0,2,0,1,0,1,1,1,0,0,0,0,1,0,1,0,0.072791228 +0,2,1,1,1,1,0,0,0,0,0,1,2,1,0,0,1,0,0,0,-0.0629283203 +0,1,1,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.8892157793 +0,2,0,1,0,0,0,1,0,1,1,0,0,0,0,0,2,0,0,0,-0.5849021684 +0,0,0,1,1,2,0,0,0,0,0,0,1,2,0,0,1,1,1,0,0.041511989 +0,1,2,0,1,0,0,0,0,0,1,2,1,0,0,0,1,0,0,0,0.4751983392 +0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,1,0,1,-0.4395229506 +0,1,1,0,0,1,0,2,0,1,2,2,2,0,1,0,1,0,1,2,0.0771463905 +1,1,1,1,0,1,0,2,0,1,1,0,0,1,0,1,1,0,1,1,0.7425242868 +1,0,2,0,1,1,0,1,1,0,0,1,0,1,0,0,1,1,0,0,0.825747136 +1,2,0,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,1,0,-0.3409999727 +0,0,1,1,1,2,0,0,1,0,1,0,1,1,0,1,2,0,1,0,-0.5818501012 +1,2,2,0,0,2,0,1,0,1,0,0,1,0,0,1,0,1,1,0,-0.7148487909 +0,1,1,1,1,0,0,0,1,1,0,1,1,0,0,0,2,0,0,0,-0.0983111166 +2,2,1,2,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,2,-0.0635724438 +1,2,1,0,0,1,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0.1522138711 +2,2,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0.9430217705 +0,0,1,0,1,2,0,0,0,0,1,1,1,2,0,1,1,0,0,0,0.7853231046 +0,2,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0.4752535966 +0,1,2,1,0,1,0,2,0,1,0,1,2,1,0,0,2,1,1,1,1.0961236847 +1,0,2,1,1,1,0,0,0,0,2,0,2,0,0,0,1,0,2,0,0.2013929193 +0,2,0,1,1,1,0,1,0,1,2,1,0,0,0,1,1,0,1,1,1.7228302666 +2,0,2,1,0,1,0,1,0,0,1,0,2,2,0,0,0,1,0,0,0.7232919339 +0,0,1,0,1,1,0,2,0,1,1,0,0,1,1,0,2,0,0,1,-0.282276656 +1,1,0,2,0,1,0,1,1,1,1,1,0,2,0,0,1,1,0,0,-0.2832761525 +0,1,1,0,1,2,0,1,0,1,1,0,0,0,1,0,1,0,1,0,-0.0155404204 +0,1,1,0,1,1,0,0,0,0,0,0,1,1,0,1,1,0,0,2,-0.3470817402 +1,0,1,1,0,1,0,1,0,2,0,1,0,0,0,1,1,1,1,0,-0.0277730858 +1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,2,-0.9628028995 +0,0,0,1,0,0,0,1,0,1,1,0,0,1,0,0,1,0,0,0,0.5757405975 +1,0,2,2,2,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0.1263987818 +0,0,0,0,1,0,0,0,0,0,0,1,2,0,0,1,0,0,1,0,-0.0586269665 +1,1,2,0,1,1,0,0,0,0,0,0,2,1,0,0,2,0,0,0,0.2799575204 +0,2,1,1,0,0,0,1,1,1,0,0,1,1,0,0,2,1,0,1,0.4030078233 +0,0,2,0,2,1,1,0,0,0,1,1,1,0,0,0,0,1,0,0,1.1347982674 +1,0,2,1,0,2,0,0,0,0,1,0,1,0,0,0,1,1,1,0,0.1935517723 +1,1,1,1,0,0,0,2,0,2,1,1,2,0,0,1,1,0,1,0,-0.0425393685 +0,0,1,0,0,2,0,2,1,0,0,0,0,2,1,2,0,0,1,0,0.1036908872 +0,1,1,0,1,1,0,1,1,0,1,0,1,1,0,0,0,0,1,0,-0.483227584 +0,1,1,0,0,0,0,1,0,1,1,1,1,1,0,0,2,0,0,2,0.6844788433 +0,1,2,1,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,1,-0.2827388744 +1,1,2,0,2,1,0,2,1,0,1,1,0,0,0,0,1,0,1,1,0.9628059313 +0,0,0,0,0,2,0,0,0,1,0,0,0,1,0,1,2,0,0,0,0.5898288202 +2,2,1,2,1,2,0,0,0,0,1,0,0,0,0,1,1,1,0,0,0.3331486083 +0,2,1,1,2,1,0,1,1,0,0,1,1,1,0,1,1,0,0,1,-0.3610765881 +1,1,0,0,0,2,0,1,1,2,0,0,1,1,0,0,1,1,0,1,0.0766686891 +0,0,1,1,1,0,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0.3645833631 +1,1,0,1,1,0,0,2,0,0,0,0,1,0,2,1,1,0,0,1,0.0028172681 +0,1,1,0,0,1,0,2,0,0,0,0,1,1,0,0,0,1,1,1,1.5219753718 +0,0,0,0,0,1,0,2,1,1,0,0,0,1,1,1,1,1,0,1,0.0773484928 +1,0,1,0,0,0,0,0,0,2,1,0,2,1,0,0,1,0,0,0,-0.206675347 +1,2,2,0,1,1,0,0,1,1,0,0,1,1,0,1,2,0,0,1,0.8621359089 +1,1,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0.3036580045 +0,0,0,1,2,0,0,1,0,2,1,0,2,0,0,0,1,0,0,0,1.6236749749 +1,0,1,1,1,1,0,1,0,0,1,1,1,2,0,0,0,1,1,0,1.6479939354 +2,0,0,1,0,1,0,1,0,2,0,1,1,0,0,1,1,0,0,0,0.4314220537 +0,0,1,0,1,1,0,0,0,0,1,1,1,1,0,0,2,0,0,0,0.1294990713 +1,2,2,0,0,2,0,0,0,1,0,0,0,1,1,0,0,0,1,1,0.6302952276 +1,0,0,0,0,2,0,1,0,1,0,2,2,0,0,0,0,1,1,1,0.5336422079 +0,1,1,0,0,0,0,2,0,1,1,1,0,1,1,1,2,0,0,0,0.1191450484 +0,0,2,1,1,1,0,1,0,1,0,1,2,1,1,0,2,0,0,0,0.2938606084 +0,0,0,0,1,1,0,2,0,1,2,0,1,0,0,1,1,1,1,0,0.1366179756 +1,0,0,1,0,1,0,0,0,1,0,2,1,1,2,0,0,0,1,0,-0.3591102506 +1,1,0,1,0,1,0,1,0,0,1,2,1,0,1,0,2,0,0,0,0.5379404541 +2,0,0,1,1,2,0,1,1,1,1,1,0,1,0,1,2,1,1,0,-0.5828722169 +0,2,1,1,0,1,0,0,0,0,1,0,0,0,1,2,1,1,0,0,0.0345838735 +0,1,2,0,0,0,0,1,0,0,1,1,1,0,0,1,1,0,0,2,0.0423443308 +1,2,2,0,0,1,0,0,0,0,0,0,0,0,0,1,2,2,2,1,0.5032718309 +0,2,0,0,1,0,0,1,0,0,1,0,0,0,0,1,2,0,1,0,-0.1191482921 +0,2,0,0,1,0,0,0,1,1,0,1,1,1,0,0,0,0,1,0,0.8012379575 +0,0,1,1,0,1,0,0,0,0,1,1,0,1,0,0,1,0,0,1,-1.0402641329 +1,1,1,1,0,1,0,0,0,0,0,0,2,0,0,0,1,0,0,1,-0.2780300133 +1,1,2,1,2,0,0,0,0,1,2,0,1,0,0,0,1,0,0,0,0.5176184264 +0,0,1,1,0,2,0,0,0,0,0,1,1,1,0,0,0,0,1,0,-0.6232214827 +0,2,0,1,1,1,0,0,0,1,1,0,0,0,0,0,1,1,0,0,1.0661136377 +1,2,1,0,0,1,0,2,0,0,1,0,0,1,0,0,1,1,0,1,-0.7351099878 +0,2,0,0,0,1,0,2,0,1,1,0,1,0,0,0,1,0,0,0,0.5091284588 +0,0,0,0,0,1,0,1,0,1,2,1,0,0,0,2,2,0,0,0,1.0502560136 +1,0,1,0,0,1,0,1,0,2,1,1,0,0,1,1,1,1,0,1,-0.0444827102 +0,2,0,1,1,0,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0.8830534706 +1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,1,0,-0.0272809056 +1,2,0,0,0,1,0,0,0,0,2,0,0,0,0,1,0,0,0,0,-0.2178804717 +1,0,1,1,0,1,0,0,0,0,1,2,2,1,0,0,2,1,1,0,0.0661452848 +0,1,1,0,0,1,0,1,0,0,1,0,0,0,0,0,2,1,0,1,0.6019993498 +1,1,0,0,0,1,0,2,1,0,0,0,0,2,0,1,0,1,1,0,-0.4249572647 +1,1,1,0,2,1,0,2,0,1,0,0,0,0,0,0,2,1,0,0,0.3625709876 +1,1,1,0,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0.0257284234 +0,1,2,0,1,0,0,1,0,1,1,0,1,1,0,1,0,0,1,0,-0.6370465022 +1,2,1,0,0,0,0,0,0,0,2,1,1,0,0,1,1,0,0,1,0.4391983423 +1,1,0,0,1,2,0,1,1,1,0,0,1,0,1,1,0,0,0,1,0.1911545697 +0,2,1,0,2,1,0,1,0,1,1,0,1,1,1,0,1,1,0,0,-0.1460565046 +0,0,1,1,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,1,0.5926622909 +1,2,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,1,1,0.0599380073 +1,2,1,0,0,0,0,1,0,1,1,0,0,2,0,0,1,0,0,2,0.1490909474 +2,1,2,0,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0.0286617132 +1,1,1,2,1,2,0,1,0,0,0,1,0,1,0,1,1,0,0,1,-0.0497895258 +0,1,1,1,0,1,0,1,0,0,0,1,0,0,0,1,0,1,1,0,-0.6375701733 +0,1,0,1,2,1,0,1,0,1,0,1,0,0,0,1,2,0,1,0,-0.3698238412 +0,2,0,1,2,1,0,0,1,0,1,0,2,0,0,0,2,0,0,2,0.0658351581 +2,2,0,2,1,2,0,2,1,1,1,1,1,0,0,1,1,0,0,0,0.7843698515 +1,1,1,2,0,1,0,0,0,0,1,1,0,0,0,1,2,0,0,0,0.865171233 +0,2,1,0,0,1,0,1,1,1,1,0,1,0,0,1,0,0,1,0,0.5460662677 +0,0,0,0,0,2,0,1,0,1,0,1,1,0,0,0,1,0,2,0,-0.3177081395 +0,1,1,0,2,0,0,2,0,0,1,1,2,1,0,1,2,0,0,1,-0.1924965252 +1,1,0,2,1,1,1,1,0,0,1,0,0,1,0,0,0,0,1,0,-0.3784725114 +0,0,1,1,0,0,0,1,1,1,1,1,0,1,0,0,2,0,1,0,0.0468604516 +1,2,1,0,1,1,0,0,0,0,2,2,0,2,0,0,0,0,0,0,0.5362273839 +1,1,0,0,1,0,0,1,0,1,0,0,0,1,1,0,1,1,0,0,0.0096608791 +1,1,1,0,1,0,0,0,1,0,1,0,1,0,0,0,0,1,1,0,-0.6076744954 +2,1,0,0,1,2,0,1,1,0,0,0,0,1,0,0,0,0,0,0,1.0690762636 +0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0.0237628373 +2,1,1,1,0,0,0,0,0,0,1,0,2,0,0,0,1,0,0,1,-0.6233394708 +1,0,2,0,0,2,0,0,0,2,1,0,0,0,1,0,2,0,0,0,0.6550537152 +0,0,0,1,1,1,0,0,0,0,2,0,0,2,0,0,2,1,1,0,-0.9854192901 +1,1,0,0,2,1,0,2,0,2,0,0,0,0,1,1,1,0,1,0,-0.2766386513 +1,1,1,1,0,0,0,0,0,2,0,0,2,0,1,0,2,0,0,1,0.1395771383 +0,2,0,2,1,0,0,1,0,1,1,1,1,0,0,1,0,1,1,2,0.6010831821 +2,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,2,1,1,0,-0.0950254159 +1,2,0,0,1,1,0,1,0,0,1,1,2,0,0,0,1,0,0,0,0.0480345653 +0,1,2,0,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,-0.3709642032 +0,0,1,0,1,0,0,0,1,0,1,1,2,2,0,0,1,0,1,0,-0.1549940142 +0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,2,2,0,0,1,0.2914310818 +1,1,0,0,0,0,1,1,1,1,0,0,1,0,0,1,1,0,0,0,0.6758819272 +0,2,2,0,1,1,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0.4042852974 +1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,0,1,0,0,0,0.5035594805 +0,0,1,2,0,0,0,1,1,1,0,1,0,1,0,0,2,0,1,2,-0.1335827928 +1,1,0,1,1,0,0,0,1,0,1,1,1,1,0,0,0,2,0,0,0.2701797959 +0,2,0,1,0,1,0,2,0,2,1,1,1,1,0,1,1,0,0,0,0.1227104517 +2,1,0,1,2,0,1,0,0,0,1,2,1,0,0,1,0,0,0,1,-0.253330441 +2,1,0,0,1,1,0,0,0,1,0,1,1,0,0,1,2,0,0,0,-0.3231845859 +1,1,2,1,0,1,0,2,0,1,2,1,1,0,0,0,1,0,1,0,0.2407554706 +0,1,0,0,0,2,0,2,0,0,2,1,1,1,1,1,0,2,0,1,0.0400443824 +1,1,1,0,0,2,0,2,1,2,1,0,1,2,0,0,0,1,0,1,-0.8371652746 +0,0,1,1,0,2,0,2,1,0,0,1,1,0,1,0,0,1,0,0,0.679371682 +0,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,2,0,0,0,0.9518442352 +1,1,1,1,2,1,0,1,0,0,1,0,1,1,0,1,1,0,0,0,0.9253886473 +2,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,1,0,0,2,0.6352962365 +1,0,2,0,1,1,0,1,0,0,1,0,0,0,0,1,1,0,0,0,1.0049199878 +1,0,0,1,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.6283423202 +0,2,1,1,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,-0.0624529464 +0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,2,-0.2752345877 +2,1,0,1,1,1,0,1,0,2,1,1,1,1,1,0,2,0,1,0,0.1374190282 +0,1,2,0,0,0,0,1,0,0,1,0,1,2,0,0,0,0,1,1,1.3190392602 +0,0,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,0,2,0,0.0128286436 +1,1,0,0,1,0,0,2,0,0,0,0,1,0,0,0,1,0,0,0,0.3947976845 +0,1,1,0,1,2,0,2,0,0,0,0,0,0,0,1,1,0,1,0,0.0845688684 +1,2,2,0,0,2,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0.4564404199 +0,1,0,0,2,1,0,1,0,1,0,0,0,1,1,0,2,0,0,0,0.8954428861 +1,1,1,2,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.6697642995 +0,1,0,1,2,0,0,1,0,1,1,0,2,0,0,1,1,1,0,0,-0.0652021464 +0,2,0,1,1,1,0,1,0,0,1,0,1,0,0,1,1,0,1,0,0.3622389839 +1,2,0,0,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1.2714721835 +1,2,0,0,0,2,0,0,0,0,1,0,1,1,0,1,2,0,1,0,1.4777370865 +1,2,1,1,1,2,0,0,0,1,0,1,1,0,0,0,1,1,2,1,0.1073976146 +0,2,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,0,1,0,0.3196121279 +0,0,1,0,1,1,0,0,0,1,2,1,0,2,0,0,0,0,0,1,0.0852385578 +2,2,1,0,0,0,0,1,1,1,0,1,1,0,0,2,1,1,0,1,-0.805862041 +0,1,1,1,0,2,0,1,0,1,0,1,0,0,0,1,0,1,0,0,0.8024859452 +1,1,1,2,0,0,1,1,0,1,0,1,1,0,0,0,1,0,0,0,-0.0744327176 +0,1,1,0,1,0,0,2,0,1,1,0,0,2,0,1,0,0,1,0,-1.2920992599 +1,2,0,2,0,1,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0.5650029188 +0,1,1,1,0,1,0,2,0,0,0,0,0,0,0,0,1,0,0,0,-0.3772987721 +0,1,1,1,2,0,0,1,0,1,0,1,0,0,0,0,0,1,0,0,0.814854677 +1,1,2,0,1,1,0,2,1,1,0,0,1,0,2,1,2,2,1,1,-0.2248405264 +0,1,1,0,0,1,0,0,0,2,1,0,0,1,0,0,1,0,0,1,-0.856790701 +0,2,0,1,0,1,0,1,0,2,0,0,1,1,0,0,2,1,0,0,0.4113095346 +1,0,1,2,0,0,0,0,0,2,1,1,2,0,0,1,1,0,0,1,0.3022286465 +1,0,2,1,0,1,0,1,0,1,1,0,1,0,1,1,1,0,0,0,0.6539469376 +0,1,1,1,1,1,0,0,0,0,1,1,1,0,0,1,1,0,1,0,-0.5944108942 +0,2,2,1,1,1,0,1,1,1,0,0,1,1,0,0,1,1,1,1,1.1958579895 +0,1,0,0,1,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0.6862479393 +0,1,1,0,0,0,0,1,0,1,1,1,1,1,0,1,0,0,0,1,0.2426519166 +0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,1.048966246 +1,0,1,2,0,1,0,0,0,1,1,0,0,2,1,1,1,1,0,0,-0.9214473687 +0,1,0,1,1,1,0,2,0,0,0,2,0,2,1,1,1,1,0,0,0.6025941415 +1,1,2,1,2,1,0,0,0,1,0,1,1,1,1,1,0,0,1,1,0.9177713073 +1,1,0,1,2,1,0,1,0,1,1,0,0,0,0,1,1,0,0,0,0.7584218116 +0,2,1,0,0,1,0,1,0,2,0,2,1,0,1,1,1,0,2,1,0.1460813975 +0,1,1,0,1,1,0,0,0,1,2,0,1,1,0,1,1,0,0,1,-0.6401198579 +1,2,1,1,2,1,0,2,0,0,0,0,0,0,0,0,0,0,0,1,-0.597485692 +1,2,1,1,1,1,0,1,0,0,1,0,0,1,0,0,2,0,0,2,0.4426592945 +1,1,1,0,2,1,0,2,0,1,0,1,0,0,0,0,2,0,0,0,-0.1012036195 +0,0,2,0,0,1,0,1,0,1,1,1,1,2,0,1,0,1,0,1,-0.3804590578 +1,1,0,0,0,2,1,0,0,0,2,0,2,1,0,1,0,0,0,1,0.2366544319 +0,1,1,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0,-0.6980850043 +0,1,0,0,1,0,0,0,0,0,2,1,1,1,0,0,1,1,0,0,0.1835690931 +1,0,0,0,0,1,0,0,0,0,2,0,0,1,0,0,1,2,0,0,1.3573854677 +1,1,1,2,2,1,0,0,0,0,1,0,1,1,0,0,1,1,1,1,0.7376010677 +0,0,0,1,1,1,0,1,0,0,1,1,0,1,0,0,2,0,1,1,0.1900132349 +0,1,1,0,1,1,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0.9411525835 +0,2,0,1,1,2,0,1,0,0,2,0,0,2,0,1,2,0,0,0,1.0305685805 +2,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.4779925219 +1,2,0,0,2,2,0,1,0,0,0,0,2,0,0,2,1,0,0,0,0.7636222965 +0,1,1,0,0,0,0,1,0,1,1,0,1,1,0,0,1,0,0,1,0.0635484849 +0,2,0,2,1,1,0,2,0,1,1,0,0,1,0,0,1,1,1,0,-0.4197134527 +0,1,2,1,1,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.3627334437 +1,1,0,0,0,0,0,1,0,1,0,1,0,1,1,0,1,2,1,0,0.8676161866 +0,1,1,2,1,2,1,1,1,1,2,1,0,0,1,1,0,1,0,0,1.2818766694 +1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,-0.1217117935 +0,1,2,1,0,1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0.5108568687 +1,1,0,0,0,2,0,2,0,0,0,1,0,1,0,1,0,0,1,0,0.1320780481 +2,0,1,1,1,1,0,0,0,0,0,1,0,1,0,0,0,1,1,0,0.4333289556 +0,1,0,0,0,0,0,1,0,1,2,0,0,0,0,0,2,1,1,1,0.1956528127 +0,2,1,2,0,0,0,1,1,1,0,0,1,1,0,0,0,1,1,0,-1.0344768549 +0,2,1,1,2,1,0,1,0,0,0,0,1,1,0,0,1,0,1,1,0.805578791 +1,1,1,0,0,1,1,1,0,1,1,0,1,2,1,1,1,0,1,0,0.2650852469 +0,1,1,0,0,1,0,0,0,1,0,0,2,0,0,0,1,0,0,0,0.1995467041 +0,0,1,0,0,1,0,2,0,0,0,0,1,0,0,1,2,1,1,0,0.8087649658 +0,1,0,1,1,1,0,1,1,1,0,0,1,1,0,0,2,1,0,1,1.0709012669 +0,1,0,1,2,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.9978770184 +1,2,0,1,1,1,0,0,0,0,1,2,0,2,0,0,2,0,0,0,0.6146570925 +1,2,0,0,1,1,0,0,1,1,1,0,1,0,0,1,1,1,0,0,1.6253821404 +1,0,1,1,0,2,0,0,0,1,1,0,1,1,1,1,1,0,1,0,0.350490399 +0,0,1,1,0,0,0,0,1,1,0,1,1,0,2,1,2,0,0,1,0.3425616447 +0,1,1,0,1,1,0,0,1,0,0,0,0,2,1,0,0,0,0,1,0.3943048346 +1,1,1,0,0,2,0,1,0,1,2,1,1,0,0,0,1,0,0,0,0.3191059765 +1,2,0,0,0,1,0,0,1,0,0,0,1,2,0,0,1,0,1,1,1.2683582772 +0,2,1,1,1,0,0,0,0,2,1,0,1,1,0,0,1,0,0,1,-0.1659543451 +1,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,-0.0070458564 +0,2,1,1,1,1,0,0,0,0,1,1,0,0,0,2,0,0,1,0,-0.6789162938 +0,1,1,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0.2002988906 +1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0.5623693349 +0,2,1,1,1,1,1,1,0,1,0,0,0,1,1,2,2,0,1,0,0.1641246568 +0,1,1,2,1,0,0,2,1,0,0,0,1,0,0,0,1,1,1,0,0.0908516381 +1,2,1,1,1,2,0,2,0,0,2,0,1,2,1,0,2,0,1,1,1.5075308933 +0,0,1,0,1,0,0,1,0,1,1,0,1,1,0,0,1,2,0,0,-0.0773742109 +0,2,0,1,0,1,0,1,0,1,0,0,0,1,1,1,1,1,0,0,1.1992145582 +0,1,0,1,1,1,0,0,1,1,1,0,2,1,0,0,1,0,0,1,-0.3013096064 +0,1,1,1,0,1,0,1,0,1,1,0,1,1,0,0,0,0,1,0,-0.0609080872 +1,1,1,0,0,2,0,2,0,0,1,1,2,0,0,1,1,0,1,1,1.3414173489 +0,0,1,0,2,2,0,1,0,1,2,1,1,0,0,0,1,2,0,0,0.7899337797 +0,2,0,0,0,1,0,0,0,2,2,1,0,0,1,0,0,0,0,1,0.3377949333 +0,2,0,1,1,2,0,0,0,0,0,0,0,2,0,0,0,1,1,2,0.8318260467 +1,2,1,0,1,0,0,1,0,1,1,0,0,0,0,0,2,1,1,0,1.0257512377 +1,1,0,0,1,0,0,1,1,2,1,1,0,1,0,0,1,0,0,2,-0.9034920157 +0,1,1,0,1,1,0,0,0,2,0,1,1,0,0,0,2,0,0,0,0.2604179715 +0,0,2,0,1,1,0,2,1,0,2,1,2,0,1,0,0,1,1,0,-0.7647276728 +1,1,1,1,1,1,1,1,0,0,2,0,0,0,1,0,0,0,1,0,-0.6216064677 +2,1,1,0,0,0,0,1,0,0,1,0,0,1,0,0,2,0,1,0,0.3180254439 +0,1,0,1,0,0,0,1,0,1,0,1,0,0,0,0,2,1,0,0,0.6192022002 +1,1,1,0,1,1,0,2,0,0,0,1,0,2,0,0,0,0,0,0,0.6579514051 +1,1,0,0,1,2,0,0,0,0,1,1,1,0,0,1,1,0,1,0,0.1572494319 +1,1,0,0,2,2,0,1,1,1,1,1,0,0,0,0,2,0,0,0,0.6616256446 +1,1,1,1,0,2,0,0,1,1,0,0,1,1,2,0,0,0,1,0,0.0270236937 +1,1,0,1,0,1,0,0,0,1,1,1,1,0,0,1,1,0,1,0,-0.1118395884 +1,1,0,1,0,0,0,2,0,1,0,1,2,0,0,1,0,2,1,1,1.1573060204 +0,1,1,2,0,1,0,1,0,0,0,1,0,0,0,0,1,0,0,1,-0.306586791 +1,2,2,0,1,1,0,0,1,1,0,1,0,1,0,1,1,0,0,0,0.5648647143 +1,2,0,0,1,1,0,1,0,1,0,0,1,0,1,0,1,0,0,2,-0.1330874269 +2,1,2,0,0,1,0,2,0,1,0,0,0,1,1,1,0,0,1,1,1.068375724 +0,1,1,1,1,0,0,1,0,2,0,1,0,1,0,0,2,0,0,0,0.8021559728 +0,1,1,0,0,2,0,1,1,1,0,1,0,1,1,0,1,0,0,0,-0.4676387467 +0,2,0,0,0,2,0,0,1,1,1,0,1,2,0,0,0,0,0,0,0.5353597533 +0,1,2,1,2,1,0,1,0,0,0,1,1,0,0,0,1,0,0,0,1.4247021915 +0,0,0,2,0,1,0,1,0,0,0,1,1,0,1,0,1,1,2,1,-0.4338682166 +0,1,1,2,0,1,0,0,0,2,1,1,1,1,0,0,2,0,0,0,-0.2737090856 +2,2,0,0,0,0,0,2,0,0,1,0,1,1,0,0,1,0,1,0,-0.0305120109 +0,0,1,0,0,2,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1.6806942559 +0,2,1,1,1,0,0,2,0,1,1,0,1,1,1,1,1,0,0,0,1.0569870168 +0,1,1,0,1,1,0,1,0,1,0,1,0,1,0,1,1,0,0,0,-0.3910240141 +0,1,0,0,0,1,0,2,0,0,0,0,2,0,1,1,1,0,0,0,0.4376521075 +0,0,0,1,1,2,0,1,0,1,0,0,1,1,1,1,1,0,0,0,1.6681622053 +1,2,2,0,1,2,0,2,1,0,0,0,0,0,0,0,1,0,1,0,0.6110372877 +1,2,0,0,0,1,0,1,0,0,2,1,0,0,0,0,1,0,1,0,0.5857316513 +1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.0438447751 +1,1,0,0,1,2,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0.8041984912 +1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,0,0,0,0,1,-0.6010047026 +0,2,1,0,0,1,0,0,0,1,1,0,1,1,0,0,2,1,0,0,0.7841923471 +1,2,2,2,0,1,0,0,0,1,1,1,2,1,0,0,1,1,0,0,1.1872432437 +2,2,0,0,0,0,0,2,0,1,0,1,0,1,1,0,0,1,0,1,0.2107742162 +1,2,0,2,1,1,1,2,0,1,1,1,1,0,0,1,1,0,1,0,0.7191104956 +0,0,1,2,0,1,0,2,1,0,0,0,1,1,0,1,2,0,1,2,1.117627071 +0,0,0,1,2,1,0,1,0,0,0,0,0,1,1,1,1,0,0,1,0.5224192473 +1,2,1,1,0,2,0,1,0,1,1,0,1,1,0,1,1,0,1,0,-0.5917543137 +0,0,0,0,0,1,0,0,1,1,1,1,0,1,1,1,1,0,0,1,0.4293468411 +1,1,0,0,0,1,0,1,0,1,0,0,1,0,0,0,1,0,1,0,0.1509150483 +1,1,0,0,2,1,0,0,0,0,1,1,1,1,1,0,1,0,1,0,-0.1369847369 +1,0,2,1,0,1,0,1,0,0,1,0,1,1,0,0,0,1,1,0,0.2340821676 +0,1,2,0,0,2,0,0,1,1,2,2,2,2,0,0,0,0,0,0,0.5987414043 +0,2,1,1,0,2,0,1,0,1,0,1,2,2,0,0,0,0,0,1,0.0088857661 +1,0,1,1,0,1,0,0,1,1,0,2,0,1,0,1,1,0,0,1,0.5973611995 +0,2,0,1,2,0,0,2,0,1,0,1,0,1,0,1,1,1,1,0,0.2776194809 +0,0,0,1,1,1,0,1,0,0,1,0,1,0,0,0,1,0,1,0,0.7537085943 +1,0,0,0,0,0,0,0,0,0,1,2,1,0,2,0,1,0,0,0,0.3519899064 +0,2,0,1,1,2,1,0,1,1,0,1,1,1,0,0,1,0,0,0,-0.3670650238 +0,0,1,0,1,2,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0.3317175139 +1,0,0,1,0,1,0,1,1,0,0,1,1,0,0,1,0,1,0,1,0.0432492154 +0,1,1,1,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0.2679996589 +0,0,0,1,0,1,0,2,1,0,1,1,1,1,0,0,0,0,0,0,0.2251770156 +0,1,0,1,2,1,0,0,0,0,1,1,1,1,0,0,1,1,0,1,-0.003306318 +0,0,0,1,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,0,-0.2138306543 +0,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,-0.4068575371 +2,2,0,1,0,0,0,0,0,0,0,0,1,2,0,1,2,0,1,0,0.2987867676 +0,0,0,1,2,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0.0964452496 +0,1,0,1,1,1,0,2,0,0,1,0,0,1,0,0,2,1,2,1,1.0165406036 +0,1,1,0,1,1,0,2,0,1,1,1,0,0,0,0,1,0,0,1,-0.1643966105 +1,2,0,1,0,2,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0.074453359 +0,1,0,1,1,1,0,1,0,0,1,0,0,2,0,1,0,0,0,0,0.4240852467 +0,1,0,0,2,0,1,0,0,2,0,0,0,0,0,2,0,0,0,0,0.6318174619 +1,1,0,1,0,0,0,1,0,0,1,1,0,1,0,2,2,1,2,0,0.4719908518 +1,2,1,0,1,0,0,1,0,0,0,1,1,0,1,0,1,0,0,0,1.4054807749 +1,1,2,2,0,2,0,0,1,1,1,0,0,1,0,1,1,0,0,2,0.697703871 +0,1,0,1,2,1,0,0,0,1,0,1,1,0,1,1,0,0,0,1,0.2138641716 +0,1,0,0,1,1,0,1,0,1,1,1,2,0,0,0,1,0,0,0,1.1382133756 +1,2,1,0,1,1,0,2,0,1,1,0,1,0,0,0,1,0,0,0,-0.138887853 +1,2,1,2,2,1,0,0,0,1,0,0,0,1,0,1,1,0,1,0,-0.0689398588 +1,1,1,0,1,1,0,1,1,0,0,1,1,1,1,0,0,1,0,2,-0.1687680403 +1,2,2,0,0,0,0,0,0,1,1,2,1,1,0,1,1,0,0,1,-0.9359015504 +2,1,2,1,1,1,0,2,0,0,0,1,2,0,0,0,1,0,0,0,1.0183977743 +0,1,0,1,1,1,1,1,0,1,0,1,2,1,1,1,2,0,0,0,-0.2266868664 +1,1,1,2,1,2,0,0,0,0,1,1,1,0,0,0,1,1,1,0,-0.2289511788 +0,0,1,2,0,0,0,0,0,1,0,1,1,1,1,0,0,1,0,1,-0.2258819565 +1,1,1,0,0,0,0,2,0,2,0,1,0,0,0,0,1,0,0,1,-0.4429391809 +0,1,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.3974849773 +0,2,0,0,0,2,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1.004394655 +0,1,2,0,1,2,0,1,1,0,0,1,1,2,0,0,1,1,0,1,-0.4571887673 +1,1,1,0,1,2,0,0,0,1,0,1,0,2,0,0,2,1,1,0,0.4141151943 +1,0,1,0,1,1,0,1,0,1,2,0,1,2,0,1,0,1,0,0,0.491780315 +0,0,1,0,0,2,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0.3981553534 +1,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,2,0,1,2,0.6796112038 +1,1,0,0,0,0,0,0,0,1,0,0,0,1,0,2,2,1,0,0,0.5864395049 +1,0,1,0,0,1,0,1,1,0,1,2,2,0,0,1,0,0,0,0,0.7195405027 +0,0,2,1,0,0,0,0,0,2,0,0,1,1,0,1,1,0,0,0,0.8759323952 +0,2,1,1,1,0,0,1,1,1,2,0,2,0,0,1,1,0,1,1,0.8136469026 +0,1,0,2,0,1,1,1,0,0,1,0,0,1,0,0,2,1,1,1,0.150421799 +0,1,1,2,0,0,0,0,0,0,2,0,0,0,0,1,1,0,0,2,0.3242527013 +0,0,0,1,1,1,0,0,0,0,1,0,0,0,1,1,0,1,0,2,0.8206911806 +0,0,2,2,1,1,1,1,0,1,2,1,1,2,0,0,1,1,0,1,-0.0477934106 +0,0,0,0,0,1,0,2,1,1,2,0,1,1,0,0,0,1,0,0,0.8942399878 +1,0,2,1,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-0.5983179085 +1,2,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0.1887852771 +1,1,0,1,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,1,0.2496010273 +0,1,2,0,0,0,0,1,0,0,1,0,1,1,1,1,1,0,0,1,0.4239649273 +0,1,1,1,0,2,0,0,1,1,1,1,1,1,1,1,1,0,1,0,0.8443253794 +2,1,1,2,2,2,0,1,1,1,1,0,1,1,0,0,1,0,1,1,1.5181083459 +1,1,0,0,0,1,0,0,0,0,2,1,0,1,0,1,0,0,0,1,-0.0729845663 +0,0,1,0,1,0,0,1,0,1,0,2,1,1,1,0,1,0,1,0,-0.1838466424 +0,1,0,0,1,1,0,2,0,1,0,0,1,0,0,0,2,0,0,0,0.9787331251 +0,1,1,1,0,1,0,1,0,0,1,0,0,0,0,2,0,0,0,1,0.1902789549 +0,2,1,1,0,0,0,1,0,1,0,0,0,0,0,0,1,2,2,0,0.1734962525 +0,2,1,0,0,2,0,1,0,1,0,0,1,1,0,1,0,1,1,1,1.2920838053 +0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,2,0,0,0,0.5840447152 +0,1,0,2,0,1,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0.5084842026 +1,1,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0.5176748055 +0,1,0,1,1,0,0,0,0,1,1,0,0,1,0,1,1,0,0,0,1.2004828021 +0,2,1,0,1,1,0,0,0,0,0,2,2,0,1,1,1,0,1,1,0.3149413406 +1,1,1,0,2,0,0,1,1,1,0,1,1,1,0,0,2,1,2,0,0.3195517814 +1,1,2,0,2,2,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0.3998520868 +0,1,1,1,1,1,0,1,1,1,1,2,1,1,2,1,1,0,1,1,0.4071926436 +0,0,1,0,1,2,0,1,1,1,1,0,0,1,0,0,1,1,1,0,-0.0512001261 +2,1,0,1,0,0,0,0,1,2,0,0,1,0,0,1,0,0,0,0,0.7002343488 +1,1,0,2,0,1,0,2,0,1,1,0,1,0,0,0,0,0,0,1,0.6678770399 +1,2,0,1,0,1,0,1,0,1,0,0,1,1,1,1,1,0,1,0,-0.4016681553 +1,0,1,0,0,2,0,1,1,0,0,0,1,1,0,0,1,0,0,0,0.728796037 +1,0,2,0,0,0,0,0,0,0,0,1,0,1,1,0,1,1,0,0,-0.1669633416 +1,2,1,1,0,0,0,2,0,1,0,1,0,1,1,1,2,0,0,0,0.2428137183 +1,1,0,0,0,1,0,1,0,1,1,0,2,1,0,0,0,0,0,1,0.0761991837 +1,1,2,0,1,0,0,1,0,0,2,0,1,0,0,0,1,0,0,0,0.9895257132 +2,1,0,1,2,1,0,0,0,1,1,1,0,1,0,1,0,0,1,0,-0.3604718007 +1,1,2,1,0,2,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0.0441024424 +1,1,1,0,1,0,0,2,0,0,1,1,0,1,0,0,1,0,0,1,-0.4927159869 +0,0,1,1,0,1,0,1,1,0,0,0,1,0,1,1,1,1,0,0,0.0648999316 +0,1,1,0,1,2,0,1,0,0,1,0,0,2,0,0,1,0,0,1,-0.0632042383 +1,1,0,0,0,2,0,0,0,1,1,2,1,0,0,2,2,0,0,1,0.003064607 +0,1,0,0,1,1,0,0,2,1,1,0,1,0,0,0,2,1,1,1,0.9607688016 +1,1,1,1,0,0,0,0,0,0,1,0,0,0,0,2,1,1,0,1,-0.3067709006 +0,1,1,1,0,1,0,0,0,1,0,0,0,2,1,0,0,0,0,0,0.4882461166 +1,2,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,0,1,0,-0.2261969813 +0,1,0,1,0,2,0,1,0,1,0,0,0,1,1,1,2,0,0,0,0.187353758 +0,1,2,0,0,0,0,0,0,1,1,0,0,1,1,1,0,0,1,0,-0.715695493 +1,1,1,0,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,0.5041260744 +1,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,1,0,0,1,0.0786988436 +0,1,1,1,0,2,0,2,0,2,1,1,0,0,0,1,0,0,0,1,-0.8677234176 +1,1,0,0,0,0,0,2,0,0,1,0,2,1,0,1,0,0,1,0,-0.2620330289 +1,2,1,0,0,2,0,1,0,1,2,0,1,1,1,1,1,0,1,0,0.4237316523 +2,2,1,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,1,-0.3001017598 +1,0,0,0,2,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,-0.1292878382 +0,1,0,1,0,2,0,0,1,1,1,0,1,1,0,2,1,0,1,1,0.536697929 +1,1,0,0,0,2,0,1,0,1,1,0,0,1,1,1,1,0,0,0,2.0097237657 +0,0,1,0,0,1,1,1,1,0,1,0,1,0,0,0,1,0,1,1,0.3893285661 +1,0,2,0,1,2,0,0,0,2,0,1,1,0,1,0,0,0,1,0,1.0272467375 +0,1,0,1,1,1,0,1,0,1,1,0,1,0,1,0,1,0,0,1,-0.2992088589 +1,0,1,1,1,1,0,1,0,0,0,0,2,0,2,0,1,0,1,1,-0.4162688289 +0,0,1,0,0,2,0,2,0,1,1,1,1,0,0,0,2,1,0,0,0.0533990929 +1,0,0,0,1,1,0,1,1,1,1,1,2,0,1,2,1,0,1,0,0.397385957 +0,1,2,0,2,1,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0.6086504095 +0,0,1,1,1,0,0,1,1,1,1,1,1,1,0,0,1,0,1,1,0.8643383456 +0,1,0,1,0,2,1,1,1,1,0,0,0,2,1,0,1,1,0,1,-0.1634198367 +1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,1,0,0,0,0.8192378398 +1,0,1,0,1,0,0,0,0,1,1,0,0,1,0,0,1,1,1,1,1.0579506787 +1,2,2,0,0,1,0,1,1,0,1,0,1,0,0,1,2,0,0,1,-0.5229688402 +0,2,2,1,0,2,0,1,0,2,0,1,1,0,0,1,1,0,0,0,0.6621867486 +0,0,0,1,1,0,0,1,0,1,1,0,2,2,0,0,1,1,1,0,0.4638532658 +2,0,0,1,0,1,0,2,0,0,2,1,0,0,0,1,0,0,1,0,0.01290321 +1,1,2,0,0,2,0,2,0,0,1,1,0,0,0,0,2,0,0,0,0.9406715506 +0,1,0,0,1,0,0,2,1,0,1,0,0,2,0,1,1,1,0,0,0.6715708947 +1,1,1,2,1,0,0,2,0,1,0,1,0,0,0,1,0,0,1,1,1.5272347864 +2,0,1,0,0,0,0,1,0,0,0,0,2,1,0,0,2,0,0,0,0.6845699994 +0,1,1,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1.8969664408 +1,1,1,0,1,1,0,1,2,0,0,1,1,0,0,1,1,0,0,1,-0.863122082 +0,2,2,1,1,2,0,2,0,1,0,1,1,0,0,1,1,1,0,0,-0.5012919966 +0,2,0,0,1,0,0,1,0,0,1,0,0,0,1,1,2,1,1,0,-1.0835232557 +1,1,1,0,1,0,0,1,0,0,0,0,0,1,1,1,0,0,2,0,0.7876494633 +0,0,0,1,0,1,0,1,1,0,2,0,2,1,0,0,1,0,1,0,0.2343911632 +1,1,0,2,1,1,0,0,1,0,1,0,1,1,0,0,1,1,1,1,0.5789903943 +0,1,2,1,0,1,0,2,1,1,1,0,1,0,1,0,1,0,2,1,0.5757423493 +1,0,0,1,2,1,1,1,1,0,0,1,0,1,0,0,2,0,0,0,0.8130816185 +1,0,2,0,0,1,0,0,0,1,1,1,2,0,1,2,0,1,0,1,0.4392064159 +1,1,0,1,1,1,0,2,0,0,0,1,0,1,0,0,1,1,0,0,0.0877319472 +0,1,0,1,2,1,0,1,1,1,0,1,1,1,0,0,2,0,0,0,0.1964792626 +0,0,0,0,1,0,0,1,0,0,1,1,1,1,0,0,0,0,0,1,-0.5940489229 +1,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,-0.7090417071 +1,0,0,0,1,1,1,0,0,1,1,0,2,0,1,0,1,0,0,0,0.4101507954 +0,2,0,0,0,2,0,1,0,1,0,1,0,0,0,1,2,0,1,1,1.4754925449 +1,1,0,0,1,2,0,1,0,1,0,0,2,1,1,0,1,0,0,1,1.3397855933 +0,2,0,1,0,0,0,0,0,1,0,0,2,0,0,0,1,0,0,1,0.3601807072 +1,0,1,0,0,0,0,1,0,2,1,1,1,0,0,0,0,1,1,0,1.0071623649 +0,1,1,0,0,2,0,1,0,2,1,1,0,0,0,0,0,0,0,0,0.7660953231 +0,1,1,0,0,2,0,1,0,2,1,0,1,0,0,0,1,0,1,1,0.8319512993 +0,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,2,0,0,0,0.708071857 +1,1,1,1,0,1,0,1,0,0,0,0,1,1,1,1,2,0,0,1,0.3383546355 +0,1,1,0,1,2,0,1,1,1,1,0,1,1,0,1,0,1,0,1,0.1225947692 +1,2,1,0,0,0,0,0,0,0,1,2,1,1,0,0,0,0,0,0,0.2448239949 +0,0,0,0,1,1,0,0,0,0,1,0,2,0,0,1,1,0,0,0,1.3117165996 +0,1,1,1,1,1,0,1,0,1,1,0,0,2,0,1,1,1,0,0,0.8602141495 +1,0,1,0,1,0,0,2,0,0,1,0,0,1,1,0,0,1,0,1,0.2047196148 +1,0,1,0,0,0,0,0,0,0,1,1,0,1,0,0,1,1,0,0,0.5847132028 +1,1,0,2,0,1,0,1,0,1,0,0,1,1,0,0,0,1,0,0,0.5887647282 +2,1,1,1,0,1,0,2,0,0,0,1,0,1,1,1,0,0,0,0,1.8309428963 +0,1,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1,0.163325651 +1,1,1,2,1,2,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0.4024471719 +0,2,1,1,0,1,0,1,0,0,0,1,0,1,1,1,0,1,1,1,0.2829882311 +0,0,0,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,-0.306335742 +1,1,1,0,1,0,0,1,0,0,0,0,2,1,0,0,2,0,0,0,-0.6342281131 +1,0,1,1,0,1,0,1,0,1,0,1,0,0,1,1,2,0,0,0,0.0382691324 +1,1,2,0,1,0,1,0,1,0,0,0,2,1,0,1,1,0,0,1,-0.6526531553 +0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,1,1,0,1,1,0.9597788842 +0,0,2,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0.3329294061 +0,1,0,0,1,2,0,1,2,0,1,0,1,0,1,0,2,0,0,1,0.7840486593 +0,1,0,0,1,1,1,1,0,1,0,1,1,1,0,0,0,1,0,0,0.8030388893 +0,1,0,1,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,-0.0573021391 +2,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,-0.3740693373 +0,1,1,0,0,2,0,0,0,0,1,0,1,1,2,0,1,0,0,0,-0.0667477001 +2,0,0,0,1,1,0,0,0,0,2,1,1,1,0,2,0,0,0,1,-0.200282829 +2,1,1,1,1,1,0,1,0,1,0,0,1,1,0,0,1,0,0,0,0.3582937551 +2,1,1,0,1,1,0,1,0,0,2,0,1,1,0,1,1,0,2,1,1.1166763154 +1,1,1,1,1,1,0,1,0,0,0,0,1,1,0,2,2,0,0,0,1.360970672 +1,1,0,1,1,1,0,2,0,0,1,1,0,0,1,0,1,0,1,0,0.6164603813 +1,2,0,0,0,1,0,1,1,1,1,0,1,0,0,0,1,0,0,0,0.1977737485 +0,2,0,1,0,1,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0.6863273432 +1,1,0,0,2,1,0,0,0,2,0,0,1,1,1,1,2,0,2,0,1.1392102027 +1,0,0,2,2,1,0,0,0,1,0,1,0,1,0,1,1,1,1,0,-0.3501664137 +1,1,0,0,1,1,0,1,1,1,2,1,0,1,0,0,1,0,0,0,0.8875929802 +0,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0.6681087902 +1,2,0,0,1,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,1.0222171802 +1,1,1,0,0,1,0,1,0,2,1,0,2,1,0,0,1,0,1,1,0.9190415321 +0,0,0,0,1,1,0,1,1,0,2,0,1,1,0,1,2,1,0,0,0.7479744882 +1,1,0,0,0,2,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.9823187416 +0,1,0,1,1,1,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0.1311223895 +0,0,1,2,0,1,1,1,0,2,1,0,1,0,0,2,1,0,2,0,0.4170714896 +0,2,2,2,0,1,0,0,0,1,2,0,1,0,2,0,0,0,1,0,-0.476461654 +1,1,0,0,0,1,1,0,0,0,2,1,0,1,0,1,1,1,0,0,0.6265315052 +0,2,0,1,1,0,0,0,0,0,1,0,1,0,1,0,2,1,0,0,0.8677201808 +1,1,0,1,0,2,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0.092618957 +1,1,1,0,1,1,0,1,0,1,0,0,1,1,0,0,0,0,0,0,1.1048169311 +1,1,1,1,1,2,0,0,0,0,0,0,1,1,0,0,1,0,1,0,0.2789731762 +0,0,2,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1.222035579 +1,0,1,2,2,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,-0.266952679 +0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,1,0,0,0.9019200355 +0,2,2,1,1,1,0,2,0,0,1,1,1,0,1,1,2,1,0,0,0.3946321501 +2,0,1,0,1,0,0,1,0,2,0,0,2,0,0,1,2,1,0,0,0.5111678526 +1,2,1,1,0,2,0,1,0,0,0,0,0,1,0,0,1,1,0,1,-0.0218616387 +1,1,0,0,1,1,0,1,0,1,0,1,0,1,0,0,2,0,1,2,0.3753679539 +0,1,0,1,0,1,1,2,0,1,1,1,0,0,0,1,0,0,0,0,1.1212556909 +0,1,1,0,0,1,0,1,1,0,1,0,0,2,0,0,0,0,1,1,1.1034707635 +1,1,0,0,2,1,0,2,0,0,0,1,1,1,0,0,2,0,0,0,0.0876807258 +0,1,2,1,1,1,0,0,1,1,2,2,0,0,0,0,1,0,0,1,0.5132425061 +0,2,0,0,0,1,0,1,0,1,1,1,1,0,1,1,1,0,0,0,0.5971021827 +1,2,0,1,0,1,0,1,0,0,0,1,1,0,0,0,0,0,1,0,-0.8896039795 +1,1,1,0,1,0,0,0,1,1,0,0,0,1,0,2,1,0,1,0,-0.7219534181 +0,0,0,1,0,2,0,2,0,0,2,0,2,1,0,1,1,0,0,1,0.6648571098 +0,1,0,1,0,2,0,2,0,0,0,0,1,1,0,0,1,0,1,0,0.0017192387 +1,0,0,0,1,1,0,2,0,0,0,0,1,0,1,0,0,1,0,0,0.7126541357 +0,0,0,1,0,1,0,1,0,1,1,0,1,0,1,1,0,0,0,1,0.1246807581 +1,1,2,0,0,0,1,0,1,1,0,1,0,0,0,1,0,0,0,0,0.6473705152 +0,0,1,0,0,1,1,0,0,0,2,0,2,1,0,1,1,1,2,2,0.889707717 +0,2,1,1,0,1,0,0,1,0,0,0,1,1,1,2,1,0,1,2,0.1457759324 +0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,1.3346630658 +0,1,1,1,0,1,0,0,1,0,1,0,1,2,0,1,1,1,1,0,-0.6838082867 +0,2,1,0,0,1,0,1,1,0,0,0,1,1,1,1,1,0,1,1,0.5481471999 +0,1,1,1,0,1,0,0,0,1,1,1,1,0,1,0,2,0,0,0,0.4319885702 +0,1,1,1,1,2,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0.4416632122 +1,1,0,0,0,1,0,1,0,0,0,1,0,0,0,1,2,0,1,0,0.4627254245 +0,1,2,1,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0.1913021636 +1,0,1,2,0,1,0,1,0,1,1,0,0,1,1,0,1,1,0,0,0.3915282911 +0,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0.3525325447 +1,0,0,1,2,0,0,1,0,0,1,0,2,0,0,1,2,0,0,1,-0.139731141 +0,0,1,0,1,2,0,1,0,1,1,1,2,1,0,0,2,1,0,1,-0.061781902 +1,2,1,2,0,1,0,1,0,1,2,0,0,1,0,0,1,0,0,1,0.4401240782 +0,0,1,2,0,0,0,2,1,1,0,0,1,1,0,0,1,1,0,0,-0.1227103228 +0,0,0,0,2,0,0,1,0,0,0,2,0,0,0,0,1,1,0,0,-0.0356074239 +0,2,1,0,1,0,0,0,0,0,0,2,1,2,0,1,2,1,0,0,0.0584266041 +0,1,1,0,1,1,0,1,0,0,1,1,0,1,0,2,0,0,1,0,-0.4230446169 +1,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.1609205267 +2,1,0,0,0,1,0,0,0,1,1,0,0,0,0,1,1,0,0,0,1.1320453485 +1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,2,1,1,1,1.1253757564 +0,2,0,1,1,2,0,0,0,0,2,1,0,2,0,0,1,1,0,0,0.1254477685 +0,1,0,0,0,2,1,1,0,0,0,1,1,0,0,0,1,2,0,0,0.7491898702 +0,0,1,0,1,1,0,1,0,2,0,0,2,1,0,1,2,1,1,1,0.9389854272 +0,1,0,1,0,1,0,0,1,0,1,0,1,1,1,0,2,1,0,2,0.7130740132 +1,2,0,1,0,0,1,1,0,0,2,1,0,1,0,0,1,0,1,0,0.3246935571 +0,2,1,0,0,0,0,1,0,0,1,0,1,0,0,0,1,0,0,2,0.0409033237 +1,1,0,0,0,1,0,2,1,0,1,0,0,0,0,0,1,0,1,1,1.6143003637 +1,1,0,1,1,2,0,1,0,0,1,0,1,1,0,0,2,0,1,1,0.8013661588 +1,1,1,1,1,2,0,0,0,0,2,0,0,0,1,0,1,0,1,2,-0.0286580274 +0,2,1,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,1,0,-0.0252729544 +0,1,2,0,1,2,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0.194407405 +2,1,1,0,1,1,0,2,0,0,2,0,1,1,0,0,1,0,1,0,-0.0197949405 +0,2,0,1,1,1,0,1,0,0,0,0,2,1,0,0,0,1,1,0,-0.2933185819 +1,1,0,2,1,1,0,1,0,1,1,0,1,1,0,0,1,0,0,0,-0.3289651792 +0,0,0,0,1,0,0,0,0,0,0,0,2,0,1,0,1,1,1,0,-0.4653651223 +0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0.6939978849 +2,0,2,0,1,0,0,2,0,0,1,1,0,1,1,1,0,0,0,0,0.4811131577 +0,1,2,0,0,2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0.4525724105 +0,1,0,2,0,2,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0.9523206372 +2,1,0,0,1,1,0,1,0,0,1,1,0,1,1,0,1,0,0,0,0.3096134181 +1,1,1,0,0,0,0,1,0,2,2,0,2,0,0,0,0,0,0,0,1.2355130334 +0,0,1,1,1,2,0,0,0,2,0,1,0,0,1,1,0,1,0,0,0.7223588395 +1,0,1,1,1,0,0,0,0,0,1,1,0,1,0,1,1,1,0,1,-0.375780051 +0,2,2,0,0,1,0,0,0,0,1,2,1,0,0,0,1,0,0,0,0.8656236617 +0,2,0,2,1,1,0,1,0,0,1,0,2,0,0,1,0,1,1,1,0.4301544879 +0,2,1,1,0,1,0,0,0,0,2,1,1,1,0,0,0,0,0,1,0.3063875597 +1,1,0,0,0,0,0,1,1,0,2,1,0,1,0,0,2,0,1,2,1.0412731314 +1,1,1,0,1,2,0,2,0,0,1,0,0,0,1,0,1,1,0,1,0.0657806869 +1,2,0,1,1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,-0.0468724508 +1,1,1,0,0,1,0,0,0,0,1,0,0,2,0,0,1,0,1,1,0.5437306313 +0,1,1,0,1,1,0,0,0,0,0,0,0,1,0,1,0,0,1,2,1.2707546949 +0,1,1,1,0,0,0,0,0,0,2,0,0,1,0,1,1,1,2,0,0.3480212717 +0,1,1,1,1,1,1,0,0,0,1,0,1,0,0,0,0,1,2,0,0.3955004333 +1,0,0,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1.011921746 +0,2,1,2,1,1,0,0,0,2,0,0,1,1,0,0,1,0,0,0,0.5631544655 +0,2,0,0,0,1,0,1,0,2,2,1,1,1,0,0,1,0,0,0,0.8827606138 +1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,1.0943819934 +1,0,1,0,1,1,0,1,1,1,0,0,1,0,0,0,1,0,0,0,0.6107449091 +0,2,1,0,1,1,0,1,0,0,1,1,0,0,0,0,1,0,1,0,-0.5630484676 +0,1,1,0,1,1,0,0,0,0,0,1,0,0,0,0,0,2,0,0,1.5250606989 +1,1,0,0,0,1,0,2,1,0,0,0,1,0,1,0,1,0,2,0,-0.1941567732 +0,1,0,0,0,0,0,1,1,0,2,1,0,0,0,0,1,1,1,2,-0.1223309433 +0,0,0,0,0,2,0,2,1,0,0,0,1,1,0,0,1,0,0,0,0.1942561057 +0,2,2,0,0,0,0,1,1,1,0,0,1,1,0,0,1,0,1,0,-0.032871641 +1,1,0,0,1,1,0,1,0,1,2,0,2,1,0,0,2,0,0,1,0.118777595 +2,1,0,1,0,0,0,1,0,1,2,0,2,1,0,2,2,0,0,1,0.1036448681 +2,0,1,0,1,2,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0.1776452105 +1,1,0,0,1,0,0,1,1,0,2,0,0,1,1,0,0,1,0,0,-0.0577399128 diff --git a/data/GAMETES_Epistasis_2-Way_continuous_endpoint_a_20s_1600her_0.4__maf_0.2_EDM-2_01.tsv.gz b/data/GAMETES_Epistasis_2-Way_continuous_endpoint_a_20s_1600her_0.4__maf_0.2_EDM-2_01.tsv.gz deleted file mode 100644 index 5db23b2..0000000 Binary files a/data/GAMETES_Epistasis_2-Way_continuous_endpoint_a_20s_1600her_0.4__maf_0.2_EDM-2_01.tsv.gz and /dev/null differ diff --git a/data/GAMETES_Epistasis_2-Way_missing_values_0.1_a_20s_1600her_0.4__maf_0.2_EDM-2_01.csv b/data/GAMETES_Epistasis_2-Way_missing_values_0.1_a_20s_1600her_0.4__maf_0.2_EDM-2_01.csv new file mode 100644 index 0000000..f4738d0 --- /dev/null +++ b/data/GAMETES_Epistasis_2-Way_missing_values_0.1_a_20s_1600her_0.4__maf_0.2_EDM-2_01.csv @@ -0,0 +1,1601 @@ +N0,N1,N2,N3,N4,N5,N6,N7,N8,N9,N10,N11,N12,N13,N14,N15,N16,N17,M0P0,M0P1,class +1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,,0.0,1.0,1.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,1.0,0.0,0.0,1.0,1.0,,1.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,1.0,,1 +2.0,0.0,,1.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1 +0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1 +0.0,,,0.0,,0.0,1.0,1.0,0.0,,1.0,1.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1 +0.0,0.0,,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,,1.0,2.0,1.0,2.0,0.0,1.0,,0.0,1 +0.0,0.0,0.0,0.0,,0.0,2.0,,0.0,0.0,0.0,2.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,1.0,0.0,2.0,0.0,1.0,0.0,0.0,,1 +0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,0.0,2.0,0.0,0.0,1 +1.0,0.0,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,1.0,2.0,2.0,2.0,,0.0,2.0,1.0,1 +0.0,0.0,,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1 +,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1 +1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,,1.0,1.0,1.0,1 +1.0,0.0,0.0,1.0,,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,,0.0,0.0,0.0,1.0,,1 +0.0,,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1 +0.0,0.0,1.0,0.0,1.0,0.0,,,0.0,1.0,2.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1 +1.0,0.0,1.0,0.0,1.0,0.0,0.0,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,2.0,1 +0.0,0.0,0.0,2.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,2.0,,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1 +0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,,0.0,,0.0,,,0.0,1.0,1.0,1.0,1.0,1 +0.0,0.0,0.0,1.0,,,1.0,0.0,,0.0,0.0,,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1 +2.0,0.0,1.0,0.0,0.0,0.0,1.0,,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,,1.0,1 +1.0,,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,,1.0,0.0,1.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,1.0,,0.0,0.0,0.0,,,1.0,1.0,0.0,0.0,0.0,,0.0,1.0,1.0,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,2.0,,1.0,0.0,0.0,1.0,,1 +0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,,0.0,0.0,0.0,0.0,1 +0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,2.0,0.0,,0.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,,1 +1.0,,,1.0,1.0,0.0,,,0.0,0.0,1.0,1.0,1.0,0.0,,0.0,0.0,1.0,1.0,,1 +1.0,0.0,0.0,0.0,,1.0,2.0,0.0,0.0,,0.0,2.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1 +1.0,0.0,0.0,1.0,1.0,,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1 +,1.0,1.0,1.0,,1.0,1.0,0.0,0.0,0.0,1.0,1.0,2.0,0.0,0.0,,0.0,1.0,0.0,0.0,1 +1.0,0.0,1.0,1.0,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1 +2.0,0.0,,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,,,1.0,1.0,0.0,0.0,1 +2.0,0.0,,,0.0,0.0,2.0,0.0,,0.0,0.0,0.0,1.0,1.0,0.0,0.0,2.0,0.0,1.0,1.0,1 +1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1 +2.0,0.0,0.0,0.0,0.0,1.0,1.0,,1.0,0.0,1.0,2.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,1 +1.0,,0.0,0.0,0.0,0.0,,1.0,0.0,0.0,,1.0,,1.0,0.0,2.0,0.0,0.0,1.0,1.0,1 +1.0,0.0,0.0,2.0,,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1 +0.0,0.0,0.0,,,0.0,1.0,0.0,0.0,,2.0,1.0,,,1.0,0.0,1.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,,0.0,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1 +1.0,0.0,2.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,2.0,,1.0,1.0,1.0,0.0,1.0,1.0,1 +0.0,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,2.0,2.0,0.0,0.0,,0.0,1 +1.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,,0.0,1 +1.0,0.0,0.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,2.0,1.0,1 +0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,,0.0,1.0,1.0,1.0,1 +0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,2.0,0.0,0.0,1.0,1.0,1 +0.0,0.0,,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,,1 +1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,,0.0,1 +0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,,0.0,2.0,0.0,1.0,,0.0,1.0,1.0,1 +0.0,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,1.0,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1 +0.0,0.0,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,1.0,,1.0,0.0,2.0,0.0,0.0,,1.0,2.0,1 +1.0,0.0,0.0,,1.0,,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,,1.0,0.0,0.0,0.0,1 +,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,2.0,,0.0,0.0,0.0,0.0,1 +0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,1.0,1.0,,0.0,0.0,0.0,0.0,1 +0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,,0.0,1.0,1.0,1 +2.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1 +0.0,,1.0,2.0,0.0,1.0,2.0,0.0,,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1 +0.0,0.0,1.0,0.0,1.0,0.0,2.0,,1.0,0.0,,,1.0,0.0,,2.0,0.0,0.0,0.0,0.0,1 +0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1 +0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,,1 +1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,2.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1 +0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,,0.0,,1.0,1.0,,1.0,0.0,1.0,0.0,1.0,1.0,1 +1.0,0.0,,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,2.0,1.0,1.0,0.0,,0.0,1 +,0.0,0.0,0.0,1.0,1.0,2.0,0.0,0.0,1.0,0.0,,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1 +2.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1 +1.0,,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1 +,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,2.0,0.0,0.0,1.0,1.0,0.0,,0.0,1 +0.0,,2.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,,1.0,0.0,0.0,0.0,0.0,1 +0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,,0.0,0.0,0.0,,0.0,0.0,1.0,1.0,1.0,,2.0,1 +0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1 +1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1 +2.0,0.0,0.0,0.0,2.0,,1.0,0.0,0.0,0.0,,,0.0,,1.0,0.0,0.0,0.0,,0.0,1 +2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1 +2.0,0.0,0.0,1.0,0.0,,1.0,0.0,0.0,0.0,,,0.0,1.0,,0.0,0.0,,0.0,0.0,1 +,0.0,0.0,0.0,2.0,0.0,1.0,,0.0,0.0,2.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,,1.0,1 +1.0,0.0,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,,0.0,1.0,,0.0,0.0,0.0,1 +0.0,,0.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,,0.0,0.0,1.0,0.0,,1 +0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,,1.0,0.0,1.0,2.0,1.0,1.0,0.0,,2.0,0.0,0.0,1 +1.0,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1 +1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,,1.0,0.0,1.0,2.0,1 +,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1 +0.0,0.0,1.0,,2.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1 +0.0,0.0,1.0,0.0,1.0,,0.0,0.0,0.0,,0.0,0.0,1.0,0.0,2.0,1.0,0.0,2.0,0.0,0.0,1 +0.0,,1.0,0.0,1.0,2.0,1.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,1 +1.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1 +0.0,0.0,0.0,0.0,1.0,0.0,0.0,,0.0,1.0,0.0,,0.0,,1.0,0.0,0.0,1.0,0.0,,1 +,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,2.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1 +0.0,,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,1.0,1.0,,1.0,,1.0,0.0,1.0,,,1 +0.0,0.0,0.0,1.0,2.0,0.0,,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1 +2.0,0.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,0.0,1.0,1.0,1.0,2.0,0.0,0.0,1.0,0.0,2.0,1.0,1 +1.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,2.0,1.0,1.0,0.0,0.0,1 +1.0,0.0,1.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1 +0.0,0.0,0.0,0.0,0.0,,1.0,,0.0,0.0,0.0,0.0,1.0,,,0.0,0.0,0.0,0.0,0.0,1 +1.0,,0.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,,2.0,1.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,1 +2.0,0.0,1.0,0.0,1.0,0.0,0.0,,0.0,0.0,1.0,0.0,1.0,0.0,0.0,,0.0,0.0,1.0,1.0,1 +2.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,,0.0,0.0,0.0,2.0,1.0,1.0,2.0,0.0,0.0,1.0,1.0,1 +1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,,0.0,0.0,0.0,0.0,0.0,0.0,1 +0.0,0.0,1.0,0.0,1.0,,0.0,0.0,0.0,1.0,1.0,2.0,1.0,0.0,2.0,1.0,1.0,0.0,,1.0,1 +,0.0,0.0,1.0,2.0,0.0,2.0,,0.0,0.0,0.0,0.0,,0.0,0.0,1.0,,0.0,0.0,0.0,1 +0.0,0.0,,0.0,0.0,0.0,0.0,,,0.0,1.0,,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1 +2.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,2.0,2.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1 +0.0,0.0,1.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,1 +0.0,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,,2.0,1.0,,1.0,1.0,0.0,0.0,0.0,0.0,1 +2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,2.0,1 +0.0,,1.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,,1.0,1.0,0.0,,0.0,,1 +0.0,0.0,0.0,0.0,2.0,0.0,1.0,,0.0,0.0,0.0,1.0,,,0.0,1.0,1.0,0.0,0.0,0.0,1 +2.0,,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,,1 +1.0,0.0,1.0,,2.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,1 +0.0,0.0,0.0,0.0,0.0,,1.0,0.0,0.0,0.0,0.0,2.0,1.0,1.0,1.0,,0.0,1.0,,,1 +0.0,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,,0.0,0.0,0.0,,1 +0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,,1.0,1.0,,0.0,0.0,1.0,0.0,0.0,0.0,1 +1.0,,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1 +1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,2.0,1.0,1.0,1.0,0.0,0.0,1 +1.0,0.0,0.0,1.0,1.0,,1.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,2.0,1 +0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,2.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,,1 +0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,,0.0,0.0,1.0,0.0,1.0,1.0,1 +0.0,1.0,0.0,,1.0,0.0,0.0,1.0,0.0,0.0,,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1 +2.0,0.0,0.0,1.0,2.0,0.0,2.0,,0.0,0.0,,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1 +0.0,0.0,,0.0,,0.0,0.0,0.0,0.0,0.0,1.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,0.0,0.0,2.0,,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,,0.0,0.0,0.0,1 +1.0,0.0,0.0,,2.0,,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,,1.0,2.0,1.0,1 +,0.0,0.0,2.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,,0.0,,0.0,0.0,0.0,0.0,1 +1.0,0.0,,0.0,1.0,0.0,1.0,,0.0,,,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1 +0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,1 +0.0,1.0,1.0,,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,,1.0,0.0,0.0,1 +1.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,1.0,2.0,0.0,,1.0,0.0,0.0,1.0,1.0,1 +0.0,0.0,0.0,2.0,2.0,1.0,0.0,1.0,0.0,,1.0,1.0,2.0,0.0,2.0,0.0,0.0,,0.0,0.0,1 +0.0,0.0,0.0,0.0,,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,2.0,1 +1.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,,0.0,1.0,1.0,1 +1.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,2.0,0.0,1.0,1.0,1.0,1 +1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,,,1.0,0.0,2.0,0.0,1.0,2.0,,1.0,1 +0.0,0.0,0.0,0.0,0.0,,1.0,1.0,2.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,,2.0,2.0,1 +,0.0,1.0,0.0,2.0,0.0,1.0,,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,,1.0,1.0,1 +1.0,1.0,0.0,2.0,2.0,0.0,2.0,1.0,0.0,0.0,0.0,1.0,2.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,2.0,0.0,,0.0,0.0,,0.0,0.0,0.0,2.0,2.0,0.0,0.0,,0.0,0.0,0.0,0.0,1 +0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,2.0,,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1 +2.0,0.0,1.0,0.0,2.0,0.0,1.0,,,0.0,,2.0,2.0,0.0,1.0,0.0,0.0,2.0,1.0,1.0,1 +1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1 +0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,,1.0,1.0,1.0,,1.0,2.0,0.0,0.0,1 +1.0,1.0,,1.0,1.0,1.0,0.0,,0.0,0.0,0.0,0.0,1.0,,0.0,0.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,1.0,1.0,1.0,0.0,,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,1.0,0.0,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1 +1.0,0.0,2.0,2.0,0.0,0.0,2.0,0.0,0.0,,1.0,2.0,2.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1 +1.0,0.0,,1.0,2.0,0.0,1.0,0.0,0.0,0.0,1.0,,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1 +0.0,0.0,1.0,,1.0,0.0,2.0,0.0,0.0,1.0,1.0,1.0,,,,0.0,1.0,0.0,0.0,0.0,1 +0.0,0.0,0.0,2.0,0.0,0.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,,0.0,0.0,1.0,1.0,1.0,1.0,1 +2.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,,0.0,1.0,2.0,0.0,1.0,,0.0,0.0,0.0,0.0,1 +0.0,0.0,0.0,0.0,0.0,1.0,,1.0,0.0,0.0,0.0,1.0,0.0,2.0,1.0,,0.0,1.0,1.0,1.0,1 +1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,2.0,1.0,0.0,0.0,2.0,1.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1 +,0.0,0.0,0.0,2.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1 +0.0,,1.0,1.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,,2.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1 +1.0,0.0,,0.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1 +2.0,0.0,,1.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,2.0,1.0,,1.0,0.0,1.0,0.0,1.0,1.0,1 +0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,2.0,1.0,2.0,,,1.0,1 +1.0,0.0,,0.0,2.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,2.0,1.0,,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,1.0,1.0,2.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1 +,,1.0,,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,,1.0,0.0,1.0,1.0,,1 +2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,,0.0,1.0,1.0,1.0,1 +0.0,0.0,0.0,0.0,1.0,,0.0,0.0,,0.0,1.0,2.0,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1 +1.0,0.0,,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,,0.0,0.0,,1 +1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,,1.0,1.0,1 +0.0,0.0,0.0,1.0,1.0,,1.0,0.0,0.0,0.0,1.0,,,0.0,0.0,0.0,0.0,,0.0,2.0,1 +1.0,0.0,0.0,0.0,1.0,,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,2.0,0.0,1.0,2.0,1.0,1 +0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1 +1.0,0.0,,,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1 +0.0,0.0,0.0,2.0,1.0,0.0,0.0,1.0,1.0,1.0,,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,,1 +1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,2.0,2.0,1.0,0.0,0.0,0.0,,0.0,0.0,0.0,1 +,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,,,1.0,,0.0,1.0,1.0,0.0,1.0,1.0,1 +0.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1 +1.0,0.0,,0.0,1.0,0.0,2.0,0.0,0.0,0.0,,1.0,1.0,0.0,0.0,1.0,1.0,,2.0,1.0,1 +1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,2.0,0.0,0.0,1.0,1.0,1.0,1 +2.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1 +2.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,,0.0,1 +0.0,0.0,0.0,0.0,1.0,0.0,,0.0,0.0,0.0,1.0,0.0,1.0,1.0,,0.0,0.0,0.0,2.0,1.0,1 +1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,,2.0,0.0,1.0,1.0,2.0,0.0,0.0,1.0,0.0,0.0,1 +0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,,1.0,2.0,,0.0,1.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,,0.0,0.0,1 +0.0,,0.0,1.0,1.0,0.0,1.0,0.0,0.0,,,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,,0.0,0.0,1 +0.0,0.0,1.0,2.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,1.0,,1.0,0.0,,2.0,1.0,1.0,1.0,1 +1.0,0.0,2.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,,1.0,1.0,1 +2.0,0.0,0.0,,0.0,0.0,1.0,2.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,2.0,0.0,1.0,1.0,1 +1.0,0.0,1.0,0.0,1.0,0.0,,1.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,1.0,1.0,1.0,1.0,1.0,1 +,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,,0.0,1.0,1.0,1.0,1.0,1 +1.0,,0.0,1.0,1.0,1.0,,0.0,0.0,0.0,0.0,0.0,,0.0,,1.0,1.0,,,0.0,1 +1.0,0.0,0.0,0.0,1.0,1.0,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,1 +1.0,0.0,,1.0,2.0,,1.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,2.0,,0.0,0.0,1 +0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1 +0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,1.0,0.0,2.0,0.0,0.0,,0.0,0.0,1 +1.0,,1.0,1.0,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1 +2.0,0.0,0.0,0.0,1.0,,,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,,1 +0.0,0.0,,0.0,2.0,0.0,,0.0,0.0,1.0,0.0,0.0,1.0,0.0,,1.0,2.0,1.0,0.0,,1 +1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,2.0,1.0,0.0,0.0,0.0,0.0,1 +2.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,,,0.0,1.0,0.0,0.0,2.0,1 +1.0,0.0,1.0,0.0,2.0,2.0,0.0,1.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,,1 +,0.0,0.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,1 +0.0,0.0,0.0,,,0.0,1.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,0.0,2.0,1.0,1.0,0.0,0.0,1 +1.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,,0.0,1.0,1.0,0.0,0.0,1 +1.0,1.0,0.0,0.0,2.0,1.0,1.0,1.0,1.0,0.0,0.0,,1.0,,1.0,0.0,0.0,,0.0,0.0,1 +0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,2.0,0.0,0.0,1 +0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,,0.0,,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1 +1.0,0.0,,1.0,0.0,2.0,1.0,,0.0,0.0,,0.0,1.0,0.0,0.0,,0.0,1.0,0.0,0.0,1 +2.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,,0.0,0.0,1 +1.0,0.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,,0.0,1.0,0.0,0.0,1 +0.0,,0.0,0.0,1.0,0.0,,0.0,0.0,0.0,0.0,,1.0,,1.0,1.0,0.0,0.0,,1.0,1 +1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,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,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1 +2.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1 +0.0,0.0,0.0,0.0,1.0,,0.0,1.0,0.0,,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1 +1.0,,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1 +0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,,1 +1.0,0.0,1.0,0.0,1.0,0.0,,1.0,,,0.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,1.0,1.0,1 +1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,,0.0,2.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1 +0.0,,0.0,0.0,0.0,0.0,0.0,0.0,,1.0,,,2.0,,0.0,1.0,2.0,1.0,1.0,1.0,1 +1.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,2.0,,,0.0,0.0,1 +2.0,0.0,0.0,1.0,0.0,0.0,,0.0,1.0,,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1 +1.0,0.0,0.0,0.0,1.0,0.0,2.0,1.0,0.0,0.0,,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1 +2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,,0.0,1.0,1.0,0.0,1.0,1.0,0.0,,,0.0,1 +2.0,1.0,0.0,1.0,1.0,0.0,1.0,,,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,,1 +1.0,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,,0.0,1.0,2.0,0.0,,0.0,1.0,1.0,0.0,0.0,1 +0.0,0.0,1.0,1.0,,0.0,2.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,,0.0,0.0,0.0,1.0,1.0,1 +1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,,1.0,0.0,1.0,2.0,2.0,0.0,0.0,0.0,0.0,1 +0.0,0.0,1.0,1.0,2.0,1.0,1.0,,0.0,0.0,1.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,1 +2.0,0.0,0.0,0.0,1.0,0.0,,0.0,,0.0,0.0,1.0,1.0,0.0,,0.0,,1.0,1.0,1.0,1 +,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,1.0,2.0,0.0,0.0,1.0,,0.0,0.0,1 +0.0,0.0,2.0,,,0.0,,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1 +0.0,0.0,0.0,0.0,,,1.0,0.0,1.0,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,1.0,,1.0,1 +0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,,0.0,0.0,0.0,1.0,1.0,2.0,0.0,,0.0,1.0,2.0,1 +1.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,,,1.0,0.0,0.0,0.0,,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,,0.0,1 +1.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,,0.0,1.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1 +0.0,0.0,1.0,1.0,1.0,,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,,1.0,0.0,0.0,1.0,1.0,1 +,0.0,2.0,0.0,0.0,0.0,1.0,,1.0,1.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1 +0.0,0.0,,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1 +1.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,,0.0,,,1.0,0.0,1.0,0.0,1.0,1.0,1 +0.0,,1.0,1.0,,0.0,2.0,0.0,0.0,0.0,1.0,,2.0,0.0,,1.0,0.0,0.0,2.0,1.0,1 +0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,,1.0,0.0,1.0,1.0,0.0,2.0,0.0,0.0,1.0,1.0,1.0,1 +2.0,0.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,2.0,1.0,0.0,1.0,1.0,1.0,1 +1.0,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1 +1.0,0.0,0.0,,2.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1 +0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,,0.0,1 +1.0,0.0,0.0,,1.0,0.0,2.0,1.0,0.0,0.0,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,1 +,0.0,0.0,,1.0,,0.0,0.0,0.0,1.0,,,1.0,0.0,0.0,1.0,1.0,0.0,,1.0,1 +0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1 +0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,,0.0,,1 +1.0,1.0,,1.0,1.0,1.0,1.0,,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1 +,0.0,0.0,,0.0,0.0,1.0,0.0,0.0,,0.0,1.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,2.0,0.0,2.0,1.0,,1.0,0.0,1.0,0.0,,0.0,0.0,1.0,1.0,1.0,1.0,1 +1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1 +0.0,1.0,2.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1 +1.0,0.0,0.0,0.0,,0.0,2.0,0.0,0.0,0.0,0.0,,1.0,1.0,0.0,0.0,0.0,1.0,1.0,,1 +0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,,2.0,1.0,1 +1.0,1.0,0.0,1.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,,0.0,1.0,,1 +1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,,0.0,0.0,1.0,,,1.0,1.0,1.0,0.0,1.0,2.0,1 +0.0,0.0,,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,,1.0,1 +1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,,0.0,1.0,0.0,,1.0,0.0,0.0,0.0,1 +0.0,0.0,,1.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,,0.0,1 +1.0,0.0,0.0,2.0,2.0,0.0,1.0,0.0,,0.0,0.0,0.0,1.0,0.0,0.0,0.0,,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,0.0,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,,0.0,0.0,1 +2.0,0.0,,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,,0.0,2.0,0.0,1.0,,1.0,1.0,1 +0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,,1.0,2.0,1.0,1.0,1.0,0.0,2.0,1.0,1 +1.0,0.0,0.0,0.0,0.0,,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,,,1 +0.0,,1.0,1.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,1.0,1.0,0.0,,0.0,1.0,1.0,,1 +0.0,0.0,,0.0,0.0,1.0,2.0,0.0,0.0,0.0,,1.0,2.0,1.0,0.0,0.0,1.0,,0.0,0.0,1 +0.0,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,2.0,0.0,0.0,0.0,1 +0.0,0.0,0.0,0.0,1.0,1.0,2.0,1.0,0.0,1.0,,1.0,0.0,0.0,1.0,0.0,,0.0,0.0,0.0,1 +0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,,0.0,0.0,0.0,,1.0,1.0,1.0,1.0,,0.0,0.0,1 +1.0,0.0,0.0,2.0,1.0,2.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1 +2.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1 +0.0,0.0,0.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,,1.0,,1.0,1.0,0.0,0.0,1.0,1.0,1 +1.0,0.0,1.0,,1.0,1.0,,0.0,0.0,0.0,,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1 +2.0,0.0,0.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1 +1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,,0.0,0.0,1 +0.0,0.0,,1.0,0.0,0.0,1.0,1.0,,0.0,0.0,,2.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1 +0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,1.0,,0.0,1.0,0.0,2.0,,1.0,1.0,1.0,1.0,1 +1.0,0.0,0.0,1.0,,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1 +1.0,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1 +0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,2.0,0.0,,,1 +0.0,0.0,,,1.0,0.0,1.0,0.0,,0.0,0.0,1.0,1.0,1.0,,1.0,0.0,2.0,0.0,0.0,1 +0.0,0.0,1.0,1.0,0.0,,2.0,0.0,,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1 +0.0,1.0,1.0,0.0,1.0,,1.0,,2.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,2.0,1 +0.0,0.0,2.0,0.0,0.0,0.0,0.0,,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,,1 +0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,,0.0,1.0,,0.0,0.0,1 +,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,,1.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1 +,,1.0,1.0,1.0,,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1 +0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,,2.0,1.0,1.0,,,1.0,1.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,,1.0,0.0,1.0,2.0,0.0,1.0,1.0,,1 +0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,,0.0,2.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1 +,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,1.0,,2.0,1.0,1 +0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,,0.0,1.0,,0.0,0.0,0.0,0.0,1 +1.0,0.0,,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,,1.0,1.0,,0.0,0.0,1 +1.0,0.0,,0.0,1.0,1.0,1.0,0.0,2.0,1.0,,1.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,,,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,,0.0,1.0,0.0,0.0,0.0,1 +0.0,0.0,1.0,1.0,2.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1 +2.0,0.0,1.0,0.0,1.0,0.0,,0.0,0.0,1.0,1.0,,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1 +0.0,0.0,0.0,0.0,1.0,0.0,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,1 +,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,,1.0,0.0,2.0,0.0,1 +0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,,2.0,1.0,0.0,1.0,2.0,,,0.0,0.0,1 +0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,,0.0,0.0,1 +1.0,0.0,,0.0,0.0,0.0,2.0,,0.0,0.0,0.0,2.0,1.0,1.0,1.0,0.0,,0.0,1.0,,1 +,0.0,1.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1 +1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,,1.0,0.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,,,1.0,0.0,0.0,0.0,0.0,,0.0,0.0,1.0,0.0,0.0,,0.0,0.0,0.0,1 +1.0,0.0,0.0,,0.0,0.0,1.0,0.0,1.0,,1.0,0.0,1.0,,1.0,1.0,1.0,0.0,1.0,2.0,1 +1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1 +0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,1.0,,0.0,1.0,0.0,1.0,1.0,2.0,0.0,0.0,0.0,1 +0.0,0.0,1.0,0.0,1.0,0.0,2.0,0.0,1.0,1.0,0.0,1.0,,0.0,0.0,0.0,0.0,0.0,,1.0,1 +0.0,0.0,1.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1 +0.0,0.0,1.0,0.0,0.0,0.0,2.0,,1.0,0.0,0.0,1.0,1.0,0.0,2.0,1.0,1.0,0.0,1.0,1.0,1 +1.0,0.0,1.0,1.0,0.0,0.0,1.0,,1.0,0.0,0.0,1.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1 +0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,2.0,1.0,0.0,,1.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,,1.0,,,0.0,1.0,1.0,1.0,1.0,0.0,1.0,2.0,1.0,1.0,0.0,0.0,1 +1.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,1.0,0.0,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,,1 +1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,1.0,2.0,0.0,1 +0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,,1 +1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,,0.0,0.0,0.0,1.0,,1.0,0.0,1.0,1.0,1.0,1.0,1 +1.0,0.0,,,0.0,1.0,2.0,0.0,0.0,1.0,0.0,2.0,0.0,1.0,1.0,,0.0,1.0,0.0,0.0,1 +0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,,0.0,,2.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1 +1.0,0.0,1.0,0.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,1.0,1 +0.0,0.0,1.0,,1.0,1.0,2.0,,0.0,0.0,0.0,,2.0,0.0,1.0,2.0,,1.0,0.0,0.0,1 +2.0,0.0,0.0,1.0,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,,0.0,1.0,0.0,,1 +2.0,0.0,1.0,1.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,,1.0,1.0,0.0,1.0,1.0,1.0,1 +,,0.0,0.0,1.0,0.0,1.0,0.0,,0.0,0.0,1.0,2.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1 +0.0,0.0,0.0,0.0,1.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,,0.0,1.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1 +1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,2.0,0.0,2.0,0.0,0.0,1.0,,1.0,1 +0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1 +1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,,0.0,1.0,2.0,0.0,1.0,1.0,,,2.0,0.0,1 +0.0,1.0,2.0,0.0,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,,1.0,0.0,1.0,0.0,0.0,0.0,1 +1.0,0.0,,1.0,2.0,0.0,2.0,0.0,1.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1 +0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1 +0.0,0.0,0.0,0.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,1.0,2.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1 +1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,,1.0,0.0,1.0,,2.0,0.0,0.0,1.0,1.0,1.0,1 +1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,1.0,0.0,0.0,,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,1.0,,0.0,0.0,0.0,,0.0,0.0,1.0,1.0,1.0,1.0,2.0,0.0,1.0,1.0,1 +2.0,0.0,1.0,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1 +2.0,1.0,0.0,0.0,0.0,2.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,,0.0,0.0,,1 +1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1 +0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,1.0,1 +0.0,0.0,0.0,1.0,1.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,1.0,1.0,1 +1.0,0.0,0.0,1.0,1.0,,2.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,0.0,1.0,,1.0,0.0,0.0,1 +,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,,1 +0.0,0.0,1.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,,1.0,2.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1 +1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1 +0.0,0.0,,0.0,2.0,0.0,,0.0,,,0.0,0.0,2.0,1.0,0.0,2.0,1.0,1.0,1.0,1.0,1 +1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,,1.0,0.0,0.0,1.0,1.0,1.0,1 +0.0,0.0,0.0,1.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,1.0,,2.0,0.0,1.0,0.0,0.0,0.0,0.0,,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1 +0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,,2.0,,1.0,1.0,1.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,,1.0,1.0,,2.0,0.0,1 +1.0,0.0,1.0,1.0,1.0,2.0,0.0,0.0,1.0,0.0,0.0,,,0.0,1.0,2.0,0.0,0.0,1.0,1.0,1 +0.0,0.0,0.0,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1 +,0.0,0.0,,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,2.0,,2.0,0.0,0.0,0.0,,1.0,1 +0.0,0.0,1.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,0.0,1.0,1.0,,2.0,0.0,0.0,1.0,2.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1 +0.0,0.0,0.0,,2.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1 +,0.0,2.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,2.0,1.0,0.0,2.0,0.0,1.0,0.0,1.0,1.0,1 +0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,,0.0,2.0,,1.0,1.0,1.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1 +0.0,,0.0,0.0,1.0,0.0,1.0,0.0,,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1 +0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1 +,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,2.0,1.0,1 +,0.0,0.0,0.0,1.0,0.0,1.0,,,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1 +,0.0,0.0,0.0,2.0,,1.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,,0.0,1.0,0.0,1.0,,1 +1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,,1.0,1.0,1 +0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,,0.0,2.0,1.0,,0.0,0.0,1.0,0.0,,0.0,1 +1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,,2.0,,0.0,0.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,1.0,1.0,0.0,2.0,0.0,2.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,2.0,1.0,1 +1.0,0.0,1.0,0.0,1.0,0.0,1.0,,0.0,,1.0,2.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1 +1.0,,1.0,2.0,2.0,0.0,,0.0,0.0,0.0,0.0,2.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1 +2.0,,0.0,0.0,2.0,0.0,1.0,,0.0,0.0,0.0,2.0,1.0,1.0,1.0,1.0,1.0,,0.0,0.0,1 +,0.0,,1.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,,0.0,1.0,1.0,1 +0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1 +1.0,0.0,,1.0,1.0,,2.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1 +2.0,0.0,0.0,0.0,1.0,0.0,0.0,,0.0,1.0,1.0,2.0,1.0,0.0,2.0,1.0,,,0.0,0.0,1 +1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1 +0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,2.0,1.0,1 +1.0,0.0,1.0,0.0,,1.0,,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1 +0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1 +0.0,0.0,0.0,1.0,0.0,,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,2.0,0.0,2.0,0.0,1.0,1.0,1 +0.0,0.0,0.0,0.0,2.0,,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,1 +2.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1 +1.0,,,0.0,0.0,,1.0,,0.0,2.0,0.0,0.0,1.0,0.0,1.0,0.0,,0.0,0.0,0.0,1 +0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,,1.0,2.0,2.0,1.0,2.0,0.0,,0.0,,0.0,1 +2.0,0.0,1.0,2.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,,0.0,0.0,1.0,1.0,1 +2.0,0.0,0.0,0.0,,0.0,2.0,1.0,1.0,0.0,1.0,1.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1 +0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,2.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,2.0,1 +2.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,,0.0,0.0,,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1 +1.0,0.0,1.0,2.0,,0.0,1.0,0.0,0.0,,0.0,1.0,2.0,0.0,1.0,0.0,1.0,0.0,,1.0,1 +1.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,,1.0,1.0,0.0,0.0,1 +0.0,0.0,0.0,1.0,,1.0,2.0,0.0,0.0,0.0,0.0,1.0,,0.0,1.0,0.0,0.0,0.0,1.0,,1 +0.0,0.0,,1.0,1.0,0.0,1.0,0.0,,0.0,0.0,,1.0,0.0,,,1.0,,1.0,1.0,1 +1.0,,0.0,2.0,0.0,1.0,2.0,1.0,0.0,1.0,,2.0,0.0,0.0,1.0,1.0,0.0,0.0,,0.0,1 +1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,,,0.0,0.0,2.0,0.0,0.0,1.0,2.0,1.0,1.0,1.0,1 +0.0,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1 +0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,1.0,0.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,,0.0,,0.0,1 +1.0,0.0,1.0,1.0,2.0,,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,,1.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,1.0,1.0,0.0,,,0.0,1.0,1.0,1.0,0.0,1.0,1.0,,0.0,0.0,0.0,0.0,1 +0.0,0.0,1.0,,2.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,2.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1 +0.0,,0.0,0.0,1.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,2.0,1.0,1.0,1.0,1.0,1 +1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,,0.0,1.0,0.0,1.0,1.0,1 +0.0,0.0,,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,0.0,,0.0,0.0,2.0,1.0,1 +0.0,0.0,0.0,0.0,1.0,0.0,2.0,,0.0,1.0,0.0,1.0,,0.0,,0.0,,0.0,1.0,1.0,1 +0.0,0.0,1.0,,0.0,0.0,1.0,0.0,,0.0,0.0,1.0,1.0,0.0,0.0,0.0,,0.0,,0.0,1 +1.0,0.0,1.0,1.0,0.0,0.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,1.0,0.0,0.0,1.0,,0.0,0.0,0.0,1.0,,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,,1.0,0.0,0.0,0.0,0.0,0.0,1.0,,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1 +1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,1 +0.0,1.0,0.0,0.0,,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1 +2.0,0.0,,0.0,1.0,1.0,2.0,,0.0,,0.0,1.0,0.0,0.0,,1.0,1.0,0.0,1.0,1.0,1 +0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,,1.0,1.0,1.0,1.0,2.0,0.0,1.0,1.0,1 +1.0,0.0,1.0,0.0,,0.0,,0.0,0.0,,0.0,0.0,1.0,1.0,2.0,0.0,,0.0,1.0,1.0,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,2.0,0.0,0.0,0.0,0.0,,0.0,0.0,1 +1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,2.0,1.0,2.0,1.0,1 +1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,,0.0,1.0,1.0,,0.0,,1.0,0.0,1.0,1.0,1.0,1 +0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,,2.0,1.0,1.0,2.0,0.0,1.0,1.0,1.0,1 +,,0.0,0.0,0.0,0.0,1.0,1.0,,0.0,1.0,2.0,,,1.0,0.0,1.0,0.0,1.0,2.0,1 +0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,,2.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1 +0.0,1.0,0.0,0.0,2.0,0.0,1.0,,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,,0.0,0.0,0.0,1 +1.0,0.0,,0.0,0.0,,1.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1 +0.0,0.0,,1.0,1.0,0.0,1.0,,0.0,0.0,0.0,0.0,2.0,0.0,,0.0,0.0,0.0,1.0,1.0,1 +0.0,,0.0,,0.0,0.0,0.0,0.0,,0.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,1.0,1 +0.0,0.0,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,,0.0,2.0,2.0,1.0,1.0,1.0,1.0,1 +1.0,0.0,2.0,0.0,0.0,,1.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,,1 +1.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1 +0.0,,1.0,0.0,0.0,0.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1 +1.0,,0.0,0.0,,0.0,0.0,0.0,1.0,0.0,2.0,1.0,2.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1 +2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,,0.0,1.0,,0.0,,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,2.0,1.0,1 +0.0,0.0,0.0,1.0,1.0,,1.0,,0.0,0.0,,0.0,2.0,0.0,1.0,1.0,,0.0,0.0,0.0,1 +2.0,0.0,0.0,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,,0.0,0.0,0.0,1 +,0.0,0.0,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,,0.0,1.0,,0.0,1.0,1.0,1.0,1 +1.0,0.0,0.0,0.0,0.0,0.0,1.0,,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,,1 +0.0,0.0,,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1 +1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,,,0.0,1.0,,0.0,1.0,1.0,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,2.0,1.0,0.0,0.0,0.0,0.0,1 +0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,2.0,1.0,1.0,0.0,,0.0,0.0,0.0,,0.0,0.0,1 +,0.0,,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1 +1.0,0.0,0.0,2.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,1.0,0.0,0.0,1.0,0.0,,1 +0.0,0.0,1.0,1.0,1.0,0.0,2.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1 +0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1 +0.0,1.0,0.0,1.0,,,2.0,,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,,0.0,1.0,,0.0,2.0,1.0,1 +1.0,0.0,1.0,0.0,0.0,0.0,,0.0,0.0,1.0,0.0,,,0.0,2.0,0.0,1.0,0.0,0.0,0.0,1 +2.0,0.0,0.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,,0.0,1.0,1.0,1 +1.0,0.0,0.0,1.0,0.0,0.0,2.0,,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,,0.0,0.0,1 +0.0,0.0,1.0,0.0,,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1 +0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,2.0,1.0,1.0,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,1 +1.0,,0.0,0.0,1.0,,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1 +1.0,0.0,1.0,1.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,,,1.0,0.0,0.0,0.0,1 +0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1 +0.0,0.0,0.0,0.0,1.0,1.0,,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,,0.0,0.0,0.0,0.0,1 +1.0,,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,2.0,1.0,0.0,2.0,,1.0,1.0,1.0,1 +2.0,0.0,0.0,0.0,1.0,0.0,2.0,,0.0,0.0,0.0,1.0,2.0,,1.0,0.0,2.0,1.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,,2.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,2.0,1.0,0.0,0.0,1.0,1.0,,1.0,1.0,1 +0.0,0.0,,0.0,1.0,0.0,0.0,,0.0,0.0,0.0,1.0,2.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1 +,0.0,0.0,0.0,2.0,0.0,,0.0,1.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1 +0.0,,,1.0,0.0,0.0,2.0,1.0,0.0,,1.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,1 +1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,,1.0,0.0,,1.0,2.0,,0.0,0.0,1 +0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,,0.0,1.0,2.0,1.0,,1.0,2.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,1.0,2.0,0.0,2.0,1.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,1.0,,,0.0,,1 +0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,,0.0,,1.0,0.0,,1.0,1.0,0.0,1.0,1.0,1.0,1 +1.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,1 +0.0,0.0,0.0,0.0,,0.0,2.0,0.0,0.0,1.0,,0.0,0.0,1.0,,1.0,,0.0,1.0,1.0,1 +0.0,0.0,0.0,,2.0,0.0,1.0,1.0,0.0,,1.0,,,0.0,2.0,0.0,1.0,2.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,1.0,,0.0,0.0,0.0,1.0,0.0,,1.0,0.0,0.0,0.0,2.0,1.0,0.0,0.0,1 +0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,,0.0,0.0,0.0,1.0,,0.0,1.0,1.0,1.0,0.0,0.0,1 +0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,,0.0,1.0,1.0,0.0,,,2.0,1.0,1.0,1 +1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,,1.0,0.0,1.0,2.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,,0.0,0.0,0.0,1.0,0.0,0.0,1 +1.0,,0.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,,1.0,2.0,0.0,1.0,0.0,1.0,0.0,,0.0,1 +0.0,0.0,0.0,0.0,0.0,0.0,1.0,,0.0,,0.0,,1.0,1.0,0.0,0.0,2.0,1.0,,0.0,1 +1.0,0.0,1.0,1.0,2.0,0.0,1.0,0.0,,0.0,0.0,,0.0,0.0,1.0,1.0,1.0,0.0,1.0,,1 +1.0,,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,,0.0,1.0,1.0,1.0,0.0,0.0,1 +0.0,0.0,0.0,1.0,1.0,0.0,0.0,,0.0,0.0,0.0,1.0,0.0,1.0,0.0,,0.0,0.0,0.0,0.0,1 +2.0,0.0,0.0,1.0,,1.0,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1 +,0.0,1.0,0.0,,0.0,2.0,1.0,0.0,1.0,2.0,0.0,2.0,1.0,0.0,0.0,,1.0,1.0,1.0,1 +0.0,0.0,,0.0,1.0,0.0,1.0,1.0,,1.0,,0.0,,0.0,1.0,,1.0,0.0,0.0,0.0,1 +1.0,,0.0,,2.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,,1.0,1.0,0.0,1.0,0.0,0.0,1 +0.0,,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,1.0,1.0,2.0,1.0,0.0,0.0,1.0,,0.0,1 +0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,,0.0,1 +1.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,,0.0,1.0,0.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1 +0.0,0.0,0.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1 +0.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,2.0,1.0,0.0,0.0,0.0,1 +,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1 +0.0,0.0,1.0,,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,2.0,0.0,,0.0,0.0,0.0,1 +,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1 +2.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1 +1.0,0.0,,1.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,,,0.0,2.0,0.0,0.0,0.0,1.0,1.0,2.0,0.0,0.0,,0.0,1.0,1.0,1.0,1 +1.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,,,0.0,1.0,0.0,2.0,1.0,0.0,1.0,1.0,1.0,1 +2.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,,1.0,1 +1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1 +1.0,0.0,1.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,2.0,1.0,1.0,1.0,1.0,1.0,1.0,,0.0,1 +1.0,0.0,1.0,2.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,2.0,0.0,0.0,0.0,,0.0,0.0,1 +0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,0.0,0.0,,0.0,,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1 +2.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,,0.0,1.0,2.0,,0.0,2.0,1.0,0.0,1.0,1.0,1 +1.0,0.0,0.0,0.0,0.0,,0.0,1.0,0.0,0.0,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,1.0,0.0,2.0,0.0,1.0,0.0,,0.0,,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1 +0.0,0.0,0.0,,2.0,0.0,1.0,,0.0,0.0,1.0,2.0,1.0,1.0,1.0,1.0,,,0.0,0.0,1 +1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,,0.0,1 +1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,2.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1 +1.0,0.0,,0.0,2.0,0.0,,0.0,0.0,,0.0,0.0,2.0,0.0,1.0,0.0,0.0,,0.0,0.0,1 +1.0,0.0,0.0,0.0,1.0,0.0,1.0,,0.0,,0.0,2.0,2.0,1.0,0.0,1.0,0.0,1.0,1.0,2.0,1 +,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1 +,1.0,2.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,,0.0,1.0,1.0,1.0,1.0,,1.0,0.0,0.0,1 +0.0,0.0,0.0,1.0,1.0,0.0,2.0,,0.0,0.0,1.0,,2.0,0.0,,1.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1 +,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,,,,0.0,,1 +,0.0,0.0,0.0,1.0,0.0,,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,,1 +1.0,0.0,0.0,0.0,1.0,0.0,,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,,1 +1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,2.0,,0.0,0.0,1.0,1.0,1 +1.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1 +2.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1 +2.0,0.0,0.0,1.0,0.0,0.0,,0.0,,0.0,0.0,2.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1 +0.0,0.0,,1.0,1.0,1.0,1.0,,,0.0,0.0,1.0,,0.0,2.0,2.0,,0.0,0.0,,1 +1.0,0.0,0.0,1.0,1.0,,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,,1.0,0.0,1.0,1.0,1 +0.0,,0.0,0.0,1.0,0.0,2.0,0.0,0.0,,0.0,1.0,1.0,1.0,0.0,,1.0,1.0,0.0,0.0,1 +1.0,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,1 +2.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,1 +1.0,0.0,0.0,0.0,2.0,,,,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,2.0,,1.0,0.0,1.0,,0.0,1 +,0.0,0.0,0.0,0.0,0.0,1.0,0.0,,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,,1.0,1 +1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,,0.0,,1 +1.0,0.0,,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1 +2.0,0.0,0.0,,1.0,,2.0,0.0,0.0,,,2.0,1.0,0.0,1.0,1.0,0.0,1.0,2.0,1.0,1 +0.0,0.0,0.0,,1.0,0.0,1.0,0.0,,1.0,0.0,1.0,2.0,2.0,0.0,1.0,1.0,1.0,,1.0,1 +1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,,0.0,1.0,1.0,1.0,,1.0,1 +1.0,1.0,0.0,0.0,1.0,0.0,,0.0,1.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,1.0,,0.0,0.0,1 +0.0,,0.0,1.0,1.0,0.0,0.0,0.0,,1.0,0.0,1.0,0.0,,1.0,1.0,2.0,0.0,0.0,0.0,1 +0.0,0.0,1.0,0.0,1.0,0.0,0.0,,0.0,,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1 +0.0,1.0,0.0,0.0,1.0,0.0,2.0,0.0,1.0,0.0,0.0,1.0,,0.0,2.0,0.0,1.0,0.0,1.0,1.0,1 +0.0,0.0,1.0,0.0,1.0,,1.0,0.0,1.0,0.0,0.0,1.0,,0.0,0.0,1.0,0.0,1.0,1.0,,1 +1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,,0.0,0.0,2.0,0.0,1.0,2.0,,1.0,0.0,0.0,1 +1.0,0.0,2.0,1.0,1.0,,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,2.0,0.0,0.0,1 +1.0,0.0,0.0,,0.0,0.0,2.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1 +2.0,0.0,,0.0,1.0,0.0,0.0,,0.0,0.0,0.0,1.0,1.0,0.0,2.0,,1.0,0.0,0.0,0.0,1 +1.0,0.0,1.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,,0.0,1 +1.0,0.0,0.0,1.0,0.0,,1.0,0.0,1.0,0.0,1.0,2.0,0.0,0.0,2.0,,2.0,1.0,0.0,0.0,1 +1.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,2.0,1.0,,1.0,1.0,0.0,0.0,1.0,1.0,1 +1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,1 +2.0,0.0,1.0,0.0,1.0,,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1 +1.0,,0.0,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,1.0,1.0,,0.0,1.0,0.0,0.0,0.0,1 +1.0,0.0,1.0,1.0,2.0,0.0,1.0,,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2.0,2.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,1.0,0.0,,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,1.0,,,1.0,1.0,1 +0.0,0.0,0.0,,0.0,2.0,,1.0,0.0,0.0,1.0,1.0,,0.0,1.0,1.0,0.0,0.0,2.0,1.0,1 +1.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,2.0,1.0,0.0,0.0,1 +,0.0,,1.0,1.0,,2.0,0.0,1.0,0.0,,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1 +,0.0,,0.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,2.0,,0.0,0.0,0.0,1 +0.0,0.0,,,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,,2.0,1.0,,1.0,1.0,0.0,0.0,0.0,0.0,1 +0.0,0.0,0.0,1.0,1.0,0.0,0.0,,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,2.0,1.0,2.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1 +1.0,0.0,0.0,2.0,0.0,0.0,,0.0,0.0,1.0,0.0,2.0,,0.0,1.0,0.0,,0.0,,0.0,1 +0.0,0.0,0.0,0.0,0.0,0.0,1.0,,0.0,0.0,1.0,0.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,,0.0,1.0,,0.0,1.0,2.0,0.0,0.0,1 +0.0,0.0,0.0,1.0,,0.0,1.0,0.0,,0.0,0.0,1.0,,0.0,0.0,2.0,0.0,1.0,0.0,0.0,1 +2.0,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,1.0,2.0,0.0,,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,1.0,0.0,,1 +1.0,0.0,1.0,0.0,2.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,1 +0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,,1.0,,,0.0,0.0,1.0,,0.0,0.0,1 +,0.0,1.0,1.0,2.0,0.0,1.0,0.0,,1.0,0.0,1.0,2.0,0.0,,,1.0,0.0,,,1 +1.0,0.0,0.0,1.0,,0.0,0.0,,0.0,0.0,0.0,0.0,1.0,,0.0,0.0,0.0,1.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,1.0,0.0,1.0,,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1 +0.0,0.0,1.0,1.0,2.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,,1.0,1.0,,0.0,0.0,1 +1.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,1.0,,2.0,2.0,1.0,2.0,0.0,0.0,0.0,1.0,1.0,1 +1.0,0.0,0.0,2.0,2.0,,1.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1 +0.0,0.0,1.0,,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1 +0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1 +2.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,,0.0,2.0,0.0,1.0,0.0,,0.0,1.0,1.0,1 +0.0,,1.0,,1.0,2.0,1.0,0.0,0.0,,0.0,0.0,2.0,0.0,1.0,,1.0,1.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,,1.0,1 +0.0,,0.0,1.0,1.0,0.0,2.0,0.0,0.0,1.0,0.0,,2.0,1.0,1.0,0.0,0.0,2.0,0.0,,1 +1.0,0.0,1.0,2.0,1.0,1.0,,,0.0,,,1.0,0.0,0.0,2.0,1.0,,0.0,0.0,0.0,1 +0.0,0.0,1.0,1.0,0.0,1.0,0.0,,0.0,0.0,0.0,,1.0,0.0,0.0,1.0,,0.0,,0.0,1 +,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,1 +0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1 +1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,,0.0,0.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1 +2.0,,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,,1.0,0.0,1.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,1.0,2.0,1.0,1.0,1.0,0.0,0.0,,1.0,1.0,,0.0,1.0,0.0,0.0,0.0,0.0,1 +2.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,,1.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,,0.0,0.0,1 +1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,1 +2.0,0.0,,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,2.0,1.0,0.0,2.0,1.0,1.0,1 +2.0,1.0,0.0,2.0,0.0,,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1 +,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,2.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1 +1.0,,0.0,2.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,,0.0,0.0,1.0,0.0,0.0,2.0,1.0,1 +2.0,0.0,0.0,0.0,1.0,0.0,,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,1.0,1 +0.0,0.0,1.0,0.0,0.0,,2.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,,1.0,0.0,0.0,1.0,,1 +1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,,0.0,0.0,0.0,2.0,0.0,0.0,1.0,,0.0,0.0,0.0,1 +0.0,,0.0,0.0,,0.0,0.0,0.0,0.0,,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,2.0,1 +2.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,,0.0,1 +0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,1.0,0.0,1.0,0.0,1.0,,1 +1.0,0.0,1.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,,0.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,1.0,0.0,2.0,,0.0,0.0,,1.0,1.0,1.0,,,0.0,1.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,,,0.0,1.0,1.0,1.0,1 +0.0,0.0,0.0,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,,1.0,0.0,1.0,0.0,1.0,2.0,1 +1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,2.0,0.0,,,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,2.0,0.0,1.0,1.0,0.0,0.0,1 +0.0,,0.0,1.0,1.0,0.0,0.0,0.0,,0.0,0.0,,1.0,,0.0,1.0,1.0,1.0,,0.0,1 +1.0,,0.0,1.0,0.0,0.0,1.0,1.0,2.0,0.0,0.0,2.0,1.0,1.0,0.0,0.0,,0.0,1.0,1.0,1 +0.0,0.0,,,1.0,0.0,0.0,,0.0,0.0,1.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1 +,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,1 +1.0,0.0,1.0,2.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,,,1.0,1.0,0.0,1.0,0.0,0.0,1 +1.0,0.0,2.0,1.0,0.0,0.0,0.0,,0.0,0.0,,0.0,2.0,,1.0,1.0,,1.0,0.0,0.0,1 +1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,,0.0,0.0,0.0,1 +0.0,,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,,0.0,,1.0,0.0,0.0,1.0,1.0,1 +1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,2.0,0.0,,0.0,0.0,1 +1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1 +0.0,0.0,0.0,1.0,1.0,0.0,,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1 +2.0,0.0,1.0,0.0,1.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,,0.0,0.0,0.0,0.0,0.0,1 +0.0,0.0,0.0,1.0,0.0,0.0,2.0,1.0,1.0,0.0,,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1 +1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,2.0,1.0,2.0,1.0,1.0,1.0,1 +0.0,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,2.0,2.0,0.0,1.0,1.0,0.0,,0.0,1 +,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,,,0.0,1.0,1.0,1 +0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,,0.0,1.0,1.0,0.0,1.0,0.0,0.0,,1.0,2.0,1 +1.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,,0.0,1.0,0.0,0.0,1 +,0.0,0.0,1.0,2.0,0.0,1.0,,0.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1 +0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1 +1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1 +0.0,0.0,1.0,,1.0,0.0,1.0,0.0,0.0,0.0,,2.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,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,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1 +1.0,,0.0,0.0,0.0,1.0,0.0,0.0,,0.0,0.0,0.0,2.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,1.0,,1.0,0.0,0.0,1.0,0.0,,1.0,0.0,,0.0,,1.0,,1.0,1 +1.0,0.0,1.0,0.0,2.0,,,0.0,0.0,2.0,0.0,,1.0,0.0,2.0,,1.0,0.0,1.0,1.0,1 +1.0,0.0,0.0,,2.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,2.0,0.0,1.0,1.0,,0.0,1.0,0.0,0.0,2.0,,1.0,0.0,1.0,1.0,0.0,0.0,1 +0.0,0.0,,0.0,1.0,,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1 +2.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,,1.0,0.0,0.0,2.0,0.0,0.0,1 +0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,,0.0,,0.0,0.0,0.0,1 +0.0,0.0,0.0,,,0.0,2.0,0.0,1.0,,0.0,1.0,2.0,1.0,2.0,1.0,1.0,1.0,1.0,2.0,1 +2.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,,0.0,0.0,1.0,1.0,1 +,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,,0.0,1.0,0.0,2.0,0.0,0.0,0.0,1 +0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,,0.0,0.0,1 +1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1 +0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,,0.0,1.0,,1.0,,,0.0,0.0,0.0,0.0,0.0,1 +0.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1 +2.0,0.0,1.0,,,,1.0,0.0,,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,2.0,0.0,1 +1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,,1.0,1.0,,1.0,0.0,0.0,1 +0.0,0.0,0.0,1.0,,1.0,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1 +1.0,0.0,0.0,1.0,0.0,0.0,1.0,,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1 +1.0,0.0,0.0,1.0,,2.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,,1.0,,0.0,1.0,1.0,1.0,1 +1.0,0.0,0.0,,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,1 +1.0,0.0,1.0,,1.0,2.0,,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,,1.0,1 +0.0,0.0,0.0,0.0,0.0,1.0,0.0,,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,1.0,,1.0,1 +1.0,0.0,0.0,0.0,0.0,0.0,0.0,,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1 +1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,0.0,1.0,1.0,0.0,1.0,,0.0,1 +1.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1 +0.0,0.0,,,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,,1.0,0.0,0.0,0.0,1.0,1.0,1 +1.0,0.0,2.0,,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,,0.0,2.0,0.0,1.0,1.0,1.0,1 +0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,,1.0,1 +0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,,1.0,1.0,0.0,1.0,0.0,0.0,1.0,,0.0,1 +1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1 +1.0,0.0,0.0,0.0,1.0,,,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1 +0.0,0.0,0.0,0.0,0.0,0.0,1.0,,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1 +0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,,0.0,,0.0,0.0,0.0,2.0,0.0,1.0,0.0,1.0,1.0,1 +,,0.0,,,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,,1.0,0.0,0.0,1.0,,1 +1.0,0.0,0.0,1.0,,0.0,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1 +1.0,0.0,0.0,,0.0,0.0,,0.0,0.0,,0.0,0.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1 +0.0,,0.0,1.0,2.0,,0.0,0.0,,,0.0,0.0,0.0,2.0,1.0,1.0,0.0,0.0,,1.0,1 +1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,,1.0,0.0,2.0,,0.0,1.0,0.0,1.0,1.0,,,1 +0.0,0.0,0.0,1.0,1.0,0.0,0.0,,0.0,0.0,0.0,,1.0,2.0,1.0,1.0,0.0,1.0,0.0,0.0,1 +2.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,,1 +1.0,,0.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,,2.0,0.0,0.0,1.0,0.0,2.0,1.0,0.0,,1 +,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,,2.0,0.0,,0.0,0.0,,1 +0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1 +1.0,0.0,0.0,2.0,2.0,0.0,1.0,0.0,0.0,0.0,,2.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1 +0.0,0.0,0.0,0.0,2.0,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1 +0.0,0.0,0.0,0.0,2.0,0.0,,1.0,,0.0,1.0,0.0,,0.0,0.0,0.0,2.0,,0.0,0.0,1 +2.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,1.0,,1.0,0.0,,0.0,0.0,2.0,0.0,,1.0,1 +2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,,,1.0,0.0,0.0,0.0,1.0,2.0,1 +0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,2.0,1 +1.0,0.0,0.0,,2.0,0.0,2.0,1.0,,1.0,0.0,0.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1 +0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,,1.0,0.0,1.0,0.0,0.0,0.0,,0.0,1 +1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,,2.0,1.0,0.0,1.0,1.0,1.0,1 +1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,,,0.0,2.0,1 +0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,2.0,,0.0,1 +0.0,0.0,0.0,0.0,1.0,0.0,,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,2.0,1.0,,1 +0.0,,0.0,0.0,0.0,1.0,2.0,1.0,1.0,0.0,1.0,1.0,2.0,0.0,1.0,0.0,,,,0.0,1 +1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,,,,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,0.0,,1.0,1.0,1.0,,0.0,,1.0,0.0,0.0,2.0,1.0,1.0,1.0,1.0,1 +1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,2.0,1.0,0.0,,1.0,1.0,1.0,,0.0,1 +0.0,,,1.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,,0.0,1.0,1.0,1.0,1 +0.0,,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,2.0,1.0,0.0,0.0,0.0,2.0,0.0,,0.0,1 +1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,,0.0,2.0,0.0,2.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,1.0,2.0,1.0,,0.0,0.0,1.0,0.0,,0.0,1.0,0.0,0.0,,1.0,1.0,1 +1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,,,1.0,,0.0,0.0,0.0,,0.0,0.0,,1 +0.0,0.0,0.0,0.0,0.0,,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,,0.0,1 +0.0,0.0,0.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,1.0,1.0,1.0,,0.0,,,0.0,1.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,1.0,1 +0.0,0.0,,1.0,1.0,0.0,1.0,2.0,0.0,0.0,0.0,1.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,1 +0.0,0.0,0.0,0.0,,,0.0,0.0,0.0,0.0,0.0,1.0,,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1 +1.0,0.0,0.0,0.0,2.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1 +1.0,0.0,,0.0,,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1 +0.0,0.0,0.0,0.0,2.0,0.0,,0.0,1.0,0.0,0.0,1.0,2.0,2.0,0.0,0.0,2.0,0.0,0.0,,1 +1.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,,2.0,0.0,0.0,,1 +1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,1.0,1.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,1 +1.0,0.0,,0.0,0.0,0.0,,1.0,1.0,0.0,0.0,2.0,2.0,0.0,0.0,1.0,2.0,0.0,1.0,2.0,1 +1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,,1.0,2.0,0.0,0.0,0.0,1.0,,0.0,0.0,1 +1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,,1.0,0.0,0.0,,0.0,,0.0,0.0,1 +1.0,0.0,1.0,0.0,1.0,1.0,0.0,,0.0,0.0,1.0,1.0,2.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1 +1.0,,0.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,,0.0,0.0,,1 +1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,,1.0,1.0,0.0,,0.0,0.0,1 +1.0,0.0,0.0,0.0,2.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,2.0,0.0,1.0,0.0,1.0,0.0,,0.0,1 +0.0,0.0,0.0,0.0,1.0,0.0,,,0.0,,0.0,1.0,0.0,,,,,1.0,0.0,,1 +2.0,,,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,,1.0,0.0,0.0,0.0,1 +0.0,0.0,0.0,0.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,,0.0,0.0,0.0,0.0,1 +1.0,0.0,1.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,,0.0,0.0,1.0,1.0,1 +0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,,0.0,0.0,1 +0.0,0.0,0.0,,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,,0.0,1.0,2.0,2.0,0.0,1.0,1.0,1 +2.0,0.0,0.0,1.0,1.0,,1.0,,2.0,1.0,0.0,1.0,2.0,0.0,1.0,0.0,1.0,0.0,,0.0,1 +1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,2.0,1.0,0.0,,,0.0,0.0,,0.0,1 +,0.0,1.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1 +1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,2.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,2.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1 +,0.0,,0.0,1.0,0.0,1.0,0.0,0.0,,0.0,1.0,1.0,1.0,1.0,,0.0,0.0,1.0,1.0,1 +1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,,0.0,,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1 +,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,1 +0.0,1.0,0.0,0.0,1.0,0.0,0.0,,,0.0,0.0,,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1 +,0.0,0.0,,1.0,0.0,2.0,0.0,0.0,2.0,1.0,1.0,,,0.0,0.0,1.0,1.0,1.0,1.0,1 +1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,2.0,2.0,0.0,0.0,1.0,1.0,1 +1.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,,0.0,0.0,1.0,2.0,0.0,0.0,0.0,1.0,1.0,,1.0,1 +1.0,0.0,0.0,0.0,,0.0,2.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,,1 +,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,,1.0,1.0,1.0,1 +,0.0,0.0,1.0,1.0,,2.0,0.0,0.0,0.0,1.0,0.0,2.0,1.0,,,1.0,0.0,0.0,0.0,1 +0.0,0.0,0.0,1.0,1.0,0.0,,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,1 +0.0,0.0,,1.0,,0.0,2.0,0.0,0.0,0.0,1.0,2.0,1.0,,0.0,0.0,1.0,0.0,0.0,0.0,1 +2.0,0.0,1.0,,1.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1 +2.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1 +0.0,0.0,0.0,,1.0,0.0,1.0,0.0,1.0,,0.0,0.0,1.0,1.0,2.0,0.0,1.0,0.0,2.0,1.0,1 +1.0,0.0,1.0,,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1 +1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,,0.0,1 +0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,2.0,1.0,1 +0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,1.0,0.0,1.0,,0.0,0.0,0.0,0.0,2.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,1 +0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1 +,0.0,1.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,,1.0,,1.0,0.0,1.0,,1 +,1.0,0.0,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,2.0,0.0,0.0,1 +2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,1 +0.0,0.0,0.0,1.0,1.0,0.0,1.0,,0.0,,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,,0.0,1.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,1 +0.0,0.0,1.0,1.0,,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,,0.0,1 +0.0,0.0,0.0,0.0,,0.0,0.0,,0.0,0.0,0.0,1.0,2.0,0.0,0.0,2.0,,0.0,0.0,0.0,1 +0.0,1.0,0.0,0.0,,0.0,2.0,0.0,0.0,0.0,1.0,1.0,2.0,0.0,1.0,,0.0,1.0,,0.0,1 +1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1 +2.0,0.0,1.0,0.0,2.0,,1.0,0.0,1.0,0.0,0.0,1.0,2.0,1.0,0.0,0.0,0.0,,1.0,1.0,1 +1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1 +1.0,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,,0.0,1 +1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,,1.0,0.0,0.0,,0.0,1 +2.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1 +1.0,0.0,0.0,2.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1 +0.0,0.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,2.0,1.0,0.0,1.0,0.0,0.0,1 +1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,2.0,,,2.0,1.0,1 +0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,1 +1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,,1.0,,1.0,0.0,0.0,,1 +1.0,1.0,0.0,0.0,0.0,0.0,1.0,,0.0,0.0,,2.0,2.0,0.0,0.0,1.0,,0.0,1.0,1.0,1 +,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,2.0,1.0,1.0,1.0,1.0,,0.0,0.0,1 +0.0,0.0,0.0,0.0,,1.0,1.0,0.0,0.0,0.0,0.0,1.0,2.0,,0.0,,0.0,0.0,0.0,0.0,1 +1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1 +1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1 +0.0,0.0,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,,1.0,0.0,,1.0,1.0,0.0,0.0,1.0,1.0,1 +0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,,0.0,0.0,1.0,1.0,,1 +2.0,1.0,0.0,1.0,1.0,,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,2.0,1.0,1.0,0.0,,0.0,1 +1.0,0.0,0.0,1.0,0.0,0.0,2.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1 +0.0,0.0,0.0,0.0,2.0,,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1 +1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,,0.0,,1.0,0.0,1.0,0 +0.0,1.0,,1.0,0.0,0.0,0.0,0.0,0.0,1.0,,1.0,0.0,1.0,2.0,0.0,1.0,1.0,0.0,1.0,0 +1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0 +1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,,0.0,1.0,2.0,0.0,2.0,,0.0,0.0,1.0,0.0,0 +1.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,0 +0.0,1.0,1.0,0.0,1.0,,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,,0.0,1.0,0.0,0 +,1.0,,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,,0.0,1.0,0.0,0.0,0.0,0 +1.0,,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,2.0,0.0,,0.0,1.0,1.0,0 +2.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,1.0,,0.0,2.0,1.0,1.0,0.0,,0.0,1.0,0.0,0 +0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0 +0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,,1.0,2.0,0.0,1.0,,1.0,0.0,,0.0,1.0,0 +1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,,2.0,,1.0,0.0,1.0,0.0,,1.0,0 +0.0,0.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0 +0.0,,,0.0,2.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,,,1.0,1.0,0.0,0.0,0.0,0.0,0 +0.0,0.0,1.0,0.0,2.0,0.0,1.0,,,0.0,0.0,0.0,1.0,0.0,,2.0,1.0,,0.0,0.0,0 +2.0,0.0,1.0,0.0,2.0,0.0,0.0,,0.0,0.0,0.0,2.0,1.0,,0.0,0.0,1.0,0.0,0.0,1.0,0 +1.0,1.0,0.0,0.0,2.0,0.0,1.0,0.0,,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,0.0,1.0,0 +0.0,,,1.0,1.0,0.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,,0 +1.0,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0 +1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,,1.0,,0.0,1.0,0.0,,1.0,0 +1.0,1.0,0.0,1.0,0.0,0.0,2.0,,,0.0,0.0,2.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0 +0.0,0.0,1.0,0.0,1.0,,0.0,0.0,,,0.0,0.0,0.0,,0.0,1.0,1.0,0.0,0.0,1.0,0 +1.0,0.0,0.0,,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0 +1.0,0.0,0.0,1.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0 +0.0,0.0,0.0,1.0,1.0,,0.0,,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0 +2.0,0.0,0.0,0.0,0.0,,0.0,,0.0,0.0,0.0,1.0,0.0,0.0,,0.0,0.0,2.0,0.0,2.0,0 +1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,,1.0,0.0,0.0,,0.0,1.0,0.0,,0 +0.0,0.0,,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0 +1.0,0.0,0.0,1.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,,0 +,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,2.0,0 +2.0,0.0,0.0,2.0,1.0,0.0,1.0,0.0,,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0 +0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,,0.0,0.0,1.0,0 +1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,0.0,1.0,0 +0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0 +0.0,0.0,,0.0,0.0,1.0,0.0,0.0,0.0,1.0,2.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0 +,0.0,0.0,0.0,0.0,,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0 +1.0,0.0,1.0,,0.0,0.0,1.0,2.0,0.0,,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0 +2.0,0.0,,0.0,,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0 +2.0,0.0,0.0,1.0,2.0,1.0,,1.0,0.0,0.0,0.0,2.0,,0.0,2.0,,1.0,0.0,1.0,0.0,0 +1.0,0.0,1.0,1.0,1.0,0.0,1.0,,,,,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0 +0.0,0.0,0.0,1.0,1.0,0.0,2.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,,0.0,1.0,1.0,,0 +0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,,1.0,0.0,,0.0,1.0,1.0,0.0,1.0,0 +1.0,,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0 +1.0,,0.0,0.0,1.0,0.0,0.0,,0.0,0.0,1.0,1.0,2.0,1.0,1.0,1.0,0.0,0.0,,0.0,0 +0.0,0.0,0.0,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,2.0,2.0,,0.0,0.0,0 +,0.0,0.0,1.0,1.0,0.0,2.0,0.0,1.0,1.0,0.0,2.0,0.0,1.0,1.0,,0.0,2.0,1.0,0.0,0 +0.0,0.0,,2.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,2.0,2.0,0.0,,0.0,1.0,1.0,0.0,0.0,0 +2.0,,0.0,1.0,,2.0,0.0,0.0,0.0,0.0,,1.0,,0.0,1.0,0.0,0.0,1.0,,1.0,0 +1.0,1.0,0.0,0.0,,0.0,1.0,0.0,0.0,1.0,1.0,2.0,2.0,0.0,1.0,,1.0,0.0,0.0,1.0,0 +0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,,1.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0 +,,1.0,0.0,,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,2.0,2.0,0.0,,0.0,,0 +,0.0,0.0,,1.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,0.0,0 +0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0 +2.0,0.0,,1.0,1.0,0.0,2.0,,,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0 +1.0,1.0,0.0,2.0,,0.0,1.0,0.0,,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0 +1.0,0.0,,0.0,0.0,,1.0,0.0,0.0,0.0,1.0,2.0,2.0,0.0,2.0,2.0,0.0,1.0,0.0,0.0,0 +1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0 +1.0,0.0,,,0.0,0.0,1.0,0.0,,1.0,1.0,0.0,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0 +1.0,0.0,0.0,,,1.0,1.0,0.0,,0.0,2.0,,2.0,,1.0,1.0,1.0,0.0,1.0,0.0,0 +,0.0,0.0,0.0,1.0,0.0,0.0,0.0,,0.0,,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0 +0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,,0 +2.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,2.0,1.0,0.0,2.0,0.0,0.0,0 +1.0,0.0,0.0,,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0 +1.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,,0.0,2.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0 +1.0,1.0,0.0,1.0,,0.0,2.0,0.0,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,,1.0,0 +0.0,,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,,2.0,1.0,,0.0,,1.0,0 +0.0,0.0,0.0,,0.0,,1.0,,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0 +2.0,0.0,,,2.0,,0.0,0.0,0.0,0.0,1.0,,1.0,0.0,0.0,1.0,,0.0,0.0,0.0,0 +1.0,0.0,0.0,0.0,1.0,,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0 +,0.0,0.0,2.0,0.0,0.0,2.0,0.0,1.0,,0.0,0.0,,1.0,0.0,0.0,0.0,1.0,,1.0,0 +1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,,1.0,0.0,1.0,,0.0,0.0,1.0,0.0,0 +0.0,0.0,0.0,0.0,1.0,0.0,,0.0,0.0,1.0,1.0,1.0,1.0,2.0,,0.0,0.0,1.0,2.0,0.0,0 +0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0 +0.0,0.0,1.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0 +0.0,0.0,0.0,0.0,1.0,,2.0,0.0,1.0,0.0,0.0,2.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,0 +,0.0,0.0,,0.0,0.0,2.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,0 +,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,,0.0,0.0,1.0,0.0,1.0,0.0,2.0,0.0,1.0,0.0,0 +2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,,0.0,1.0,1.0,1.0,1.0,1.0,1.0,,1.0,0.0,0.0,0 +1.0,0.0,0.0,0.0,,,2.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,,0 +1.0,0.0,0.0,0.0,1.0,1.0,1.0,,0.0,0.0,1.0,2.0,0.0,1.0,1.0,1.0,2.0,1.0,1.0,0.0,0 +0.0,0.0,,1.0,0.0,,0.0,0.0,0.0,0.0,0.0,,2.0,0.0,1.0,,1.0,0.0,1.0,0.0,0 +0.0,0.0,0.0,0.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,2.0,,0.0,1.0,0.0,0 +2.0,0.0,1.0,0.0,2.0,0.0,0.0,,0.0,,0.0,1.0,,0.0,1.0,1.0,2.0,0.0,0.0,0.0,0 +1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0 +1.0,0.0,0.0,,0.0,0.0,2.0,0.0,1.0,0.0,1.0,2.0,2.0,2.0,1.0,0.0,1.0,0.0,1.0,0.0,0 +0.0,0.0,0.0,1.0,2.0,,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,,1.0,0 +1.0,0.0,0.0,1.0,,,0.0,0.0,0.0,,0.0,1.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,1.0,0 +0.0,0.0,0.0,2.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,,0.0,1.0,0.0,0.0,0.0,0.0,0 +0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,2.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0 +1.0,,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,,0.0,0.0,0 +1.0,0.0,0.0,1.0,1.0,0.0,,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,,0.0,1.0,0 +0.0,1.0,0.0,0.0,,0.0,1.0,0.0,0.0,,,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,,0 +0.0,0.0,0.0,2.0,0.0,0.0,0.0,,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0 +0.0,0.0,,0.0,0.0,0.0,2.0,0.0,0.0,1.0,,2.0,2.0,1.0,2.0,0.0,,1.0,0.0,0.0,0 +1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,,,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,,0.0,0 +2.0,,0.0,1.0,0.0,,2.0,1.0,0.0,0.0,1.0,1.0,2.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0 +1.0,0.0,0.0,0.0,,0.0,1.0,0.0,0.0,0.0,0.0,1.0,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0 +0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0 +1.0,0.0,0.0,,,0.0,1.0,0.0,,1.0,0.0,1.0,,0.0,,0.0,,1.0,1.0,2.0,0 +0.0,0.0,0.0,1.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,,1.0,0.0,1.0,0.0,0 +1.0,0.0,,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0 +1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,2.0,2.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0 +,0.0,0.0,1.0,1.0,1.0,,1.0,0.0,0.0,1.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,1.0,1.0,0 +0.0,0.0,0.0,1.0,1.0,,1.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0 +1.0,0.0,0.0,1.0,0.0,0.0,,0.0,2.0,0.0,1.0,,0.0,1.0,1.0,,0.0,0.0,1.0,0.0,0 +2.0,0.0,1.0,,1.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0 +2.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,,0.0,0.0,1.0,,0.0,,,0.0,0.0,1.0,0 +1.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0 +2.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,2.0,1.0,0.0,0 +0.0,0.0,,0.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,1.0,0.0,,0.0,1.0,0.0,0.0,0.0,1.0,0 +0.0,0.0,,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,,,0.0,1.0,0.0,0.0,1.0,0 +2.0,0.0,0.0,,,,1.0,0.0,,1.0,1.0,1.0,2.0,0.0,1.0,1.0,1.0,1.0,0.0,,0 +0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,,1.0,1.0,0.0,2.0,0.0,,,0.0,1.0,0 +0.0,0.0,0.0,2.0,,,1.0,,0.0,1.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0 +,,0.0,,2.0,0.0,0.0,0.0,1.0,1.0,1.0,,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0 +0.0,0.0,2.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0 +2.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0 +0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,,0 +1.0,0.0,0.0,1.0,,0.0,1.0,1.0,0.0,0.0,1.0,2.0,1.0,0.0,0.0,1.0,0.0,,0.0,1.0,0 +1.0,0.0,1.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,2.0,,0 +0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0 +0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,,1.0,,0.0,0.0,1.0,2.0,0.0,0.0,1.0,,0.0,0 +2.0,0.0,,1.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,2.0,0 +1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0 +0.0,0.0,0.0,,2.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,,0.0,,0.0,2.0,1.0,0 +,0.0,1.0,0.0,0.0,0.0,,0.0,2.0,2.0,0.0,1.0,1.0,0.0,1.0,1.0,,1.0,1.0,,0 +1.0,0.0,1.0,0.0,0.0,0.0,1.0,,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0 +1.0,0.0,,0.0,,0.0,0.0,1.0,0.0,1.0,,0.0,2.0,0.0,,,0.0,0.0,0.0,2.0,0 +2.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,,1.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0 +1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0 +0.0,0.0,0.0,0.0,,2.0,0.0,0.0,,0.0,0.0,0.0,2.0,1.0,1.0,,1.0,,0.0,0.0,0 +2.0,0.0,0.0,0.0,1.0,0.0,2.0,,0.0,0.0,0.0,2.0,1.0,2.0,1.0,0.0,,0.0,,1.0,0 +1.0,0.0,1.0,0.0,,0.0,0.0,0.0,0.0,0.0,,1.0,0.0,0.0,2.0,,0.0,0.0,0.0,1.0,0 +1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,,,0 +0.0,1.0,1.0,1.0,0.0,2.0,1.0,0.0,1.0,0.0,0.0,1.0,,0.0,1.0,0.0,0.0,1.0,,,0 +0.0,0.0,0.0,1.0,0.0,,2.0,0.0,0.0,0.0,1.0,2.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0 +1.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0 +0.0,0.0,0.0,0.0,1.0,0.0,1.0,,0.0,1.0,1.0,,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0 +,0.0,0.0,,1.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,,1.0,0.0,1.0,0.0,1.0,0 +1.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,2.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0 +0.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0 +0.0,0.0,0.0,1.0,1.0,0.0,,0.0,0.0,0.0,0.0,2.0,2.0,2.0,0.0,0.0,0.0,,0.0,2.0,0 +0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0 +1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0 +0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0 +1.0,,1.0,,1.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0 +0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,,1.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,1.0,0.0,0 +0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,,0.0,0.0,,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0 +1.0,0.0,1.0,,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0 +0.0,0.0,0.0,,2.0,0.0,1.0,0.0,0.0,0.0,0.0,,1.0,0.0,1.0,2.0,1.0,1.0,0.0,1.0,0 +1.0,1.0,0.0,0.0,2.0,0.0,2.0,0.0,1.0,0.0,0.0,,1.0,0.0,,1.0,2.0,0.0,0.0,0.0,0 +0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,2.0,1.0,1.0,0.0,1.0,0.0,1.0,,0 +1.0,,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,,0 +0.0,0.0,0.0,,2.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,,,1.0,1.0,0.0,1.0,0 +0.0,1.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,1.0,,0.0,0 +1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0 +0.0,0.0,0.0,,1.0,0.0,2.0,1.0,,,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,,0 +0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,,1.0,0.0,,0.0,0.0,0 +1.0,,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0 +1.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0 +0.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0 +1.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0 +2.0,0.0,2.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,,0.0,,0.0,,0.0,0.0,0.0,0 +1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0 +1.0,0.0,0.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0 +1.0,0.0,0.0,,1.0,,1.0,0.0,1.0,,1.0,1.0,1.0,0.0,1.0,0.0,,2.0,,1.0,0 +0.0,0.0,,1.0,,1.0,1.0,0.0,,0.0,1.0,2.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0 +0.0,0.0,1.0,0.0,0.0,1.0,,0.0,0.0,,1.0,,2.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0 +1.0,0.0,,0.0,2.0,0.0,2.0,,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0 +1.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,,0.0,,2.0,0 +1.0,0.0,,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,2.0,,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0 +1.0,1.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,1.0,1.0,2.0,0.0,0.0,,0 +1.0,,0.0,0.0,1.0,0.0,,0.0,,1.0,0.0,2.0,1.0,0.0,2.0,0.0,1.0,1.0,0.0,,0 +0.0,,0.0,1.0,1.0,0.0,2.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0 +0.0,0.0,1.0,1.0,0.0,0.0,0.0,,,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0 +1.0,1.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,,1.0,1.0,0.0,0 +0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,,1.0,0 +1.0,0.0,,0.0,1.0,,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,0 +1.0,0.0,0.0,1.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,,0.0,1.0,1.0,0.0,,0 +0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,,,0.0,,0.0,1.0,,,0.0,0 +0.0,0.0,,0.0,1.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0 +1.0,0.0,0.0,,0.0,,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,,0.0,0.0,0 +2.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,,,2.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0 +0.0,,,0.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,,0.0,1.0,,2.0,1.0,0.0,0.0,0 +1.0,0.0,0.0,1.0,,0.0,1.0,0.0,1.0,0.0,,1.0,1.0,1.0,0.0,1.0,0.0,2.0,0.0,0.0,0 +1.0,0.0,0.0,1.0,1.0,,1.0,0.0,1.0,0.0,0.0,1.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0 +,,,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0 +0.0,0.0,0.0,1.0,0.0,0.0,,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,,,0.0,0.0,1.0,0 +0.0,0.0,0.0,0.0,,1.0,1.0,0.0,1.0,0.0,,0.0,0.0,1.0,0.0,2.0,0.0,2.0,0.0,1.0,0 +1.0,0.0,0.0,2.0,1.0,,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,2.0,0.0,1.0,0.0,0.0,0 +0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,1.0,1.0,1.0,,0.0,0 +1.0,0.0,2.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0 +0.0,0.0,,0.0,,1.0,1.0,0.0,0.0,0.0,2.0,2.0,1.0,0.0,1.0,1.0,,,1.0,1.0,0 +2.0,1.0,0.0,1.0,0.0,1.0,1.0,,0.0,1.0,0.0,1.0,2.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0 +0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,,1.0,0.0,0.0,,0.0,0.0,0.0,0.0,0 +0.0,0.0,0.0,0.0,1.0,,0.0,0.0,0.0,0.0,0.0,2.0,1.0,1.0,1.0,,1.0,,0.0,1.0,0 +1.0,0.0,0.0,1.0,0.0,,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,,2.0,0.0,0.0,0.0,1.0,0 +0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,,0.0,2.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0 +0.0,0.0,1.0,0.0,0.0,0.0,2.0,,,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,2.0,0.0,0.0,1.0,0.0,0.0,0.0,2.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0 +,0.0,0.0,1.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0 +,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,1.0,,0.0,2.0,0 +1.0,0.0,0.0,0.0,2.0,0.0,,0.0,0.0,0.0,0.0,,2.0,0.0,,0.0,0.0,0.0,0.0,1.0,0 +0.0,,0.0,0.0,,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0 +1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0 +1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,,1.0,0.0,1.0,0.0,0 +0.0,0.0,1.0,0.0,1.0,1.0,,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0 +1.0,0.0,0.0,2.0,1.0,1.0,2.0,0.0,0.0,0.0,1.0,1.0,1.0,2.0,1.0,0.0,,,0.0,1.0,0 +2.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0 +0.0,0.0,1.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,,0 +0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,,1.0,,0.0,0.0,0.0,1.0,0 +2.0,0.0,0.0,0.0,0.0,1.0,0.0,,0.0,1.0,0.0,1.0,1.0,,0.0,,0.0,0.0,1.0,0.0,0 +1.0,0.0,0.0,0.0,1.0,,1.0,0.0,0.0,0.0,0.0,,2.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0 +1.0,0.0,1.0,0.0,0.0,0.0,0.0,,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,,1.0,0 +0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,,,,1.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0 +2.0,0.0,0.0,1.0,1.0,2.0,2.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,2.0,2.0,1.0,0.0,1.0,0.0,0 +0.0,1.0,0.0,,0.0,0.0,2.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,0.0,2.0,1.0,1.0,0.0,1.0,0 +2.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,2.0,0.0,2.0,0.0,2.0,1.0,0.0,1.0,0 +,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,,0.0,0.0,0 +,0.0,,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0 +0.0,,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,1.0,0.0,1.0,0.0,,1.0,0.0,0.0,1.0,0.0,0 +0.0,1.0,,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0 +1.0,0.0,0.0,1.0,,0.0,1.0,0.0,0.0,1.0,0.0,,1.0,0.0,1.0,0.0,1.0,2.0,,1.0,0 +1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,1.0,0.0,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,1.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0 +1.0,0.0,,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,,1.0,1.0,0.0,0.0,1.0,0 +2.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,,0 +0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,2.0,1.0,,1.0,,1.0,1.0,1.0,0.0,0.0,0 +1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,2.0,1.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0 +1.0,0.0,0.0,1.0,1.0,0.0,,0.0,,0.0,1.0,1.0,1.0,0.0,,1.0,1.0,0.0,1.0,0.0,0 +0.0,0.0,,0.0,,0.0,0.0,0.0,0.0,1.0,0.0,2.0,1.0,0.0,1.0,2.0,2.0,1.0,,0.0,0 +1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,1.0,1.0,1.0,1.0,,,1.0,1.0,0.0,0 +0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0 +0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,,0.0,,1.0,0.0,1.0,0.0,0.0,0 +1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,,1.0,0 +,0.0,0.0,0.0,1.0,1.0,0.0,,0.0,0.0,0.0,2.0,1.0,1.0,2.0,,1.0,0.0,,1.0,0 +0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,1.0,0.0,1.0,,1.0,1.0,0.0,0.0,1.0,0 +0.0,1.0,1.0,,0.0,0.0,2.0,1.0,0.0,0.0,0.0,,1.0,0.0,2.0,1.0,1.0,0.0,1.0,0.0,0 +0.0,0.0,0.0,2.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,,,1.0,1.0,1.0,0.0,,1.0,0.0,0 +2.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,,0.0,,,1.0,0 +,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,,2.0,0.0,1.0,1.0,,0.0,,0.0,1.0,0.0,0 +1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,,0.0,1.0,1.0,0.0,,1.0,0.0,0.0,0.0,0 +0.0,0.0,0.0,0.0,,0.0,1.0,0.0,0.0,0.0,1.0,,,0.0,,1.0,1.0,2.0,0.0,0.0,0 +0.0,0.0,0.0,1.0,1.0,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,,1.0,0.0,0.0,0 +,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,,,0.0,0.0,,0.0,0.0,0.0,0.0,0 +1.0,0.0,0.0,2.0,1.0,0.0,1.0,0.0,,0.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,,0.0,1.0,0 +1.0,0.0,0.0,0.0,0.0,,1.0,0.0,0.0,1.0,0.0,0.0,2.0,,1.0,0.0,0.0,,0.0,,0 +1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,2.0,0.0,,0.0,0.0,1.0,0.0,0.0,0 +1.0,0.0,,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,,0.0,0.0,1.0,0.0,1.0,0 +1.0,0.0,,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,,1.0,0 +1.0,0.0,0.0,,0.0,0.0,,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,,2.0,1.0,0.0,1.0,0 +0.0,0.0,0.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0 +1.0,0.0,0.0,2.0,2.0,0.0,0.0,1.0,0.0,1.0,,1.0,,,1.0,,2.0,0.0,0.0,0.0,0 +0.0,1.0,0.0,1.0,2.0,0.0,2.0,0.0,0.0,,,1.0,2.0,0.0,1.0,,0.0,0.0,1.0,0.0,0 +1.0,1.0,0.0,1.0,,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,2.0,,0.0,,1.0,0.0,0 +1.0,0.0,0.0,0.0,,1.0,1.0,,0.0,0.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0 +1.0,0.0,0.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,,2.0,1.0,0.0,1.0,1.0,0 +1.0,1.0,1.0,0.0,0.0,1.0,2.0,,1.0,0.0,,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0 +2.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0 +1.0,0.0,0.0,1.0,,0.0,1.0,0.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,1.0,0.0,,1.0,0.0,0 +2.0,0.0,0.0,0.0,,0.0,0.0,1.0,0.0,0.0,1.0,2.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,,0 +2.0,1.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,2.0,1.0,1.0,,1.0,,,0.0,0 +0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,,0.0,1.0,0.0,,0.0,0.0,1.0,0.0,2.0,0.0,0 +0.0,0.0,0.0,1.0,2.0,0.0,,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0 +0.0,0.0,0.0,1.0,0.0,1.0,2.0,0.0,,,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0 +0.0,1.0,1.0,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,2.0,0.0,0.0,0.0,0.0,1.0,2.0,0 +0.0,0.0,0.0,0.0,,0.0,,0.0,,0.0,2.0,2.0,1.0,1.0,0.0,0.0,,0.0,0.0,0.0,0 +0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,,0.0,,0.0,0.0,0.0,0 +0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,2.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0 +,1.0,0.0,2.0,0.0,1.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,,0.0,0.0,,0.0,0.0,0 +0.0,0.0,0.0,1.0,0.0,0.0,,1.0,0.0,0.0,1.0,0.0,,0.0,1.0,2.0,0.0,0.0,1.0,0.0,0 +,0.0,0.0,1.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0 +0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,,0 +2.0,0.0,1.0,0.0,,0.0,0.0,0.0,,0.0,1.0,0.0,0.0,2.0,,1.0,1.0,2.0,1.0,0.0,0 +1.0,,,0.0,,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,,,1.0,0.0,,2.0,0.0,0 +1.0,0.0,,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,2.0,0 +0.0,0.0,1.0,1.0,0.0,0.0,1.0,,0.0,1.0,0.0,0.0,1.0,1.0,0.0,,2.0,0.0,,1.0,0 +1.0,0.0,0.0,1.0,,0.0,,0.0,1.0,1.0,0.0,,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0 +,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,0.0,0.0,2.0,,0.0,0.0,2.0,0 +0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,,,0.0,0.0,1.0,1.0,,1.0,,0 +1.0,0.0,1.0,1.0,2.0,0.0,,0.0,1.0,1.0,0.0,0.0,1.0,,1.0,1.0,0.0,,0.0,0.0,0 +2.0,,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,,0 +,0.0,0.0,1.0,0.0,0.0,1.0,,,1.0,1.0,0.0,1.0,0.0,0.0,,1.0,0.0,1.0,,0 +1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0 +2.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,2.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,1.0,0 +,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,,2.0,0.0,0.0,2.0,1.0,0.0,1.0,0.0,0.0,0 +1.0,,0.0,0.0,1.0,0.0,,1.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0 +0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0 +,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0 +2.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,2.0,0.0,0.0,,1.0,1.0,1.0,0.0,0 +1.0,0.0,1.0,0.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0 +,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,2.0,1.0,1.0,2.0,,0.0,0.0,1.0,0.0,0 +0.0,0.0,1.0,1.0,,,2.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,2.0,0.0,1.0,0.0,0.0,0 +1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0 +2.0,0.0,1.0,1.0,0.0,0.0,1.0,,0.0,1.0,0.0,0.0,2.0,0.0,2.0,1.0,1.0,2.0,1.0,0.0,0 +0.0,1.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,2.0,1.0,1.0,1.0,,1.0,0.0,0.0,0 +0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,,,2.0,0.0,0 +1.0,,1.0,0.0,0.0,0.0,,0.0,0.0,0.0,,2.0,2.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0 +2.0,0.0,0.0,2.0,0.0,1.0,0.0,,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0 +2.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,,1.0,1.0,0.0,1.0,0 +0.0,0.0,,0.0,2.0,0.0,0.0,0.0,0.0,,0.0,0.0,1.0,,0.0,1.0,0.0,0.0,1.0,0.0,0 +2.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0 +1.0,0.0,0.0,1.0,,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,0.0,0 +,,0.0,0.0,,1.0,1.0,1.0,,1.0,0.0,1.0,1.0,0.0,0.0,2.0,,1.0,0.0,0.0,0 +0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,,1.0,1.0,0.0,0.0,1.0,1.0,0.0,2.0,0 +1.0,0.0,1.0,,1.0,1.0,0.0,0.0,,0.0,0.0,1.0,2.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0 +0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,0.0,0 +,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,1.0,,1.0,1.0,1.0,1.0,1.0,2.0,0.0,,,0 +,1.0,0.0,1.0,2.0,0.0,1.0,0.0,,1.0,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0 +1.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,,0.0,,1.0,2.0,,0.0,0.0,1.0,0.0,1.0,0.0,0 +0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,,,1.0,0.0,1.0,1.0,0.0,0 +2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0 +,0.0,0.0,1.0,1.0,0.0,1.0,,0.0,1.0,0.0,1.0,2.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0 +0.0,0.0,0.0,,0.0,,,,1.0,0.0,0.0,2.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0 +2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0 +2.0,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0 +0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0 +0.0,0.0,,0.0,1.0,0.0,2.0,0.0,0.0,,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0 +1.0,0.0,1.0,0.0,1.0,,2.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,2.0,0.0,0.0,0.0,0 +0.0,0.0,0.0,1.0,1.0,0.0,2.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,2.0,0.0,0.0,1.0,,0.0,0 +0.0,0.0,1.0,0.0,1.0,,1.0,0.0,0.0,0.0,1.0,0.0,2.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0 +,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0 +1.0,0.0,1.0,0.0,1.0,0.0,1.0,,0.0,1.0,0.0,1.0,2.0,0.0,1.0,2.0,0.0,0.0,,1.0,0 +0.0,0.0,0.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0 +0.0,0.0,0.0,1.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0 +2.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,,2.0,,2.0,0.0,0.0,0.0,0 +1.0,0.0,1.0,0.0,,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0 +1.0,,,0.0,1.0,0.0,0.0,,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0 +1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,,0.0,0.0,1.0,0 +1.0,0.0,,,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0 +0.0,0.0,,0.0,0.0,0.0,0.0,0.0,,1.0,0.0,,0.0,1.0,,1.0,2.0,0.0,,0.0,0 +2.0,0.0,0.0,0.0,,0.0,2.0,,0.0,0.0,1.0,2.0,0.0,1.0,1.0,,0.0,0.0,1.0,0.0,0 +1.0,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0 +0.0,0.0,0.0,,0.0,2.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0 +0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,1.0,0.0,,0.0,0.0,0.0,0.0,0.0,0 +,0.0,,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,,1.0,0 +,0.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,1.0,0.0,1.0,0.0,1.0,,0 +1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0 +1.0,0.0,0.0,1.0,0.0,1.0,,1.0,0.0,0.0,1.0,1.0,1.0,1.0,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,,1.0,0.0,,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0 +0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0 +0.0,0.0,1.0,,0.0,0.0,2.0,0.0,0.0,,0.0,0.0,0.0,1.0,,1.0,1.0,1.0,0.0,1.0,0 +0.0,0.0,0.0,0.0,1.0,,1.0,0.0,,0.0,,2.0,2.0,1.0,0.0,0.0,1.0,,1.0,0.0,0 +0.0,0.0,0.0,1.0,,0.0,2.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,2.0,1.0,1.0,0.0,0 +1.0,0.0,1.0,,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,,1.0,0 +,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,,0.0,1.0,0.0,0 +2.0,0.0,1.0,1.0,0.0,0.0,,0.0,1.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,1.0,,0.0,1.0,0 +0.0,0.0,1.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,,0.0,,1.0,0.0,,0.0,0 +0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0 +0.0,,0.0,1.0,0.0,,,0.0,0.0,0.0,0.0,1.0,0.0,1.0,,,,,0.0,1.0,0 +1.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,,,0.0,0.0,,1.0,2.0,1.0,0.0,1.0,0 +0.0,0.0,,0.0,1.0,1.0,0.0,0.0,,1.0,0.0,2.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0 +,0.0,0.0,1.0,,0.0,1.0,0.0,1.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0 +2.0,,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,,0.0,0.0,2.0,0 +1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0 +,0.0,0.0,0.0,1.0,0.0,,0.0,0.0,0.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,,0.0,0 +1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,,0.0,2.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0 +1.0,0.0,1.0,0.0,0.0,0.0,0.0,,1.0,,1.0,1.0,0.0,,0.0,1.0,2.0,0.0,0.0,1.0,0 +1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,,0.0,0.0,0.0,2.0,0 +2.0,0.0,,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,,1.0,2.0,,0 +0.0,0.0,2.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0 +0.0,0.0,0.0,2.0,0.0,0.0,,0.0,1.0,0.0,,1.0,2.0,1.0,0.0,,0.0,0.0,0.0,,0 +1.0,0.0,1.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1.0,0.0,1.0,0 +1.0,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,2.0,1.0,0.0,0.0,0 +1.0,1.0,0.0,0.0,1.0,0.0,,,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,,0 +1.0,,0.0,0.0,2.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,,1.0,0.0,0.0,0.0,0.0,0.0,0 +0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0 +1.0,0.0,,0.0,1.0,,1.0,0.0,0.0,0.0,1.0,2.0,2.0,1.0,2.0,,0.0,1.0,1.0,0.0,0 +1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,2.0,,1.0,2.0,1.0,0.0,0.0,0.0,1.0,0 +1.0,0.0,1.0,0.0,2.0,0.0,0.0,,0.0,0.0,,0.0,2.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0 +1.0,0.0,0.0,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,2.0,,0.0,2.0,0.0,0 +2.0,0.0,0.0,2.0,1.0,0.0,1.0,1.0,0.0,,0.0,0.0,1.0,0.0,1.0,2.0,1.0,0.0,0.0,1.0,0 +1.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,,0 +0.0,0.0,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0 +1.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,1.0,,0.0,,1.0,0.0,0 +1.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,1.0,1.0,2.0,1.0,0.0,2.0,0.0,0.0,,1.0,0 +1.0,0.0,,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,,0.0,0.0,0.0,0 +0.0,0.0,0.0,,0.0,1.0,,0.0,1.0,0.0,0.0,2.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0 +1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,1.0,0.0,1.0,1.0,1.0,2.0,0.0,0.0,1.0,1.0,0.0,0 +0.0,0.0,0.0,0.0,,0.0,,0.0,0.0,1.0,1.0,2.0,1.0,0.0,0.0,1.0,0.0,0.0,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,2.0,0.0,,0.0,0.0,1.0,0.0,0.0,0 +1.0,0.0,,,1.0,0.0,1.0,0.0,,0.0,1.0,0.0,0.0,0.0,1.0,,0.0,,0.0,1.0,0 +1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,,0.0,0.0,1.0,2.0,0.0,,0.0,0.0,0.0,0.0,0.0,0 +0.0,0.0,1.0,1.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,2.0,1.0,0.0,0.0,1.0,0.0,0 +,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,,0.0,1.0,,0.0,0 +2.0,0.0,0.0,1.0,0.0,2.0,2.0,0.0,1.0,1.0,0.0,,0.0,1.0,2.0,0.0,1.0,0.0,1.0,0.0,0 +1.0,0.0,0.0,1.0,2.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,2.0,,1.0,1.0,1.0,1.0,0.0,2.0,0 +1.0,0.0,1.0,1.0,1.0,0.0,,0.0,0.0,0.0,0.0,1.0,2.0,,1.0,2.0,2.0,1.0,,1.0,0 +1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0 +1.0,0.0,0.0,1.0,1.0,0.0,,0.0,0.0,1.0,,2.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0 +1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,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,1.0,,1.0,0.0,1.0,1.0,0.0,2.0,2.0,0.0,0 +1.0,0.0,0.0,0.0,1.0,0.0,0.0,,0.0,0.0,,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0 +0.0,0.0,1.0,0.0,0.0,,1.0,0.0,0.0,,0.0,1.0,1.0,0.0,,0.0,1.0,0.0,2.0,,0 +0.0,0.0,0.0,0.0,2.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0 +0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,,0.0,2.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0 +,0.0,1.0,1.0,1.0,0.0,0.0,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0 +0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,,0.0,2.0,,1.0,1.0,2.0,,0.0,0.0,1.0,0 +1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,,1.0,0.0,0.0,0.0,0.0,0 +1.0,0.0,0.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0 +1.0,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,2.0,1.0,1.0,0.0,1.0,0.0,0 +0.0,0.0,1.0,,0.0,1.0,2.0,0.0,0.0,0.0,1.0,,1.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0 +0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,2.0,1.0,,1.0,2.0,1.0,0.0,0.0,0 +1.0,0.0,,0.0,0.0,0.0,0.0,1.0,0.0,,0.0,,1.0,1.0,0.0,1.0,1.0,0.0,,0.0,0 +1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0 +1.0,0.0,0.0,1.0,1.0,0.0,0.0,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,,,0.0,0 +1.0,0.0,1.0,,0.0,,1.0,,0.0,0.0,0.0,1.0,2.0,1.0,1.0,0.0,0.0,0.0,,1.0,0 +1.0,1.0,,0.0,1.0,0.0,1.0,0.0,0.0,1.0,,1.0,1.0,0.0,1.0,,0.0,0.0,0.0,1.0,0 +,0.0,0.0,1.0,2.0,0.0,0.0,,1.0,0.0,2.0,0.0,1.0,,1.0,0.0,0.0,0.0,1.0,0.0,0 +1.0,,0.0,1.0,1.0,,1.0,0.0,,0.0,2.0,1.0,0.0,1.0,1.0,,1.0,0.0,,1.0,0 +0.0,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,,0 +1.0,0.0,0.0,0.0,,0.0,2.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0 +0.0,0.0,0.0,2.0,2.0,0.0,2.0,,1.0,1.0,2.0,1.0,,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0 +1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0 +1.0,0.0,0.0,1.0,1.0,,1.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0 +0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,0.0,0.0,1.0,,1.0,1.0,0.0,0.0,1.0,0.0,0 +0.0,0.0,,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,2.0,1.0,0.0,2.0,0.0,0.0,0.0,,0.0,0 +1.0,0.0,1.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,,2.0,0.0,1.0,0.0,1.0,0.0,,1.0,0 +1.0,,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,,0.0,0.0,0 +1.0,,0.0,0.0,1.0,0.0,1.0,0.0,0.0,,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0 +0.0,0.0,0.0,,1.0,0.0,2.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,,1.0,1.0,,1.0,,0 +1.0,0.0,0.0,0.0,1.0,0.0,2.0,,0.0,0.0,0.0,2.0,,0.0,1.0,,0.0,,1.0,0.0,0 +1.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,1.0,0.0,1.0,,2.0,1.0,0.0,0.0,,0.0,0 +1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,,0.0,,1.0,0.0,0.0,0 +0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,,0.0,1.0,1.0,0.0,2.0,1.0,0.0,,0.0,1.0,0 +1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,,0 +2.0,0.0,,0.0,,0.0,1.0,0.0,0.0,0.0,1.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0 +0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,,,0.0,0.0,,0.0,,0.0,0.0,1.0,0 +1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0 +0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0 +0.0,0.0,1.0,1.0,,,1.0,0.0,,0.0,0.0,0.0,,0.0,1.0,1.0,1.0,0.0,2.0,0.0,0 +0.0,0.0,1.0,0.0,2.0,1.0,0.0,0.0,,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0 +1.0,0.0,,0.0,2.0,0.0,1.0,0.0,,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0 +0.0,0.0,0.0,1.0,0.0,0.0,,0.0,0.0,0.0,0.0,2.0,0.0,0.0,,0.0,0.0,0.0,2.0,0.0,0 +,0.0,0.0,1.0,0.0,0.0,,0.0,0.0,1.0,0.0,,1.0,0.0,1.0,1.0,,,0.0,1.0,0 +0.0,0.0,0.0,0.0,0.0,1.0,1.0,,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,,0.0,0.0,1.0,0 +0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,,0.0,,,0.0,0 +1.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,,1.0,,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0 +1.0,0.0,1.0,1.0,1.0,0.0,,0.0,0.0,0.0,0.0,0.0,1.0,,1.0,1.0,1.0,0.0,0.0,0.0,0 +0.0,0.0,1.0,1.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,0 +0.0,0.0,1.0,0.0,2.0,0.0,1.0,,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,,0.0,0.0,2.0,0 +1.0,0.0,,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0 +0.0,0.0,1.0,,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,,0.0,0.0,0.0,2.0,1.0,0.0,1.0,0 +0.0,0.0,1.0,1.0,0.0,1.0,2.0,0.0,0.0,,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,,0.0,0 +1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0 +1.0,0.0,0.0,1.0,2.0,,,0.0,0.0,1.0,1.0,1.0,2.0,0.0,0.0,1.0,1.0,0.0,1.0,,0 +1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,1.0,0.0,1.0,1.0,,1.0,,0.0,0 +1.0,0.0,,1.0,0.0,0.0,,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,2.0,,0.0,0.0,1.0,0 +2.0,0.0,,0.0,1.0,1.0,1.0,,0.0,,0.0,2.0,1.0,0.0,0.0,,1.0,0.0,1.0,1.0,0 +0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,,0.0,0.0,1.0,0.0,0 +1.0,,0.0,0.0,1.0,0.0,,0.0,,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0 +1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,,1.0,1.0,1.0,0.0,0 +2.0,0.0,0.0,1.0,0.0,,1.0,0.0,0.0,,0.0,1.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,1.0,0 +1.0,,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,2.0,1.0,1.0,2.0,0.0,1.0,1.0,0.0,0 +1.0,0.0,0.0,1.0,0.0,1.0,0.0,,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,,1.0,0 +1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0 +1.0,0.0,0.0,0.0,0.0,,1.0,0.0,1.0,0.0,1.0,1.0,,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0 +1.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,1.0,,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0 +0.0,0.0,0.0,0.0,,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0 +0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,,0.0,1.0,1.0,1.0,1.0,0.0,1.0,,0.0,0.0,1.0,0 +0.0,0.0,0.0,0.0,1.0,0.0,2.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,,1.0,0.0,0.0,0.0,1.0,0 +1.0,0.0,0.0,0.0,,1.0,0.0,,0.0,0.0,1.0,2.0,2.0,1.0,0.0,0.0,1.0,2.0,1.0,0.0,0 +1.0,0.0,0.0,0.0,0.0,1.0,,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,2.0,0 +0.0,0.0,0.0,2.0,2.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0 +0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,1.0,,1.0,1.0,,0.0,,0.0,1.0,0.0,1.0,0.0,0 +2.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,,0.0,0.0,0.0,1.0,1.0,0 +1.0,1.0,,0.0,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,,1.0,1.0,0.0,0.0,0 +,,0.0,1.0,1.0,0.0,2.0,0.0,1.0,,1.0,1.0,2.0,2.0,,2.0,0.0,,,1.0,0 +,0.0,0.0,1.0,1.0,0.0,0.0,,,0.0,1.0,2.0,2.0,0.0,1.0,1.0,,0.0,0.0,,0 +1.0,,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0 +0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,,0.0,1.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,0 +0.0,0.0,0.0,0.0,,0.0,,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0 +0.0,0.0,1.0,1.0,,0.0,0.0,0.0,1.0,0.0,0.0,1.0,2.0,1.0,,,1.0,1.0,0.0,1.0,0 +0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,2.0,0.0,0 +1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,2.0,1.0,0.0,2.0,2.0,2.0,0.0,0.0,1.0,0 +2.0,,0.0,1.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0 +0.0,0.0,0.0,0.0,2.0,1.0,1.0,0.0,1.0,1.0,1.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0 +1.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0 +0.0,0.0,1.0,1.0,2.0,0.0,,0.0,2.0,0.0,0.0,0.0,,1.0,0.0,0.0,0.0,,0.0,0.0,0 +2.0,0.0,0.0,1.0,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,,0.0,0.0,0 +0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,,0.0,1.0,0.0,1.0,,1.0,0.0,1.0,0.0,0 +1.0,0.0,,2.0,1.0,0.0,0.0,0.0,0.0,0.0,,0.0,,1.0,,0.0,1.0,,1.0,0.0,0 +1.0,0.0,2.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,,,0.0,1.0,0.0,1.0,2.0,1.0,0.0,0 +0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,,1.0,1.0,,,0.0,1.0,0 +1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0 +1.0,0.0,0.0,2.0,1.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0 +1.0,,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,2.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0 +0.0,0.0,1.0,1.0,2.0,,1.0,0.0,0.0,0.0,0.0,,1.0,1.0,1.0,0.0,1.0,,0.0,1.0,0 +0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,2.0,0 +2.0,0.0,0.0,,2.0,0.0,0.0,0.0,0.0,,2.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,,0 +0.0,0.0,,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0 +1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,,1.0,,0.0,1.0,0.0,0.0,0.0,0.0,0 +1.0,1.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,,0.0,0.0,,0 +1.0,0.0,0.0,1.0,0.0,0.0,1.0,,2.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,,0.0,0 +,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0 +,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,2.0,2.0,0.0,1.0,1.0,0.0,0 +1.0,0.0,0.0,1.0,1.0,0.0,2.0,0.0,0.0,,0.0,1.0,1.0,1.0,1.0,0.0,,0.0,1.0,0.0,0 +1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0 +,0.0,0.0,2.0,,1.0,1.0,0.0,0.0,0.0,1.0,,,0.0,,0.0,2.0,1.0,0.0,1.0,0 +1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,2.0,1.0,0.0,1.0,0.0,0.0,,0 +1.0,,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,,1.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,,0 +,0.0,0.0,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0 +2.0,0.0,0.0,,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,2.0,1.0,1.0,0.0,,1.0,,1.0,0 +,0.0,1.0,1.0,0.0,0.0,,0.0,0.0,0.0,1.0,,1.0,2.0,,1.0,1.0,1.0,0.0,0.0,0 +1.0,0.0,,0.0,,0.0,0.0,,0.0,0.0,0.0,1.0,0.0,,0.0,,0.0,0.0,0.0,2.0,0 +1.0,0.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,1.0,,1.0,1.0,,0.0,0.0,0.0,0.0,0.0,1.0,0 +1.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,1.0,,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0 +1.0,0.0,1.0,0.0,0.0,,2.0,0.0,0.0,0.0,1.0,2.0,2.0,0.0,1.0,,1.0,0.0,1.0,0.0,0 +2.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,2.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0 +1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,,1.0,1.0,1.0,1.0,,1.0,0.0,0.0,0.0,0 +0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,,2.0,0.0,2.0,1.0,1.0,1.0,,0.0,0 +,0.0,0.0,1.0,2.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,2.0,1.0,1.0,,1.0,1.0,1.0,0.0,0 +2.0,0.0,1.0,,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0 +,0.0,0.0,0.0,1.0,0.0,0.0,0.0,,0.0,0.0,1.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0 +1.0,,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,,0.0,0.0,,0 +1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,,0 +1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0 +1.0,,1.0,1.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,,0.0,0.0,1.0,0 +2.0,0.0,0.0,0.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,,0.0,0 +0.0,0.0,0.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,2.0,2.0,1.0,0.0,0.0,2.0,0 +0.0,,,0.0,0.0,,2.0,0.0,0.0,0.0,0.0,0.0,1.0,,1.0,1.0,1.0,1.0,1.0,0.0,0 +2.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,,1.0,0.0,,0 +1.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,,0.0,2.0,1.0,,,1.0,0.0,2.0,1.0,0.0,0 +0.0,0.0,0.0,0.0,0.0,0.0,,0.0,,0.0,1.0,,,1.0,1.0,0.0,1.0,0.0,,0.0,0 +1.0,0.0,0.0,0.0,2.0,0.0,1.0,,0.0,,0.0,0.0,1.0,,2.0,1.0,0.0,,1.0,,0 +0.0,0.0,0.0,0.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0 +1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,,1.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0 +0.0,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,,0 +0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,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,1.0,1.0,2.0,,0.0,0.0,0.0,0.0,1.0,0 +1.0,0.0,0.0,0.0,1.0,,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0 +0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,2.0,,,1.0,0.0,1.0,1.0,0.0,0 +1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,2.0,0.0,1.0,1.0,2.0,0.0,1.0,1.0,2.0,0.0,0.0,1.0,0 +,1.0,0.0,1.0,2.0,0.0,0.0,0.0,,0.0,,1.0,0.0,1.0,,1.0,1.0,,1.0,0.0,0 +1.0,0.0,0.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0 +1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0 +1.0,0.0,,1.0,0.0,1.0,1.0,,,0.0,0.0,0.0,1.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0 +1.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,,0.0,1.0,,0.0,1.0,1.0,0.0,0 +2.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,2.0,,1.0,0.0,,1.0,0.0,1.0,,0 +1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,1.0,0.0,1.0,0.0,,0.0,0.0,,0 +0.0,0.0,0.0,0.0,0.0,,2.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,,0 +0.0,1.0,1.0,1.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0 +1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,,1.0,1.0,,1.0,0.0,1.0,0.0,0 +0.0,0.0,0.0,,0.0,0.0,2.0,0.0,0.0,,0.0,2.0,1.0,,1.0,0.0,0.0,1.0,,1.0,0 +0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0 +0.0,0.0,1.0,,0.0,0.0,2.0,0.0,,0.0,0.0,1.0,0.0,0.0,2.0,1.0,,0.0,0.0,2.0,0 +0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0 +,0.0,1.0,1.0,2.0,0.0,0.0,0.0,,,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0 +1.0,0.0,0.0,0.0,2.0,,0.0,0.0,1.0,0.0,0.0,1.0,1.0,,1.0,0.0,0.0,0.0,1.0,0.0,0 +1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0 +0.0,0.0,0.0,1.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,,2.0,0.0,1.0,0.0,0.0,0 +0.0,0.0,1.0,1.0,1.0,0.0,2.0,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,,0 +2.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,,0.0,0.0,1.0,1.0,0.0,0 +1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,,0.0,2.0,1.0,1.0,,1.0,0.0,0.0,0.0,1.0,0 +1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,,0.0,0.0,,1.0,,2.0,1.0,0.0,0 +2.0,0.0,0.0,2.0,,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,,0.0,0 +0.0,0.0,1.0,1.0,,0.0,1.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,2.0,0.0,0.0,1.0,0.0,1.0,0 +2.0,0.0,0.0,2.0,,0.0,0.0,0.0,0.0,0.0,1.0,,1.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0 +0.0,0.0,0.0,0.0,1.0,,1.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0 +0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,2.0,2.0,1.0,1.0,,0.0,0 +1.0,0.0,1.0,0.0,1.0,0.0,0.0,,0.0,1.0,1.0,1.0,2.0,0.0,1.0,0.0,0.0,,1.0,0.0,0 +2.0,0.0,0.0,,,1.0,0.0,,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,,0 +1.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,2.0,1.0,,,0.0,0.0,1.0,2.0,,0 +0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,,0.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0 +0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,2.0,,1.0,0.0,0.0,0.0,0 +0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,,0.0,1.0,0.0,0.0,2.0,1.0,0.0,2.0,0.0,2.0,0 +0.0,0.0,0.0,0.0,0.0,,,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0 +2.0,1.0,0.0,,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,,,,0.0,0.0,1.0,0 +0.0,0.0,1.0,0.0,0.0,0.0,,0.0,0.0,,0.0,1.0,2.0,1.0,1.0,0.0,1.0,0.0,,1.0,0 +1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0 +1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,,1.0,0.0,0.0,0.0,0.0,0.0,0 +0.0,1.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,,1.0,0.0,0.0,0.0,,1.0,1.0,0.0,0 +0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0 +1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,,1.0,1.0,0.0,0.0,1.0,0 +2.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,,1.0,1.0,2.0,1.0,1.0,1.0,1.0,0.0,0 +0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,,,0.0,,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0 +,0.0,2.0,1.0,,0.0,0.0,0.0,,0.0,0.0,1.0,1.0,,0.0,0.0,0.0,1.0,0.0,0.0,0 +1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,0.0,2.0,1.0,0.0,1.0,0 +0.0,,0.0,1.0,1.0,,2.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0 +0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0 +1.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,1.0,,1.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0 +,,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0 +2.0,,,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0 +0.0,0.0,,1.0,0.0,0.0,1.0,0.0,0.0,1.0,,1.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0 +0.0,0.0,0.0,0.0,,0.0,2.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0 +1.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,2.0,1.0,,0.0,1.0,0.0,1.0,0.0,0 +0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0 +0.0,0.0,0.0,,,0.0,0.0,0.0,1.0,0.0,0.0,0.0,,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0 +0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,0.0,1.0,1.0,,0.0,,2.0,0.0,0.0,0.0,,0 +0.0,1.0,,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0 +0.0,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0 +1.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,2.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0 +1.0,0.0,1.0,,2.0,0.0,,0.0,0.0,,0.0,0.0,2.0,0.0,1.0,1.0,0.0,0.0,,1.0,0 +1.0,0.0,0.0,1.0,0.0,,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,,1.0,0 +0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,,2.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0 +1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,2.0,,0.0,0.0,1.0,0.0,,0 +1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,,1.0,0.0,2.0,1.0,0.0,2.0,2.0,,0.0,0.0,0.0,0 +2.0,0.0,0.0,0.0,,0.0,1.0,0.0,0.0,0.0,0.0,1.0,2.0,,0.0,0.0,0.0,0.0,1.0,0.0,0 +2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,2.0,0.0,1.0,1.0,,,,1.0,0 +1.0,,1.0,0.0,1.0,0.0,,0.0,2.0,0.0,1.0,1.0,2.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0 +0.0,,1.0,1.0,0.0,0.0,2.0,,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,,0.0,,0.0,0 +1.0,0.0,,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,,1.0,0.0,0.0,1.0,,1.0,0.0,0 +0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,1.0,0.0,0 +1.0,0.0,0.0,1.0,1.0,,2.0,0.0,0.0,1.0,0.0,2.0,2.0,0.0,0.0,1.0,,1.0,0.0,0.0,0 +0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0 +1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0 +,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0 +1.0,0.0,1.0,1.0,2.0,0.0,2.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0 +0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,,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,1.0,0.0,1.0,0.0,,1.0,0.0,0.0,0.0,1.0,0 +,0.0,0.0,0.0,2.0,1.0,0.0,,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,,1.0,0.0,0 +1.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,,,,1.0,0.0,0.0,1.0,0.0,0.0,,0.0,0 +1.0,0.0,0.0,,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,,0.0,,1.0,0 +1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0 +,0.0,1.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,,0.0,0 +0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,,,2.0,2.0,,2.0,1.0,1.0,,0.0,1.0,0 +0.0,0.0,,0.0,1.0,0.0,1.0,0.0,1.0,0.0,,1.0,1.0,0.0,,0.0,1.0,0.0,0.0,1.0,0 +0.0,0.0,1.0,0.0,1.0,0.0,1.0,,0.0,0.0,0.0,2.0,0.0,,2.0,1.0,0.0,0.0,1.0,1.0,0 +2.0,0.0,0.0,0.0,1.0,0.0,0.0,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,,1.0,1.0,0.0,0 +1.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,0 +2.0,,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0 +0.0,0.0,0.0,0.0,,0.0,2.0,0.0,0.0,2.0,,,2.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0 +2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0 +0.0,0.0,,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0 +1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0 +0.0,0.0,0.0,,0.0,0.0,1.0,0.0,0.0,0.0,1.0,,1.0,,1.0,1.0,0.0,1.0,1.0,0.0,0 +,0.0,,1.0,1.0,0.0,1.0,0.0,2.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0 +2.0,,0.0,0.0,,1.0,1.0,0.0,0.0,0.0,,2.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0 +0.0,0.0,,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,2.0,0.0,0.0,1.0,0.0,0 +1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,,2.0,1.0,,1.0,1.0,0.0,0.0,1.0,1.0,0 +,0.0,1.0,1.0,2.0,,1.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,1.0,0.0,,0.0,0 +2.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,,0.0,0 +1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,2.0,0.0,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,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,1.0,0.0,0.0,0.0,,0.0,,1.0,0 +0.0,1.0,2.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,2.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0 +1.0,1.0,0.0,2.0,2.0,0.0,0.0,1.0,0.0,,1.0,1.0,1.0,0.0,,,0.0,1.0,0.0,0.0,0 +,1.0,0.0,0.0,,0.0,2.0,1.0,0.0,2.0,0.0,2.0,0.0,0.0,1.0,,0.0,1.0,2.0,0.0,0 +0.0,0.0,,0.0,1.0,,1.0,0.0,0.0,2.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0 +,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0 +1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,,1.0,,0.0,0.0,0.0,2.0,0 +0.0,0.0,0.0,0.0,1.0,1.0,2.0,0.0,0.0,,0.0,,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0 +1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,,0.0,1.0,0.0,0.0,0.0,1.0,,1.0,0.0,0 +1.0,0.0,1.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,2.0,1.0,0.0,0.0,2.0,1.0,0 +0.0,0.0,,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,2.0,1.0,0 +0.0,1.0,0.0,,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0 +0.0,,,1.0,0.0,0.0,2.0,0.0,,,0.0,2.0,0.0,,0.0,0.0,0.0,,0.0,0.0,0 +0.0,0.0,,1.0,1.0,0.0,1.0,0.0,1.0,,0.0,2.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0 +1.0,0.0,,1.0,1.0,0.0,2.0,0.0,0.0,1.0,,2.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,2.0,0 +1.0,0.0,,,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0 +0.0,0.0,0.0,0.0,1.0,1.0,1.0,,1.0,1.0,,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0 +0.0,0.0,1.0,1.0,1.0,0.0,1.0,,0.0,1.0,0.0,1.0,2.0,0.0,,0.0,1.0,0.0,0.0,0.0,0 +0.0,,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,,,1.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0 +1.0,0.0,0.0,0.0,0.0,,1.0,0.0,,1.0,,0.0,1.0,1.0,2.0,0.0,0.0,1.0,1.0,,0 +1.0,0.0,,,0.0,0.0,2.0,,0.0,0.0,0.0,0.0,2.0,1.0,2.0,1.0,1.0,,,1.0,0 +1.0,0.0,,1.0,1.0,0.0,2.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,2.0,,,0.0,1.0,0.0,0 +0.0,0.0,0.0,0.0,1.0,0.0,,0.0,0.0,0.0,0.0,1.0,1.0,,1.0,0.0,0.0,1.0,1.0,0.0,0 +0.0,0.0,0.0,0.0,1.0,,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,,0.0,1.0,,0 +,0.0,0.0,,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,,0.0,0.0,1.0,0 +1.0,1.0,,1.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,1.0,1.0,2.0,0.0,0.0,,,1.0,0 +0.0,0.0,1.0,1.0,1.0,,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,2.0,1.0,0.0,1.0,1.0,0.0,0 +1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,2.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0 +1.0,1.0,0.0,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,,0.0,0.0,0.0,0 +1.0,1.0,,0.0,1.0,0.0,0.0,0.0,0.0,,0.0,1.0,1.0,0.0,,2.0,1.0,1.0,0.0,0.0,0 +1.0,0.0,1.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,1.0,1.0,0.0,0.0,,1.0,1.0,1.0,0.0,0 +1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,,1.0,2.0,0.0,1.0,0.0,,0.0,,,0 +0.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,,0.0,1.0,,0.0,1.0,0.0,,,1.0,0.0,0 +1.0,0.0,0.0,,,0.0,0.0,1.0,1.0,0.0,1.0,2.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0 +1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,,0.0,1.0,0.0,1.0,0 +2.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,0.0,2.0,2.0,0.0,0.0,,1.0,1.0,0.0,1.0,0 +0.0,0.0,1.0,0.0,1.0,0.0,1.0,,,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0 +1.0,1.0,1.0,0.0,1.0,0.0,2.0,0.0,,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,,0 +,0.0,0.0,0.0,1.0,1.0,,0.0,0.0,0.0,2.0,1.0,2.0,0.0,,1.0,,1.0,0.0,0.0,0 +1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,,0.0,0.0,1.0,0.0,1.0,1.0,,,0.0,2.0,0 +2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0 +0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,,1.0,1.0,1.0,0.0,1.0,1.0,,0.0,1.0,0 +2.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,,1.0,0 +1.0,0.0,1.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,1.0,,,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0 +1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,,0.0,1.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,0 +1.0,0.0,0.0,0.0,0.0,0.0,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 +2.0,0.0,1.0,1.0,2.0,0.0,1.0,1.0,,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0 +0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,,1.0,0.0,1.0,0 +2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0 +1.0,0.0,0.0,0.0,,1.0,0.0,,0.0,0.0,1.0,2.0,2.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0 +1.0,0.0,0.0,1.0,1.0,0.0,,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,1.0,,0.0,0.0,0.0,0 +,0.0,1.0,,0.0,,1.0,1.0,0.0,0.0,0.0,1.0,,2.0,0.0,1.0,2.0,0.0,0.0,0.0,0 +0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,1.0,0.0,0 +0.0,0.0,2.0,2.0,1.0,0.0,1.0,,0.0,0.0,2.0,1.0,,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0 +1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0 +0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,,,,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0 +0.0,0.0,2.0,0.0,0.0,0.0,2.0,0.0,0.0,,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0 +0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,2.0,,0.0,1.0,0.0,0.0,1.0,0.0,0 +,0.0,1.0,0.0,0.0,0.0,1.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0 +,0.0,0.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,,0.0,0.0,2.0,0.0,0 +0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0 +1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,,1.0,0.0,,2.0,0.0,,1.0,1.0,2.0,0.0,1.0,0 +,0.0,0.0,,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,,1.0,,0.0,0.0,0 +0.0,,,,0.0,1.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,2.0,,0.0,,,0.0,0 +0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,2.0,1.0,0.0,1.0,1.0,0.0,1.0,0 +1.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,2.0,,1.0,0.0,1.0,0.0,0 +0.0,0.0,0.0,1.0,1.0,1.0,0.0,,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0 +1.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,2.0,1.0,1.0,0.0,1.0,0.0,,0.0,0 +0.0,0.0,0.0,,2.0,0.0,1.0,0.0,0.0,,0.0,1.0,0.0,1.0,0.0,,0.0,0.0,0.0,,0 +1.0,0.0,,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,,0.0,0.0,0.0,1.0,0 +,0.0,2.0,1.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,1.0,0 +,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0 +0.0,0.0,0.0,0.0,,0.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,,0.0,0 +1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,2.0,1.0,,0.0,0.0,1.0,0.0,1.0,0 +1.0,,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,,0.0,0.0,0.0,0 +2.0,,0.0,1.0,1.0,,,0.0,0.0,,0.0,1.0,2.0,0.0,2.0,,0.0,0.0,0.0,1.0,0 +1.0,,1.0,1.0,1.0,0.0,1.0,,0.0,0.0,2.0,2.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0 +0.0,0.0,0.0,1.0,0.0,,2.0,0.0,0.0,1.0,1.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0 +1.0,0.0,0.0,0.0,1.0,0.0,,0.0,0.0,2.0,0.0,1.0,2.0,0.0,,0.0,1.0,0.0,0.0,1.0,0 +1.0,0.0,0.0,0.0,2.0,,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0 +0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0 +0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,,2.0,,1.0,0.0,0.0,1.0,0.0,0.0,0 +0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0 +2.0,0.0,0.0,0.0,2.0,0.0,,0.0,0.0,0.0,,1.0,0.0,,0.0,1.0,1.0,0.0,1.0,1.0,0 +1.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,,0.0,,2.0,0.0,,1.0,2.0,0.0,1.0,2.0,0 +1.0,,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0 +2.0,0.0,0.0,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,,2.0,0.0,0 +1.0,,0.0,1.0,1.0,,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0 +2.0,0.0,0.0,0.0,,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,,1.0,,0.0,0.0,0 +,0.0,0.0,0.0,1.0,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0 +0.0,,1.0,1.0,2.0,0.0,,0.0,0.0,,1.0,0.0,1.0,1.0,1.0,2.0,0.0,1.0,1.0,0.0,0 +0.0,0.0,1.0,,,0.0,2.0,1.0,0.0,0.0,0.0,2.0,2.0,0.0,1.0,1.0,0.0,1.0,0.0,,0 +1.0,0.0,0.0,1.0,1.0,,1.0,,,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,,0.0,0 +0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,,0.0,0.0,1.0,1.0,0.0,1.0,,0.0,1.0,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,,2.0,,0.0,1.0,0.0,0 +1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0 +1.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0 +2.0,0.0,0.0,0.0,,0.0,1.0,0.0,0.0,0.0,0.0,2.0,1.0,2.0,0.0,,1.0,0.0,2.0,1.0,0 +1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0 +0.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0 +0.0,0.0,0.0,0.0,0.0,0.0,2.0,,0.0,,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0 +,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,2.0,0.0,1.0,1.0,2.0,0.0,0.0,,0 +,0.0,,0.0,1.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0 +1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0 +0.0,0.0,0.0,0.0,1.0,,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,2.0,0.0,2.0,0 +0.0,0.0,,0.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,2.0,,0.0,0.0,0 +2.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,,1.0,,0.0,,0 +1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0 +0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,1.0,0 +1.0,0.0,0.0,2.0,0.0,0.0,1.0,,0.0,,1.0,2.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0 +1.0,,0.0,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,,0.0,1.0,0.0,,0.0,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,,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0 +0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,,1.0,0 +0.0,0.0,0.0,0.0,,0.0,,0.0,0.0,,0.0,0.0,2.0,,2.0,1.0,1.0,1.0,1.0,0.0,0 +0.0,0.0,0.0,0.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,2.0,1.0,2.0,0.0,0.0,0.0,1.0,0.0,0 +1.0,0.0,1.0,,,1.0,2.0,0.0,2.0,0.0,0.0,0.0,2.0,0.0,0.0,,0.0,1.0,,0.0,0 +1.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,,0.0,0 +1.0,0.0,0.0,,0.0,0.0,0.0,,,,1.0,,0.0,0.0,1.0,,1.0,1.0,0.0,1.0,0 +1.0,0.0,0.0,2.0,0.0,0.0,2.0,0.0,,0.0,,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,2.0,0 +0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,0.0,0 +2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0 +1.0,0.0,0.0,,1.0,,0.0,0.0,1.0,,0.0,1.0,1.0,,0.0,,1.0,0.0,,0.0,0 +1.0,0.0,0.0,1.0,1.0,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0 +0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,,1.0,0.0,1.0,0.0,0 +1.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,,0.0,0.0,1.0,2.0,1.0,1.0,0.0,1.0,,1.0,0.0,0 +1.0,0.0,0.0,0.0,,0.0,1.0,1.0,0.0,0.0,0.0,0.0,,0.0,0.0,1.0,,,0.0,0.0,0 +0.0,1.0,0.0,,0.0,0.0,0.0,,,0.0,2.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,,0 +0.0,0.0,1.0,0.0,0.0,,1.0,0.0,1.0,,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0 +0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,,0.0,0 +1.0,0.0,0.0,1.0,1.0,,0.0,1.0,0.0,0.0,,0.0,,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0 +1.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0 +0.0,0.0,,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,,0.0,0.0,1.0,1.0,0.0,0.0,0.0,,0 +0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,,0.0,0.0,1.0,0.0,0.0,0.0,,0.0,1.0,0.0,0 +0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,1.0,2.0,0.0,0.0,,0.0,0 +0.0,0.0,0.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0 +,0.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,0.0,1.0,1.0,0.0,,1.0,0.0,1.0,0.0,0.0,1.0,0 +1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0 +0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,,0.0,1.0,0.0,2.0,1.0,2.0,1.0,2.0,0.0,0 +2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,1.0,1.0,0.0,0.0,,0.0,0 +1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0 +0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,0 +0.0,0.0,1.0,0.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0 +0.0,0.0,1.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,,,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0 +,0.0,0.0,1.0,2.0,0.0,,0.0,0.0,,0.0,,0.0,0.0,2.0,0.0,1.0,0.0,1.0,0.0,0 +2.0,0.0,0.0,2.0,1.0,0.0,1.0,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0 +1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,1.0,,0.0,0.0,0.0,0.0,0 +0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,,0.0,1.0,0.0,0.0,,0 +1.0,0.0,0.0,1.0,,1.0,,0.0,0.0,0.0,1.0,2.0,1.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0 +0.0,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,,1.0,0 +1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0 +0.0,0.0,0.0,1.0,,0.0,0.0,1.0,,0.0,1.0,0.0,0.0,,2.0,1.0,1.0,,,1.0,0 +0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0 +0.0,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,2.0,1.0,0.0,1.0,,,0.0,0.0,0.0,0 +1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,,0.0,1.0,0.0,0.0,1.0,0.0,,,0.0,0 +0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,,1.0,,0.0,,1.0,0.0,1.0,0.0,,0.0,1.0,0 +1.0,,0.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,,1.0,2.0,0.0,1.0,2.0,,1.0,0.0,0.0,0 +0.0,,1.0,0.0,2.0,0.0,2.0,0.0,,0.0,0.0,1.0,2.0,1.0,,2.0,0.0,0.0,1.0,0.0,0 +0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,,0.0,0.0,1.0,0.0,0.0,0.0,2.0,1.0,0.0,0.0,,0 +0.0,0.0,0.0,0.0,,0.0,1.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0 +0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,,0.0,0.0,1.0,0.0,1.0,1.0,0 +,0.0,,1.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,2.0,0.0,0.0,2.0,0 +1.0,1.0,1.0,2.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0 +0.0,0.0,0.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,,2.0,1.0,1.0,0.0,,1.0,0.0,,0.0,0 +1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0 +1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,,,2.0,2.0,1.0,0.0,0.0,0.0,0.0,1.0,0 +1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,,0.0,1.0,0.0,1.0,0 +0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0 diff --git a/data/GAMETES_Epistasis_2-Way_missing_values_0.1_a_20s_1600her_0.4__maf_0.2_EDM-2_01.tsv.gz b/data/GAMETES_Epistasis_2-Way_missing_values_0.1_a_20s_1600her_0.4__maf_0.2_EDM-2_01.tsv.gz deleted file mode 100644 index e485e6b..0000000 Binary files a/data/GAMETES_Epistasis_2-Way_missing_values_0.1_a_20s_1600her_0.4__maf_0.2_EDM-2_01.tsv.gz and /dev/null differ diff --git a/data/GAMETES_Epistasis_2-Way_mixed_attribute_a_20s_1600her_0.4__maf_0.2_EDM-2_01.csv b/data/GAMETES_Epistasis_2-Way_mixed_attribute_a_20s_1600her_0.4__maf_0.2_EDM-2_01.csv new file mode 100644 index 0000000..b83b3b6 --- /dev/null +++ b/data/GAMETES_Epistasis_2-Way_mixed_attribute_a_20s_1600her_0.4__maf_0.2_EDM-2_01.csv @@ -0,0 +1,1601 @@ +N0,N1,N2,N3,N4,N5,N6,N7,N8,N9,N10,N11,N12,N13,N14,N15,N16,N17,M0P0,M0P1,class +0,0,0,0,40.2703262977877,0.4039307838084094,41.56408179546723,2,37.93528364218338,0,92.61475802745386,2,65.24573290241844,2,1,25.715406664721517,1,0,92.83212305088718,56.18272596929293,1 +1,0,0,0,23.803000300742617,81.96834744753734,80.37480592547445,1,5.7283321209598,0,18.76856554563035,1,30.54743423765382,1,1,22.89048837902813,0,1,72.5565682762849,63.96930343044633,1 +0,0,0,1,46.01848150340828,31.025788065754263,7.912648666544081,2,35.49652092122561,0,30.040668019641032,1,10.325025542829646,1,1,30.55588970578197,0,0,17.307370464965143,43.37444140420493,1 +0,0,0,1,146.53085315115243,4.704548246614854,64.33363429759241,0,37.35699810772056,0,55.43692236500092,1,80.31753258179333,1,1,77.49631770551298,1,1,52.902681112863554,73.83007554351794,1 +0,1,0,1,45.09160305441062,5.889670319264878,45.41283551959889,0,34.89244614185614,0,26.65119531707049,0,76.01925800951116,1,1,16.54458195035094,1,0,36.99081305929518,43.7795280473428,1 +1,0,0,1,147.02437008216265,22.59721176478872,64.09733614277457,0,4.269242908717402,0,77.55229082342773,1,56.43693146824869,1,1,26.22336285637687,2,0,27.67204124096075,12.201419271889907,1 +0,1,1,0,38.87625040722403,26.28737699873474,4.951881906969274,1,4.940801899088154,0,14.580037668069185,0,2.7215427272684445,0,2,47.482168108852775,0,0,49.39464994775173,0.073241978066707,1 +0,1,0,0,61.82340589001719,89.6619707040486,6.251505747440178,1,0.9413784816680648,1,58.62747743686148,1,92.92881388804756,2,1,56.82959945813435,2,0,61.93359336770421,95.77070074626263,1 +0,1,0,0,99.06467502628112,2.2907986789362846,86.27028543036033,0,40.60144705854327,0,74.55066621454044,1,137.83313318292048,0,0,82.51674018666246,1,0,55.59129875089226,88.99316323132642,1 +1,0,0,1,64.94781638129632,42.99308323408289,40.53316230665071,1,6.919561498957605,1,69.75577069023542,0,40.79382367181046,2,2,45.13930021148515,0,0,19.20517927081393,46.083331244747846,1 +1,1,0,0,135.5914877156544,79.93825812585594,37.6219304363952,0,4.785730507283558,1,65.21163345462952,0,119.146518879033,1,1,23.47405945727227,0,0,39.07881013979727,7.010159405405425,1 +0,1,1,1,93.3946541278166,26.620114982896816,46.02947291402768,1,38.857796810662265,1,76.68789263669368,0,12.84020282339984,0,0,30.110650674170746,0,0,78.67336485958731,52.18329389395828,1 +0,0,0,1,87.36038666422081,35.098692915236384,35.58614716743227,0,18.049504584485216,1,61.956034340329616,1,68.02885133011236,2,1,23.124808848430355,1,0,69.25483933354126,64.02099599584484,1 +0,1,0,1,97.01896241728478,20.68026793374261,8.164656616452671,1,32.741327170385205,0,101.37891093442992,1,31.917668257368128,1,1,16.870767548091532,1,1,91.03556576676031,58.02614709109552,1 +0,0,0,2,35.249908187627256,31.51126833753606,33.16420361848287,1,46.81752990709163,1,2.8174047082505203,2,57.87794829211988,0,0,21.912389939129973,1,1,31.601663689605164,21.78025349104332,1 +0,0,1,1,14.12721047502184,20.62526156448297,17.433232906441702,1,10.730792444147152,1,15.54836157473934,1,1.8030094735862867,1,1,27.370083296197567,0,0,50.68991967661052,96.14149377905986,1 +1,1,0,2,7.94483936736321,46.48018565796208,7.249645956538991,1,19.9133611646963,1,57.8673150669848,1,18.55688400919691,2,0,4.11939446407183,1,0,56.36612140549394,68.44313535440818,1 +0,0,0,1,37.38158517725337,32.680484533279284,26.964799589631223,0,9.331650377572082,0,136.2094160629751,1,34.688727482119106,1,1,82.42956107804073,1,1,6.666173823750593,30.806015318720043,1 +0,0,1,1,51.293608219076106,44.28950515220557,11.470274437013083,0,21.13996725308752,1,137.60187847670386,0,85.04747490952313,1,1,19.2956507144778,1,0,12.38615686286344,10.833069554052477,1 +0,1,0,0,85.24309436199894,10.767750161233442,80.91482189740604,1,12.502528873630297,1,43.71621171026744,1,125.51393103850542,0,1,48.436191544552585,0,1,12.072363046336848,45.07218228513643,1 +0,1,1,2,76.67614023615815,30.48837176317896,9.805986065417745,1,12.207862030689745,0,32.39102830466267,0,50.70528212836544,1,0,42.7642693498648,0,0,66.67779965550857,54.2964616755271,1 +0,0,0,0,116.75856610218187,0.2318474257219982,31.349956891312814,1,38.77086561378447,0,60.46127053736756,1,37.76749198924392,0,1,28.28998751945512,1,1,5.518790772200793,13.987856575580428,1 +0,0,0,0,21.06357317745593,25.65360602924784,79.31409722143846,1,3.786111141099402,1,54.541481909352,1,49.16752514270116,1,0,20.685730198671425,0,1,5.7541102042541485,41.741707568942594,1 +0,1,0,1,47.756525406700895,14.580558399781346,6.099455224159017,0,11.219438831309974,0,97.55692700829584,0,105.8553239139472,0,1,31.641492682840383,1,1,3.1500589726092434,43.86997137561153,1 +1,1,0,1,130.87705919013976,44.31094253800721,99.85800056957235,0,6.183767747980479,1,61.40119529278997,0,13.26279816142007,1,1,62.27450738227861,1,0,111.14063039818988,94.40089258063205,1 +0,0,0,1,64.225905056064,27.69669042157895,76.76399953958747,1,5.043976209431761,0,66.31741400358857,1,56.7954605757131,2,1,3.3764413593235454,0,0,39.64807416329423,1.9934165252603773,1 +0,1,0,1,48.97234591382354,45.3028929195529,28.82600843970152,1,36.629769836495946,1,90.7366892312861,1,87.61372635974438,1,1,6.853893079548573,1,0,88.28182506772787,74.52110269524692,1 +0,0,0,1,36.00800672991139,40.83718700636273,66.69222628272402,1,3.490204028397459,0,79.12653598478833,1,67.0150399565589,1,1,49.17963410293861,2,0,35.84833657761789,11.48614824644608,1 +0,1,0,0,34.88516893034723,15.582194824618917,25.69808970426225,1,26.980918436847308,1,56.717765026104416,1,25.95173952858294,0,0,86.17757148345494,2,0,21.896683063208688,35.77569655470404,1 +0,1,0,2,4.480069982432094,48.42314281551144,48.31908811155132,0,45.84929449071648,1,3.221782596966527,1,27.72088288653069,1,1,26.758046679080465,0,0,11.56886588728024,11.869240014799148,1 +0,1,0,2,74.58413542389948,30.049820640832397,106.54216510370706,1,44.81574114689264,0,141.26408858647696,1,35.41838030906804,0,0,30.87255820021648,0,0,14.889491554435237,38.33994443142591,1 +0,1,0,2,145.6853706490037,22.1860412576394,3.411519660552975,1,75.85317877797094,0,13.11313033204527,1,70.89489791645701,2,1,47.15133767889548,1,0,24.28643156404054,22.149492366842072,1 +1,0,0,2,146.47322005153484,47.92903759942109,51.17929734112137,0,64.94431426758979,1,0.5910799488709817,1,112.06514224753468,1,0,41.13953896370175,0,1,3.0476671330472382,47.47357973318941,1 +0,1,1,0,90.12888745079007,7.705543087737571,33.983747116939554,1,31.359423930719288,0,6.451979223382476,1,39.89138854095348,1,2,11.293954407894324,2,0,14.893734209045457,16.797327011794405,1 +0,0,0,1,58.1259645097264,38.6617104311467,44.36205441225113,2,21.235371206067445,1,13.722900796873832,2,44.42041494829351,1,2,8.479315898414342,1,0,99.98805823441715,109.37758722077652,1 +0,1,0,0,54.08237507749348,26.29553651577268,34.65419931918474,2,58.82073814311195,1,40.23139554324741,1,77.4116226263101,1,1,50.43508723339543,2,0,62.6115855585948,72.06767520756499,1 +1,0,0,1,148.69139767928797,28.628566551228463,46.36855652388209,2,65.63188482116898,2,29.69627332651217,0,62.20623102435692,1,1,31.36252923155554,1,0,10.006675010294618,40.35921224731689,1 +0,1,0,0,55.16934596232297,21.56066053682824,20.203673166492653,0,4.741787713859741,0,120.49231831509869,1,32.75146177220737,0,0,36.6256988700744,1,1,86.11559705986646,96.06065720454698,1 +0,0,0,2,55.9181892007724,27.693519847450776,36.169741227217486,2,2.652804730361236,1,30.98826428505708,0,61.45453247131575,1,2,18.821322668612712,1,0,41.10222890902514,0.9157802529962288,1 +0,1,0,1,64.47489788475013,91.46552262556312,0.4448455310600285,0,41.99185329715582,0,63.403298517744375,1,46.70462077383885,0,0,28.611481485944967,1,0,137.38194683474487,79.24180047097482,1 +0,0,0,1,68.31565921051069,26.358575752278497,21.363098252301576,1,69.1076800579133,0,22.52124107422186,1,24.738273479132797,1,1,26.50074409045102,0,0,15.130527583701731,25.125964482726072,1 +1,0,0,0,139.08493861148636,29.11522811982392,87.43553037877794,1,20.206588735076785,1,65.52170636096747,0,111.31654771357356,0,1,27.69141597682357,1,0,30.36362131944409,10.199445534001844,1 +0,0,1,1,2.755785510749748,7.995704485646887,69.21262579158238,1,26.88866189258957,0,84.44309568382951,0,9.672604479302072,1,1,43.212126243111285,0,0,27.32548962591291,2.3400493911795497,1 +1,0,0,1,18.024083145179425,37.20898443616896,13.752425203528084,0,4.068924329944506,2,111.60277011678431,1,123.86515338205,0,1,45.80285649663584,1,0,5.861252742145978,28.987867696232755,1 +0,0,0,0,61.38282013035035,47.05354376468123,22.450904236522312,2,70.75842916662936,2,8.713591435025824,0,50.151499428385925,2,0,19.40308427313888,0,0,41.323382907487776,27.91475417276456,1 +1,0,0,1,53.44550232238822,36.88971684251322,17.730355269673314,0,69.1673980338752,0,49.43065601850587,1,46.10705634908572,0,0,85.09160634144538,2,0,116.90675982881312,97.5845023057473,1 +0,0,0,0,58.81490951411868,9.995546956555406,24.771314454989238,1,18.697658361591916,1,27.073298830695556,1,66.19136933935997,1,2,24.45836896062771,1,0,18.278930336588715,42.50385933401274,1 +0,0,0,1,98.92250301469667,89.81005034656184,49.20916429351782,2,6.562145236915712,1,85.1486330529392,1,85.42762362796194,0,1,82.32007946053078,1,0,57.2515945572538,146.81906228210187,1 +1,2,1,1,29.724345576278573,42.62514072562399,35.93628405205299,2,42.50021970367776,0,89.80462137905637,0,11.145487463727228,1,0,18.337955284448544,1,0,72.89388975929973,114.941935862483,1 +0,1,0,1,49.00582005560575,7.666032126336769,5.494533731608048,0,58.75485006127816,1,49.92586203056143,1,97.60245661739572,1,1,14.086101508260208,2,0,11.927572086819891,19.97799709819669,1 +0,1,0,2,21.356823898931616,13.294153444552904,18.38230215815416,1,43.259076489484606,0,47.51808368797428,1,15.67895773749946,0,0,87.6961785186988,1,0,54.03045387178198,60.42558708969695,1 +0,1,0,0,94.56485741695464,36.98525596935969,24.96107419305512,2,37.45371737171936,2,72.35253845227861,1,145.15183985795665,1,1,84.57075135794216,1,0,71.91132161321536,56.13093024918057,1 +0,0,0,1,51.80898285076129,49.44763926006277,27.8541812768314,2,21.56620577668756,1,18.15450279089612,2,92.2556856105169,1,0,91.91215254144232,1,0,76.44142733277712,84.68515689422284,1 +0,1,0,1,97.03882540215486,3.004464153483122,92.72272285998795,1,10.91897941693507,0,7.07663325432169,0,73.88465321857178,2,1,7.782743891557692,1,0,7.54716024616796,38.766585638846685,1 +0,0,0,0,3.3022471309539005,46.41181730073635,27.892926481013507,0,19.68697049126325,2,98.82010871351214,0,35.43394063877951,0,2,4.646659093065708,0,1,36.0868536452769,2.277392616804619,1 +0,0,0,1,78.09949963628225,30.047753610860543,47.93008388211232,1,2.913761231625217,0,8.713132497947186,0,83.22155231745026,1,1,10.196525284109326,1,0,11.235485440925505,48.37271395194641,1 +0,0,0,0,85.95357145170703,22.025212384056854,104.77481645235572,1,62.3075294004241,2,109.13368468996045,1,54.31615136067766,1,1,34.74001795540376,1,0,21.06234750736204,3.917085383616509,1 +0,0,0,1,111.345240727519,36.94900964612911,39.87410500602333,0,14.203141812403054,1,62.690119374793646,0,110.35758361620869,2,1,9.93590008951804,1,0,34.464133656293804,21.10847155095535,1 +0,0,0,1,57.05804499264177,14.063751125401946,2.168814725833029,0,4.930706802666074,2,55.01914825683605,0,98.59386254361144,0,1,8.914584810062271,0,0,45.5534219525265,36.85321078770919,1 +0,0,0,0,102.26448043683249,20.156539310324064,2.381922883572701,1,49.98479964190074,0,77.70582170840811,1,107.24453782072196,0,1,49.56060210529269,1,0,71.06529052513713,98.89297740920416,1 +0,0,0,1,96.92219492796131,2.5166117532367416,16.65613643566552,1,3.687098316804022,0,134.0731718990268,1,55.19027725950694,1,2,31.02978364062176,0,0,6.611950295120766,36.8329331195615,1 +0,1,0,0,66.49745576336198,30.35828618131565,20.29514011401765,2,46.14013252597773,1,84.53732690864642,0,36.54736311489061,0,1,7.292358355660395,0,0,30.129773588985287,15.223262851060548,1 +1,1,0,0,50.125440361151,27.33640455690105,45.4358407554528,1,15.963338434623015,0,86.15662860815188,2,5.337361043115646,2,0,46.20668777925784,0,0,8.07121669937732,16.617351699373007,1 +0,0,0,1,89.67020017623555,49.599331816396166,66.8158743691688,1,96.63538256338072,0,51.77121079176783,0,92.2714599556287,0,2,89.13730617696635,0,0,7.040228298582873,28.245133406595485,1 +0,1,1,0,43.32116147596392,16.53966171396945,34.93688598751366,1,16.06263788167352,2,24.947880240766736,1,7.104338713848296,0,1,57.13636843949853,1,1,42.67282233797784,5.430227410153298,1 +0,1,0,1,121.26796071457204,41.09474596027818,21.27506378625858,2,31.74020353502432,1,78.64676587928031,1,22.91444127658976,0,2,5.788642002903344,1,1,44.2318607579708,26.78657008737234,1 +0,1,0,0,75.74681547567053,91.43112672497789,73.81697337908295,1,21.778792289701727,1,89.80502443747636,0,25.20898190720589,1,1,123.36232966951546,0,0,38.01937707853611,39.065861198125006,1 +1,1,0,0,61.63933456840173,21.79847634054681,15.857733274822111,0,16.707873831364843,1,9.611092132240268,1,19.526795776983263,2,1,48.4626608997173,0,1,17.086420630748734,19.13675347441861,1 +0,0,0,0,108.54520771119992,43.52245417918796,2.3674721983537097,0,35.4933334794065,1,93.32538455829314,0,40.870782378763806,2,1,3.168159364253836,2,1,21.74444062454302,11.822491591901644,1 +0,0,0,1,87.71839347839507,31.52092892812084,98.01363710069292,0,24.873374024693984,1,74.60517552972712,0,98.73814331048251,1,2,79.08279836306568,1,0,104.65678908993311,95.42657668608872,1 +1,1,1,1,62.81020435447808,19.884213737463423,19.59870333240256,1,41.33175535225383,1,85.30560065119118,2,146.0123019661924,0,1,11.44196184219522,0,0,78.13560083466282,110.36073590488648,1 +0,0,1,2,53.81639533186015,20.69687688720584,31.99208310195906,0,67.43503852376008,1,50.093547897097416,0,92.6077045888022,1,2,44.35157282717207,0,0,14.51196205136402,11.005292492956604,1 +0,0,0,1,60.09320680702994,10.345638716834747,2.438681628043504,1,29.600613405973284,0,85.6021962292475,1,88.58322776486474,1,0,9.824882801942842,1,1,51.967082755203705,83.53439852945117,1 +0,0,0,1,62.33975215630407,34.57690982220083,41.547867586409545,2,40.40134744315231,1,107.26551429598436,1,79.2786593867404,1,1,37.51555707842088,1,0,26.55479690228613,147.91008804231743,1 +0,1,0,0,37.84625106385121,98.3078639979902,26.225640309858186,1,44.84448995177351,0,16.698728506287424,0,103.2959582616358,0,2,44.29417782113787,1,0,2.739767762047973,7.550837600957272,1 +0,1,0,1,77.14972780289696,32.94852722025239,25.26464106865848,1,0.0260376938361173,1,2.6981820259848632,0,44.52390155724272,2,1,98.15839396496668,0,0,35.805419834594225,7.783886140022755,1 +0,0,0,0,147.07574672233574,80.83503178486237,45.98791643721327,1,36.05683540459757,0,6.354682141462892,1,47.97640541257866,0,0,33.54973134285428,1,0,21.177776997605985,42.190756158904925,1 +0,0,0,0,57.59487914153602,39.442398243199534,75.18148360913665,0,36.10818027414373,0,24.024647058428663,2,137.43831697515503,1,1,35.926738433637155,0,0,49.61268332116372,111.91310207431248,1 +0,2,1,1,10.632151491540764,27.15604481259502,92.11256638810666,1,16.51287265015983,1,50.27273889653095,1,26.25801733502812,2,0,78.82242219681001,0,0,26.655834919174755,34.19064612058476,1 +0,2,1,1,4.576855852873524,85.49716920871616,34.92785223488273,0,55.36084724278218,0,52.00983384304323,0,54.11156181524044,1,1,44.03632988005556,2,0,16.706014917714647,24.831247272562923,1 +0,1,1,1,139.9134935091002,19.1321135351379,10.482240250738515,1,4.84090583678568,0,4.01177416229877,0,29.05630354558892,0,1,91.81355566629792,1,1,41.3899593193805,20.996001354171646,1 +0,0,0,1,137.10183256434948,15.874798226080344,19.9961904964601,1,53.10042042588309,1,65.32074713552987,0,1.7363940613002893,0,0,2.70942662646666,1,0,5.898388351703742,29.62904317142005,1 +0,0,0,1,88.96605845088135,45.65218590670467,46.95039704576268,1,77.93388015393936,0,39.442533906119394,0,78.99270981192171,1,2,19.117033399114906,1,0,52.76756966369297,93.13187714650697,1 +0,0,0,0,136.232813005322,41.63309832253726,82.63705690842045,1,34.22062002679785,0,33.14595194838931,1,81.26284541746011,1,1,92.28275827149317,0,1,52.470055433182814,73.815898520455,1 +0,0,0,0,94.56640718209172,23.822584995946027,72.25016814844116,1,48.76332836768348,0,10.122498734248476,0,63.93194123669675,2,1,11.822812809739592,0,0,72.4674598031639,77.20105769037207,1 +0,1,0,1,52.62909562105133,41.84752354234985,44.465574245607456,2,39.935007464957,0,46.282601610477855,0,45.523197001823526,1,1,11.134711953666873,0,0,7.8008335325072125,26.090389382570145,1 +0,0,1,2,81.67135803746702,35.400128203478886,22.45420663650301,1,20.585888622390463,2,96.68494704639376,0,81.79648222387743,0,0,36.43339264406833,0,0,40.04852208591184,46.385116199190094,1 +0,1,0,0,51.25674619452011,6.458914770810514,20.296244396381457,1,26.799188255974823,1,58.79515112276139,2,136.00577721063354,1,1,19.54230327941366,0,1,37.20480214938608,47.1445879154593,1 +0,0,0,1,79.92172248663383,37.65181786688575,22.2313261674289,0,49.14710253990739,0,68.10622640513279,1,68.61929883426055,1,1,21.28235159333104,0,0,3.129048029944248,33.81464182577435,1 +0,0,1,1,122.81074594864089,41.52996732190712,43.64085579667504,0,16.23681551968473,1,5.466477155566096,1,20.344302597735897,1,0,9.572322971997254,0,0,19.270669365578392,9.038135171871524,1 +1,1,0,2,73.56824710091838,31.723548742831365,31.95922228974611,1,26.465642529545825,0,8.768132227811925,1,77.76479879376497,2,1,28.332291665132374,0,0,7.383307657235694,2.9019193614004344,1 +0,0,0,1,24.227816317889527,28.67637796119799,15.268602083912477,2,25.907957555648025,1,140.68929568436863,1,75.83659615820736,1,2,14.24421770132682,0,1,27.14263185305141,23.53499631668773,1 +0,1,0,1,41.14388937709525,18.17900287143758,60.22944289036344,1,30.088379306032135,1,16.80276669193137,0,135.79394520078102,2,1,45.61682119788701,0,0,92.24112566648267,96.01907644608562,1 +0,0,0,0,65.18203157790379,67.29160273548823,21.615817316960616,2,47.76878779486594,0,36.38132917902065,1,78.19989620714449,1,1,23.82510554261107,1,1,53.40409593631525,62.77587346541049,1 +0,0,0,2,49.321500955407245,27.597278947683908,51.433292967076575,1,6.741293770422918,1,56.31168038037696,0,17.634938556267322,1,0,54.73447346486344,0,0,52.785580421462,93.15595300014982,1 +0,1,0,1,1.6691580491057012,8.291939465446646,47.8798743581652,0,33.85949051850971,0,32.26620731873165,0,38.51190144111976,1,0,81.59885009689312,2,1,49.48255429073217,0.4913241893558628,1 +0,0,1,0,81.45364860314501,42.819582692535874,26.152485213413424,1,31.337948767568907,2,61.72349765857125,2,75.91775034850656,1,1,39.93577179027966,2,0,13.691109936278703,42.79729942233086,1 +0,0,0,0,142.47664758875283,82.5033263938803,3.9389814650747033,1,6.280991582588763,2,51.98929477085872,1,106.10313519412384,0,2,48.72291565706352,1,0,10.842208030557664,48.35640612181394,1 +0,1,0,2,78.27038007553939,43.93863060107036,99.15453492458252,2,37.27281469653245,0,38.78470495756866,1,56.766455920382775,2,2,36.84328452273207,0,0,5.985619302675649,39.42788966033537,1 +0,2,0,2,48.03353767641662,7.415481359291381,18.907519910296877,0,25.04089498286049,0,22.338353668163613,1,53.32627875663346,1,1,7.787089195717389,0,0,89.72142885163879,60.57742179055231,1 +0,0,0,1,96.17171460145389,93.07859647872132,26.112124229450167,2,14.772635781904754,1,139.55349760912495,1,144.28468511018616,1,2,80.12483760388821,1,1,33.04397178375096,13.41034953369623,1 +0,0,0,0,57.55710244781204,92.96412491929874,9.598438352089545,1,1.7545779126319494,0,24.058491101284083,0,67.46073982455749,1,2,8.332794980857466,0,0,60.63051345047833,86.4988448751206,1 +0,0,0,0,44.19978399474443,14.371438774799596,24.163539372708136,0,16.585931345586086,1,99.02454647788488,0,96.5172972984594,0,0,99.9512307159794,1,0,35.363625441574165,4.652321257227837,1 +1,1,0,0,6.476840344157864,28.54942846752498,47.97040990028727,1,10.9575170564719,0,91.05885509969625,1,25.01786445048524,1,1,9.106760907296646,1,0,87.51283952888431,58.89115676947607,1 +1,1,1,2,64.61780683299256,32.62720183671365,3.78659552973023,1,10.3977239041532,0,92.6331789419107,0,75.00814195922584,2,2,80.26258581846399,1,0,36.54493191869273,29.72273412767667,1 +0,0,0,1,96.6658699153206,42.347285955048704,13.35387756315029,1,25.705549848733597,1,3.6622057599625446,1,95.28506826696218,1,0,30.26440217479861,0,1,66.70571271194686,93.43221257434593,1 +0,0,0,1,34.42455032772072,19.348433555812388,42.93946174169528,2,16.343296132923484,1,60.17651144976861,0,42.625548266244685,1,0,69.37337847545226,0,1,39.175493399040455,6.3876455559111145,1 +1,1,1,0,103.30573925850622,7.923456704088949,45.10340450261579,1,18.41438587029752,0,15.804267255721772,2,59.539210975437136,0,1,4.73199152847425,1,0,11.065472690561846,41.56404653085819,1 +0,1,1,0,102.74183943860402,85.39738659513708,5.037123279636507,0,20.31105860074096,2,136.34093948760912,1,79.96403273753774,1,1,1.1472871695460518,1,0,81.5364014267718,90.32772152221884,1 +0,1,1,2,4.150058464075062,40.01246078392518,11.038929001278447,2,1.2277056862288582,1,22.618564937157927,0,131.45121555339747,2,1,3.1128425137424367,1,1,17.853690213885216,38.122484587930536,1 +2,0,0,1,83.71551217301996,39.41398105750768,1.9211960282488396,1,8.148790165118648,1,84.7222738241292,0,60.89942802828334,2,0,74.46984583442051,0,1,40.75608115435976,44.80623945663144,1 +0,0,0,1,77.97195963103243,38.416183971985824,3.966016229723224,1,3.53002337786148,2,131.4456160993936,1,96.59930846935292,1,0,35.83153078336772,1,0,4.64934554501858,45.292433080310296,1 +1,0,0,1,10.869242157134206,32.898545436537404,0.5375967744319365,2,22.346038039083748,1,35.048440039743944,1,55.08705589654146,2,0,8.774492403812767,2,0,39.93840296379113,4.4703883179898485,1 +0,0,0,0,54.55510377130281,30.67081889601004,2.1640852452072146,2,45.22990746883122,0,13.87926442624036,1,110.63072350428558,1,0,70.82715621595102,1,0,24.55207119030219,15.667161703172368,1 +0,1,0,1,87.76523999038467,27.439931136936124,35.616097132580855,1,17.467182814176613,2,48.06610035921612,1,48.04687160071614,1,0,84.909056684969,0,0,63.243217994172,63.4131592127878,1 +0,0,1,2,5.223110083282823,23.54766228929226,24.958369705884397,1,88.54725083530914,1,47.24149634233029,1,132.68107731873548,2,1,30.12175681839559,0,0,35.883131649940886,11.634407637115574,1 +0,0,0,1,140.6658576084744,96.90705940632712,8.62922193385553,1,49.53020869750405,0,109.56590430284956,0,21.69174706351621,2,0,13.303473957289192,1,0,11.555034277480768,33.63888288732338,1 +0,0,1,1,120.5823036329193,25.48214640086873,58.30696760850661,1,13.363819806801883,2,33.55693968922852,1,90.51922112588828,1,0,46.82632127368858,1,0,4.962675391557353,21.152239845463622,1 +0,0,0,1,69.44206723967606,13.37815852407866,27.500725143407696,1,1.20378138831449,0,97.84939669843398,0,36.72276154192136,1,0,75.92163514233162,1,0,2.8200863963311784,23.468697674617044,1 +0,0,1,1,35.44962671285065,10.874681981194012,17.547922389834824,1,3.502822077729306,0,6.530065310191091,2,93.00900575804832,2,0,42.7693635310297,1,0,34.167275143802144,17.172199681253158,1 +0,0,0,0,85.60078040329186,7.579396533013982,84.64771271084163,0,6.086321608371614,0,57.05096294688603,1,114.8514731704893,1,2,20.82902989141372,2,0,7.298252388109433,47.50340395683757,1 +0,0,0,1,5.980663170525435,4.206334534161299,35.46834776784877,1,2.297789917296305,0,36.41333934171976,0,36.93005471004033,1,1,63.119626191684674,0,0,124.32594190678462,70.39004289828358,1 +0,0,0,2,63.145713099655474,18.98168711062304,40.30720626306367,1,32.874216498806,2,40.64741228264414,0,66.57296351191337,1,1,13.98797070195952,2,1,10.449646770913985,29.40885320468245,1 +0,0,0,1,18.465037834134836,7.485888597445617,37.59765151000189,1,7.631265536284198,0,66.44718763523713,0,91.3540002292482,1,1,99.21990229787464,1,0,81.4760661781596,58.413294037677765,1 +0,0,0,0,85.1866861311839,7.755318271554601,43.10556851983656,1,2.6033644681922654,0,43.44039435894378,1,8.620437268756675,1,1,78.02776748855322,0,0,81.5411564146533,90.40189603818033,1 +0,0,1,1,145.93220234970326,13.506996153031588,39.90053866241991,2,23.98693129481294,1,77.55599349453772,0,116.06598004036591,2,1,3.848156316392687,0,0,12.914765826231267,39.66800214204304,1 +0,0,0,1,77.43540180696016,12.786598340013205,13.735815816089758,1,34.75041181751347,2,62.64191464828202,2,95.14904412572746,1,1,68.38298004954547,1,1,54.658634541579545,58.87606620531519,1 +0,1,0,0,134.81068571415224,13.757110745353224,89.94588406926334,1,29.591898774790863,0,100.35108685811498,1,21.83838390692645,1,0,12.40454375093884,0,0,11.05076667883036,7.184525352097898,1 +0,0,1,1,38.940132006326735,75.42629897785051,16.300469192295875,0,76.17790755741088,0,1.6857125529622263,0,96.12471361831597,0,1,67.9473447620654,1,0,56.65467530011992,91.31409766403245,1 +0,0,0,2,59.54840815999145,22.84326619358253,3.733569550046006,1,23.78361315975386,1,149.24642321783944,2,35.53550399610672,0,1,27.284322532121152,0,0,2.217578065722031,16.99195005450894,1 +0,0,0,1,118.67665664572148,67.93944910961915,18.951637019219454,0,38.70596523100665,0,64.3955458038651,0,89.92979073495933,1,0,26.117028509246342,1,0,99.78781602336446,87.77576614553207,1 +0,0,0,0,46.02657200131134,1.47237333893116,20.77751256811417,1,9.239378033296514,1,124.97368602011775,1,128.84856487235632,1,1,81.96827940934938,0,1,10.608105550199609,26.771592905422143,1 +0,0,0,1,61.81906590621968,13.858398815884726,39.092035450978905,2,16.418704434544146,0,40.46104375939026,1,24.761618902163697,0,1,13.968390249886593,0,0,35.75497181849996,45.25191435068895,1 +0,0,1,1,129.877791211959,8.46821918144397,43.03487519855079,1,19.35502072690568,0,52.950208255603606,2,28.096931918126305,0,1,25.54249240768785,0,0,112.28265489361804,88.05165662321869,1 +0,0,2,1,115.47396829568272,7.666276906278352,7.510424067326138,0,22.01566485000769,0,140.3671209363063,0,50.285748890474494,1,1,9.20524046746728,1,1,62.81977620120559,132.50912059758102,1 +0,1,1,1,31.663398955744576,40.85556602621636,12.800673367805144,2,39.40688410135898,1,18.386849288221224,0,144.48925549449902,2,1,21.05496694615909,0,0,69.5699976542515,92.27630524119472,1 +0,0,0,0,129.9610843241495,32.29470360155548,24.425954265839056,1,2.917203859751272,0,76.6874429211433,1,4.126544953844796,1,2,17.359330594449506,0,0,67.72293274542079,72.98234860647904,1 +1,0,0,1,91.07963347117888,51.27344442881571,73.57886035775054,0,14.410741405831834,0,80.09874882835382,0,146.27486063504378,1,2,64.94449831260383,0,1,14.95822821233438,28.56466784588381,1 +0,0,0,1,25.46187787223596,63.12782881317523,43.77841322990672,2,89.3379898508913,1,70.28389739964805,0,2.708037800089924,1,0,98.65734153881212,1,0,92.91364371130268,70.94057953644021,1 +0,0,0,1,46.69227135047301,5.574460929522012,42.69486476433675,1,20.29032674456023,0,114.64195743272684,0,75.61921666065655,0,1,1.4250517367299098,0,0,81.79944267748245,105.19779618936587,1 +0,0,0,0,9.44519710138596,5.899786295177067,13.720362516330232,2,64.59997070495137,1,139.46335549325667,1,43.76516740630871,1,2,47.81864797678145,1,0,77.96191203577173,62.43043939948619,1 +0,2,1,0,124.96199600109644,28.89690934576152,98.4091494855297,0,39.99242320905003,0,34.930452834140816,1,27.15969055878852,2,2,14.08548737695986,0,0,87.38281913176041,72.76381977279857,1 +0,0,0,1,17.580777829302825,27.649931203215573,0.4171756432327589,2,48.757136530981086,1,129.21308842571173,0,81.6913979575909,0,1,41.46507159575278,0,0,43.98180703803655,41.05095646823595,1 +0,0,0,1,87.7668204313508,9.751546116984594,53.75323620765369,0,20.30818167676929,0,6.641617189882126,1,108.64569980737734,1,0,48.39363206137519,1,1,93.72931926495924,92.9502499484504,1 +1,1,0,0,76.1476185267899,14.616304117377371,26.042554408070423,0,64.8359024716716,0,26.328974058828454,1,43.79162067937277,1,1,5.4225783750881495,2,0,54.433118763469366,74.74460465534658,1 +0,0,0,2,106.38807744569404,4.079486041160873,6.495624239922187,2,68.07282766800255,2,39.75758587958239,2,41.27492632225373,1,2,34.299410194506486,0,0,20.96697894111165,37.32739781251556,1 +1,0,0,2,2.305873438975014,31.04405899063984,7.406227058035925,1,41.39185548293277,0,146.02449123153386,0,26.17227663406415,0,2,0.269712873145761,1,0,45.89018307005805,29.813515121539663,1 +0,0,0,1,77.02074625327111,47.03100453354386,22.16267586472736,1,5.806643946637929,0,79.6034969072963,0,141.56329792719805,2,1,22.663320336895204,0,1,16.2903905496854,24.11724761034241,1 +0,0,0,1,124.70161862647602,10.217737293552188,66.82373657605001,2,0.6852768892582239,0,58.4828285515034,0,125.7114651177462,2,0,43.08773780457191,0,0,14.820253597553751,136.0907982032119,1 +0,0,0,0,80.38490057229758,19.80547532606035,57.58770583185567,1,27.926403834390275,0,92.09880417926364,0,23.824803331452276,0,1,16.946347899619546,1,0,10.652410441979148,8.51385571509946,1 +0,0,0,1,110.44151771148827,36.55003589465926,43.68242809490769,0,8.346344264523575,0,4.613385424515959,0,7.017072610698,0,1,21.003338831051217,1,1,67.41378254084327,67.91084349926223,1 +0,0,0,1,75.01238123644413,34.21403921541734,44.01544871464105,1,21.546454030624066,0,95.8836287813276,1,90.81509436165764,1,0,23.71629409374897,0,0,73.45494419364289,98.44056187048128,1 +0,1,0,0,125.4731861880542,47.19899225702593,30.01809336450742,1,3.4426040564729368,2,53.15128180062679,0,61.02229314457688,1,0,20.57489943286985,1,0,79.96605689308362,98.28726597016444,1 +0,0,0,2,51.8754951099349,43.25736663996983,21.99185962645639,2,27.76832331698306,2,43.66838219881875,1,41.216634453674544,0,1,3.5221727858696763,0,1,51.92665400500588,86.53226449505695,1 +0,0,0,1,84.30285517098264,25.56584993255558,35.266031768246364,1,21.55083432472347,1,43.22883664329744,1,64.45710967545814,1,0,26.42380694005913,0,0,43.843377551095024,15.960293106823276,1 +0,2,0,1,20.77757056362312,61.45211962148248,65.45642675011834,0,13.680571046815654,0,141.15348939590083,0,96.12195698172796,0,2,48.02342110769668,1,0,69.90083737271755,54.75032570454064,1 +1,0,1,1,70.34733289608079,29.66941341315037,7.281169675614462,1,47.2523994594835,1,23.505741679050864,1,17.089489492101702,0,0,4.529070490066528,1,1,77.64622003894829,55.71656921997753,1 +0,1,0,0,116.98342865937688,44.82943895494466,25.6455351609758,2,12.07849710702768,1,41.54349994662173,1,52.336891815959866,1,1,33.159524054851616,2,1,75.11081424384642,86.6155197278653,1 +0,0,0,1,149.9628128111892,47.8592952554553,16.45862966372327,1,26.3950401319766,2,15.841188629442954,1,54.5425898582917,0,1,30.40557631670509,1,0,51.69403436836642,70.38477710336161,1 +0,2,0,2,27.720962191009065,5.272844155876549,86.49852878931355,1,6.386374315739834,0,135.25270327546934,2,11.826452967780076,0,1,89.9376889291095,0,0,27.984860176867908,20.36648911863449,1 +0,0,0,1,43.25479994990268,20.08165346389486,107.88661342817907,2,20.61338834990912,2,60.83681698545403,1,85.93365326367275,1,1,38.50712778115585,1,0,0.6923176786289398,45.418222741621705,1 +0,0,1,1,11.458464700767315,0.1746034661345763,95.2152795363503,1,1.4956364812362732,0,81.34773257674365,1,32.558836314143946,1,1,56.402670690070096,0,0,148.3827269960848,82.98996813634014,1 +0,0,0,1,9.11254746358756,0.7828817694847834,38.29789440875195,0,15.36135577805872,1,77.66122011963621,1,62.55123247582289,1,2,40.465592548455895,0,0,53.45713814629578,86.53940287691988,1 +0,1,0,2,98.44006666797786,24.42997789431925,52.13931280327032,2,7.77511556236512,0,18.01828287839594,0,63.07597516934237,2,0,14.01716050481201,0,0,76.13604548999542,70.79151534970414,1 +0,1,0,0,68.51502648649739,4.892463752596926,47.79348078711151,1,0.8535287721848028,0,142.75415912309026,2,77.53835822634701,1,0,71.09468022500744,0,0,18.71236022038953,43.54933000400094,1 +0,1,1,1,143.97457353066324,19.616606998555703,36.20894932642054,1,38.53744688184481,0,51.8762888744342,2,26.964240113454828,1,0,1.006337168214394,1,1,34.98444635121876,1.1239426278359943,1 +0,0,0,1,50.70140853551276,32.508737795691935,40.39014771749543,1,40.860673156177455,2,2.8144711859585447,2,33.13743982050759,1,0,27.80829030791913,2,0,6.142559371031214,30.30623491578383,1 +0,0,0,1,30.172340536074504,37.49351014607814,19.53269778146381,2,20.262787138194955,0,80.38465413299407,1,59.91067326582195,2,0,45.22052647286877,0,0,19.435246450820067,31.281047990142078,1 +0,1,1,0,36.68502113401098,45.71420168286547,42.96449831690508,1,15.282957399490648,0,33.77671913533262,1,56.93412286721441,1,1,69.03043877468147,0,1,64.40766701523603,69.8590646086624,1 +1,0,1,1,10.519036182598072,39.88617929736024,30.011579730823676,0,3.517408382434434,0,11.342950365528786,2,99.2345613734422,0,1,14.08865582368168,0,0,42.33442099006879,33.9533597354588,1 +0,0,1,0,52.09695553485296,43.89835596179957,26.906852581712,1,29.74669314931776,0,82.53914089846165,0,92.42396069139448,0,2,31.0089147532604,0,0,118.65274633059668,59.789851604533176,1 +0,1,1,0,103.38106544592952,36.52417758694473,22.31891111093482,1,31.341098019232856,0,103.46136855888064,1,126.89749356595952,0,0,43.36990806620798,2,0,29.147123010371505,20.96382984578273,1 +1,0,1,1,92.88160517408134,8.152144642392296,11.39825398761874,1,15.085026143835451,2,93.8439099951125,1,25.694300584768285,0,1,30.639516315353426,1,0,31.83343467605334,34.97532397539661,1 +0,0,0,2,18.89776315991391,43.27561248436769,93.65931309295864,1,47.95939853930961,0,96.84956290511715,1,138.5466648753721,1,0,99.92384081456346,0,2,10.918648069057852,43.79955285902891,1 +0,0,0,1,29.073282933305865,45.29629042764559,72.50533694924327,0,6.72177781707749,1,73.52428607762754,1,91.38211944534228,0,1,10.6384761463034,0,0,48.11109351261116,4.496670438040617,1 +0,1,0,1,78.02138404017303,31.176730461127207,102.86699289165507,1,12.322882121643577,0,27.715385078092208,1,19.17510492198153,1,0,88.88656156146307,1,1,17.255821993702796,2.1458410443818297,1 +0,0,0,2,6.302585814256501,7.315862463873179,83.68577550340457,0,98.01782511301496,0,2.0557823651079,1,139.42249783569028,0,0,14.827373680748996,1,1,64.53945872689059,66.63927915421814,1 +1,0,1,1,72.21904955319675,42.96515555293044,37.492103142436974,1,39.33377983166928,0,13.51548404180627,0,106.81370874284218,1,0,22.34650121564116,1,0,47.2082789372733,38.64952475860607,1 +0,0,0,1,140.39193403207577,40.78182377758506,39.34148695255333,2,18.80458379333851,1,94.23323007243268,1,98.64942686606504,0,1,5.866853776053604,0,0,27.186399818042236,22.68622922925764,1 +1,0,0,1,58.88014084582244,6.608621789031388,94.71100134845638,1,19.360460744834818,0,92.92097263473843,0,14.897724091341669,1,2,98.77348745419523,0,0,17.203018210492854,14.985986251043936,1 +0,0,1,1,61.19614442639111,1.4254614309278155,33.21873106918255,1,18.71994259879637,0,44.125491627971606,1,87.67121897036114,1,1,13.373088457010168,1,0,7.599626256538594,6.874434778115013,1 +0,0,0,0,96.38204816402516,0.7129742695655306,93.84537800134795,1,25.515007423165446,1,36.807576238222055,2,97.72131683386348,2,1,10.21198903421136,1,1,12.488579787192428,9.080501040151628,1 +1,0,0,0,85.62837790766368,41.10935496784603,13.70942855087885,1,23.347529270242102,1,83.49148715179278,1,122.6858315070477,1,2,7.565719580024122,0,0,88.17891051505975,99.62501747151194,1 +0,1,0,0,145.6448083075948,7.8759985000293184,78.67584042642724,1,34.086797214669645,0,44.047766424262456,1,22.13567216761623,1,1,74.77089767523209,1,0,74.24179775928185,71.42079529376008,1 +0,1,0,1,114.46674060407418,17.314484884450998,29.48495591270772,2,31.617552209776985,0,37.08585727116184,2,68.76480833483468,0,1,27.223870608997693,2,1,16.86310643645652,19.13163270752981,1 +0,0,0,1,43.73117486780343,17.17551581751336,46.696859942817255,1,18.83025502711297,1,49.69789501955472,1,77.31419808936502,1,2,91.086255039465,0,0,10.441004916458873,27.879186540482348,1 +0,1,1,1,91.47167451191518,41.8484348534189,4.149535002514288,0,33.50387050983477,0,62.69203952466813,0,115.08209580332532,0,1,36.70201734022034,1,0,92.54029729581475,54.40963810891117,1 +0,0,0,1,3.403004339151494,44.94962788560283,33.715478514670075,1,26.056407107708942,2,1.796038536419725,1,81.13173300687701,0,1,29.71099874226365,1,0,4.146067795751063,37.30670511449301,1 +1,0,0,1,19.58346094872634,44.47045878771191,39.08764874550664,0,41.89742893740379,1,27.82944009078029,0,96.07210288707051,0,1,72.86021155464934,2,0,14.325238122975026,16.691033643797464,1 +0,2,0,1,102.9434046486376,5.603430490732942,13.965027253387502,1,39.91109370735126,0,98.30574542905184,2,119.3791456224942,1,1,2.003759145700401,1,1,32.27322739063728,2.2361577748158448,1 +0,1,0,2,73.6063950614217,35.68851757425349,31.7684458845064,0,21.5844450664108,0,55.32368227223053,1,105.54315548906904,0,1,99.36714481582602,0,0,18.583676220176383,27.96935082162948,1 +0,1,0,1,28.740681238069527,7.85882581709142,90.52500077045003,1,16.62584404895696,0,90.10529917411344,2,96.14004463257052,0,0,32.34295866702868,0,0,87.0638749629484,61.273668456294814,1 +0,0,0,1,16.44288853395159,20.934919061549397,20.75051568511952,0,50.57575579063855,1,17.584158894547773,1,53.15621796591707,1,1,69.40035935559959,2,1,95.50408863949517,121.61281261527756,1 +1,1,1,1,0.7478280884876842,1.6095247434686155,33.985224586628824,1,31.69811911114714,0,19.777852820448373,1,66.76648673362297,1,1,7.734484013024212,0,0,48.80832625988425,1.3848668952478438,1 +0,0,0,0,86.43267600956958,36.19594842126941,86.13100442167472,1,1.3294869474200888,1,21.142290712390498,1,65.74868628098668,1,0,1.6541226245387453,1,1,4.049680239367398,20.723313277438614,1 +0,1,0,1,101.74591599444224,39.021414157946985,34.63245613179933,1,2.766821481395698,0,1.6671799847804258,1,0.245987496236405,1,0,30.651169120971268,0,0,23.834539913316423,36.97838249890018,1 +0,1,0,1,44.89113343534881,30.925071209114662,32.30963110603965,1,21.807393054220032,0,9.626216624877292,1,127.34511022386276,0,0,49.52707270226443,1,0,20.12273842824352,6.862469696513268,1 +1,0,1,2,14.948244528593635,11.682219248932023,30.978944266129982,1,70.6640292155341,0,114.11436986626757,0,51.01167750304458,1,0,44.47923113587732,0,0,72.11470076234976,100.83515779134314,1 +1,1,0,0,70.58412009951087,5.8166195293143375,48.637363529907255,2,6.689048293299626,0,90.36129892312856,1,124.99185234640252,0,0,13.388201596643771,1,0,50.744430168031634,71.91194794910817,1 +0,0,0,1,65.22927099382053,38.64878250290517,71.13517815079513,1,23.25907530480638,1,82.95596662311128,2,56.89303199598336,1,2,68.71051187956886,1,0,36.99334103898277,3.9912331621991592,1 +0,2,0,1,23.86605383755122,45.37757244322076,18.261336263355325,1,20.45465229415477,0,34.80594367292793,2,12.488258917187316,2,0,74.81364821998784,0,1,15.240474864640555,5.861981492126144,1 +1,1,0,1,109.71128859204896,77.99451293280103,79.26119630021185,1,35.753503388635224,0,86.58940344326555,0,78.2799625263218,0,1,35.36463037290674,1,1,3.8000271816391096,45.12638529517719,1 +1,1,1,1,96.57766723132414,91.6400715377662,140.58994206082585,0,21.86426945250432,0,52.00048309321516,0,125.0488429309725,2,0,79.87497204178136,1,0,147.01220374390462,10.176352909547482,1 +1,1,1,0,70.93318756918244,29.93845434116005,51.69106483880486,0,45.73821753783664,0,30.857857137338883,1,0.62674048757691,1,1,18.44610350594193,2,1,83.02499774574451,95.61488858125556,1 +0,1,1,0,30.1744066374948,76.7710273499701,72.50603408152176,1,20.034599696408712,1,26.373696271254595,1,88.92279700816417,1,1,36.21123519346121,1,0,28.992876210350264,11.476117313342275,1 +0,1,1,0,67.35088418795664,35.78485233248692,74.9349754721745,0,41.87654672163409,2,22.12615278892911,0,39.76415464261707,0,2,65.75430448414704,1,1,99.59536391234197,78.91888274593529,1 +0,1,0,1,45.26262601547043,40.22058733458588,46.4538546418553,0,35.044584539726976,1,65.66904165901987,0,60.75899933364515,0,1,62.46366663649146,1,0,9.818860812175394,41.4913391253995,1 +1,1,0,2,19.591832711864487,25.82172272328761,3.162868576305028,1,96.67915819202211,1,106.62790936158903,2,84.76121426993585,1,1,16.63577891656591,0,0,94.62303600433334,70.86335093738815,1 +0,0,0,2,64.34056148794097,2.7530768504335947,24.42187786055013,0,0.745781385225891,2,66.62302319303592,1,1.476560131202348,1,1,10.175935630761169,0,1,58.092417163805735,91.79005839990576,1 +0,0,0,1,93.95683097132584,8.889926186272184,34.94722795928005,1,93.76463061218313,1,84.11512678444544,2,74.416457382458,2,0,45.70765283089917,1,0,87.74295553834638,73.27407377561343,1 +0,1,0,2,123.76121226545538,31.97866149149634,86.8317824551871,0,16.332778794380825,0,80.67183465868833,1,55.847300433260266,1,0,43.66001085270672,0,1,89.5992567699735,69.89181302673516,1 +1,1,0,1,104.7131054641372,85.48487303159955,64.44339836402702,1,28.7552597174874,0,40.2371313484751,2,116.80927558622474,1,0,22.07000360487446,1,0,47.65759736785646,35.36092333252359,1 +0,1,0,0,30.19182445121162,6.694831866637562,91.96842459970064,2,1.3631994546388193,0,22.617159650367626,0,144.9264601754246,2,1,111.830578370184,0,0,30.06504485636396,27.159682803799345,1 +0,0,0,2,68.70450209572493,14.029759489560789,67.5210918642465,1,76.92410482164375,2,16.695818666410283,1,89.60729127061872,2,1,1.0347574408371418,1,1,12.388816097721945,0.8188699977201286,1 +0,0,0,1,74.68499940178361,0.2295246817478613,91.59605993674208,1,25.75724229651781,1,55.70092470945845,1,55.02945029156541,1,0,76.24240961729086,0,1,18.986933305786728,33.76114615847283,1 +1,0,0,1,80.58388884154756,0.6306500581428953,16.17742379759725,1,39.3068340622985,0,27.93611757091984,0,40.811875503427125,1,1,10.847510226204538,1,2,98.2542773892451,81.1970250220347,1 +0,0,0,0,116.45485850440691,38.896752458037625,17.92951861513256,2,97.540445052654,1,139.4153497940438,0,53.61381932096611,1,1,42.53256650833377,0,0,42.07101683189784,19.91218278035661,1 +0,0,0,1,129.07522539931568,14.267249722941976,4.775137916655031,2,40.13923220745056,2,65.56660556138547,1,70.97893834823032,1,0,49.72036267324969,2,0,57.30836128269562,99.8587512168574,1 +1,0,0,1,48.92083072934437,21.48296395177803,42.36932995278606,1,12.313089245682196,0,76.91849376178213,1,48.36564864807983,1,2,26.34061383194235,0,0,24.496992793776645,17.890770364378046,1 +0,1,0,0,41.10121647706209,5.216979595478,6.751456950582929,1,36.3169960770816,1,0.4429246567707323,0,131.98615667426313,1,1,66.04671620558085,0,0,99.40424486898144,147.0570569086076,1 +0,0,0,2,37.27810747809775,97.7881254721364,75.6475779051394,1,21.304496416659543,0,45.05971809060837,1,59.71168664921699,1,1,14.820368885874624,1,1,33.50214021582013,28.38934287225083,1 +0,1,0,0,81.47702054143431,34.997261232312546,70.71872645932204,1,49.69692003025078,1,10.711376987670327,1,69.70341733418917,0,0,52.43853588258619,0,1,20.50361682987665,24.721181552956907,1 +1,0,1,1,138.4086715313103,27.61040114023741,78.28905705289331,0,37.247019370949005,1,58.16376996971952,1,80.6805823989414,0,2,45.06535679698611,0,0,23.964225035174795,4.08129171184034,1 +0,0,1,1,45.96665730598081,38.07250145649787,29.68926486814172,1,29.874943856337488,0,23.056927654356627,1,45.926472130109545,2,2,7.642642591321352,1,0,45.5635938473846,32.26898577782561,1 +0,0,0,1,60.11350496594738,30.92510788225204,96.86727728847931,0,9.0453688552929,1,61.26443313699495,0,3.1925956139127134,2,0,52.510421641068326,2,0,28.54400033789225,3.066646463225758,1 +0,0,0,1,36.77645469761258,17.11645981191409,5.103723999577592,2,19.04493584654345,1,46.76128939784169,1,68.13388965091157,1,0,45.34833305320223,1,0,7.643250144456387,18.295033580711262,1 +0,0,0,2,149.52295099451334,42.37178370070264,41.11263064410806,2,4.764786289453371,0,38.07657809399745,1,133.93444455617583,0,1,37.63311981707087,1,0,62.43978422540157,104.01784994209684,1 +0,0,0,2,43.13866128228876,92.93771870810252,146.08953168612155,2,17.89038263357792,0,46.99822539913451,2,81.50759666622227,0,0,113.04562232214998,2,1,29.938140959635767,22.03985717354509,1 +0,0,1,1,70.54970895973999,76.971745997628,27.657588591265664,1,3.614517572056486,2,5.12496075707416,0,28.3843760631576,0,0,82.12596140662772,1,0,74.61231378561843,60.91136762829773,1 +0,1,0,0,70.22331239198014,14.565386056944057,99.65973092345244,2,11.003411667209525,0,23.96887054225573,2,70.35453075432946,2,0,34.15323622255821,1,0,74.78964172782442,72.895312507909,1 +0,1,1,2,81.70239143711021,37.60584715660977,19.707807559742484,0,7.2785374111555,0,44.25680738633449,1,49.85308029222366,1,1,56.501547101872255,1,0,103.69924937036627,71.14825301096076,1 +1,1,0,0,1.301174919751097,27.151492099417933,40.446855788172535,1,1.028984513487502,1,6.120252450637653,2,84.126575370548,0,1,72.92064854582479,1,0,60.92076235297158,67.02404971776183,1 +0,0,0,0,93.75178033015185,43.50982258086894,13.561047953156136,2,25.801981757138424,1,28.71120985212507,1,63.18104593376745,1,2,58.15239349015481,1,0,45.63705453256744,39.06684388320819,1 +0,0,1,1,76.35087485925459,29.441550897940477,49.9922703042309,1,13.95845916978597,0,7.154912807196795,1,31.115808868560325,1,1,39.82290247045647,0,0,60.92594694684927,68.66620003540471,1 +0,0,0,2,82.46486051401749,38.005796261905054,78.60362712648745,1,38.26810613269656,1,85.74607353342424,2,85.82113898383489,1,1,73.87278246007294,2,1,82.2570881112991,94.7674080381424,1 +0,0,0,0,60.641302168966966,1.2307708445592869,92.22958982693368,1,49.01511502500889,1,56.0862392395434,0,5.447561257353245,0,2,64.12588469405247,1,0,77.22697843979033,84.91542011557237,1 +1,0,1,2,23.18616359160664,64.22453927437039,36.080824010120935,0,17.399969007218992,0,13.695646052473714,1,97.42475493630626,1,2,87.22166516486651,0,0,19.630464310370225,35.36941681128044,1 +0,1,0,0,79.00199036208562,21.335318338940183,33.97567637039221,0,7.667461609307796,0,78.99939723082002,1,71.19254527742581,0,1,32.58313892601008,1,0,112.81857380398054,109.89573447061484,1 +0,0,0,2,113.71601199251783,52.80282946941782,90.66960836883092,2,1.939713030571233,0,69.21247606101377,1,111.0662145505888,0,0,44.06295290664056,0,0,80.99436122933582,93.38361527182263,1 +0,1,0,1,61.74387026479421,54.908439742502416,72.25831254456466,0,27.66081240586153,1,23.71905174507316,1,83.24161921055853,2,2,55.903867351761306,2,2,44.93652872886443,4.239230853214027,1 +0,0,1,1,102.33192185889496,63.3361241657251,43.38454027300434,0,27.01902030450059,0,113.9739611624026,1,30.68413352055263,1,1,27.54189791996807,0,1,1.7615602851388523,24.35395334078894,1 +0,0,0,1,14.662876954817012,46.233572190251344,33.95441339522278,0,39.39089841618825,0,59.80039139616239,0,90.4753465864718,0,2,28.55173009112402,1,0,3.481520535249793,17.50679151987255,1 +0,0,0,2,38.50293760408599,9.800779456282788,33.812093178607874,1,64.63737843777,1,90.41785863113697,1,79.48586821820477,0,0,30.099022265945187,0,0,43.14848764439136,4.740687067119131,1 +0,0,0,0,95.16118887833164,4.8698881553845,31.001800151572013,0,6.781682487723101,1,8.494101584518388,1,81.32281434862367,1,1,82.71174552348985,0,0,42.552197248909934,37.62574483356191,1 +0,1,1,0,56.56983544723294,38.46492402514578,11.571934387534654,0,33.3786769782792,1,59.73171629981359,1,69.11982923942016,1,0,22.89845484909953,0,1,89.65878785699192,132.34671526285393,1 +1,0,0,1,112.5639691720367,17.048222108207412,60.64595465695627,1,33.20353514070612,1,77.55488846213476,0,143.29057354890992,0,0,93.6168835548386,0,1,14.197796982026873,14.558516260007387,1 +1,0,0,2,50.81653227458011,38.12672328255679,11.644329413597154,2,23.586709563055383,0,54.37847661116199,1,1.1480481216841532,2,2,6.500823655065147,0,1,90.9202974648974,54.676805196499366,1 +1,0,0,2,38.37810236259014,4.930459805795384,15.097921090353433,1,28.965398845332967,1,83.46451209530605,0,87.6339592907116,2,1,40.70727979233511,0,0,46.211350577556416,13.411371531167893,1 +0,0,0,2,15.080049395623544,22.995637419836847,30.839699038956898,1,10.694604648150865,1,119.41218593156366,1,97.86401565613694,0,1,9.321088246179665,0,0,13.832561327465426,4.8337207787368826,1 +0,0,0,0,40.003767368521146,19.076632223292407,52.21843519020881,2,82.26519868434421,1,81.8322352657757,1,42.13391507238721,1,0,10.883698338578446,1,0,20.258776631509438,17.682589048868508,1 +0,0,0,0,118.38846853979584,18.075564344430028,59.116298743218,0,13.06561711052488,0,91.42889039177096,1,43.71872114274768,0,1,19.604444267771992,0,0,91.84016388152646,82.83240750198699,1 +0,0,0,1,12.37822840387185,45.07241591856881,44.29247294518018,1,1.309216585085049,1,66.58131549095565,1,3.768450886045538,1,1,39.51629735102667,1,0,97.10918450962,80.35617596719214,1 +1,1,0,0,101.11727517474908,45.11600419870848,78.96495072334886,1,20.78649135900085,0,110.2449092852045,0,64.96233958139746,1,1,16.445813765959844,0,0,38.37116885019156,14.2067452944163,1 +0,0,0,0,83.87684671382179,14.201446852082189,99.84610935730164,1,34.819334100293844,1,12.74966689944,1,59.46081550301866,0,1,45.03472192148601,2,0,79.34070004956725,66.65529833574874,1 +0,0,0,2,78.5207402260015,1.3850028072905252,40.81067210431903,1,38.06638549962835,0,28.094529292976024,1,37.13704943940747,1,1,62.35693216295679,0,0,29.324276498372026,10.78492209987364,1 +0,0,0,0,57.31076079748618,38.18253022991026,96.09342631692697,0,30.334041341754062,1,97.86669362546756,1,87.57314228620203,1,0,56.19358483654613,1,1,49.79969551172625,12.772278888914244,1 +0,1,1,2,12.391670415306391,98.7287585231816,50.28020183741359,1,52.04289659659203,1,99.9287278175314,1,49.57021914053683,1,0,75.29504025367812,1,0,106.24843608833686,33.889908246649625,1 +0,1,0,0,85.35562221635548,81.29776885782255,84.39240121728996,2,69.64756536910008,1,57.01762371377262,1,53.54321083965714,0,1,43.73871268091128,1,0,71.22459031549646,99.03696957959568,1 +0,0,0,2,50.25502223287317,32.65713983342208,28.34787578727924,1,15.299398377853606,1,91.32824530573392,0,25.722295639560333,2,0,21.021815691553947,2,0,16.323922119667085,26.651578165789783,1 +0,0,1,1,121.90802577475772,8.155302508688472,50.46763983941341,1,20.374320726700077,1,79.38239181595908,0,23.847068239086656,1,0,83.22727136329179,1,0,30.47177244825526,44.054695160311375,1 +1,0,0,0,22.873586919221584,76.96293414052195,40.98187445739675,2,35.67711806732986,0,95.2779414397655,1,53.65114760604424,0,1,38.035111878446834,1,1,59.66617499160886,61.791473836930365,1 +0,1,0,1,103.72226255490148,38.44712131630191,6.67327914985184,2,34.319587971142454,2,14.339937228669449,1,35.13281014637898,1,1,41.49843692544156,0,1,11.546906565844129,43.1179089773262,1 +0,0,0,1,90.19768036394665,4.724088283619659,10.69999702361916,1,63.010875622744834,1,45.41026367534212,1,62.92058937080637,2,2,45.90804640709278,2,0,36.58026041057149,44.260457836873975,1 +0,1,0,1,84.21517320424935,91.29624615121416,1.691068379681432,0,27.925074540299622,1,126.48013779355968,1,131.6012176693367,1,0,43.58838153701263,2,1,68.42854208321903,87.64973624591346,1 +1,0,0,1,74.23006969154608,29.44118323578383,87.97788356601524,2,89.02201618789515,0,36.72614332501966,1,39.04271740522383,1,1,16.795934015155932,1,0,6.337951570045569,12.066256926893171,1 +1,1,1,2,127.1883998177594,35.477179442971966,15.137035248119446,1,12.246669403849776,1,56.92067435502583,1,84.03041911404299,0,0,88.49013691981801,0,1,79.44982502530914,59.01088227878811,1 +1,0,0,1,43.067410535425765,26.244290577400847,93.88048494199286,2,29.710078769353444,1,94.64706930233793,1,46.64070867034281,0,1,95.75572860268458,1,0,97.55901590437637,56.197150918224025,1 +2,0,0,2,23.099223135337454,34.980250931629506,33.21234248068644,2,35.62931687470463,0,73.46612713934523,1,27.278824568499044,1,2,62.95410062838891,0,0,57.07238428969833,93.36406729025626,1 +2,1,0,1,71.30621459599183,18.126544683906623,65.20344414721772,2,34.44737118844549,0,97.80198925975851,1,94.9945797751915,1,0,31.59543105594168,1,0,95.61470685969311,70.03380711979081,1 +0,1,0,1,44.43706424173288,52.28549699123807,53.2736519744549,1,23.393094150523737,2,98.11853535726728,2,75.96682273330694,2,2,2.531471309492389,1,1,46.79119103955812,27.752755589428467,1 +0,1,1,2,126.53272738430536,48.8936657105012,26.59586805256899,2,40.369366100080775,2,80.59970732928707,1,14.018023255201944,0,0,25.077929666154475,1,1,42.64151314280319,47.46335983875587,1 +0,1,1,2,22.2660949018023,23.530562854432645,54.89063923113631,2,20.91897044954215,0,19.61577691431289,1,54.46697508192479,1,2,96.85273040224276,0,1,18.284596454750883,30.78292817776831,1 +0,0,0,1,127.68552034781678,9.143409098081923,41.23401926431524,1,31.82415664053808,1,20.96777794682944,2,112.82926800467536,0,0,56.7797756997021,0,0,56.341806974348174,75.25487945021108,1 +0,0,0,0,96.43153368233897,6.855307096835078,109.06154396742042,2,33.91267401354319,0,93.4260073474062,2,58.17323160879064,1,1,72.17568763081677,0,0,42.02947939981324,8.758999971735243,1 +0,1,0,0,8.25777590103834,43.16384250668362,70.23874379839393,0,71.00202002814108,1,33.910382627034444,0,125.72226467500116,1,1,38.95350821169038,0,0,18.83890853290307,13.905742730502912,1 +0,0,0,0,126.13125135828778,35.44092437983678,20.822655569651115,2,36.15263228606456,0,19.884090073785742,2,74.23175477386019,0,2,29.432734150124595,0,1,37.28753923209129,14.8618738126908,1 +1,0,0,1,84.89932369654134,36.89727228575629,33.089777284963375,0,17.25177454442403,2,119.55095290069312,1,1.0653439789091668,2,1,90.30360593219083,0,0,50.97326741468432,53.225589380706,1 +0,1,0,1,39.02162603233332,44.16250261456305,30.58082790869173,0,51.11480586226963,0,38.53661411328723,1,40.69669080928573,1,1,78.39692486995534,0,1,49.90454967581688,0.1979073972680656,1 +0,1,0,0,119.8528689406144,0.0135828445949504,67.4930938284293,1,47.76333320318668,0,40.74420455091239,1,22.121224168614184,1,0,62.35454615683776,1,0,0.2768195215391567,33.44689629628361,1 +0,2,0,0,95.9793160979852,0.7540316165649097,44.6277337754106,2,32.05088444528063,0,6.25094119628769,1,20.694841156183568,1,2,36.30323207374448,0,0,77.09154059243603,70.59605699432967,1 +1,1,0,2,84.50015538383062,16.417090572577752,65.55822093690779,2,36.26671067363312,0,99.5721575424323,0,78.69616568769955,2,2,59.77389810098178,1,0,41.63368305902824,29.184583168274337,1 +0,0,0,0,14.111576295196317,18.470655387373945,36.769583556809465,1,39.5445199797136,1,86.14053321103214,1,96.13851311124893,1,0,26.46818050007724,1,1,36.35588029146924,25.03109350572456,1 +0,0,0,2,20.429200085148462,39.922824258219805,9.272681329043724,2,12.206360284213169,0,7.151107890682612,0,105.14543309709362,1,1,15.47424576056563,1,0,7.665294898307485,12.964580852647256,1 +0,0,0,1,71.4381173340928,30.1511685312764,13.948783837231703,0,33.18464209888286,1,48.2698248991916,2,31.32903011350197,0,0,31.83932257628455,1,1,9.646686161667011,31.59368476366447,1 +0,0,0,0,52.16094574884064,26.7920834485458,41.549256358080086,1,9.107471803312578,0,26.18375166329775,1,87.925205709488,2,0,22.94255259808471,0,1,98.44321578440216,98.56654339454008,1 +1,1,0,2,101.0803911353184,24.497705986557623,20.347702759289437,1,40.031143890061806,0,26.365513232166062,1,80.82726720047464,1,1,12.14242988666014,0,0,23.326246657659414,20.269706154665386,1 +0,1,0,2,8.183419765836364,34.992881359971975,14.787676310951964,1,48.79880032168652,1,97.82164541510262,2,72.54758454818327,0,1,22.037255933511275,1,1,22.49974160451682,7.0241923584699215,1 +0,0,0,0,108.60259619842614,9.316248015809542,137.85370697452305,1,23.584238437829896,0,52.629962389807446,2,89.84662675897336,1,1,44.568699266636905,0,1,24.02519830169516,10.304854493875714,1 +0,0,0,0,66.8284492262033,20.645131070208333,12.561575588572907,2,23.14590403329715,0,62.96877246169824,0,21.84196871288088,1,2,45.99195115061484,2,0,0.645928222673875,34.10793521511337,1 +0,1,0,1,55.45007126938479,31.06280445211093,91.7752858765,1,11.243486224479431,1,2.153729885055728,2,30.960844009906552,1,0,23.03933610781356,1,1,20.51251342685856,12.437164652357556,1 +0,1,0,1,81.18943870253514,12.206483158302234,43.0009172306066,2,63.70626749439166,1,39.64812813316729,1,136.5435512985304,2,1,80.67236733890297,1,1,20.91880409528233,19.25447036494543,1 +0,1,0,0,114.13882137425772,21.33299388995117,23.1610018903169,1,14.120790753375497,0,68.2363477988936,1,19.59010593628439,2,1,60.7231324295377,0,0,44.06623826402266,44.49551903661275,1 +0,0,0,2,50.539384639265656,33.448589406767674,21.650462559772027,1,26.218196261651933,0,119.1411795003999,1,29.82288969262112,0,1,3.782408081159861,2,0,77.8490815690416,59.7598127525461,1 +1,1,0,1,53.23619340617936,7.281688999380992,47.369807734121,1,47.805695843188026,0,55.2869136763168,0,30.8962400950964,1,1,28.030185371161863,1,0,17.22827417530534,13.894959248913748,1 +0,0,0,0,36.473928031707246,37.84478150821317,56.03686622790542,0,69.00892346122417,1,104.6726290171143,1,59.70706177045761,0,0,73.13085950717263,1,1,86.57046297063113,83.52965320148728,1 +1,0,0,1,19.96705465439811,21.41678199672415,24.92917306434905,0,17.858467509152987,0,82.04711234254772,2,66.93588032187962,1,1,18.01930641152921,1,0,49.84369533103018,101.18577764666816,1 +0,0,1,2,22.07248337202913,6.858710116749473,46.86311441565819,1,28.79769908466644,1,147.18900552324936,1,5.450962728096348,0,2,13.534038270444542,1,0,19.01007077919953,36.5619855028062,1 +0,1,0,2,138.05537016944814,20.4407487199469,48.82117304297646,1,23.01723519685452,0,72.98084226984304,1,45.7187839883586,1,1,47.246005887663735,0,0,29.436416770670647,125.87898315206232,1 +0,0,0,2,107.86183774727596,32.20212964903129,10.85932437121357,1,14.694881949842408,0,20.83167141175448,1,62.56913057249561,1,0,69.55450344154688,0,1,20.161318510368343,3.466732779828563,1 +0,0,0,1,11.304877765757617,39.0355890468844,44.76740820180024,1,87.5375550234822,0,50.331997256870416,2,121.89549310007816,0,0,3.666113650624753,2,0,63.14111678573966,92.65237267229426,1 +0,2,0,1,56.83264066134189,25.077778943188715,37.29395949407866,1,49.63367696935051,0,61.65979443159117,1,125.06111803589914,1,0,43.32781229161406,0,0,73.22315863446568,84.01667508245974,1 +0,1,0,2,49.308721023102194,31.69707049861065,37.76122851930671,1,83.87943405094342,0,87.82595481022976,1,60.23153620960693,1,1,100.68992818274224,0,0,91.31957331575528,78.36480224125361,1 +1,1,0,1,140.69282343366936,9.615524660432524,84.51222745006025,1,99.51108569562892,0,58.43709103900719,2,61.60274080496067,1,1,41.42296401738313,2,1,28.02989172071479,42.35079753961939,1 +0,1,1,0,7.381200724380632,17.529529389756053,2.988279256684512,1,4.869976242957607,0,68.61867360544485,2,34.24811813310022,0,0,27.353368444809444,1,0,49.85795116708816,32.704272129318255,1 +0,1,0,2,97.88538004107384,13.186167831892089,10.012927392056032,1,13.213642816053571,0,45.62070095753865,1,9.025789979409604,1,1,18.55463973674504,1,2,71.82665833881524,98.2608742810777,1 +0,0,0,0,83.11188645738862,3.948870189176723,12.767114143066973,1,8.280922810838675,0,51.064456327770905,1,79.11230119615546,1,1,64.15790429088537,1,0,15.486158415141832,39.78525580162424,1 +0,0,1,0,106.99688942162295,29.728973321023894,32.18556893412526,1,14.937656400297817,0,47.41151054875607,1,93.5274364680637,1,0,46.52970879229279,1,0,36.83133854672803,5.931450000130695,1 +0,0,0,1,60.1631718835293,6.86917867971299,42.49769363995514,1,48.85837662682147,1,100.05235372205011,2,138.35387811285085,1,1,18.358612233917714,1,0,25.19150203554362,0.1593344340767966,1 +1,0,0,1,46.53833681333862,32.53965540167637,54.45131336150301,1,0.5411389250812193,1,75.89344276331829,0,113.2604143788238,2,2,64.56086526222077,0,0,78.32562373654997,71.81268997422083,1 +0,0,0,1,2.7992350965577284,17.52697148246034,41.08234421087269,2,0.714339680250764,0,28.48148609876855,1,51.8991223029098,1,2,20.622644250770843,1,1,37.23710756690495,36.14590294263178,1 +0,1,0,1,58.75477853496045,48.79048260504944,33.298298172077544,1,6.597949948635312,1,66.54546991051365,0,29.57829843923826,2,1,40.010139850113816,1,0,63.87144858911207,97.5645423646262,1 +0,1,0,1,57.48884776589532,22.62285611846853,14.279317039435718,1,44.63616869195368,0,10.509203648293605,2,31.39757780776217,1,0,50.43929230488262,1,0,9.389048448011438,18.358584767248185,1 +0,0,0,1,57.91912438180225,31.10497242651596,13.031533985767672,2,38.19001646694392,1,45.74492927807528,1,40.172101512614304,2,0,29.17474969391765,0,1,67.34203996905572,86.99077802416605,1 +0,0,1,1,81.60658638368056,48.41195370459504,20.67977174882473,0,17.03738661924908,0,86.9129790999462,1,89.52029688880549,1,1,10.816762365832794,1,0,18.52719229753985,42.099521432956166,1 +0,0,0,0,55.6643956477876,8.28672363225495,3.350258157552688,1,23.977588432551133,2,53.706719038849975,1,6.894225680830762,1,0,37.44089592376547,0,0,109.88285744345396,63.18559441917998,1 +0,1,0,2,65.42421971379548,10.437072834706251,83.09881327209962,2,20.74479531626598,0,66.3651483672162,0,58.3029684592001,1,1,61.59069010733602,1,0,12.83120504489536,34.73864793029032,1 +0,0,0,1,27.636098521187087,42.42384192456978,0.8443770979972232,2,0.9502593562016048,0,75.62063141831464,0,77.01475192920651,1,2,16.269931048990532,0,1,37.37613617297418,30.076396658384365,1 +1,1,0,1,88.43509565426886,40.96327520436204,11.18578104571386,2,47.54858136319004,2,65.1519972895272,1,147.21388396499847,2,1,84.91953257244718,1,0,12.562965573268714,4.937478264720729,1 +0,0,0,2,51.40837841887073,24.24823619778604,44.46400643706003,2,11.650119448217838,0,72.66407335544172,1,42.55968551384428,1,2,95.4805449932294,1,0,77.04002704500294,97.04823846770891,1 +0,1,0,2,66.6053311552435,73.33435634765632,97.96062271375386,0,23.883998244552394,0,85.50722611810411,0,11.01528117487961,0,2,35.7673436457602,1,0,38.74433766943105,1.600314847869494,1 +0,0,0,1,96.81023894273714,35.47338628614163,26.197872126767013,0,23.96426993510607,0,71.90309884844609,0,123.54455363375178,2,0,41.48423027483263,1,0,65.46202738195943,53.77035428137336,1 +1,0,0,1,101.23952133580266,13.393883717110397,8.498309223059758,1,17.099718949690313,1,72.28396716154123,2,45.28979953501131,1,0,10.65224827724704,0,1,23.800660764939387,23.58246705710179,1 +0,1,1,1,27.05918468154338,13.770884083861546,89.09250033001378,0,17.06810388319099,2,24.036558599927837,1,110.82212425458454,0,0,87.51013802655596,0,1,42.99550475529325,7.892350348468763,1 +0,1,0,1,0.8967989260850517,49.10667028623914,7.808130718964628,2,9.569254781648818,0,87.27133647750846,2,74.28150372437517,1,1,48.77251750887852,0,1,3.465943090673634,49.29037844881705,1 +0,2,0,0,44.70574404989803,92.63744338751746,49.43462442756525,2,3.002876580927865,1,134.30933656731688,2,16.283151423310834,0,0,24.264446670891694,1,0,21.780104775020515,26.444253358378877,1 +0,0,0,1,72.30816962353956,47.4834988246492,61.57129353259499,1,17.282564083729017,0,27.731988211933523,0,98.95711910497704,1,1,31.248566968914226,0,0,41.89846744667597,40.5443493856121,1 +0,0,1,0,76.60639542088713,28.34250794543009,23.711347722139298,2,25.49931089266764,0,64.16805339958306,1,93.08419134674236,1,1,9.917215876474945,2,0,0.0735165121594216,16.246633080324855,1 +2,0,1,1,50.65083149361391,33.820492694917114,35.26560181581917,1,22.844464055209794,2,0.0025301847261294,1,53.0280813427077,1,1,23.673465423262485,2,1,65.15550892529,85.15209550688813,1 +1,0,0,2,97.9965426566296,14.970814418015364,59.20037420913176,0,42.120178026486336,1,113.1151476440222,1,53.62604616689616,0,1,15.554358530676089,2,0,81.898058190242,82.09926183400458,1 +0,0,0,1,25.601277316523884,18.29507805713782,49.59127784778218,2,93.1909126752294,0,22.95074343813576,1,131.54839387392144,1,1,25.688060989576694,0,1,30.897638153247144,130.90156789612237,1 +1,0,0,0,44.49039245182665,84.20944232638996,88.50182177022259,2,14.940821032997604,2,88.41776460596964,0,100.34250239312748,1,1,73.93791849437449,0,0,37.42985157233537,14.600400627551192,1 +0,2,1,1,103.23278297753598,28.12986346757525,8.721330448092985,0,30.964890200732597,0,47.998267927378194,1,67.36708799817589,1,1,39.88134695116253,1,0,12.936509703768667,26.31230712971516,1 +0,0,0,1,106.69776132004876,25.886745165298976,70.54857015911928,2,56.02658423153828,0,71.01504081400493,0,122.68036763313827,0,0,19.629239480587117,2,0,2.42194630222754,47.81176993718219,1 +0,1,0,1,98.35912703528004,10.458849936968894,13.185053753971571,1,18.287736615675904,0,68.6961554707148,0,53.58835414458976,1,0,75.55562247530632,1,0,56.31510839259937,73.1354444068938,1 +0,1,0,1,79.3361967551363,49.4448518187507,35.81127138026025,1,39.73150238899584,0,93.55319596539012,1,43.27359052573238,1,2,69.800951355871,0,0,67.34036728294528,51.943143175966696,1 +1,0,0,1,95.64809165804871,12.89663245845934,45.01180753419896,1,30.066384098686267,1,134.05696094360297,0,35.521934260346946,0,2,29.194983046465367,0,1,65.8096475306467,55.99029632178011,1 +0,0,0,1,50.32569175155021,2.4362745409733377,49.40050417468849,2,28.487792349850935,2,88.29345943176811,1,96.79676773075836,1,0,24.007058338053056,0,0,30.290546365624603,42.528640537809146,1 +0,1,0,0,62.289446488072855,48.11365004068796,63.8672740899213,0,78.69546565635875,0,29.273157412515765,1,61.38090928537935,1,1,8.796395128998725,0,0,24.4446750456223,44.10986113666136,1 +0,0,0,1,113.93704399794376,13.853933105162008,42.32768096523492,0,39.43595290120334,0,39.94395864132427,0,71.02395923222818,2,0,29.711015157213694,1,1,37.05121257985729,32.960880444906024,1 +0,0,1,1,22.33489948290038,1.4913752358433507,44.06894529874727,1,28.19200200024105,0,56.75185698600298,1,76.9204207993902,2,0,9.7896364567033,0,2,46.646316605184985,45.06814242348185,1 +0,0,0,0,92.8759883914484,40.54040428753543,6.800657299185319,0,9.06025721466483,0,69.28769782206325,2,80.55793972462158,1,0,94.75007326529268,0,1,46.97002256561888,13.288183401404163,1 +0,0,0,1,104.56355608424502,71.9197375277188,95.26670708029395,2,42.7697801555604,2,95.52964573972936,1,67.45129626132987,0,2,80.88428302311016,1,0,88.3103488633839,56.48580245456583,1 +1,0,0,2,89.55637240359019,11.673410902114323,31.66235949598313,1,26.553104825044667,1,71.80721452361558,0,17.42238440387254,2,0,10.396577877367797,0,0,40.00547062652019,33.6504330666704,1 +0,1,0,2,80.92404404436313,44.50758862594667,40.61174896783567,1,7.530458342239576,1,54.88296728014756,2,65.35351476865851,1,1,1.7710475733813291,0,1,43.420485849556,5.798185999317612,1 +0,1,0,0,74.92598524713121,42.174692363487246,15.176423436349497,0,22.60765286766344,0,29.808315329673107,1,41.698580288181134,1,0,10.618557488511575,1,0,32.5138560120485,17.127610638576137,1 +1,0,0,2,31.86389252531209,33.77544234187117,23.66354530511347,1,15.100424501660248,0,64.5982328225034,1,83.71585291344383,1,1,50.260860000910434,0,0,43.73193746671598,1.591463222678463,1 +0,1,0,0,35.51616411118506,87.39707429283189,82.66002969123025,0,28.9810344305808,1,47.31163495139706,0,72.23226476230458,1,0,61.71528713294324,0,0,5.222594374409789,10.212700045666695,1 +0,0,0,1,88.22404635872846,76.67589363334199,68.29270035841365,0,37.60995135304685,2,79.06510040761442,1,99.98080256310628,1,2,8.341398397856043,1,0,28.473467434263107,24.109718208023374,1 +0,1,0,0,64.07855262285199,26.49263578889965,8.967840695512159,1,72.0003094787157,1,25.1880394059764,2,73.3219910383219,1,0,72.84441092079095,1,0,95.3614876529299,90.15406780386309,1 +0,0,0,2,117.14231642308955,43.03269822418997,34.589093505834384,1,18.66593119769302,0,71.33589057547813,1,66.19168878004413,0,0,17.79203369287209,0,0,55.26009000037288,73.89266765100685,1 +0,0,0,1,115.93318679528892,15.407135653856214,66.45293812264639,1,28.418733882971747,1,110.8902845119096,0,79.4590313473093,0,0,138.8684910998749,1,0,20.129943330805837,20.753789248425846,1 +1,0,1,1,40.41690175661429,38.21435231410836,76.33565145344863,0,24.47846019899454,2,122.9860744499418,1,72.63966437021166,0,1,13.036721042515248,1,0,21.44271021859792,12.803352240812863,1 +1,0,1,0,80.50862212362618,39.12099879919023,32.948759779998696,1,28.96857406826475,0,46.05610287809389,0,140.06702924770352,1,1,40.18056329414641,1,0,81.82226584947935,62.48509999019655,1 +1,0,1,1,71.28092310282469,45.64231711926495,96.74265595932243,0,40.30165046178767,1,84.49478939749709,1,18.094077095911945,1,1,36.5420888419352,0,0,17.577319190866557,47.88140181517202,1 +0,1,0,0,23.07060883237485,40.39944136376376,31.69410757103147,1,28.589955328105184,2,92.0389806697176,1,97.0831248743402,0,1,48.47646151193305,0,0,49.71624493610959,11.124617245373807,1 +0,0,0,1,35.568246150760494,39.471612687473005,31.12127234218156,0,20.074845194475227,1,60.12278003936114,1,57.78057364603772,1,0,98.6551623912396,2,1,23.453997273588072,12.9178318417225,1 +0,0,0,0,144.16548077471467,42.73854024932772,11.112920925884534,2,75.87776526906406,0,23.246184357324097,1,75.68480568253567,1,2,19.078420619410736,1,0,20.71494836219466,47.242358094636856,1 +0,1,0,1,47.245561191968186,12.627392375523971,40.69394387667344,0,4.175269885352295,1,43.52996866371039,2,76.87941281763909,1,0,4.262159768569368,1,0,51.31662968232148,81.65572996336525,1 +0,1,0,2,146.52553788327495,40.40195511143209,94.64181385774184,1,10.911104887753735,1,26.30234373485535,0,5.998757379336356,1,1,49.02970395692747,0,0,93.8502858592533,66.57634422258391,1 +0,1,0,2,31.429930766560386,5.781100422757107,77.90253398892182,0,27.777800758838985,1,3.058748657830929,0,43.136009552187545,2,1,42.82455528031293,0,0,66.02600410657323,87.16365152236281,1 +1,1,0,2,91.95383498201711,41.41281883576304,37.5909524865231,1,4.915658297128594,0,41.78406237251551,2,61.38977801449144,1,0,55.06032333068924,1,0,0.4125270762006361,25.28886347117414,1 +1,0,0,0,106.2260757003084,36.36008869246632,85.6862973813406,2,27.95988759763649,0,55.38378902212474,2,134.89711251035322,2,2,20.028880355749124,1,0,94.92579931673392,111.07773517254208,1 +0,0,1,1,38.60084132895801,10.672167675068906,30.612270561173062,1,8.776122785040297,0,80.40488936687588,2,62.53458238640116,0,0,88.80543355575371,1,0,38.72650374936487,0.6649538883525374,1 +0,0,0,0,88.00522702933894,25.00875035624065,2.3024381555000195,1,44.85141755293954,1,42.95515981468301,0,76.51252194593302,0,0,98.54168366202452,1,0,78.50698083211364,82.1057867774969,1 +1,1,1,1,74.15005826075023,23.40093453520401,34.1749773570702,1,98.93356517356946,0,16.721161652205215,1,29.43175533434193,0,2,31.01713335033585,1,0,93.7370033108648,90.63665133658446,1 +0,0,0,1,82.5953220101008,38.89055285496764,77.83438229909068,1,47.94208920992722,0,34.862186578075885,1,65.53011705638949,1,0,17.60625314550786,1,0,49.61457077265033,8.936734433590487,1 +0,1,0,1,107.02795045665236,1.8095698167955252,61.59009394094194,1,29.54058362053418,1,70.76340804874013,0,58.9505463577831,1,1,10.233800649024683,0,0,39.56610092164605,24.00898553145361,1 +0,0,0,0,75.8250838402899,36.291234323112135,59.0930916300165,1,48.36525559012719,0,52.0232796459795,0,27.17247806869717,2,0,19.83071691096264,2,1,23.56111663266212,35.971173519795705,1 +0,0,0,1,145.4519641924663,20.550498504758185,33.23451544892108,1,79.09218869691583,2,46.14070405999617,1,99.90622572534336,2,0,3.585261918120847,2,1,67.21518427186797,68.07839198250672,1 +0,1,0,2,66.45313298854487,54.859882152162,38.48513850035472,1,15.015716553222624,0,144.62659708211277,1,92.16134625468143,1,0,96.75622031672158,1,1,60.93582724305249,76.48112023934438,1 +0,0,1,1,79.24920614537976,8.873883955737355,3.498981235721144,1,21.24328261284881,1,50.433843471400586,0,33.957914871673175,1,0,39.64302875458147,2,0,18.986383844874045,22.682530365797437,1 +0,0,0,1,25.19896593574299,55.001790658072544,45.65012864094828,1,25.97942177236191,0,62.59039709403714,1,50.53521828448197,1,2,50.42494184585251,0,0,0.5244211169775692,34.906595331393355,1 +0,1,0,1,112.27037092401886,9.32971866719311,28.97153662412879,1,18.591377347515607,1,91.50273725838274,1,112.62424564020937,0,1,43.42812900448228,0,0,25.52829864645171,15.75795186316829,1 +1,0,1,1,98.37737187486955,23.313924283846315,9.25389689673899,0,46.97243282064093,2,93.2044651768497,1,67.45449811281097,1,0,19.23263149990147,0,0,77.85137384690356,84.23364163697907,1 +0,0,0,0,83.59469638574909,5.634823961103258,3.91246873024661,2,49.12891643239572,0,13.960521594952974,0,112.17533319795396,1,0,15.7910195305773,0,0,88.52055984081956,65.05338343876475,1 +0,0,1,1,11.167605319917556,48.36986066291779,93.00899042103713,1,22.22826039033122,0,0.9351970296746116,0,107.35848355369578,1,1,98.56594094363533,0,2,20.222236317709573,35.46791863381335,1 +0,0,0,2,89.5915832703377,42.89781305610501,45.18280843856368,0,13.093614526776404,1,99.80739765914136,0,55.243299961945205,1,0,13.478256645028486,0,1,20.963269628174324,41.62919795895247,1 +0,0,1,1,50.53824387438935,32.60433056901969,37.80502183281517,1,0.1468608450084174,1,113.20745486052874,0,20.818863636559755,0,0,10.98397278086235,0,0,49.49781157732081,35.615576326001346,1 +0,0,0,1,92.7794925811744,19.21088688592353,46.4035256344004,1,19.671783346318527,1,10.389314677786588,1,120.10201916411792,1,1,34.743626409070835,2,0,60.337381165864784,134.25142542266664,1 +0,0,1,2,20.09184190386025,39.3063387425774,15.823609851574034,2,8.258169139515454,2,54.65647426903602,0,35.975654240774155,1,0,35.77325665484758,0,0,46.18634192331092,45.87151966967824,1 +0,0,0,2,0.356170039414716,46.413998069506505,90.64104877365368,2,42.70459192220051,2,142.11032362717393,1,115.11363204082583,0,0,85.77072412819233,1,2,47.13914419112371,13.248400434825408,1 +1,0,0,2,40.28290187576741,75.50550028436838,23.72331373432714,1,36.9515149564371,0,146.93612353376528,0,5.78246941876766,0,2,13.056331236930967,0,1,16.72925765614369,29.72823769983509,1 +0,0,1,0,11.795835667424514,12.382306856427276,12.711230738396916,2,8.335621411577975,0,83.07432838025785,1,55.05466207566189,0,1,42.31206541488183,0,0,23.13923343112205,32.29419188292113,1 +0,1,1,2,40.2384775964624,50.40935719049301,80.1918236990939,2,13.603545351561667,0,63.74862567751829,1,96.9893645715912,1,0,45.24777023174993,0,0,32.36463050002579,26.80777520778784,1 +1,0,0,1,99.62359917134006,11.309396140358496,46.61161926450771,0,15.662360338011776,1,48.15613064623669,2,17.233516030944163,1,1,31.2012481932576,2,1,124.2689359814498,82.07539269436984,1 +1,1,0,0,31.511683196260982,30.08198853683737,78.96142109867633,1,48.00907008053153,1,81.2265345373907,1,9.964916439897836,0,0,14.40959416246681,0,1,70.27692539704645,60.47604473764589,1 +1,0,0,1,77.56059665701729,43.7185042411551,39.40698353898917,0,34.910917197072024,0,15.743972052996323,2,64.58068442776221,2,1,89.85956238736446,0,1,32.13595379536234,6.122955612943059,1 +1,0,1,0,123.3287683690589,54.17555825678463,1.9534660411527796,1,2.788845573958232,0,7.247617424616521,2,81.77550811503903,1,1,29.19552670878534,0,0,7.1511961296317486,28.572676294820727,1 +0,0,1,1,56.53211634070842,43.79322222783873,10.205122683584044,1,29.607940347325247,0,45.36091675466263,0,2.1024028544514017,1,1,9.50492710482041,1,0,35.77120227244422,31.124591127653588,1 +0,0,1,1,98.89892810686214,16.610551116594547,30.909962547882586,1,23.37965729572213,0,22.90358733364561,1,143.54914077198725,1,0,27.27296505744665,0,0,31.077528821631905,17.11918087100469,1 +0,0,1,1,66.03938909829057,16.103856535908818,55.95471888197247,2,146.7169553000365,1,28.94693189390104,2,61.77902327061289,2,1,43.82098248924486,0,0,30.696618155968714,44.92886268625453,1 +1,1,0,1,74.08547722483048,20.00607558659117,37.05454374999863,1,30.290915306215755,2,43.576755535175735,2,67.58988127198896,2,1,33.08460651445311,0,0,40.22715748565223,36.58846502362714,1 +0,1,1,0,61.99458515672382,38.2623441945446,15.232689702909491,1,37.254407788321465,1,39.88396186502686,1,92.97254048220488,2,1,9.001054518809969,1,0,62.190785879134566,88.6681992845408,1 +0,0,0,1,26.91834342605906,34.60625191215152,25.460483261983207,2,22.452113797335887,1,64.53006907863683,0,0.5642267598817641,1,1,30.204711529428067,1,0,47.77287079619069,22.64016395631255,1 +0,1,0,2,79.69399998091234,88.69142319967806,24.920520734961137,0,23.148142527313,1,12.8996652839122,0,85.6726086160628,1,2,77.88041502594541,0,0,38.004167103391865,25.707171550526127,1 +0,0,0,1,62.6898275940866,18.24129744548744,6.581195888864356,1,35.68008877604201,0,96.85581381304397,0,22.08101602582085,1,2,39.354931155092245,0,0,128.5333318959516,83.597453988396,1 +0,1,1,1,74.15457063649004,46.27146604535171,93.0500033711323,2,49.03420072604106,1,122.30826392423492,2,21.48406483091932,1,0,75.99822999898117,1,0,83.92470634991267,75.3313032696607,1 +0,0,0,0,137.03007936477778,35.73874681300671,2.8993535935210257,2,24.90865129057675,1,85.12212457651269,0,23.89008120627597,1,2,20.43458956725449,0,0,58.46794670662731,81.12144709942673,1 +0,1,1,1,95.14038565436664,15.102352282760808,1.0143734638259794,1,92.801126811206,1,28.730709469283426,1,89.8932195263267,1,0,42.95223777057147,1,1,90.59108887492457,58.40769184856941,1 +0,0,2,1,21.01331655522008,46.11873797999828,10.882278828343985,1,10.986823977470928,0,98.0531055903826,1,98.1038104709009,0,2,95.04516347233456,1,0,52.24407608301156,96.6913848064387,1 +0,0,0,1,30.16185011572727,53.97082779545892,19.574893352221533,2,42.109834756547336,0,66.71823920438501,2,84.73897303299934,0,1,8.49353267169164,0,0,26.28604115687436,24.13230509805729,1 +0,0,0,2,85.55494078281268,12.239871851019362,31.884627866350336,1,18.6392371440307,1,52.39615981644016,0,109.57654011595508,1,2,35.16620709844384,1,0,13.200235768548868,5.615485313174284,1 +0,1,1,0,98.70637017561334,12.351832407253644,71.4404018695385,0,37.02368053567143,0,130.15115087477548,1,57.73745309363903,1,1,2.842136003192036,1,1,65.90689010926853,58.694056250234205,1 +0,0,0,1,82.18004698006422,74.23706580473018,39.51630647351325,1,10.79765375222652,0,97.82763029934844,1,13.044483606082784,1,0,0.3095626562989839,1,0,31.85196759313221,6.972977633271888,1 +1,0,0,2,91.18545210868768,75.2177987168397,112.43353860102232,1,47.15797772548903,2,45.02753048775698,1,58.59316759304511,2,1,27.84806389006487,0,0,104.26475173720128,25.568083452006984,1 +0,1,0,2,45.262865555692144,34.18674216151775,83.20739199556802,0,35.9063463246498,0,26.88001295322827,1,115.05575450103056,0,1,96.79193102333106,1,0,10.888913966288072,24.48985048228168,1 +0,0,0,1,84.39240946547989,16.35412407389491,62.47201289191796,2,18.59714182504488,0,33.767734053544906,1,48.351319152525846,0,1,47.18167691573402,1,0,50.71370908420376,104.32703972817912,1 +1,0,0,2,72.50436820893856,95.33909331460896,26.510107921716784,2,39.66564327950506,0,23.10426831944944,0,130.70258489819696,0,0,14.382328101814135,0,0,64.10965188890881,61.425192498361,1 +0,0,1,0,20.86760141102553,39.66296777864268,60.69701168320959,1,44.95350731099585,1,78.94261338818346,1,45.506734738641065,0,1,0.0844335183506239,0,0,35.80205587802329,26.371537459591416,1 +0,1,0,1,50.190145570088,45.58812621961714,46.875955612070456,2,0.997355306655734,0,22.88404521963016,0,78.77063787806686,2,0,43.00542021695337,0,1,43.76816985789124,8.493672367900723,1 +1,0,1,1,106.36691447057903,77.22141554038595,32.19110745730502,1,3.4680790361677705,2,56.56805427184749,0,93.32653303412285,1,0,25.122175570015127,1,0,0.7872551620306145,40.75757929450164,1 +0,0,0,1,34.96742946911585,5.441254263742717,18.979074893041165,1,13.639525460765029,2,84.30390610496966,0,23.77451950015408,0,1,13.3189806708735,0,1,66.39696394686258,91.55198859187992,1 +0,0,1,2,139.96895839063413,28.65416731613834,22.172662506757774,0,39.201586384240414,0,36.25757061614155,1,97.8262192783229,0,1,35.16126506490922,1,0,64.72090603443773,58.38884370176399,1 +0,0,1,2,96.1637277396918,23.28418125824543,10.106241011015094,1,29.850270231844604,2,98.66151821267978,2,8.876301304513866,2,1,14.487271089346088,1,0,27.72277186924857,25.275547965199628,1 +0,0,1,2,69.34467858044643,79.62511655369359,9.819857456904856,1,44.75357054570552,1,20.88449278478374,0,96.5761033223591,1,2,1.9408475690929128,1,0,10.014715537328096,26.04153263960926,1 +0,0,0,0,57.34732286682701,38.1701194375656,10.67828250262806,0,52.942569892311056,0,20.68559987287156,1,59.81093682152754,2,0,38.98820303964514,0,0,5.858706501614491,11.578349488228762,1 +0,0,0,1,103.81340130389128,24.573670273455388,5.8772362075483535,1,44.53719799166074,2,2.418133183521709,1,86.15535118794682,2,1,10.477014623179787,1,0,55.03129647228998,94.56486228084492,1 +0,1,1,1,146.39898003876647,48.101253927613605,86.0458952026943,0,36.442334332401096,1,97.86887839361506,1,119.99696250029896,1,1,43.29905810412376,0,0,51.446152650342405,59.03618662498909,1 +0,1,1,1,48.3532200887217,10.12250379651798,40.23735407557742,1,5.953544019969631,1,11.871682795843558,0,37.54231476103597,0,1,30.297206736032127,0,0,70.89791057352282,82.37098865127022,1 +0,2,1,0,64.75486712027673,27.93161370635144,94.21216505852205,1,16.495351436881084,0,36.20674121058403,0,38.38220303536926,2,1,48.22920810272922,2,0,66.16076591471489,86.88777992117791,1 +1,0,0,1,67.56731178116087,28.24135098231416,1.6373990559571172,0,8.283568686238846,0,41.76629080090357,0,81.54613806042197,0,1,2.643963637556457,1,1,85.27138787762638,56.752020232183206,1 +0,1,0,0,6.44372366164096,13.988013586706645,1.3634225150525925,0,34.81061431685469,0,91.8567315727562,1,77.66110214857042,1,2,4.030289887273669,1,0,95.88720432561628,99.7965296462877,1 +0,1,0,2,99.12119726396963,98.564196764709,81.70065665951157,1,22.99177269435732,0,111.35351922147731,1,77.02464102218622,1,0,7.816559815135565,1,0,37.57560147691784,26.003038057105694,1 +1,0,0,0,63.43628632896504,8.673547436888319,44.46280195831107,2,49.01187523286474,2,38.44922105470896,0,75.55661148283014,1,0,35.97228362461623,2,0,11.352350126747284,32.88379857904324,1 +1,0,1,1,46.55401483824566,63.24325946519812,68.30126643692077,0,24.236189853649563,0,49.69815948908694,0,112.20066952655051,1,1,89.58874944843153,2,1,34.785578867629944,28.233636722097188,1 +0,2,0,0,4.3471958777307975,37.3187575375438,11.782963615114555,2,18.21904062916392,1,13.51332840477043,1,84.66066942440828,0,2,48.91533247374343,1,0,16.808956140944854,34.981717332863965,1 +0,0,1,1,27.724294127123528,4.7074759828126815,25.054565343721062,0,24.64903785763348,0,36.021674041847554,1,40.39922264729479,1,0,2.648193996469861,1,1,8.817403256838436,28.97372669056969,1 +0,0,0,1,12.07376129479576,17.447427683124587,0.3001054955344584,1,89.9011723987622,1,58.04884311245196,2,19.95695267316893,1,1,96.2063009549346,2,0,1.9997054995365249,35.639644434062085,1 +0,0,0,1,95.6974104748356,29.20447533660807,72.25581041150782,1,46.50849381712538,1,51.86258592418576,0,124.81992776893654,2,1,39.06482006157455,1,0,67.60928140281516,61.49005760209422,1 +1,0,1,0,31.616465094044056,12.937801923684203,78.92243533297076,2,46.2778572558372,0,72.16111706197779,0,48.57867689231491,1,0,37.61291375922919,0,0,93.25029317747936,70.50597239786592,1 +1,0,0,1,99.2763025129955,18.35812925971412,74.20612484446521,1,76.43200739511103,1,29.50558120512175,1,149.25527448158684,2,1,19.522737333361437,0,0,97.1207136529097,81.18993761351625,1 +0,0,1,1,65.01841332957142,92.69658279742748,4.417766659492783,1,58.836861507514016,2,47.074427374001885,1,64.41945324089698,0,1,30.11833667612257,2,1,72.46869463000917,86.49397817344779,1 +0,1,0,1,22.2754705764176,2.081614372171331,44.59776744449178,1,41.35440706470993,0,18.126914070714385,1,96.23184079424637,2,1,89.82365242506032,1,1,2.9519596889988344,37.136064368268535,1 +0,1,0,1,137.80223353594067,32.03405222435019,54.18868989630108,2,21.781895955428727,0,95.8304551371244,2,72.89213719986819,1,1,15.100296350035569,1,0,5.551041463428091,6.992517781346908,1 +0,1,0,1,23.15379611446383,84.10830375882307,49.60691100462861,1,19.55639165616955,1,44.75387046312749,1,50.30579757140252,0,0,89.61383739766879,0,0,54.85944333554312,67.09844387537362,1 +0,0,0,0,99.81259239646354,25.203915982074346,7.669506425324513,1,96.76948227741585,0,40.69353547959156,2,38.430562436167016,0,0,17.028402364965977,1,1,15.200575497969304,26.40893774571525,1 +1,0,0,0,41.29191320909153,17.883183586901573,37.60210695801031,2,0.1703282557822372,0,80.05643237377545,0,98.88951037480264,1,0,17.073375117650123,1,0,2.595569142408221,36.73687517504615,1 +0,1,0,1,108.37686004256702,37.83240173760149,34.658701829946565,1,26.304315525655152,0,35.32237210776014,0,24.721399256052447,0,0,47.60405631978883,1,0,3.654582631598868,13.353778655044716,1 +1,1,0,1,7.152982598597429,3.7929832137645167,31.641295760448426,1,19.66326073176099,0,10.326997012102597,1,25.0606991601161,1,1,102.56258877351914,1,0,69.33500676984582,102.87448228207086,1 +0,0,0,1,57.12519770145197,35.381110893367946,48.94562753110041,0,19.647491781255862,1,21.821688404352745,1,73.98491577734352,0,0,43.01420171651012,2,1,4.982261205881172,39.787973362748005,1 +0,0,0,1,22.381954977108197,30.313469440949294,73.67659198957608,1,22.9651742896823,0,42.483590717361,2,143.05254228973536,0,0,28.079915602351967,0,0,72.03020814574502,74.16250527761021,1 +1,0,0,1,121.08859402785735,28.40974326911904,41.61904621065542,2,39.7647461279799,0,96.54369106745196,0,62.43263451989632,1,0,24.651053634102432,1,0,93.31318799058246,78.26098714586362,1 +0,0,0,0,14.372064024696169,1.4393319889287992,13.082950652962792,1,50.03622134732534,1,148.6928854817983,0,47.12393437116007,1,0,32.867408899293,0,0,53.24022704589828,92.71543402357966,1 +0,1,0,0,45.59443483384805,22.78132509937292,9.581807651816826,2,20.684598366183405,0,70.82436549729032,1,76.6883393973014,1,0,38.93019004491297,0,0,26.325382406534747,21.49836452209721,1 +0,1,0,1,67.65009444605016,19.504334142026348,93.62041803025446,2,4.373894389531097,0,27.02557123434551,1,92.72064680676444,2,0,27.573630399217752,1,0,16.49694894830614,39.720273410705225,1 +0,1,0,1,45.354937299699465,87.64701323456576,71.4310729492517,2,17.986419664752823,1,66.2924508867873,2,12.62940671824514,0,2,59.10883790798787,1,0,57.38553086901743,51.18903545563564,1 +0,0,0,1,92.89836963315108,14.603204816869823,10.08347376568251,1,16.034983763963268,1,24.618995040635895,0,3.489934511775905,0,0,10.749374649919956,1,0,59.61776322220167,82.34250661968075,1 +1,1,1,0,131.01980591969578,33.45018419832653,89.81127399650894,0,22.21331754306507,2,58.38758041631722,0,68.64858182119352,2,1,18.09072129624869,1,1,73.67968769799081,87.66496410936362,1 +1,0,0,1,37.680993650533416,16.309210228407277,87.12703851045057,0,41.97868004901949,1,17.00325021382547,0,93.65242637425293,0,1,10.009803285457204,0,0,31.29213247804263,43.896103164719605,1 +0,0,0,1,58.83813308742732,30.70357408178006,3.548967165402489,1,80.43595449578753,2,58.16093647228565,1,32.7349365234024,1,2,44.66131353455158,1,1,14.59280210991698,8.943571955351626,1 +0,0,0,2,68.15518445667078,41.21789096176225,17.16033281640612,1,49.11888490139432,1,35.04157839883189,0,77.19561989285971,1,2,97.5279776612936,2,0,36.52161048328895,21.08413230911787,1 +0,0,0,2,58.34345909381961,97.57721643610542,83.77191079079836,2,15.472229638004126,1,64.05964185132609,1,147.93235542718878,1,1,17.901882913419847,1,0,3.5978752696023464,2.910972182588928,1 +1,0,0,0,71.29905590521653,96.59809827718244,2.3129825615424537,1,31.00046918810275,0,30.83645993133779,1,58.20499730712704,1,1,11.704275034320576,0,0,82.60021641951312,87.90304095404299,1 +0,1,1,0,59.808339170427736,45.79572274641568,16.883060243892157,0,7.4001635619203645,1,67.20875044729212,1,65.29698356199361,0,0,5.660791189811276,0,0,14.520986325328185,45.91147069329264,1 +0,2,0,0,92.73766248377558,23.27758885348954,0.2901127424352723,1,31.62300259093734,1,45.21066839073983,0,89.23915836077283,1,0,52.27483062120864,0,1,32.67660475191153,42.23272737964872,1 +0,0,1,1,15.668477177166718,22.66569585630081,62.18762664693913,0,77.9758565980585,1,34.257998377909686,1,88.5824623817248,0,0,45.65231333346606,0,1,63.30608093528331,80.1174791966267,1 +1,0,1,2,98.0831896160909,4.9995329897387695,26.43482493676237,1,6.815256028448213,0,109.38491072946891,0,102.41794095183356,0,2,2.062856685738001,2,1,36.03768465002957,45.00337907655662,1 +0,1,0,1,27.195675283467278,15.57217111007444,23.371668312844506,1,26.900747301677004,0,103.1534711432232,2,78.39343154831919,2,1,19.196363065140904,0,1,15.164638906197814,2.4280759769437497,1 +1,1,1,1,80.27229806738006,53.139707028776094,81.22111685577873,2,41.27998612930091,1,119.4249561831,1,81.5863257220241,1,1,61.20008816629296,0,0,37.68428823151143,9.965867811849222,1 +2,0,0,1,128.33175983973408,47.54549065605372,35.64628766057829,2,22.927374531577293,0,9.299259713828622,1,40.85211850795018,1,0,11.544101896757574,1,0,46.983687110488646,5.658600070214809,1 +0,0,1,1,101.01326991962723,3.0839153634502017,21.241692569197525,1,40.15361280502064,2,26.582888072917942,1,49.209994738762965,1,1,47.10213462767753,0,0,26.463991282095893,33.98031316494852,1 +0,0,0,1,56.993508448276565,28.68870422792177,24.006982799893763,0,30.12399280711272,1,129.51584316912115,1,27.86650477489248,1,1,52.09891977109226,2,1,21.38446776334527,45.98599486591239,1 +0,0,0,1,104.45307441413522,11.794608952646286,26.104342364806925,2,2.703238023384058,1,114.16781328237192,1,85.88413538933999,2,2,68.70011552200418,1,0,19.42301983790752,46.96050813059243,1 +0,1,0,1,84.1361962967205,24.108762469754524,31.263072193759854,1,46.08608539400534,2,24.4352148118922,2,80.78223473654215,1,1,3.273102039130521,1,1,47.42826465912206,43.73471182707898,1 +0,0,0,0,129.3797159680236,27.45142037989788,8.762409175360569,1,49.49050322706239,0,50.18898821319777,2,53.70040613956555,1,2,27.26946062718614,2,1,26.63581459825824,19.29315177751068,1 +0,0,1,1,36.319100437882064,24.732755974190425,8.303753632509302,1,9.990377622680512,2,19.793918265908456,1,87.56859743375807,1,0,116.85948807110655,1,1,40.93320671993415,43.6430075961516,1 +0,0,0,0,46.701328603142905,86.11173278872258,62.12594097253991,1,34.05671576189972,1,55.32825412116784,0,134.85458602736284,1,2,11.60241826030594,1,0,28.98342351250296,104.5655278909168,1 +0,0,0,0,137.86399329288386,22.587726109955103,9.793928232186731,0,38.87697711314184,0,55.12642305660133,1,58.0434378503988,1,0,69.63556850685663,1,0,24.71963438369751,38.230457598396775,1 +0,0,0,1,7.835336532545001,29.47304966745965,52.92941595185368,1,25.36152670365659,1,73.78578706513466,1,120.42471560035138,0,1,82.763397914046,2,0,56.61109717422241,61.7157112236977,1 +2,1,0,0,46.98382315230812,6.857883315979413,138.94409541050916,2,89.35723405454132,0,91.75274889248811,2,33.81662737115781,1,1,1.5441907582226466,1,0,35.18104740499657,11.503190415403314,1 +0,1,0,0,80.65324163615998,38.370364306095766,49.1474894170827,1,32.718696072610875,1,102.41604966507089,0,4.305805407642621,2,1,48.46135827765276,1,0,26.35705756603076,38.22164055209222,1 +0,0,1,1,75.68972087531708,16.491733544493652,16.263512188388823,1,0.0296453011922048,0,41.01834939786757,1,12.427664321956344,2,0,60.31031756854341,1,2,68.65314684790549,79.4488037042087,1 +0,1,1,1,52.74344586094691,19.346716067009996,56.64721198387739,0,31.19509176947472,0,76.17941978191837,1,7.554151807491144,1,0,61.89328288741823,1,0,75.8684563591504,83.32676356709263,1 +0,1,0,0,140.4397624987002,37.7582444979029,29.38061197332581,1,44.81394182722558,0,88.41534057139549,0,72.6649697442303,2,1,31.54806215366042,1,0,72.1617029182633,71.25872924590513,1 +0,1,0,1,16.628713395576412,16.43757561118999,32.59850554823902,2,3.629744391441619,0,132.8514115227254,2,9.251645083669851,2,0,22.86958108246324,1,1,2.5146440048809118,24.07339644345381,1 +0,0,0,1,136.004127356051,33.77150724269565,10.159827870115429,1,40.34525985233592,0,5.173951711852093,1,41.45364554210625,0,1,17.848609146380756,0,0,39.80311339676872,24.616443797295545,1 +0,1,1,1,101.68140012214602,7.178864631057024,18.007625457651137,1,22.723213414396408,1,4.966812757916012,1,41.89393383404984,2,1,20.268905265801827,2,0,45.62947266605247,35.11474896089081,1 +0,0,0,2,64.20801086853882,2.4672993129995326,15.554127559634727,1,1.496043683428966,0,0.630938941063508,1,84.64431001569665,1,1,13.889040399735077,0,1,49.43608243979043,46.067783125607,1 +0,1,0,1,79.5034482451953,2.746946949307133,26.63559961144516,1,23.103919644448798,1,79.17892766352294,0,105.35675463351232,2,1,2.946724782560828,1,0,42.14138927570795,32.87926790690347,1 +0,0,0,1,117.98893869939975,38.90482847010923,76.7784653592792,2,0.737996304221844,1,3.677174682458884,1,89.50323151540496,1,1,38.94515379579415,1,1,84.22713598031221,68.12607371829634,1 +1,1,0,1,2.150757419280791,32.3558561850054,79.6089268008331,1,17.5039542694854,1,7.17289083291085,0,59.56940064801362,1,1,64.31968700839406,1,0,41.69596895677354,41.22844438392494,1 +0,0,1,1,71.8813773409283,66.2328878853817,1.1064826023118812,0,58.013343622657054,0,53.43598548229628,1,53.64221235124308,0,1,43.82533670841224,0,0,38.51648572094165,49.81685088733847,1 +0,0,0,1,87.58064709249985,48.60266847574968,83.05981460602852,2,26.55809054415712,1,99.75298109409717,0,33.875777033481214,2,0,49.027392862780175,1,1,80.10535515768998,53.62900804574519,1 +0,1,0,1,95.72474523920874,37.27067840317115,4.823291768504151,1,0.2625349104011909,1,83.5781334713557,2,46.12397964412841,0,1,1.1335019529325752,1,1,83.41030387183119,67.76858260674172,1 +0,1,0,1,145.99157229295852,63.79024960001467,87.54190935884306,2,19.96814209726878,1,26.938810089288445,1,143.56482559978832,2,1,54.49794451354296,0,1,5.021197504479208,145.49690154908595,1 +0,0,0,1,118.09271795745504,38.83005332690303,6.562681878153775,1,9.717290815591657,0,99.38736176592536,2,95.1087287986733,0,0,39.11812840205774,0,1,5.511671821891884,43.84836917992765,1 +0,1,0,0,8.12454630078983,22.606670186560667,78.11092020129082,1,40.413194657495424,1,26.378664678054182,2,19.47236014737592,0,0,0.2509018536473895,1,0,15.112739401462573,11.306659305994993,1 +0,0,0,1,35.39936148353886,17.68888674263064,42.71397969128068,0,11.894146964004433,1,65.52405499512116,0,21.68241831372924,2,0,1.9985553269101173,0,0,34.73924716841887,17.53547308620307,1 +0,1,0,1,18.767217918927177,5.354021005778775,76.654466656731,1,22.14352238629511,1,88.06779712476059,0,22.23899883748705,1,1,39.33225173085472,1,0,57.14228356140209,63.13150310236706,1 +0,0,0,0,95.28837539925978,33.43361578755256,47.17823270113385,1,37.60565110983774,2,86.35506295303576,1,37.29915801771203,0,2,25.51646567413996,0,0,128.8775281688071,60.88983958917045,1 +0,1,1,1,52.94688347322727,9.112771097276596,12.41972906970773,2,13.053405111040462,1,14.399706343617956,0,133.6470431106894,2,1,28.970770367709147,0,0,26.34211281001457,1.0593466412120556,1 +1,0,0,1,146.58168212025234,1.93422817919276,22.51798531991029,1,41.01518376825191,0,67.13044518753956,0,87.34624756210918,1,2,23.603011316488452,0,0,19.12877058698433,33.00979172594567,1 +0,0,0,1,11.968669901650708,23.66926153430917,51.25834897035397,1,75.33074550218633,1,89.26782848595671,1,57.0566957046766,1,2,40.387923073601016,0,0,6.586259560522839,43.84944194026723,1 +0,1,1,0,93.62826789249856,23.24064571028329,25.984384184841492,2,9.548165000129188,0,56.45840611709871,1,126.99095960288568,0,1,19.84995792163029,1,0,33.18141128185651,31.712901619163752,1 +1,1,0,1,66.31913325906304,20.78385031272301,28.261795248703,0,2.5685486319515896,2,91.8509803456711,0,95.9495374597638,1,1,40.52623513698297,1,1,46.25017021176439,6.063458990492377,1 +0,0,0,0,14.320261044303972,24.503458358133013,97.23481115074864,1,23.648096907234912,1,34.59387406276148,2,59.19386384381515,2,0,39.956604285620266,1,0,115.27917232064924,8.87370888419386,1 +1,0,0,0,94.59981528039611,18.552541751039715,85.56663406894315,1,23.42060336540252,0,102.5171527183781,0,86.63178454521794,0,1,36.002620329849584,1,0,28.04275920021683,14.404230400004526,1 +0,0,0,1,71.56638200522202,7.510678809898913,27.2297485875355,0,40.87253959813464,0,4.86193682625321,0,0.9777839183326532,1,0,42.17339412439646,0,0,49.06149274082964,33.36800781125362,1 +0,0,0,0,50.224555017837744,36.48203630357496,57.792078788658365,2,96.85701685949564,0,17.317288841479733,1,94.893438360002,1,0,22.96035570181816,2,0,24.93659798045259,31.66288437482904,1 +0,0,0,2,64.07695246447146,37.48646292046387,8.399364570937118,1,49.35336681186384,1,5.289793790507424,1,67.79225161852825,1,2,37.70348534416927,0,1,92.52922443457192,99.0605745125716,1 +1,1,0,1,57.67133041232969,12.946339857708622,0.1251529608645996,1,6.849651084202074,0,26.23540422927329,1,39.407123076072445,2,1,31.178634246035465,2,1,96.87500135730748,72.84559142911817,1 +0,2,1,1,64.26707362942449,2.4761861582516254,6.770803239434947,1,3.9942188648454,0,34.10069128999101,2,105.5910771722086,1,0,45.57220131859369,1,1,49.47035223158189,31.695154187656843,1 +0,1,0,0,129.07529928343544,67.09472593834406,13.087328792716429,1,3.1578589819062417,1,95.85389545338462,2,99.84554156069498,1,0,53.60041661899576,1,1,15.213873032619746,33.94294915052426,1 +0,0,0,2,94.62561378155054,80.16598990520396,6.7857591207735375,0,24.442522252984705,1,66.9447312621613,1,45.52838301544992,0,1,41.13820993892906,0,2,6.82518704719623,26.479766293143246,1 +0,0,0,2,87.16505911476128,41.98732266660555,7.179557175728535,1,8.098053868876454,0,108.27107386737788,1,44.32684791797509,1,1,56.99797069514756,1,0,29.104767947127684,17.895693530464662,1 +1,0,0,1,33.518881095939875,16.27354174608362,48.567930076379945,1,26.326981327186715,1,85.3355735803945,0,98.71464271209456,2,1,56.95097533464664,0,1,70.69680237341139,57.00926025757063,1 +0,0,0,2,57.550940766034486,16.72776890860497,47.606931002540605,1,23.158281153359496,1,40.01806830198989,1,49.677471932176346,1,1,20.9442727707785,0,0,33.648490612445265,3.329152913656502,1 +0,0,0,1,42.40788583388028,35.95446482760129,36.77855959158331,0,18.83357904054441,1,98.92895673081836,0,60.16016592746794,1,1,111.96132332674787,0,1,28.470322784892545,27.604139209701746,1 +0,0,0,1,83.13361273782817,23.798658226200114,52.00505563582814,1,5.662066406907096,1,21.6248015530866,1,3.3962309235888446,0,0,67.38353527122835,1,0,87.35526365681923,58.901571250829335,1 +1,0,0,2,83.15998715606864,36.60319114134115,28.689284019458206,0,75.64171574969954,1,85.67330356409227,0,72.29034875245235,0,0,8.563466066631742,0,0,73.99089028842013,91.34478701930378,1 +0,1,0,1,32.32995555788584,14.38503227354529,48.48345344315936,1,11.887766289311784,0,87.34988532461807,1,119.35454216565644,1,1,77.70400537030443,1,1,80.0005027878841,93.18856506110986,1 +0,0,0,2,27.725851949119896,78.06532518025858,32.15518807876409,2,21.147516628539275,1,4.395268452557549,0,69.61492829087084,1,1,32.810944508485946,0,1,77.72292611876286,59.22140819457129,1 +0,0,0,1,99.32489316733108,31.88231668354173,17.0763542788482,0,29.79126279919495,1,146.96878082838927,1,71.00377446747594,1,1,19.40974898885521,0,0,14.603323180372518,32.810272502137124,1 +0,1,0,0,35.27447353896281,81.69708667675526,17.922848354666325,1,12.864495918127172,0,20.21356143804844,1,84.93091890459387,2,1,53.49016295040808,1,0,30.014996269273915,36.4285491444288,1 +0,0,0,1,71.75719825359178,18.33147619247653,54.142011511641336,1,15.57887446201529,1,141.04302325580983,0,74.42019090622597,0,1,40.87590813540496,0,1,36.44084170735298,43.04865202344524,1 +0,0,0,1,50.60044361751307,35.41904495611769,47.03453945289527,0,28.478000159582685,1,36.43014427694429,0,52.88555265489781,1,2,0.729276191665057,1,1,133.1035248877235,29.95721359361612,1 +1,0,0,0,90.78366914518398,35.484256396414615,36.22027987376844,0,30.150807931651837,0,45.05405044232602,1,22.476268650764887,1,1,0.4101290874842789,1,0,44.206547909156,39.00596056801365,1 +0,1,0,0,51.372007834781705,13.84998270628792,33.58772200786496,1,44.71873959047616,1,42.39131416742197,1,70.00867162137854,0,2,30.666029936705858,0,0,40.29297287517444,6.891374965087715,1 +0,0,1,0,36.05384752822787,20.92739089970911,22.047995492728845,1,4.071058999865201,1,147.48471118419295,1,123.27108530215718,2,1,60.862037393134926,2,0,5.190365154196414,29.46875210196477,1 +1,1,0,1,87.29144635560374,45.76753673782793,53.07904447562321,1,35.966063107317744,1,93.31146385892484,1,44.8816851904515,0,1,24.17858669634928,1,0,94.28040793985066,77.80959648589281,1 +0,2,0,1,99.30734025402047,17.401317370635077,44.56200444329269,0,68.50464134766744,0,74.23607031645605,1,81.94118419904639,2,0,82.79585924866377,1,1,100.26111780192116,63.3119292632667,1 +1,1,0,1,20.183460681999776,26.31208746016889,74.44334836807755,1,7.448930488164423,1,73.66855049922088,0,54.53560673619143,1,1,8.892938666390272,0,0,47.80207500296662,43.84609224636256,1 +1,0,2,1,77.6540861594433,33.07142618088626,3.065958276680381,1,41.17932958031118,0,67.71933173825559,0,85.28404579708915,1,0,34.17957472734215,0,0,8.075374597658842,27.33421266219925,1 +0,1,0,1,24.61661461027836,1.5404393868659938,62.05058592434753,1,12.658862990888451,2,78.46798232395021,0,91.16536677878196,1,1,58.470645291864585,2,0,8.837269961462423,29.489872361922565,1 +0,0,0,1,82.56554145297255,15.656740472757196,20.625040798164317,1,33.2345202478491,0,25.19257156495775,1,132.1997329194852,0,1,47.13434150215781,0,0,5.45599960591141,26.98229178510162,1 +0,0,0,0,136.27966363448252,91.96549086014132,45.65393077964687,2,84.19358721217316,1,88.5024733254339,1,84.93445067752214,0,1,80.24034791470976,0,0,87.226864406779,60.399908203520056,1 +0,0,0,0,112.02679180701328,7.693520667750331,54.73762947802062,1,35.69561433486455,0,49.0652335270873,1,125.24828645882924,1,1,2.089669146884426,2,1,28.266350355787605,35.50150503804178,1 +0,0,0,1,18.773846451756736,43.70871516856107,40.88800304229226,1,81.49533584013795,1,38.42437590637074,1,124.2085180853358,1,0,5.468838008257915,1,0,24.038349272772336,45.59020319977262,1 +0,1,0,1,113.09016752437252,7.319256265778379,31.965772601224373,2,19.12084546229028,1,119.17457177244712,1,29.178044115213908,1,2,8.434175811146066,0,0,50.52109448175487,84.48611948026091,1 +0,0,0,0,127.03459970303864,5.601726505907473,45.48483203020383,1,35.93573500725293,0,52.9534566465924,1,31.90900439925621,2,2,7.267450822690924,0,1,36.6139043297592,14.852242190066844,1 +1,2,0,2,38.19104226398766,8.631595432546323,62.71776260535909,2,93.58572255474309,0,55.968176353961546,2,20.93603963584015,1,1,19.49096034030832,1,1,59.57045444215394,79.20865491036918,1 +0,0,0,1,48.36019591567739,23.47858444173773,18.26682426746064,1,12.622249659215385,1,110.19686108255382,0,37.565362581025816,1,1,8.778771773286826,0,1,45.50024565644828,0.0263254952321601,1 +0,0,0,1,28.61033937489769,35.09637926704121,2.732078833951596,0,22.752279999431163,1,11.444720275885834,0,27.63344541488511,0,1,26.410409494822417,2,0,23.271804689458413,32.11039405455691,1 +0,0,0,2,47.87492411038314,23.698935209986296,0.2763424364650491,2,48.04487374223344,1,125.54997283112846,1,11.62958131974381,1,1,70.87006003376369,1,1,28.185389493150875,6.15559246073783,1 +0,0,0,1,38.414290700998805,9.481756492670618,16.622777723619308,2,97.82174726746848,1,20.751806831492782,0,4.7031703318768106,0,2,3.717633233110812,0,1,37.2884813440611,26.34265537757764,1 +1,0,0,2,87.60921287386424,38.27587828107906,44.91264867816579,1,35.70119259318618,0,80.26408878427641,2,86.06286934746238,0,0,97.87586053556984,0,0,13.02549717669197,35.83122257929015,1 +0,1,0,0,95.05783063396343,5.318231695579712,49.58033517253797,1,72.82264446760941,1,9.626552958033818,0,38.99730799418774,1,1,124.50521795730285,1,0,8.351635661757301,46.965256038469946,1 +0,0,0,1,80.9066745012236,42.005645814324296,37.109908650957145,1,21.10157946818013,1,12.689075403130506,1,73.96328819901518,0,1,76.80931751026145,1,0,86.54600924268019,79.06443615297042,1 +0,0,0,2,99.90101803930386,18.17460467999335,77.67128497437298,1,40.44044681275731,2,36.58676743577638,1,62.815316350197385,2,0,13.12388056345577,0,0,5.615225369275406,21.32849171009529,1 +0,1,0,0,66.32804035463857,39.129198483914166,71.77732192519872,1,41.75616967550034,0,90.16535027730784,2,98.76362251413887,2,1,13.529034859361447,0,0,11.944495998513682,45.69543572792743,1 +0,0,0,1,91.66432554403522,23.928587159495905,64.67476840480734,0,42.631643105069486,0,26.132598863717345,1,8.133509277081913,0,1,15.210382345279694,1,0,0.4147738500475173,11.441127968547017,1 +0,0,0,1,9.366796352240216,41.65069245823786,77.33907002349883,1,38.83209693275151,1,68.19401783280539,1,75.48843107628463,1,1,122.95655381370533,0,0,4.063460280988207,33.17085313073018,1 +0,0,0,2,78.39417756952254,26.707586664627275,17.674652610794606,2,29.41199777816336,0,19.06654227332177,1,33.10355000028635,1,1,27.88188069330484,0,1,24.40837475578572,17.895944215812147,1 +1,0,0,1,4.223982347542593,39.56777133978969,41.374534560859175,1,1.7810467353862214,1,31.07424678380563,1,53.83188648856896,0,1,4.152470605980257,2,0,21.078290349247148,22.39410171245496,1 +1,0,0,1,79.43588333552572,30.278358247531443,71.95286012408323,2,39.18222294924075,0,32.042044379346095,1,67.0781134528948,1,0,11.956743760543317,1,0,45.757698633078,2.407814294584687,1 +0,0,0,1,51.766330189934585,97.76222698132676,62.89684470441768,2,51.997879118953215,1,125.6767128440803,2,90.1813040598066,1,2,16.611926837447438,0,0,95.27478904798429,87.34340165609142,1 +0,0,0,1,148.7989250677484,25.66276864975786,95.31661808562151,1,45.7401592151489,1,16.748616405604484,1,108.07056726070982,2,0,37.94398886963689,1,1,79.18125280131771,79.85879210368812,1 +1,0,1,0,52.584861810063096,28.24102475997182,10.81459576484251,1,98.0512207410238,1,36.41885882585007,2,34.983068734253365,1,1,4.059233731962847,1,0,23.382339101909228,11.176484660725638,1 +1,0,0,1,76.9284167478877,57.585051958422575,22.19617828199557,1,51.88994065687007,1,115.01376851496217,2,91.32497591810608,0,0,61.949146591866736,0,0,65.82773005205274,62.09675246361505,1 +0,1,0,2,17.753650553721812,24.2476571410699,10.9193517761468,2,6.683051758700575,1,57.86611147950147,2,27.00746768220136,1,0,4.742849485159395,0,0,4.323848097740362,13.86031963622168,1 +0,0,0,1,79.5931539177757,2.934668996555001,82.68280533321655,1,30.822254319753423,1,2.665345671554531,0,13.965936933333984,1,1,95.62472384493702,1,2,8.33455583435277,32.12578091515106,1 +0,1,0,1,116.42759082308766,5.594813845590618,2.0343751404127586,0,38.44418781754352,1,27.546495063625205,1,75.19529179165137,1,2,147.0068423801013,0,0,1.1228364998657647,13.922831496413568,1 +0,0,0,1,88.8111424217253,16.399442155810828,14.0100245457638,0,49.00662093254133,1,86.7698223955204,2,62.08543150443794,1,0,78.73031022138642,1,0,15.858823178455916,13.509696479402916,1 +1,0,0,0,91.87751009717635,42.766750476903375,29.635049779112343,0,36.73276716821536,0,50.19176717475112,1,15.587195292773789,0,0,17.43788708856814,0,0,8.43609565685351,46.94704618150672,1 +0,0,1,1,70.68845353671381,36.21820383270403,14.658474763550313,1,19.279458361867118,0,72.3676664287578,0,99.07085964808856,0,1,11.676392199683283,1,0,36.38286250245296,49.89355279178911,1 +0,0,0,2,36.10872802767362,34.71275734175079,30.43513609855487,1,49.875052070775816,1,60.607030619602895,1,74.78719961710033,1,1,24.7425020037383,0,0,20.30675858144539,26.08737326101432,1 +0,0,0,0,46.70292623704596,28.997528523007464,37.63354523273413,1,26.770187199228523,0,66.84112532056923,1,12.497277524930215,2,1,74.8436155782459,0,0,57.31116783563655,87.2873775733852,1 +0,0,1,2,80.80751079820018,11.548758998466436,76.47637293496803,2,31.923929309318616,0,13.452030940744658,0,42.89758087265712,2,1,28.885946101882976,1,0,80.62856520413573,81.42316177453358,1 +0,0,0,1,39.80828128533562,41.3038584980083,25.35932090660516,1,2.6689493276186527,0,19.915618149902677,1,18.82796333089678,1,1,3.846703338417667,1,0,35.13599422288919,34.79377378123336,1 +0,0,0,1,61.78145866021145,35.63284790051186,32.51127377468645,0,45.17361657028883,0,23.29212341295206,0,82.55478989938061,0,0,19.986447892680463,0,0,23.327089511305783,1.4275863074617812,1 +0,1,0,1,96.23302777215054,46.50603769766381,21.482021971490507,1,23.395377320413967,1,37.931607548863546,2,32.48371255708064,2,1,90.70702455946576,1,0,8.10859020827895,35.03140707346467,1 +0,0,0,1,12.68337878471309,31.421676277251947,8.35431076733839,0,47.038851897756864,1,2.127186851139262,0,46.083021910112485,2,0,16.996511606232374,1,0,94.67509699689144,86.09905997201489,1 +1,0,0,2,65.76973824086298,1.3243918076530026,71.42478195963595,1,20.812028027016236,1,100.96844074417812,1,57.53799724976288,0,1,44.22303513690368,0,1,11.584752324932374,39.55113867490151,1 +0,0,0,0,93.46501809049684,0.3797495896179448,11.135636428902917,1,25.664315839811604,0,36.125978624532216,0,39.59356260462016,0,1,43.944202639038544,2,0,20.637244340216508,2.756879064021395,1 +0,0,1,1,105.52502418836816,30.390214439168567,5.883422463801574,2,29.640655689969847,0,34.781356531579,0,37.06124480172984,2,1,9.951129707347556,0,0,47.32812424132574,17.29903309516274,1 +0,0,0,0,97.27752813061798,29.6707108633397,0.7176071583294308,0,39.08519811264225,0,22.741526537721747,1,89.44295081236135,1,0,49.710153645647225,2,0,79.4305547994652,121.03081710373766,1 +0,1,0,0,31.95568843972555,24.062011326615657,46.89742920465698,0,37.780537133566106,0,52.44633231692909,1,43.66974247368533,1,1,31.095259044445346,1,0,120.11641509892584,43.75566486220461,1 +0,0,0,0,71.01292861322767,5.538591730836479,5.882321311031041,1,13.596811744371903,1,56.42416022288264,0,10.774106485059445,1,2,40.44917201774379,0,0,20.024361372503343,21.86508564516185,1 +0,1,1,0,31.96105398664561,25.18701768059274,33.016971535988766,1,51.898523010164126,0,13.971323137276135,2,26.267550003496,1,0,39.14814908329421,0,0,40.37065194849963,21.62566554686321,1 +0,0,0,2,29.993359770593848,93.57065551505316,98.98353594411824,1,12.277829493035004,1,68.7185477103883,2,11.184784831951667,1,1,27.593021631976185,0,0,18.999956228328912,44.433210469464,1 +0,0,0,1,80.893591951069,20.618104829970115,93.03814967147294,0,21.00941394013328,1,16.747512059281245,2,42.40737952340086,2,1,84.57583510309614,1,1,7.70125872089174,6.683584575285023,1 +0,1,0,0,56.84274784802854,28.29313294893933,89.7964735859125,1,30.8326034022646,0,102.9657181320012,2,10.706352616617917,0,1,7.036526270007832,1,0,12.035776281064187,3.2236794776365043,1 +1,0,1,0,40.12263197020899,40.02554497401284,79.86595499587106,2,83.81777439039006,1,24.800621220621338,1,75.36638994489604,1,0,3.82854534458984,0,1,25.784475084776098,25.29521478307523,1 +0,0,1,1,34.765322648824856,46.89079159658288,48.14395140224236,0,32.1419350124167,2,47.24653084380982,0,38.5237485844118,0,1,33.948701026640535,0,1,1.2395947561511245,48.64630675190586,1 +0,0,1,2,139.00415026119518,22.233283041243844,99.37337905127563,1,37.8954157561524,1,30.940439234728267,0,146.76135015093118,0,2,93.12301255922168,0,1,77.0822108819455,76.79445562962803,1 +0,1,0,1,60.49062352356952,3.116089946627837,26.98037508159148,1,5.888752484791776,0,32.12286407456728,1,92.79936290073157,1,1,44.610887268319146,1,0,9.735298899557376,41.82685485532934,1 +0,0,1,1,109.8320398551642,42.19430779559627,45.82005308997381,1,34.13066047234732,0,94.70149902157377,2,44.18620955760801,1,1,47.35880600469793,1,0,33.58144796872147,45.68646039031764,1 +1,1,0,1,137.4193686596732,22.60940900353676,10.93203360039644,1,17.75486292402841,1,17.116551049936067,2,27.27948428440129,0,0,5.718201848639021,1,1,73.06683106819372,93.08695430375349,1 +0,0,0,2,46.57809734093046,23.1905571413159,34.97842746740576,1,60.68472922555031,0,52.83365020033098,2,23.829899874604347,2,1,23.80778625925746,1,0,74.9774083365102,99.68363547517524,1 +0,0,0,0,51.08659146451023,2.9691159977918327,44.130312220034256,1,41.72534251293891,1,73.7637334306458,1,145.21119474960724,0,1,105.96273624147128,0,0,73.9640542672037,54.27002231359704,1 +1,0,0,0,56.49494214263596,35.059681092813754,69.53221277587384,1,12.729529300542158,1,117.30283575163472,1,56.50452893371591,1,0,1.7438183656905917,0,0,36.56582915704688,46.92379159998576,1 +1,1,0,1,48.06379026495284,0.6016600017986928,78.76036204338337,1,8.846053699820967,1,88.04251051923693,2,99.26947199516222,1,1,92.16617013839422,0,0,45.54529853575829,32.83130041244517,1 +0,0,0,1,36.68431288413822,43.17555875514397,32.65656630295611,1,75.75466941626888,0,99.67435452013584,1,86.19330436214477,1,0,74.60982844073277,0,0,61.39366772067769,67.55086049832445,1 +0,0,0,1,67.18252813595325,49.033673090614656,26.500643527796846,2,39.09188149740789,1,34.5279821954681,1,99.45596121735672,0,1,74.26480584947976,1,1,55.6068189514411,90.18260408103944,1 +1,1,0,0,18.654244600990623,32.137771540647584,17.8674024993898,0,57.27860477173878,1,96.17137621153462,1,148.61651176555634,0,1,5.744229163879183,1,0,85.0498745164116,58.57217158333633,1 +0,0,0,1,99.6366464220184,11.09384867346801,64.3873542359859,1,56.09323681816261,1,38.64388894199392,0,96.96938153999432,1,1,18.9969185653646,1,1,45.90423694598309,35.25142256801839,1 +0,1,0,1,31.869224015183672,98.8835192183136,36.07039349337785,0,39.27344385195204,1,40.84208328238678,0,38.48001766641702,0,0,6.344680409705234,1,0,43.67491156385094,0.10928710448172,1 +1,0,1,1,42.24944472463621,32.223753841675844,53.64923034873687,1,16.507878805854897,1,70.68061109170037,2,78.34366419848449,0,0,26.663070433105613,2,0,43.80728733532685,5.095383014478877,1 +0,1,1,1,85.75818751908882,22.75441844976908,90.22448587826412,2,33.42681324352456,0,42.17798105347136,1,50.89574598428441,1,0,5.556394533019287,0,0,71.84496395599072,68.61859839121308,1 +0,1,0,1,131.90088505684656,43.62063034642005,27.22821512742067,0,6.465206980725808,1,47.91251449745421,2,67.62150827866591,0,1,95.30717170929653,1,0,48.68422561239272,46.78801771334219,1 +0,2,0,1,120.5373253887185,60.482806453094575,10.592793371555391,1,30.87645674648617,1,21.27035507305164,0,101.26193468106692,0,0,52.320187186391166,1,1,97.76884556870564,92.97087678507718,1 +1,0,0,0,69.0978638373322,0.3375574427861461,33.45488455028834,0,15.896476263179428,1,94.9891801333832,0,73.28250864028544,1,2,42.45460719453389,0,0,57.579758244301246,118.91966913966516,1 +0,1,0,1,99.95923827986068,32.97320875256164,28.624342102989253,2,47.311315835259634,0,80.56202182723035,2,74.39891457823666,1,1,44.011072594968695,2,0,26.88507127016195,16.06592075633574,1 +1,0,0,0,78.45560810724517,44.5106425050647,1.5604194314388808,2,17.971367388145698,1,57.88766859322498,0,142.46501631135948,0,1,13.593597299838162,1,1,63.01253634004823,54.56990236243182,1 +0,1,0,0,68.71739477695861,20.696960596266468,64.65462305042843,2,47.21266478989089,0,83.92978483503074,0,0.2011622804944934,1,2,21.36235571303001,1,1,47.95033189874589,27.52413821970831,1 +0,0,0,1,139.52688467476918,0.9327044003006713,56.251863082985565,2,37.46594806051011,0,140.81068416193628,1,40.531316059108654,0,1,66.24413543630433,2,0,36.9598046093496,7.823155288243077,1 +0,0,0,0,128.95644814679258,49.21658112145313,13.588815042311875,1,6.392257845274435,0,97.83114476856116,2,83.96717896040313,1,0,27.593716021429977,0,0,23.395514017615803,0.4159205662858878,1 +0,1,0,1,128.1247935914122,50.09843336046551,40.60597880590127,0,32.32105514174655,1,77.3891652774266,1,90.8486104275887,1,1,46.70447560337845,1,0,29.170700297180108,49.019304948954776,1 +0,1,0,0,65.64017296491377,39.99798240808076,95.709054585592,2,8.873801558660821,0,23.80272854457556,1,74.86648887982162,1,1,38.3429701140321,2,0,85.22321840764788,61.80944807693055,1 +0,1,1,1,88.90161187510435,44.32178069782207,23.40380144637083,1,34.57217122536395,0,147.09101255036413,0,66.5126459189653,0,0,21.765489019981565,0,0,39.81407908649174,46.38826808598658,1 +1,0,1,0,85.80363531907706,1.2820072111857428,76.95625776316231,2,18.251025184593672,0,0.4084674483669559,1,140.2364933193442,1,1,94.59083480743426,0,0,27.71009157379019,35.19239353391297,1 +0,0,0,1,60.67083497575382,48.91783056403104,17.340875710041555,1,27.519866509761098,0,15.635461199640527,1,88.72406509255309,0,0,24.24800774847788,0,0,62.94729300450571,61.13766363321369,1 +0,1,0,0,20.271824044169644,27.84623174466435,50.91534529494324,1,70.4405355108745,1,72.58408590982107,1,10.143389249698105,0,1,57.03716129839836,1,1,109.0373027956038,57.25396206216151,1 +0,0,0,1,68.61789227365531,28.11530970477314,41.65947533742959,0,43.04311719735334,1,144.12855045573326,0,36.515480589111526,1,0,41.82899498384919,0,0,21.988411601943668,109.1212978860154,1 +0,1,0,0,72.17099848721978,19.03261667912948,91.82311718591922,1,11.195431465639455,0,14.130885826860569,1,2.51387538374126,0,2,27.268798709718773,0,0,25.3136466749916,44.04590483289777,1 +0,1,1,1,90.7760013196901,70.81482215407111,48.00011538824668,2,17.392236363105695,0,39.09625426501425,0,52.52308969193487,1,1,71.87354555219335,1,0,37.18838774423017,29.810852431112146,1 +0,0,0,1,41.61802579379357,39.39155508636107,43.53489130399145,1,37.4166626027608,0,7.243370863802712,0,99.61613562275063,0,0,69.0667461911091,0,0,29.60851237865128,24.66436465414349,1 +0,1,0,1,37.18582699367799,43.97958464534935,5.009361485676555,0,49.39959254528098,0,92.73751068801764,1,71.00235050250404,1,1,34.56995666455149,0,1,89.76934680849914,54.02224482979954,1 +0,0,1,2,57.08293610665177,36.28611682237014,36.64742105381984,0,9.384207845665326,0,96.62175472903164,1,87.75984870489403,1,1,69.75266423718887,0,0,71.93728236009446,97.45535524886702,1 +1,0,1,1,134.13786699831113,49.89667177119957,62.80948640516424,2,6.257808269108206,1,84.35284679144952,1,57.05279959126167,0,0,33.404844024671334,0,0,80.67806152333249,54.89662163599424,1 +0,1,0,1,97.19280140171882,33.3911163125982,23.072964945438017,1,30.26774901783548,2,29.4535032863424,1,69.69440154588966,0,1,51.16300960322268,2,0,43.36074958760905,18.768344713418493,1 +0,1,1,1,122.86947588138466,18.93792513526138,70.18065219599733,1,44.00784375580568,0,3.749244448108646,1,91.84955415261057,0,1,34.740045961898616,0,0,8.72179140040943,46.95546109173522,1 +0,1,0,0,5.879185639422496,45.80177600275267,33.536449424032845,2,70.69149313513925,0,84.0724873359255,0,9.92945991284877,1,0,39.784887580372725,2,0,23.118711642644666,5.415025043212463,1 +0,1,0,1,138.74118236885806,139.8111983523423,34.42258807112618,1,2.6453508748809584,1,50.16319705102503,1,70.39639764501433,1,0,84.14317743408331,0,0,82.10610628501024,85.49712866987099,1 +0,0,0,1,9.02284619954457,30.1430419685384,68.23219243181833,0,19.14548822630252,1,62.57710104043903,1,49.59974835490124,1,0,43.4602600266158,1,1,45.01975300837946,44.174905483259,1 +0,1,1,0,16.35012656099313,67.2947499741635,53.18298014545339,1,74.70210871445389,0,46.73339226514005,1,97.7338177602391,2,1,15.970550488214275,0,0,76.3984480892797,95.389903988472,1 +0,0,0,2,57.742127401707165,13.00714491970558,127.4134041567205,1,6.486701827791724,2,15.107811547221129,2,84.0228473159369,0,0,41.37972447576748,0,0,93.87618894121748,61.05493882443042,1 +0,0,0,0,19.519134730878328,14.795401788618872,73.24976771616878,2,12.910487311006976,0,20.453020780832148,2,53.65371221350124,1,1,9.32336080878664,1,0,23.017223247340503,47.68583276814649,1 +0,0,0,0,135.40919917724094,46.08770716184,65.7111604288556,1,29.409230613836414,1,6.999911654098162,2,124.74837110953992,0,1,24.615608605092014,1,0,138.48249496997187,76.5516301242364,1 +0,0,0,1,109.64842712813196,29.94716197082392,35.22384637376444,1,44.22265341571199,1,98.21328815958285,1,55.75868619848293,2,1,23.00934378242141,1,1,77.00162007945931,63.816221353181184,1 +0,1,0,2,62.07811006613226,21.969213883222537,98.35761201608932,2,15.50131142354007,0,31.723175505200373,2,69.75076171134882,2,0,18.377781522922643,1,0,123.5776086988257,87.12041897150645,1 +1,0,0,1,70.40941284843063,15.697307523809446,54.86487531527799,1,12.874267626054293,0,140.95994055612869,1,56.28126378614086,1,2,45.93867935260501,0,0,48.38420092529708,48.28601128704542,1 +0,0,0,0,79.70204558615633,42.11693839513518,68.81275642325036,0,28.83627546024491,0,9.015946326939916,0,99.99566980608216,1,2,89.32460363056666,1,0,43.57240740367395,34.52877701188532,1 +0,1,1,0,137.38829343389455,10.5446198460124,65.19441590656388,1,0.7261458042028268,2,44.10074199264963,1,129.63517841245084,2,1,12.306188557123226,0,0,67.39437431208631,80.75518650394213,1 +0,1,1,1,75.26628048472442,91.88454293262608,48.137485393304615,1,27.663022189348897,0,91.68190583255166,1,131.2477559531081,1,0,4.623050252597483,1,0,87.73003504480488,60.9896801701539,1 +1,0,0,1,57.79045038834713,5.90277488738426,37.7198983975739,2,11.252077185584392,1,86.48055057495989,0,110.86845262555504,0,2,10.855673364910611,0,0,29.51723937035908,35.96686126830843,1 +0,0,0,1,113.38197066039184,23.30684190183849,26.103107696063304,1,13.307958696533923,0,21.268244045589803,2,63.98241039710519,1,0,0.7810548664014871,0,1,9.691811331576911,32.80568980466986,1 +0,0,0,0,84.49836100110778,3.5046207750663303,71.72302523194647,2,6.912074695834508,0,48.06870857674371,1,19.973700008497485,2,0,47.85537840316144,1,1,4.161010793854486,28.40556202787961,1 +0,0,1,1,95.331286481557,39.30019669186322,43.878269100907616,1,62.58845916612527,1,49.681651450334506,0,116.41106170309216,2,0,75.20721118097535,0,0,44.8232434081692,23.79188383508444,1 +0,1,0,1,140.47949031124608,41.560460852892405,9.80487840909884,1,10.75539348805684,1,17.259416286760015,2,122.30885329094546,1,0,34.27038953755392,1,1,41.24029506305632,34.01103037622795,1 +0,0,0,0,52.63215071759897,10.616117222790594,48.63793532300073,1,33.802958880617425,1,41.74811363507305,2,82.73488410481235,1,1,90.43542855936263,1,1,91.69125895241989,83.9630082018708,1 +0,0,0,0,13.977499018904016,46.41574060518735,29.45933664897553,1,16.697326101746395,1,82.64280560103707,0,19.715059258701828,1,1,71.87737285293029,0,0,25.078084063181727,2.3052294985495045,1 +0,0,0,0,122.44463148755612,66.22846254378695,44.54647537417612,1,21.181080034665577,0,106.88049323269487,0,18.62559266363552,1,1,31.58372043462454,1,0,70.81222112754389,95.87093495430608,1 +0,0,0,1,84.44471585676732,23.74472492836901,0.4226682045042396,2,39.57378564611864,1,91.04403005043756,2,87.58400993892869,1,1,46.74152243303472,0,1,57.39911056084425,144.016594391222,1 +0,0,0,0,116.52838165001351,39.29194139451883,59.50873742259229,2,25.735977309030574,1,38.70997215892173,0,7.277272128360851,1,0,15.558088086071226,1,1,52.86320339728848,79.31672840781233,1 +0,2,0,1,93.10745456461991,42.34496857938545,95.11356312130413,0,10.360839550652312,0,78.8931518769858,0,84.41679243768493,0,2,8.796261815957179,0,0,45.531603483096376,27.811789990630192,1 +1,0,0,2,40.01885585224053,35.256006698119904,89.99649232007954,1,28.23067446988885,0,36.67951409294256,2,62.461807983997446,1,1,39.4037219167573,1,0,31.570339447961192,35.62356673915975,1 +0,1,0,2,54.92848463237995,48.4386205993912,86.15414372453523,2,34.26107123885886,0,18.347393550737984,1,123.00206526259328,1,1,57.511907930228126,2,0,33.64781322671502,16.403045691880884,1 +0,0,0,0,71.00835691631917,72.65366197476072,17.59230476374865,0,10.411303372160695,1,117.4342059386081,1,5.978886315825804,1,1,6.510378652511639,1,1,23.146013493886,42.342813374293726,1 +0,0,0,1,40.25539223037613,76.72500240419346,116.23321151812496,1,32.416274939177434,1,76.61559535688686,0,23.957069138832026,1,2,20.434373008431184,0,0,98.57251527219434,63.8837078810318,1 +0,1,0,2,85.35042315281292,14.666096163715576,17.058171698332526,0,14.285808637174934,0,23.376812050837025,0,80.79714834989312,1,0,1.0394196126581046,0,0,38.64098997915496,16.733596844138482,1 +0,0,0,1,19.03126476777529,5.529616689844774,108.15762470690872,0,12.85779366188859,1,67.37323921317615,1,87.69972520453521,1,0,38.896644375215466,0,0,14.559074889840284,22.32175018838388,1 +0,0,0,1,78.70745978188991,3.758511491526345,20.68797320326289,1,98.38968648057568,1,43.4576970812845,0,45.02743164538349,2,0,9.128349215399329,0,0,14.074335693358591,3.4484247341990515,1 +0,0,0,0,2.3504864588407397,6.019408029408685,1.119466630877941,0,23.01093442119633,1,93.32935430857395,1,18.051420568213345,1,1,17.986504860107882,1,0,94.29128502837622,89.7813186958706,1 +0,0,0,1,26.935083658647347,8.712666305929744,89.01904179235912,0,34.36969649723377,1,55.11114238793081,2,11.251722498381168,0,2,29.18526714716569,0,1,42.86006655853124,48.21724900546128,1 +0,0,0,2,74.76912815016183,38.78351157472636,11.27625856337967,1,15.376361645700731,2,22.60969167758845,1,126.6493400429361,1,1,27.61414178030935,2,0,13.52662875894046,28.4565926407014,1 +0,2,0,0,69.72860742898766,14.051548990357436,46.20110120529443,2,23.22839633768112,1,65.93632270912903,2,99.6423789548734,0,1,44.45066967847711,0,0,23.571283652896,35.49506175984483,1 +0,0,0,2,54.5146222538167,85.28200198783149,27.23316802958792,1,12.56610209073335,1,36.13408319695478,0,82.45494711840112,1,1,30.88541903078254,1,0,81.55678645980483,86.11262361570638,1 +0,0,0,1,50.157003103106376,39.12299766157073,29.17884546166577,1,47.313835870673046,2,94.18710859151254,1,27.24505494969366,0,1,8.300147772766008,0,0,73.96816902873499,92.71615779047812,1 +0,0,0,1,65.2315561367347,11.107962863733825,19.344315009327868,2,1.650458810610178,0,117.88492486548768,1,136.87518626758683,2,0,58.12126206737827,0,1,71.32102475502354,142.44766920698066,1 +0,0,0,1,68.81956044083293,36.47699438197788,59.71504374888036,1,28.2761821774464,0,21.264139561676863,0,59.79206269925412,1,0,16.604311196981886,2,1,19.301484860402383,46.072689795185,1 +0,0,0,1,35.93568898067686,48.13079293449992,80.75197471694116,1,22.758506464951036,0,51.15952145540763,2,80.72573087749277,1,1,3.2501056320012656,1,1,54.23040024694311,95.51247595743882,1 +0,1,1,1,53.3233537730306,20.81134713833661,98.810914507376,1,48.16914131394095,0,120.66482957462244,1,45.65631161970112,2,0,2.899287628175684,0,0,60.12831162507888,89.83357168810151,1 +0,2,1,1,89.1281890671384,11.248625264171558,13.732699211387269,2,24.49611117132287,0,136.66267771975734,2,66.12873129397946,2,1,9.958103051835238,1,0,31.77541176271448,6.581052686418543,1 +0,2,0,0,40.2264871805791,5.5946515609155085,99.13583237938992,2,26.948339444912197,1,75.83828794532657,1,43.82509102717139,0,2,7.152281125463434,2,2,93.63557564936504,73.21895075233576,1 +0,1,0,1,105.81004672899944,18.678244105076477,18.690053664021622,1,17.82866119572969,1,2.5430119356250502,0,15.83182428975084,1,0,96.34170791928688,2,0,67.15907210128057,61.80251911755609,1 +0,0,0,1,96.46976658894478,13.242675303350476,37.1329458198628,1,37.92982037166264,0,62.27451716079271,1,59.15276564844586,1,1,46.61919952196936,0,0,38.60369960639007,8.681808914192684,1 +0,0,0,1,9.093305213683545,42.5438336633658,17.743083017779636,1,46.057189845605656,0,51.73728154313592,2,21.43444666199128,0,0,72.42150854811172,0,1,35.720963452494175,36.97756550585679,1 +0,2,0,2,50.68849596721493,21.98039380729403,136.37656636247866,0,81.02112498746553,0,73.15107692862208,1,9.470016057379482,1,0,34.58967180282556,1,1,70.11243785900115,90.1767368136088,1 +1,1,0,1,94.27401594052849,23.78825266469399,18.69591225601558,1,20.700528564819344,0,63.02817365163508,1,62.77053581333723,2,2,6.885355536370708,1,0,14.698658608239167,8.456181647477484,1 +0,0,1,0,2.571915096416616,28.10144144908066,75.53922620381198,1,79.74209630018777,0,57.50733217233199,0,121.47981713133528,1,2,39.80229737031307,2,0,9.113250274137002,28.56602580351163,1 +1,0,1,1,82.80364806369438,20.93031661874718,87.3644715381902,1,25.758448401384403,2,11.39531670691512,2,98.58873817757014,0,1,48.90952388458819,0,0,108.48349786284854,23.65023724103522,1 +0,0,1,1,112.67924322952872,1.0001885714356895,39.96103858534602,1,3.454350006136204,0,2.239356088546724,1,9.8035278009027,0,1,6.592399522307496,1,2,25.83266830145461,36.54436509174216,1 +0,1,0,0,29.77234107063826,45.33751144863356,50.47795171800552,2,25.038282417973026,0,57.8828659812606,0,2.351687649926487,0,1,12.328508478130567,1,1,92.4147019657338,87.15042145888351,1 +0,1,0,0,32.11377388176411,20.536589883210617,36.67270198772798,1,23.30640461906002,0,140.5404612281238,2,44.737341525883856,0,1,6.850840867599262,0,0,68.72766031401949,58.566838248850736,1 +1,1,0,2,73.79134714493117,33.13443909231116,44.20041819289672,1,30.29066127513122,1,90.19623945929771,1,95.37037674677792,1,1,25.205074796994577,1,1,11.08995103915893,0.226754379060301,1 +0,0,1,1,66.860274811843,33.05950919027245,2.211470406749233,0,3.0149727644206203,1,61.15098932114484,1,149.4008835640641,1,1,45.97331447479808,0,1,125.77623785770588,1.3545787596158654,1 +0,0,0,1,104.26781438468188,14.512329368016667,45.538661644362016,1,26.716170749758856,1,78.35659910364342,1,89.2010641339086,0,0,49.38083117080988,2,0,30.15083850507217,9.894575847304576,1 +0,1,1,1,79.90816359914568,49.890232564788704,5.765090773340092,1,33.07785548680553,1,116.56322200944452,2,81.596973784552,0,1,9.22758210285054,1,0,36.737903830803255,48.85818159905797,1 +0,0,1,1,44.89797706517768,21.328967444299828,94.51578954098323,0,14.42556509906754,0,85.87938111931432,0,19.79815347737764,1,1,1.726561304666363,1,0,82.31376867218695,124.28751607400032,1 +0,1,0,1,90.27848781349915,39.51404249633868,51.12096959293063,1,48.92376136615479,1,119.85592982299195,1,42.77700106200308,1,0,5.894429250463745,1,1,3.2756980680418604,49.15884961198505,1 +0,0,0,1,58.415055605452594,39.41434982080589,35.806223992138584,2,29.35668865856205,1,13.61167167629005,1,77.54032622132264,0,1,35.423974907932575,0,0,118.1232729771898,74.83827549404154,1 +0,0,1,1,56.4127053652668,37.48202219267664,4.348756653047858,2,4.420730092346919,0,42.54004384272097,2,53.09953874366707,1,0,25.899642636730707,0,0,69.26705774872228,84.64919071383555,1 +0,0,1,1,82.67340256329722,31.185867111961247,33.59031676458243,1,43.82003241830152,1,1.5197054271875676,2,76.7847578723086,1,0,12.262548726394318,1,0,60.65074798730494,73.4092094228514,1 +0,1,1,0,90.61559911891896,7.953169737349436,90.22048992411663,0,19.53926064156973,0,75.78713970854875,1,73.89621250028068,2,0,5.898499173036203,0,0,25.571648441528584,36.665514797484136,1 +0,0,0,1,23.63599649345525,54.737105974445264,53.51590441892415,0,25.891717240721658,1,59.22339337288631,2,38.92592021764435,0,1,9.558832752635276,1,0,27.41508607244994,15.362317411766885,1 +0,1,0,0,88.76627388172443,44.2883205133889,42.11141575193291,1,38.54265788588599,1,98.34469304822905,1,83.4557752335546,2,0,20.034707264697925,0,0,23.71312562898468,14.139809057507346,1 +0,0,0,1,68.57537947306116,49.80940234344165,9.137593546273138,1,11.53309469369914,1,98.80199784393776,0,29.439508452455016,0,1,14.875544569524596,0,1,116.71948274379956,3.304267044924286,1 +1,1,0,0,6.5387208904708505,6.581767983956826,8.606925843970787,1,8.610975478388061,1,53.14968831192826,0,128.04116977401688,1,1,15.474418705333033,0,0,89.8720291257869,71.49715267880417,1 +0,1,1,0,88.15575763340162,16.05591782721445,6.535732903392876,1,22.76117938180389,1,60.82808355122739,0,37.57474877833074,0,1,96.5312816992954,2,0,15.78850040173337,39.73035399189083,1 +0,0,1,0,141.20404400531723,36.680215748464974,9.066849346241456,2,43.01483322660488,1,15.015410794637251,1,116.9973399543701,0,2,9.167442859352926,1,0,26.35914047320476,0.7962924935130344,1 +0,0,0,1,93.567220865547,4.404914677220989,48.21035801679511,2,6.812764441461755,1,43.66843669432291,1,19.325021889034915,0,1,21.498353464361514,1,1,21.123037219912465,14.121929620787792,1 +0,0,2,2,144.8819678479544,19.354648068156585,37.04257305625769,1,27.646460943134045,1,97.27678930889796,1,73.6528307282442,1,1,41.206657739046285,2,0,43.975972552806944,12.34175183058412,1 +0,1,0,1,51.99029621244652,15.707225862505158,120.28269647400822,1,70.7510475631279,0,85.82110717222992,1,112.50459892997316,1,0,98.4320812989816,0,1,47.02594087744051,29.19711238424107,1 +1,1,0,1,79.81313566923556,72.46499149841932,20.13662245530621,1,36.60087290628158,0,11.59345554629012,1,90.47339248729529,0,2,37.68611479810931,1,0,31.184247273093767,32.39472710437926,1 +0,0,1,1,95.48547611256484,46.64267577088182,43.50588598020244,1,46.17316106721467,0,64.8023905581097,1,38.66286701520584,1,0,57.781732064228045,1,0,60.62962797263942,94.4148369349096,1 +1,0,0,1,8.887286507385884,76.78522842728425,84.98275688608611,2,73.08337570706091,1,97.40832910906474,0,37.61961173445171,1,1,48.64261728602916,0,1,34.08930279861977,15.617243326480851,1 +0,1,1,1,135.88849566473962,26.815782012348627,85.74624676278411,1,20.721781812426244,0,59.39480821731048,1,83.99534279896342,2,2,30.33914637073005,1,1,69.44626591253224,58.92691289025356,1 +0,0,0,1,134.42922839218332,19.732523798019415,66.44067169503114,2,27.745175401455803,1,2.559399239332011,1,12.36632964619101,2,1,28.49494038951329,0,1,30.30308321934585,8.831662338991014,1 +0,0,0,2,74.51490895749964,95.4571191470092,15.798093876999936,1,9.33674878102888,0,56.96497093340253,0,54.65680136963316,2,1,48.17697451523313,1,0,24.05224364504964,37.56856581093786,1 +0,0,1,1,41.10678437586561,33.68493757379471,14.87143990840888,1,42.96298202319108,2,32.00421586837261,1,5.622726517918425,0,1,39.14610562071824,1,1,27.78556886403153,49.77385118898553,1 +0,0,0,1,94.78603750995046,33.60161254024451,0.1242538118385927,1,26.521930106223827,1,88.65356220689705,0,7.786700045548839,1,1,12.250133651184235,0,0,33.76444462246987,11.338494908821472,1 +0,1,0,1,82.92046106428566,14.44184979272556,19.96862492123681,2,14.731447101837336,1,73.13395825021976,1,35.44276452620808,1,1,33.63289057927176,0,0,63.941634723081606,84.54896347663569,1 +0,1,0,1,29.95894915325924,4.162064701108442,42.774800101422365,1,11.935370141117668,0,139.06210854362345,0,8.285719026170668,0,0,86.66514163139486,1,0,86.52681891732233,75.85828442012271,1 +0,0,0,1,96.87036494100911,35.0041947401696,89.00473559712299,0,3.706945966076497,0,25.09378057964446,1,143.1812951824296,0,0,60.66608273919081,1,0,96.35998699648935,50.76713206211754,1 +0,0,0,2,85.86649863685668,46.58563014242464,34.49957408044756,1,4.2619164823141045,0,67.13258486005954,1,27.2570677293596,0,2,24.55587586751064,2,1,34.79943688076927,46.189129892396366,1 +0,1,1,1,136.69103373714495,48.82355419818056,48.08286329037696,2,37.13776143339823,2,69.63225384600702,0,53.88236980001146,1,0,35.21452935136997,1,1,14.451105072059171,31.733901006081915,1 +0,0,0,1,14.106232017261272,27.787770927312604,42.19365725137151,1,10.371282041145962,1,113.60118112873056,1,88.4757428370693,1,1,33.87111727228474,1,0,56.53305878892402,95.79277934697804,1 +0,0,0,1,30.28265648387699,98.77106315799956,31.24592610137261,2,22.2717352437723,0,73.2943032390049,1,59.045759492694906,1,1,47.683471891606175,1,1,19.90176652087829,28.944333915019985,1 +0,1,1,1,16.232310454686306,81.32035791352308,75.97294889532402,0,43.17537314424391,0,85.41941541602834,2,46.641705412377554,1,0,32.35523100843842,0,0,71.97812107572534,60.44518432933146,1 +0,2,0,2,21.56508985282378,4.217126764154921,8.18990751363129,0,47.5421443526505,0,6.161311810245712,1,78.13638169442191,0,0,2.91188974188345,0,0,23.221604040141703,46.71962692022759,1 +0,1,1,0,113.71210691330614,36.9301456427069,30.49419597513153,1,31.05991775898832,1,33.165148947378704,2,56.49925894239757,1,0,31.24777825164549,2,0,11.690879438766856,36.78099567282974,1 +0,0,0,0,5.439452318221477,94.54362588762449,37.860589923050654,1,21.10129960309192,0,33.091984254338506,1,12.753911538439844,0,0,45.49726385150068,0,1,41.47382170209707,33.322967755844005,1 +0,1,0,0,77.89157324350018,2.46626499323615,15.912436663129911,2,21.49602951437137,1,76.29216162534637,2,60.04942511752503,1,1,25.578096576916348,0,0,13.35707516872992,48.308887833225015,1 +0,0,0,1,92.09248217441348,27.27184753627681,82.50518936897592,2,57.55728199370858,0,3.276114942658431,1,33.2956944839646,0,0,94.23546940923583,0,0,98.41620408470476,77.31506301957968,1 +0,1,0,0,91.15948811449746,12.191170882753372,0.5563910679637352,1,34.15534765644262,1,44.975782627092194,1,25.10429437207181,1,1,84.96014163419545,1,0,20.60751977368025,47.723405361262486,1 +0,0,0,2,30.41891938881688,31.16062589505596,76.15158223630651,1,2.060074595095651,1,9.820099853819212,1,57.14558013981548,0,1,47.118167046009766,1,0,123.66549408423003,27.197737750703205,1 +0,1,0,2,56.581787294246425,48.97577606249969,34.11682468095012,1,3.2439179987200197,0,1.3689231174921934,0,60.50644956234021,0,1,5.358013845248083,1,0,73.05927993645085,59.75081933745192,1 +0,0,0,2,100.60709096733136,24.780718247865863,0.72587021397027,0,19.49682044607354,0,71.84343795953772,1,85.26805551293958,1,1,42.67706185145983,1,0,9.402497881058236,18.63103756628365,1 +0,0,0,1,40.87109445949662,52.224292073713855,1.5844736313557872,0,22.46380973042146,1,127.31721074398358,1,10.289501124180353,1,1,12.17681527237922,1,1,4.794146453768727,25.416452290361764,1 +0,1,1,1,91.52237055958824,69.55412538857655,32.817435342563414,2,27.78641634679748,0,105.95908699133231,0,76.46018164031118,0,2,82.4175177309031,2,0,97.632642399311,69.99394146564147,1 +0,0,0,0,81.32223153936914,73.61685854278377,16.82937537115647,2,22.707136059295387,1,56.83838561100431,2,61.20031534397186,2,0,11.942727036516098,0,0,5.679657407449029,46.00223904885119,1 +0,2,0,2,9.975389267982289,75.3451336577319,98.83807659475268,1,45.48220360664141,0,69.17339487550004,0,25.66663137807881,0,1,26.183335861037747,1,0,82.34225489170484,53.7000697205671,1 +0,0,0,1,11.9599888063815,32.62579778869761,28.598565773832235,1,7.560951577341058,1,11.018263683894377,0,53.01957061210197,1,1,22.393927048921785,1,0,7.065429149876562,43.86371466268825,1 +0,0,0,2,54.0864303339844,0.108430024314915,60.71899445576816,1,43.02047131355782,1,98.93301728348612,1,12.918375114297048,1,1,26.10377622547815,1,2,124.2240982673834,113.16561739130724,1 +0,0,0,1,76.68719084236403,43.5381605112269,40.70670123703972,0,47.37576103501501,0,4.307705401697747,2,99.3509080106702,1,2,4.783264606476845,1,1,28.540630585697063,46.48531732553874,1 +0,1,1,1,5.016282974550518,70.6215601409271,14.551589224620804,1,18.987230954141754,2,0.002894701388667,2,102.90647370787946,1,1,85.47163373952955,0,0,15.805951062800776,29.45800378130601,1 +0,0,1,1,76.98925592756743,27.03091630422613,36.82761865612121,2,21.77006590865233,0,50.42010506845361,0,65.2622098360165,0,2,78.74567308848324,1,0,49.36011875248055,49.19860952389255,1 +1,1,0,1,62.60016580378809,35.314416831627746,36.7455721500029,1,4.726605778508086,1,97.07179976509146,0,92.49302763492445,2,2,40.52535747139071,0,0,21.57144155306766,39.57779948642739,1 +0,1,0,1,119.57973100988356,13.004915712671322,50.43821380756151,1,15.774884413849977,1,72.479972055879,2,18.67910479034333,2,0,44.42556532811841,1,0,52.05948539138415,59.72341055398813,1 +1,0,0,0,37.49751731380396,61.010843316152496,96.1417570974876,1,11.842368584785056,1,52.45896602238879,1,60.73620591135971,2,1,98.1920737679894,0,1,17.23304837529731,16.46509372570292,1 +0,0,0,0,53.312498799569774,16.510776378251503,0.0871336912342424,1,15.97096159098918,1,79.59793238052964,1,68.02123392813186,0,0,83.69588313427889,1,0,34.661749712744424,12.064208460177312,1 +0,0,0,0,94.1076864817238,19.30203227307257,95.10294365198683,1,9.248860152781608,2,147.54158520119054,2,17.12673549299079,2,0,16.619820711681932,0,0,92.51275549787238,95.9527528385509,1 +1,1,1,2,144.82115306542602,23.388456129225293,8.085956396563743,1,66.21780290000868,1,41.802156545310446,1,8.237427678932557,0,1,18.387419017196628,1,0,21.48993114047139,41.53413463239144,1 +0,0,0,0,89.82631828685074,29.89580137822974,19.372382673045628,2,10.205459485611913,1,92.91323716277616,2,33.326600455629,0,1,9.034955542952876,1,0,13.096659122391808,8.641794127076812,1 +0,0,1,1,14.973255173636112,17.21834770449673,39.9722813250024,2,45.60606771602194,1,26.112764254939336,1,37.36406667690766,0,1,5.581826337543316,1,0,110.33443394699232,64.95162133676537,1 +0,0,0,0,129.36658222004976,26.04568045806388,4.299960269789683,1,29.79144352633305,0,126.2688475221576,0,1.5422542568072073,1,2,43.559037246745554,0,1,77.98815058405647,81.54746579252038,1 +1,1,0,1,61.25677910125744,34.95932612923098,23.30134645279046,0,43.28166873868671,1,140.8053727593536,2,33.34535091916785,2,1,0.6349573408570841,0,1,47.06237192614896,43.63387002330569,1 +0,1,0,0,4.172636471701773,77.7602278481454,46.67192738268895,1,22.238452270690733,0,43.855200512412544,0,95.28567310942836,0,1,38.72195346729874,0,1,30.680140246304425,2.4249941592904167,1 +0,0,1,0,82.23050668844142,21.14561333220575,41.16277154731382,1,38.09218953372637,1,26.552618500182277,1,73.03141669139036,0,1,31.10172774588012,1,1,64.36568801825427,67.1192981423111,1 +0,0,0,2,26.517789346577125,33.47774531181504,12.202293901236954,1,77.40166565260623,1,97.10200393972498,1,8.271776255939244,2,0,55.270974717595486,0,0,44.878334227072784,14.35855190672346,1 +0,0,0,2,133.88395816131052,38.05041526057532,6.55421104359219,2,2.718430688883827,1,60.11931930314003,2,115.95025614078232,0,0,62.56602282969653,0,0,76.27392740110699,76.82429050307661,1 +0,0,0,0,75.15144107687456,45.66570277329331,97.97883462416225,0,20.94649503755633,0,94.03887996472642,2,45.22994731491348,0,1,47.67008871323699,1,1,36.5410029872702,43.88061075934988,1 +1,1,0,0,95.02298452110378,17.697582378813937,15.387151372934522,1,36.41912652711592,0,9.631695364387532,1,53.51951364392762,1,1,42.9195492035068,1,1,36.6314245188642,12.33026977153065,1 +0,0,0,0,9.480951254252462,23.96730622077861,13.369215101355936,2,2.2353965120661847,0,61.33146657331864,1,9.1485585340837,0,1,3.51461203401906,1,0,58.38703447827756,71.12033697386391,1 +0,0,0,0,87.94791027577068,33.0905580822996,10.566119493620786,1,48.8773860415501,0,98.57025852182666,1,148.3788987269272,2,2,5.8731526714795095,0,0,40.16306119982237,17.55313031366392,1 +0,0,0,0,55.12080167744208,4.366925593911864,0.3927341614023361,1,26.93420624411393,0,52.99296557719352,1,51.27480304432438,0,0,9.025434647182728,1,0,10.912674263487322,21.90056072433873,1 +0,1,0,1,88.196769804362,5.185825265937655,25.626376572367327,1,66.66217732850464,1,34.636813033605826,0,96.25580725012205,1,1,26.22404677745572,0,0,69.65186995368417,88.9508083490656,1 +0,2,1,0,118.11520925449352,23.51945388934252,89.58089502373042,1,16.09915440276813,0,34.51903947569942,1,44.36992488164711,2,0,54.00228021917808,1,0,91.4491701035499,72.8963203775254,1 +0,0,0,1,2.356639585328524,44.54474624982871,91.0291416782782,2,38.388505136439726,0,31.18084146354432,1,103.13719086655638,0,0,27.85557866574655,1,2,41.04344059233404,18.401083824712806,1 +0,1,0,1,103.66160430065224,43.83006922740738,12.663386055936598,1,16.687457158741935,0,5.16901949099568,1,81.99447172174189,0,1,34.224965877045534,1,0,80.11417387246959,96.69304717458904,1 +0,0,0,1,3.414124937768448,19.249718149079147,34.2816345380573,1,1.2896934477925226,1,82.18677098993196,1,93.278254051383,1,0,95.58750162077384,1,1,22.54258377391305,27.68156281331755,1 +0,1,0,0,78.78825055939296,38.20917735181513,25.15916620305443,1,32.92440312551727,0,5.465585676148644,1,17.067077172249085,1,1,44.987789008196565,1,1,92.39427172038582,87.90946061653163,1 +0,1,0,1,65.65214039561619,71.25132941033442,37.99729842408059,1,23.050655007625146,0,4.281636047298592,1,84.58029137407274,1,1,53.882652952087874,1,0,4.151116418774548,46.08697751406576,1 +1,1,0,2,95.26580916729296,0.8153006121882023,14.416445033396084,2,26.553597790528187,0,71.18124410889769,0,22.04911656163438,1,2,46.7757975417014,1,0,126.55824633523495,124.89481201922877,1 +0,0,0,0,95.38594506373131,46.37616786594717,34.380356076278105,1,47.32559867374349,0,117.63465926650562,2,78.03258768747494,1,1,10.593050148372306,1,0,50.36123052679327,108.3001086853267,1 +1,1,0,1,45.41854461863773,22.941737413447665,5.86582438017082,0,26.892443501422346,1,86.51270853480352,2,76.64284661131933,2,2,19.426964282441727,0,0,10.422472714905384,14.559035747334642,1 +1,1,0,0,148.34714761748364,26.76428239065701,7.501532641448399,2,36.91257272367216,0,79.94660735577395,1,68.77052337965164,0,2,2.3752582603386085,1,0,44.10723969143477,0.5070819659742765,1 +0,1,1,0,142.3630333581545,4.04725345077257,13.001191740438072,2,54.79292039531104,0,66.92676165361146,1,103.72240200914332,2,1,27.963166802343093,0,1,44.72143447082868,19.617031158047244,1 +1,0,0,0,15.814447749551446,13.751951963528592,22.9983790704813,1,70.47991312098326,1,61.51101342253288,2,43.498106935291965,2,0,8.229572059433831,0,0,37.481524066954144,33.04620877009343,1 +1,0,1,1,58.45359052214253,41.21976227483224,42.48206654750949,0,30.93909439698419,0,21.12931780886575,0,3.661149836333405,1,1,48.56051244239508,1,0,42.17708923389144,33.39653581927979,1 +0,0,0,1,90.58681703864124,0.5995145059652318,45.16742135018914,1,16.89568710584651,1,125.77353315960563,1,98.30958847512198,1,1,27.049814293652613,1,0,85.78573432643438,87.82883630606246,1 +1,0,0,1,93.00335096649724,37.55387268237808,3.842189374570249,1,25.776730439449075,0,88.77717127241309,0,17.504812895789435,1,0,7.830503318222148,1,0,16.8491031159639,23.387678434075067,1 +1,0,1,1,74.05626484221412,19.30186509286104,24.161508231856853,2,32.70156144068641,1,50.57424895754019,1,66.83922054351258,1,0,74.77716175987133,1,0,1.5043144899054284,12.236615392081523,1 +0,0,0,0,61.69274382068669,46.713909080047976,93.7774960400114,0,22.33256811087737,0,63.85511740782165,0,85.3476422894492,0,1,9.327804028177916,1,0,17.971468985996474,46.60738013903846,1 +0,0,0,0,80.04496350958864,10.996217295790789,19.022172182382764,2,21.186508736019487,0,118.22546368966113,1,21.14463157783965,1,1,18.07091980761022,1,0,32.60748878963552,0.1723363889127194,1 +0,0,0,1,83.95744728792134,1.3788349822508206,17.064015496028084,1,39.49613583338293,1,95.93071620872313,1,31.26551230838457,2,1,3.9781892399422816,2,0,146.75097978884563,71.08735939416749,1 +0,0,0,1,68.72853192404872,10.000514403755822,124.97253173729383,1,12.279525759725152,0,30.098139749634377,2,129.05193556568628,1,2,15.560083980692896,0,0,83.30838754733335,53.81301275708231,1 +0,0,0,2,69.29506593683823,11.194264021366612,139.23722314198486,2,35.500226430012084,0,98.38130095544572,1,117.75422179417468,1,0,71.73293411266759,0,0,99.99854732025776,58.64828237108994,1 +0,0,0,1,56.075859252373874,25.20699055103253,41.28070646301363,1,27.49197411036332,1,89.73063267891361,1,49.99659492650888,1,1,17.79884738845352,0,1,46.00387533060213,23.947679418160632,1 +0,0,0,1,88.40357344629044,47.84348782386145,108.27090819754292,0,43.6055777524728,0,24.914788648598783,1,4.07345459497554,1,1,84.26332068967012,0,0,95.57318802334356,51.06629330775686,1 +0,0,0,1,73.47954533174189,83.2806153521717,40.35148124842747,0,16.511640579980064,1,5.62924570304999,1,44.31552214846987,1,0,8.317692613728738,0,0,93.20322304585444,114.48736009565094,1 +1,0,0,0,124.19647887178516,18.053200989518917,10.995149950597282,1,30.517759868381727,0,23.594127651168307,1,55.735698564938005,1,1,21.048403319370877,1,0,85.61617103972637,88.87263726553118,1 +0,1,0,2,56.398656727177226,2.826160689037943,12.127214089089849,2,39.39847384183172,0,58.01741692241742,0,69.27779571646106,0,1,11.139329669585408,0,1,76.81993428137213,82.73016084159084,1 +0,0,0,1,71.1179719067467,48.13710946525766,64.68113729414506,2,75.43017473451322,0,54.13596460396798,2,98.59805056248652,0,2,22.308471460756223,0,1,94.95655609541382,78.74417572601126,1 +1,0,0,1,125.05361082468713,46.319180960731885,49.34972664381729,0,28.150931951755563,1,58.23578103675034,0,94.67669428358516,2,0,42.77483386074981,1,1,64.43891040894215,125.3492518333262,1 +0,0,2,1,95.3802844248082,22.03825509056965,6.633221876123746,2,17.66001556026761,0,62.18260707923161,0,147.01335028785593,1,1,26.79119206605342,2,0,93.30045259459254,84.39670226478232,1 +0,1,0,0,67.93938124181128,60.88795573317772,0.2914749076752709,1,59.846937358305446,0,27.53576508563964,1,94.54099905339211,1,2,2.18036859396285,1,0,65.86948388452542,86.1276812033363,1 +0,1,1,0,25.90816147365024,30.628331235534795,88.10112783232917,0,34.81609734727277,0,97.64871746103228,2,46.52829392068287,0,1,48.975816161750366,0,1,3.18900641546776,3.756071655313869,1 +0,0,0,1,34.00041252030081,27.17204690691742,85.3935044930343,2,27.570843712424665,1,23.879297459630354,1,4.664390656399098,1,1,18.7948984526704,2,1,72.77744697297126,58.25449450955754,1 +0,0,0,1,26.914216762559292,8.236826626955807,31.27609166422815,0,26.299578341622198,1,105.21069246796216,0,106.74923164295208,1,0,23.463002047939742,1,1,55.2837247804988,96.0054059330698,1 +0,0,0,2,44.33188092157897,6.332119217871968,67.34542428925828,0,36.95868916083486,1,43.11495085060731,1,83.49600185023252,1,2,0.0044567391958016,1,1,22.87345737143744,5.88046981906567,1 +1,0,0,1,71.28052079030638,20.28638130984457,87.50754271599574,1,37.62569188437739,0,141.22046820438555,2,85.66824808483968,1,0,42.54327588691662,1,1,1.1124750927086258,33.09300742282944,1 +1,0,0,2,141.02030291142404,31.97504485738675,0.138715662679606,1,9.592718882853276,0,49.063590472728414,1,42.342499747660895,2,0,28.08376650531259,1,0,37.81122615963192,12.075071798338003,1 +0,0,0,1,124.86359918825296,46.62007503141005,16.023308932823966,1,24.78777220167774,0,50.90662368260732,1,104.70450512422778,0,1,87.66591083050169,2,0,24.029120163145844,6.943339355589451,1 +0,0,0,1,78.3845362282029,1.3780643637280376,45.50533378037647,0,7.730806527032469,2,16.71942699110375,0,63.12573021397869,1,0,29.16137564445027,1,0,41.57134362788765,21.09433171164083,1 +0,0,0,2,4.801326376307314,40.02195450924616,88.44188416181882,1,26.669294561341435,1,29.342955654144298,1,47.94863444767971,0,1,15.808660781260036,2,0,124.39165983273284,138.22945317342575,1 +1,1,0,0,56.04573600507516,10.569720856270475,59.81774123477449,2,15.801579442646474,0,20.20808987334517,1,95.1369464335658,0,0,81.93694678299153,1,0,94.36223636734512,67.63118873558486,1 +0,1,0,1,93.2092378036643,41.93257786585209,8.223191858031376,1,16.52236879982371,0,43.92889710559116,2,35.94049531405539,1,0,44.062506791979175,2,1,64.14779357110577,83.79491565688514,1 +0,1,1,2,99.12154374253105,26.479715724605224,84.99333821118866,2,9.170902311227549,1,47.39390162004026,0,30.89315076484493,1,1,15.958467493290811,1,0,44.38756615232911,11.432997269590269,1 +1,1,0,0,139.63083933457733,2.083898394815381,9.534411120861558,2,26.50699328594132,0,76.56556024481506,2,80.7776883855605,1,1,4.902527707037346,0,0,42.53030576999972,31.271906494177227,1 +0,0,0,2,99.47059783101956,1.4656648230155778,28.313592753647647,1,41.13113399887526,0,16.80252068437589,1,137.3117817629882,2,2,5.449278746283187,2,0,31.57179513662996,41.52888378840585,1 +1,0,1,1,61.81966449876665,28.828045918171885,20.6508132725579,1,85.68860840368274,1,28.95929337617485,0,99.06876433059902,1,0,41.61028767135549,2,0,30.064012902853428,32.06526215912005,1 +1,0,0,1,101.9204923618574,86.78945692974987,20.59904950366354,0,22.62580712146402,0,86.15851003089422,2,62.62980356539031,2,1,0.0559190042352775,2,0,28.595217858841306,47.52001568132671,1 +0,0,0,0,141.10411195982113,18.198810179443235,39.230195775469454,1,9.390193264260732,1,65.93279309193545,0,144.77682055754178,2,0,33.29227418940292,1,0,90.47135380193814,96.20394323310322,1 +2,0,1,1,31.508371396318424,30.24964605667696,0.9759323605701696,1,41.44504683381162,0,76.52131349862903,1,136.55889452484075,2,0,50.91929373564156,0,2,88.58892811633085,86.73171579781253,1 +0,0,0,0,101.34719637451464,34.272196608762144,18.005891065185775,1,36.922704593291776,1,53.62383734834001,1,140.26218629861825,1,2,84.09384878410583,1,0,102.81101998049496,126.9239716906134,1 +0,0,0,1,4.481748057835821,45.07034934228597,77.616843826485,2,21.7252486942949,1,59.0073529028137,1,138.13964706603,1,1,26.972564340561306,1,0,34.76090631689874,22.455618788710847,1 +0,0,0,1,64.26422054974526,19.769726100398294,23.178513127025766,2,32.51494904027917,0,2.927414956421537,0,97.64239947215954,2,0,46.908996984892646,2,0,1.602428661142985,31.749386620779912,1 +0,0,0,0,94.32232086034824,29.43782303904533,39.37572598710236,2,42.58341860792016,1,31.2733083898924,1,34.09702282807275,1,1,44.922815202884514,0,1,17.543870002398325,18.220062942436616,1 +1,0,1,0,127.1003399238126,16.87541855851707,32.01140549825344,0,9.14208872829828,1,25.310388999819505,0,67.16614958910006,0,1,74.26465475634588,0,1,18.64560455739773,8.552392720263875,1 +1,0,2,1,83.46615376284433,40.28559720290176,72.86305774010867,0,8.193250958714549,0,62.17976489740483,1,77.02940556860227,1,0,49.7130340847804,1,0,37.27901533985135,44.06833761378804,1 +0,0,0,1,122.48274090631516,90.27465764637056,14.572860618950978,0,25.102062850764607,0,50.53024491440449,2,121.00934878067918,1,1,22.36208518389212,0,0,30.287375765100087,25.197712226415263,1 +0,0,0,0,73.45507565302111,24.984949107141404,23.236928883507783,0,6.968217904283092,1,76.64170209826896,0,61.602509553850375,1,1,22.48673944677641,0,1,16.366378597181797,15.0818148625815,1 +0,0,0,1,76.5966322451877,58.45088727466947,35.34566886356588,2,2.5144911484714205,1,67.95218538235656,1,69.93880288019193,2,0,96.67758033277175,1,0,19.41367419329345,5.059991390686963,1 +0,0,1,2,55.01654631209124,42.79625657913932,30.409792354840025,1,0.9881357373731136,0,14.17817668647245,1,140.08991123884903,0,0,39.12593707077426,0,1,19.01041035002619,103.65205396829292,1 +1,1,0,2,144.33445602310903,60.82369524913965,17.328358161370677,1,30.347731584556225,0,96.08814228515462,1,58.06885984282688,0,0,6.883963453213831,0,1,9.810683432082785,10.818771958725105,1 +0,0,0,2,2.4736484843999373,48.30398655571063,11.950825081762396,1,36.11152901080701,1,51.79083745328767,0,113.11962596385816,0,2,34.70946163186319,2,1,51.66430641979483,77.91409533780302,1 +0,0,0,0,131.80247350921113,5.3293084593957545,15.589115865426368,0,45.46973991694409,0,30.3959464633383,1,87.47473507990185,1,1,34.88210348298852,0,0,17.935667457921234,30.62937861134059,1 +1,1,0,2,109.45130486039908,24.621961508684898,68.39162984974126,1,31.55727305966472,0,59.38307523865407,0,31.880187460132813,0,1,21.003756569737053,0,0,71.27204883170877,72.13907245033774,1 +0,1,1,2,26.570912782467037,39.24399374497135,27.972488693160063,1,22.84992876152792,1,79.17586778098831,1,78.7108017557803,2,0,46.17188255954389,0,0,11.41412860022044,70.26419904637282,0 +0,0,0,0,33.53813019085595,48.4867487190208,64.87689635991009,1,27.346720446013997,1,5.938769987257031,1,49.68382538391791,0,2,80.62638573940391,0,0,72.65486271684708,34.357152269645184,0 +0,0,0,2,63.8611921049156,0.1690242755348403,98.16188503303104,0,44.15142994736727,1,42.76747015914297,1,127.68881022151992,1,1,35.191178338896265,1,1,58.99550766625245,8.395316521241291,0 +0,1,0,0,128.1880143350385,5.479450253269902,5.600464999661048,1,15.72413178284464,1,18.424648266086148,0,95.1435792375375,1,2,24.008574122760606,0,1,124.50077556339215,47.420271967525416,0 +0,0,0,2,92.02582095643922,67.76656368621039,103.7245840327529,0,7.143319772459606,0,141.20349297619316,1,52.85955001515797,1,0,5.994971835939383,0,0,17.91566659276552,86.21145201364662,0 +0,0,2,2,96.70108965663484,5.641709806342749,3.3861555763897155,0,14.62133101373776,0,61.79295777145662,0,2.177867548454243,1,0,47.66261966002766,1,0,123.93817098984576,14.848697561663029,0 +0,0,0,1,72.59826073207145,44.96747145993656,10.999579313841544,1,48.78264959042558,1,98.22249439704608,1,53.44326147378936,2,0,6.874188350476107,1,1,74.06450108073147,3.287915182177142,0 +0,0,1,1,135.4693935639183,98.9718624515132,80.75485284525612,2,32.241258256950665,0,52.63935461080055,1,7.521364577815731,0,1,59.068900337470765,1,0,9.556019680006113,32.16009587853112,0 +0,1,0,2,72.06556225214106,0.6290519434153208,26.243368948867808,1,32.90368258035486,1,103.4335205924098,0,55.51448209284548,0,1,38.18022614934341,0,0,43.19795701298302,98.72247255531497,0 +0,1,1,1,57.78745799297201,24.908277623836995,16.90811255192776,2,0.8861651463108244,0,102.71210122687606,1,15.875104402393308,1,0,46.50280531249302,0,1,66.78985717947529,18.195541947456988,0 +0,0,0,0,66.40234919815028,6.428047201449011,59.66506478843503,1,40.81565821710933,1,94.98161095629648,0,3.3913068882746087,1,1,18.956534552149584,0,1,37.780573913297744,44.15379495696573,0 +0,0,0,1,90.54377361877316,12.544966871362838,33.320935137801946,1,41.34191715375273,1,56.29441893453553,0,27.69387526526372,2,0,24.00187854346632,0,0,34.41970026824336,1.44000569969559,0 +0,0,0,1,104.25149473168922,31.877131024263463,10.834406175672678,1,43.77662580646616,0,10.097199340095049,1,20.088274191338822,1,0,30.09421767395101,0,1,14.612877610137714,18.4581510131856,0 +1,1,0,2,46.03522025540229,30.53602460417386,74.02111716602131,1,67.39295821626791,0,51.3457710463235,2,62.76754665487596,1,1,7.53633795245296,1,0,85.40735625156108,38.43954614980371,0 +0,0,0,2,74.70296784358877,4.847180414027951,21.708523562446924,1,18.379107423507445,0,72.05767724097839,0,137.26049530368454,1,0,26.872955836509725,1,0,43.54490298505657,58.83218494163507,0 +0,0,0,0,85.83580023349843,23.765244774336352,32.21723447827398,1,43.97504355803961,0,96.0530714036421,1,9.579669126623452,2,1,16.92512975927028,2,0,69.75180422749256,34.47957759846682,0 +0,1,0,1,43.91055345751692,32.76844102675452,26.892107947148247,2,47.74007827230741,1,126.96068874450474,0,87.59697954029232,2,1,8.225442350869343,0,0,4.593696133358782,4.167015370378014,0 +1,1,0,1,0.2329232838354067,35.14959507244097,89.9261557283291,2,26.651061642220075,0,95.5052839089883,1,14.157039244332436,2,2,41.91542577322518,1,0,89.3384263189555,27.43420860940924,0 +0,0,0,0,126.63680139380476,32.893585811551986,39.69611594335986,0,28.224017186063545,0,119.39911051367216,2,13.202291647600315,0,1,22.228743638921,0,0,8.551000963054012,58.48578304484147,0 +0,0,0,1,109.50051020308636,42.62292620234538,93.29423201621744,2,65.06089415860833,0,17.19354944431364,0,135.43094333688498,1,1,74.20999421993339,1,0,24.69669207259958,95.8501800378259,0 +0,0,0,2,111.68202649433992,30.1137831036953,47.50813603291504,1,11.280935690243826,0,87.57608340984713,1,40.70766250689152,1,2,13.704391605158705,2,1,15.112980373338996,9.158794626132517,0 +0,1,0,1,128.3224270388588,28.282847779233077,2.2840375381126323,0,3.6244938037931664,0,77.27475424776027,1,123.32634624618974,0,2,23.181977435550817,0,0,65.93978027715356,19.034703769812342,0 +0,0,0,0,135.6493367593524,42.32620592281805,89.61402159017484,2,48.03657673460856,0,71.37124027286393,1,11.607783205347772,2,1,8.798530205166427,1,1,8.990770207487508,85.56864400934748,0 +0,1,0,1,39.05863056146696,56.95651946279964,45.73365767899096,1,29.66710825680073,1,27.083831995113595,1,27.30930017885584,0,0,43.05124597946938,0,0,11.366708108310736,9.380659187187124,0 +0,0,0,0,84.96988064361005,22.62231650283672,77.92394063016656,1,28.59718000637116,1,40.70185249926311,1,39.80040161347505,0,1,45.24243955767652,0,0,24.717568155735727,37.76379283763221,0 +0,1,0,1,108.52879401149198,15.330689271470954,82.64747519647261,1,15.775997008807996,1,85.14419194023326,1,114.6245382173538,1,1,34.79326040099038,1,0,43.04985794284337,16.11033422557298,0 +1,0,0,0,85.27855712636187,44.2240435710104,40.61862338055604,1,30.64678326655178,0,9.018410670031196,1,60.30628429013292,1,2,141.6114329380332,0,0,88.82125542773565,37.59646495337156,0 +0,0,0,1,88.56992528787481,16.337687692798102,33.571340765436084,1,67.72480849463379,1,96.46240357667322,1,37.2989900116378,2,0,48.43631018290064,0,0,84.28277302703053,63.08539141254423,0 +0,2,1,0,93.21968777194098,55.96658098918362,55.44706142074693,1,24.585717045359413,1,83.72768634628602,2,74.8177616803941,1,0,88.75530966055142,1,0,50.586172954569314,11.316191858167146,0 +0,0,0,1,3.46362551151595,49.36231431303997,65.26028583039184,1,94.9087682916653,0,37.98467031481285,2,25.34570931104601,1,0,21.67207262018228,0,0,81.32981004936806,2.7021491592047866,0 +0,1,0,1,38.35275310553886,5.050257607582526,29.10889479880704,2,40.98554937650672,0,59.18974564066254,1,44.344249905454745,1,2,33.15057816016368,0,0,11.989636514850034,30.288992474030056,0 +0,0,0,1,38.78358231142165,38.15453188050368,38.78302812173492,0,1.683741541294853,0,15.83752145372433,0,129.1524972306459,1,2,9.559143613654747,0,1,96.02346186091064,6.68931769453568,0 +0,0,0,1,21.977948449506624,63.54151478865772,85.51112204930283,2,31.83214761512255,2,90.4556804810788,1,96.91876701162256,1,1,37.08713546356758,1,1,18.3559656289996,70.51628357339115,0 +0,1,0,1,102.34822295178546,12.600275688099387,73.11047270532534,1,21.05871666763329,1,130.94582383957874,0,30.6537543011976,0,0,48.117494347734585,2,0,74.48433719012029,19.746991638277965,0 +0,1,0,1,125.002850923609,10.38023123790968,48.8403774313694,0,8.106983587658656,0,16.89470371312109,2,80.56347660105735,1,0,38.14539783948312,0,0,72.50552467443498,43.98146249259064,0 +0,1,0,1,78.63831330417638,4.781994778696558,9.376258971566523,0,49.0131861140594,1,12.913785136620726,1,75.45316013935685,0,1,75.64357968338922,1,1,4.18779104906325,56.73136909325531,0 +0,0,0,2,25.666139584061675,29.37071293299812,55.85275200276191,0,24.27267143239759,0,24.131765518099968,1,78.96422255258969,0,0,61.64578766088976,0,1,46.520307171772565,68.39684222040738,0 +0,0,0,1,7.065037022487203,24.43614042141365,83.99472445665867,1,48.973755738703,0,24.9373170235083,1,82.38449320772395,2,0,39.107845515156,0,0,45.32641218872286,45.357118896470304,0 +0,1,1,1,15.9056861485601,48.018091520871046,21.366797517329683,1,22.650214548511883,1,78.33886981880735,1,74.55257601065304,2,1,40.6250987288224,2,0,13.51834409758212,46.00306694156867,0 +0,2,0,2,4.8690553738259865,46.24309114627585,31.667924784020908,0,50.93760748610932,1,80.66679236635571,1,51.44263232691719,1,2,16.510185139459825,0,0,31.361062672045986,40.57730099441797,0 +0,0,1,1,78.97960475361387,27.285257735338703,8.717393280398761,2,9.56329287013092,1,98.41624858962189,2,15.36170608816772,1,1,21.05525145424127,2,1,65.25520677074422,16.328776290541608,0 +0,2,1,1,46.63845296892835,18.04439978848032,10.088348678481337,1,24.04808967278742,1,80.2750914090019,2,121.54456395939972,1,1,23.191539639888344,1,1,29.74025087410001,0.2503869999771702,0 +1,0,0,2,126.28811113362758,10.076879537971372,47.62287213656905,2,53.70339832364865,1,41.23194592808744,1,76.22850862409047,1,0,79.38851504422293,0,0,37.31963225128932,20.56678700634332,0 +0,0,0,1,48.83585957386114,19.71546847125912,55.11160310042207,1,62.50410504668888,0,83.5243879083306,1,21.09222155990528,1,0,44.283995962524045,0,1,10.302527727205558,87.4973309724484,0 +2,1,1,2,31.13802110023196,130.21713729387614,36.56378735567941,0,22.985008231996552,1,97.94595060976006,2,131.61163401186238,1,1,3.436439907999561,0,0,37.730336911062686,29.125696763511797,0 +0,0,0,0,51.93272225116481,1.6829027257604157,30.171712041661504,1,20.9906898369885,0,33.81663912643774,1,74.81421552265863,1,1,74.72722888829539,1,0,92.53415694149024,14.779651785764235,0 +0,0,0,1,56.228974093674296,17.592178218238047,3.653876234356196,1,40.03630072720561,1,17.346553463681897,1,117.05679065876248,1,1,65.860075149491,1,0,14.289777229246711,12.828114694012982,0 +0,1,0,0,33.3463414269722,36.38809618959223,94.25054307708564,1,19.76647094379169,0,97.76551990551116,1,146.8285883415703,1,1,5.43005172726414,0,0,88.50768988739212,25.16636504084192,0 +0,1,0,0,64.57972071477751,47.84567756690107,30.420432042315326,2,23.639593880264226,1,88.28923730324327,2,41.57667410060514,0,0,136.8032845438178,1,0,3.814530465428989,79.91204682053879,0 +0,1,0,0,135.30969068910366,18.81091172679768,65.9645261815464,1,29.034426474910784,0,31.163768221655985,2,139.20674587458132,1,1,22.07486943308583,0,1,99.57467367851132,8.303476554420353,0 +0,1,0,0,6.232500467528529,37.924442887336944,49.37306760575895,2,34.587623290291,1,74.66865008180353,2,62.185117650347074,1,0,72.19246088181633,0,0,67.01037038295232,84.95417555074611,0 +0,1,0,1,11.23135819773428,54.13698700242502,17.896026494158214,2,27.624224014413283,1,58.19714315994948,0,30.995348949290463,0,0,77.70463297220738,1,1,11.297415601513606,29.74093713496149,0 +1,0,1,0,32.2792409585733,99.70691360403124,26.84982365024662,1,82.72720975224698,0,25.01153102195996,1,84.20024273654563,0,0,6.282382837394579,0,0,79.61593286927136,19.52355373720096,0 +0,0,0,0,62.57616617730042,25.680447376985597,70.2759776312476,2,57.817298316442624,2,40.68017321549643,1,44.80448541185304,1,1,14.09446978589315,0,0,0.4940497131691146,47.920958580261214,0 +0,1,0,1,19.825017916765773,26.930166284154566,30.337768661197284,1,27.460673942967677,0,10.271152967089586,2,30.43705130741376,0,0,7.773306527780793,0,0,21.951866927610915,17.086807839118638,0 +0,1,0,1,95.86828872999918,18.114081994423916,39.66172649347152,1,2.6698893520975653,0,69.17442266704425,1,76.85769520155442,1,0,21.11160555527723,1,0,22.764794388420352,5.75163973873013,0 +1,0,0,1,97.68970521711132,18.833837526301966,30.43833165477164,0,13.002168926269958,0,115.58693287171786,1,134.13682855296813,1,0,84.37215737853786,0,1,1.627956685087434,85.87273862687557,0 +0,1,0,0,22.320861084483496,57.73557471656508,86.15439186474416,1,1.0800409054412818,1,91.87045652974584,1,1.6647670625809852,0,0,76.93256424687584,1,0,41.55273089420756,14.289356549234917,0 +0,0,0,1,70.98206646592524,67.43869362837447,44.44339884382881,0,40.19920975847971,0,148.66923486442158,1,16.84472058115209,1,1,92.31454611648192,0,2,36.55456124925909,34.303877015873795,0 +0,1,0,2,138.6655530239889,43.76021399925693,53.207189038143405,1,2.067543691065388,0,21.121181012757617,1,82.10801377498365,1,2,21.025200474866395,0,0,6.123091658936336,61.23472931342848,0 +0,0,1,1,2.211941421221103,45.4105285903584,137.92931452923028,2,8.165674570649205,1,98.21206054906058,1,97.8084001411066,2,0,46.583002278101446,2,1,63.10592205190243,12.478473622280973,0 +0,0,0,0,82.68845496482675,44.02081561720759,41.94211326525337,2,37.79517373849807,1,29.835911485530254,2,77.87081060637858,1,0,36.73908797002564,0,1,23.84933118285834,98.67726722661558,0 +0,0,0,1,139.81286199573972,47.123670259498425,78.34000511207901,1,17.81409040714933,1,98.30422687728888,1,67.1124152917383,1,2,21.093628342300043,0,0,11.21012874174362,65.34351358051819,0 +0,0,0,1,49.601462472363245,3.0040226907677603,85.73788611512241,1,4.871677457798384,0,60.62482919238483,2,11.998903639324926,0,1,12.87209864757244,2,0,90.49992213930092,31.948886444361253,0 +0,0,0,0,112.74563639540035,14.9614814043591,87.52217186119398,2,41.22576745767507,1,74.89208437042247,1,27.156576243242554,1,1,23.43965729843376,0,0,34.780720222637065,50.06156007859076,0 +2,0,0,0,142.88830087491772,21.532101463869157,62.2351455147351,1,13.51721121658938,0,90.7795868975285,1,68.44474059400478,1,0,9.141196121852593,0,0,99.87650023053104,27.06028188066525,0 +0,0,1,1,39.1814051967801,82.47809387813204,41.02927830511136,2,14.400471088799078,2,42.37808856861051,0,15.189482294234486,1,0,10.79745099966356,0,0,34.74978261282735,13.42145928409474,0 +0,1,0,0,58.33420449321694,28.882784329913807,35.483526520461886,1,63.8457847020581,1,18.67902659634513,2,98.73443733143088,2,1,22.929508172064427,1,1,23.027991584555902,51.42149927225142,0 +0,1,0,1,56.59647589102686,4.839413527801978,9.304124213903142,1,9.216513749156013,2,54.53355468656717,0,41.35059096333677,2,0,119.7417820474936,0,1,65.78832756332645,9.920574065108037,0 +0,1,0,1,130.39193009832698,26.40855959643332,21.9058065126284,0,43.53827282660724,0,23.823108387875884,1,22.909366130145003,1,0,38.48930409419495,1,0,16.361970635093975,86.86909281116405,0 +0,1,0,2,10.15179894421237,11.736379004256836,16.03820320404086,1,48.237015130771645,0,19.395103438565297,1,128.59321047383037,0,0,26.440709900314697,0,0,24.15337549163637,22.359050993237723,0 +0,0,0,1,133.40871353066825,18.8962290264672,15.70236406596019,1,3.441639226755555,0,2.9614416614883288,1,78.12410090700362,1,0,59.70467804904851,0,0,41.82407606619118,29.12229938823988,0 +0,0,0,1,31.05236010260056,8.202858612424691,21.323436039000367,2,15.62425878145331,0,32.279507845795244,2,80.09849008875237,2,1,6.402644747304315,1,0,39.33988163757768,54.14580292208158,0 +1,0,0,1,24.956523400729967,23.78441363909534,21.860332475136826,0,27.316675785024607,0,57.376529361791626,0,43.272869374007016,0,1,20.48160764470173,0,1,11.813772248951263,60.37446749641669,0 +1,0,0,1,52.52856008916187,0.7456973758014296,30.384460506326626,2,14.803813564862867,2,97.71596686905022,2,144.19255434394628,0,0,27.814107773809187,0,1,22.08417219580572,52.85576255959461,0 +0,0,0,2,51.18959719216965,18.67197910285832,82.38757891391977,2,0.7410668856167091,1,102.20367808959074,0,52.76202733492627,0,1,8.850363044790278,1,1,11.299068218145951,78.86458958315751,0 +0,1,0,1,67.4962613802405,28.39815488723705,74.67538258779584,0,19.96788772159743,1,88.8460582344799,2,11.017247978143658,0,1,23.85884795090555,1,0,27.41308646039362,45.49306727057192,0 +1,1,1,2,122.4975166743282,62.90514877523138,52.0527995603014,2,17.842743237868124,1,77.28976056427686,1,50.11955426648825,0,0,12.415282131027732,1,0,72.68007100927616,9.897440368770322,0 +0,0,1,0,89.94160330554602,11.523181961830796,5.368043502508224,1,4.735003400803006,1,12.87143157296673,0,93.31646111370314,1,0,28.83007357449423,1,0,48.93087183860965,30.620508194514134,0 +0,1,0,1,87.28046595762666,12.693439903282794,30.287028811142,1,67.03807651315199,1,52.96329260629195,2,67.59355695892928,1,0,35.1984609785647,1,0,86.05735566833255,37.4856356881244,0 +0,0,0,0,56.39728429313944,44.052649273683976,74.08916090643262,0,36.65432952922838,1,91.72474865661468,1,46.701132697890976,0,2,15.505071543206428,0,0,44.91789505794422,119.38317642107188,0 +0,1,0,2,75.18791110941373,16.9474148756986,27.510134821016567,1,14.12933402140073,1,57.871374879717045,1,77.83071748066135,2,1,31.307402325670317,0,0,82.16808361297056,92.0206108662442,0 +0,0,0,1,89.12358865370695,37.02553781361535,44.35772049465526,2,20.47347154087052,0,80.66190573108359,0,66.49279895347102,0,1,26.587307814424715,0,0,41.79572070608843,74.26034747199843,0 +0,0,0,0,32.929901418663306,56.65694583872948,65.6362181168588,2,20.577333772365147,0,6.2617772161816685,1,16.355641097990798,1,1,35.979985340130554,2,0,45.27317620541051,1.6521596432373389,0 +1,1,0,1,68.10578228851392,28.736745851687846,7.713326842301621,1,31.678090509812883,0,26.334447677677016,1,130.00862240920074,0,0,30.88193719613484,0,1,15.693787905361734,25.59479533643989,0 +0,0,0,2,28.850793803228765,34.20273634097028,21.265330975569835,0,12.832570962115676,0,98.68348474881226,1,62.10020350518064,1,1,83.61485572481425,0,0,42.94012856963359,12.659845313282968,0 +0,2,0,1,24.6266652145664,37.79678882371415,49.55371594228232,1,86.00928742379223,1,132.05896104383837,1,34.31708789869008,2,0,77.83006163256856,1,0,10.958384844923192,48.60373662711259,0 +0,1,0,0,70.08885034012987,57.60588221730631,27.743478120142907,0,46.88684212225667,0,57.3339384061264,1,99.31481553238116,2,1,31.46803101400184,0,0,28.04803641251133,16.11131755077615,0 +0,0,1,1,39.71677887305031,20.647233009531607,4.431468825676449,0,10.032122930638549,1,9.372054255989104,2,73.93389771888357,1,0,45.968022746145344,0,1,7.718533587336812,90.62605176864722,0 +0,0,0,0,38.42816368316597,22.2122613769802,43.52287732925816,1,19.656201236829247,0,63.74718398027667,1,26.972563471562214,2,1,26.851405595245325,2,1,79.70443661432955,32.14636377738093,0 +0,0,1,0,78.30704881310648,38.80387908442583,89.22906284875123,0,28.12284207976353,2,4.008089813166599,0,39.63329719665183,0,2,34.1414707851626,0,1,32.5392188667558,87.47727403955535,0 +0,1,0,2,10.924294237717408,33.77663133488417,86.18092203065423,1,20.17335845799316,0,74.26507549186508,1,20.266116120812583,0,0,58.005477748119176,2,0,7.492533497645476,25.640165131899355,0 +1,0,0,2,11.71220912210794,1.6035601783049358,35.19649676127258,0,46.80261636637549,1,59.8125312791507,0,141.62763140110116,1,0,1.0562499942495085,0,1,71.37954015588596,12.503396571548064,0 +0,0,1,1,40.01383675360021,24.426462614872207,11.104344851315956,1,16.405257979067812,0,20.15801170580091,2,4.691616238364437,0,1,22.132726541951897,0,1,65.95613680007402,7.394703210963504,0 +0,1,0,1,110.8463664262347,45.05313253278269,44.78017090284074,1,40.94563372752752,0,27.565316628555596,2,64.48074434784141,0,0,18.449466739647534,1,1,44.09648798904276,10.458695255169742,0 +0,0,1,1,41.19850842721841,30.206224408276476,65.51357957523228,2,27.25464780995856,1,39.60990088394573,2,81.48976512632717,2,0,42.34965213060381,1,1,36.595453430356045,28.67088826502477,0 +0,2,1,0,9.797498265557548,48.97549509479732,16.706958155875796,2,47.45942685420553,1,74.60564408911442,1,62.73998722302123,0,0,39.66237310926579,1,2,3.1933540638862445,81.5112641820951,0 +0,1,1,0,53.70147359312038,18.22076041685537,37.40300439301706,1,4.205127279177407,0,26.810017742653443,1,12.078293764081256,1,1,5.52286339097151,1,1,12.211925900827769,64.27343662565917,0 +0,1,1,0,72.70286410176578,32.952867852701274,44.87763558011234,1,3.1423543715687954,0,37.6756422174176,1,60.80741641298125,1,0,45.36220509411664,0,1,13.308253651881811,24.132533095112624,0 +0,0,0,2,88.28075579441953,4.614634253037836,14.028392062704526,2,18.356586470228525,1,57.73619808942377,1,65.66000492818492,1,1,81.2806849793297,0,0,7.895785045990849,44.08263126452128,0 +0,0,0,1,18.92398328857222,46.87697183753771,9.38280901954966,0,36.56779468275969,0,26.20234807107685,1,90.00186424565712,0,0,47.05360584135448,2,0,77.12608150102936,31.040013154113392,0 +0,0,0,1,26.177977350663923,0.4015026380280229,8.861681309250857,1,23.18188408373172,2,42.22848172019631,1,47.79391215466882,1,1,64.98232048394631,0,0,15.546421144524311,9.136548075339212,0 +0,1,0,0,79.38270265513724,11.702192644576758,19.478636032690588,2,15.496337770458943,2,37.71628450904576,0,44.15664587014641,0,1,27.995922477111524,0,1,2.588092193911573,26.234648870377736,0 +0,0,1,2,87.61085505154225,8.056354814519457,47.85853987707887,2,30.024200483377594,0,4.625186690206745,1,14.663511722362992,1,1,38.34706785878743,1,0,49.15464024514727,91.5479750704095,0 +0,1,0,2,65.27394485770566,48.0385304631911,25.80574153185198,1,22.85063956325076,0,78.94204843632362,0,19.91602309189855,1,2,93.32073103743213,0,0,4.895629659101458,65.72618122520888,0 +0,0,1,1,62.89202443211961,48.28227042775367,48.64469338624251,2,31.85148538402009,1,48.75524537585744,1,77.37669039420673,0,1,70.35479057449041,1,0,49.91629884565258,132.2571909412299,0 +0,0,0,1,67.18469712083579,27.71651567326335,0.8025561923571789,1,14.316115792368343,1,72.24241199149922,0,89.72594086427952,1,0,8.110438812402643,0,0,68.25418216856768,40.92293043116047,0 +0,0,0,2,1.0997112301898926,57.73422835373462,8.454029537564567,1,18.83779652693236,0,90.86447924343815,0,70.80928819342265,1,2,42.27295992676165,0,0,40.60217182704097,51.29076781820923,0 +0,0,0,0,37.16742057344465,36.32874246782952,20.70022967757857,0,20.24937783479896,1,4.525590778025568,1,71.65336208348988,1,0,4.61413474960779,1,1,24.40884476704004,48.04799614246807,0 +0,2,0,1,67.08780956880895,6.578631280354292,46.387104344882246,1,88.2089612999041,0,4.15974434582822,0,18.40262707401249,0,2,111.51997704280554,0,1,23.536843565412497,45.42167024806669,0 +0,0,0,1,54.089295313762165,23.90339055196972,40.80418184003207,0,1.3867159499190873,1,17.08736206454493,1,39.19368525963629,1,0,44.70328528584589,0,0,90.7431142750521,29.202117360049076,0 +0,1,0,0,58.87808760082745,29.09703292628203,24.29472476533566,1,14.148506668619936,2,88.00297219212294,1,83.43274935136176,2,0,16.73098983003251,1,1,91.84474456224766,27.994597603895137,0 +0,1,1,1,18.42427357246539,38.96434910222554,94.75218806002894,1,39.93283628607517,2,41.05820616034482,1,34.23624031194836,0,1,33.395610213187965,1,0,88.98816330381204,10.71011742427253,0 +0,1,0,1,83.48930764484103,22.9767235327994,4.580280135163966,0,2.322542888894436,1,106.9781013371278,2,30.27377607787935,0,0,79.82318453292456,0,0,33.61730634103911,76.81769048260934,0 +0,0,1,2,54.62480997945678,36.05028912904384,19.34987874888596,2,44.66117613575727,0,72.90432275679117,1,79.70501376569402,2,2,0.3930547285070473,0,0,47.70671634702994,53.24090602570055,0 +0,1,0,1,91.6160694421431,31.059514456379045,67.89923661477481,1,73.05942725483729,1,94.17192799061914,2,62.68127372055364,0,0,38.30741070863082,1,0,78.54605611513011,26.78097126086899,0 +1,1,1,2,47.90061136558398,10.66163394381573,1.2573630081688825,1,33.64069010103301,0,123.30681187073448,1,116.81618332452528,0,1,12.05755252488911,1,0,33.8243297373551,92.88065116825952,0 +0,0,0,0,65.00705521839157,18.95333081153242,95.75153886329312,2,7.574238606970191,0,94.31153551420724,1,87.08924685038117,1,0,36.21702347864404,0,0,80.15182864970272,25.22380238453851,0 +0,0,0,2,6.0604748174001415,28.378707430802407,46.46865785148104,2,44.58241626760747,2,66.06698106033497,1,127.48787562193765,1,1,59.84778706345176,0,0,37.56267208382349,24.510175281905944,0 +0,1,0,0,118.89935340203476,29.04638321295809,25.57006020213492,1,11.967822602666525,0,97.23513121532848,0,84.13292094993696,0,0,0.4174955296695926,1,0,10.22031983642332,64.94448658261754,0 +0,0,1,1,28.181918962490027,2.8854609522659724,43.52930804265714,1,30.814569547246595,0,86.34019967592712,2,78.91808551614756,2,2,45.484128222760056,1,0,42.75323520922912,33.74367600960485,0 +0,2,0,2,73.70306030477819,4.804195867097954,24.28476892446296,1,49.7589942952024,0,76.75393412487684,0,61.9714085460163,0,2,18.788375683392797,1,0,24.56293358544206,142.84400869613648,0 +0,0,0,0,79.54008895645688,2.568401361546141,2.4939459288149224,0,0.5134658038092821,1,41.337863969616606,1,84.23572641572163,0,1,22.24156163711472,1,0,94.20273648418564,5.236466444035893,0 +1,0,1,1,56.76441392226394,37.842729556317714,96.68089670656128,2,47.194510720177554,0,66.87487529333588,1,9.181672716299888,0,2,17.125449382465824,1,1,3.663010762029956,18.49031106704868,0 +0,0,0,2,84.86068589664833,114.78875992556716,55.87111025706807,0,26.666699687457932,0,29.187860314365587,0,1.882964803130932,1,0,96.53254854680158,1,1,13.673323050791558,24.51847962329381,0 +0,0,0,1,61.05436852305508,37.854153833583545,55.60938088319264,1,44.90510507961568,1,139.59711096907145,2,36.98086923449424,0,0,93.11412165679246,0,0,48.75357649311209,99.70778720649976,0 +1,0,0,1,88.60594741438285,4.268465439082187,32.70659153082519,1,34.13488363262758,1,97.780917294571,1,56.071457120217815,2,0,52.45562344913375,1,1,21.535948961840823,92.3257944283254,0 +0,0,0,2,86.21810939891951,31.367196265855423,34.86408796460531,1,8.11889114033023,1,147.59104183106132,0,48.40936998849031,2,1,41.40445091101245,0,0,20.19391524643258,86.95524431527834,0 +0,0,0,1,61.31059111482104,2.513205440645322,45.88319653229928,1,26.70584219411545,0,11.222594215413372,1,102.8084205372358,1,1,20.46282801489036,0,0,61.197972861425136,14.00108001576571,0 +1,0,1,2,110.6283375939696,1.0137889077141635,35.5521741298349,0,11.965301949544566,0,0.29311127907235,0,106.0592062186734,1,2,1.365320154034777,0,2,53.8103514947425,112.42292013002768,0 +0,0,0,1,28.01220445928976,56.17406229099278,56.782972307107634,2,32.040437978913225,0,67.33057428659322,2,28.232907952432583,1,0,137.5652000595691,1,0,34.38054208905622,62.259252918440346,0 +0,0,0,1,17.70891461802669,5.098134379659058,130.20045731773703,0,32.94549392833734,1,42.75932475532802,1,119.5195466624148,1,0,12.37222072802487,1,0,28.534021582697573,48.2279647709751,0 +0,0,0,2,89.18941113687922,33.72802297009929,25.851600227394734,0,42.60658971757814,0,15.5512225240106,2,95.30204542363946,2,1,25.180068166081536,0,0,16.808840171856197,30.80224212882012,0 +0,0,0,1,35.311144334659986,32.554433373266164,70.75879473489655,0,28.79184820774745,0,34.73715640252427,1,69.42650647362312,2,0,24.351155339086876,1,0,29.299080796001657,29.167376750758063,0 +0,0,0,0,51.04323831097954,42.39854184255928,76.36206305357655,1,27.75046849717208,0,14.751372414713554,1,123.16213923099384,1,1,22.834857471144883,2,0,18.8732656440412,58.51548156014598,0 +0,0,0,0,120.46792516415448,66.01477506074586,52.51774696348792,2,12.242711219736377,0,7.337991312671854,1,57.51715006568354,0,0,17.15789266981473,2,1,3.284344424607022,123.73835061679075,0 +1,0,0,1,73.8962426131722,43.85981379601262,17.129729896285994,1,11.902436896367952,0,15.469975481015796,0,17.944382135155113,0,1,36.826248848992336,0,1,42.36909138590156,19.83151788850437,0 +0,0,1,1,102.8527680666106,28.04654710878064,57.87171797476606,1,9.964304202886126,1,58.39692851043687,1,33.39233329022091,0,1,42.09014948972361,1,0,77.70906659169779,43.87323561520506,0 +0,1,0,1,30.952048699148555,54.82523257984068,3.232924994768671,0,45.93256368745921,0,51.01821321948651,0,70.54892860960769,1,0,62.23674765214008,1,0,43.30010133574231,16.658983788516675,0 +1,1,0,1,15.120112803940255,39.69131521360471,71.2984143883365,0,17.11855299475339,1,65.2464066457477,0,89.75757126709696,1,1,48.87374063246792,2,0,84.82441933691665,12.284572174934375,0 +0,0,0,2,62.56767891774679,43.73974237494506,13.4946845218482,1,20.552005444625337,1,79.11134273244093,1,69.93004195473023,0,0,19.507773988485148,1,1,72.54098054410174,97.4801684870475,0 +2,1,1,2,12.735509966370056,0.6974740723597994,20.70646544970577,0,12.442710213305483,1,89.33990141495698,1,72.83527236708947,2,1,38.79761588113961,1,2,16.216143308535408,19.36919426224865,0 +0,0,0,1,18.575319747104523,17.485002867234474,68.74575180558915,1,46.899639315190186,1,82.5215634502105,1,144.09413137531695,0,0,54.68075719554889,1,0,92.8838610651125,71.17892203094581,0 +0,0,0,1,5.007447906042584,32.51634501323721,18.26387371693812,0,41.020446612968,2,20.191467168609798,1,105.2565667874806,1,1,82.19978021971832,0,1,50.994552050863234,18.425036150545683,0 +0,0,0,1,0.421048597593282,20.974130626689917,79.1791984630559,2,5.199675485455102,0,48.27075565398935,1,13.50852007681933,1,1,19.52965917899123,0,0,28.461874654096963,13.334770463931733,0 +0,0,1,1,74.36111007856721,43.37250624288871,26.05935004405785,1,7.794114774254246,2,77.60009760346652,1,88.56044659918575,1,1,1.788273716127542,0,0,42.49705003909343,60.848542086177964,0 +0,1,1,1,74.03452719525536,45.02993137688767,27.82750200363575,0,29.94000196404397,1,6.488100201466724,1,50.43732634787532,2,2,18.42565401552749,1,0,54.148521516937926,8.91174727270158,0 +1,1,0,1,94.08746477701332,4.527255507362865,18.633966738077063,0,6.931255703463224,2,99.8287045810928,0,6.682859850902378,1,1,63.58477661734179,2,0,17.830335910476457,40.84551409008495,0 +0,0,0,0,124.07305189453508,7.871795179247631,1.2639247711431878,1,13.724150698119049,1,44.83373331287014,0,7.318274340725522,2,1,29.74646183064888,2,2,38.58738383288399,73.95286915627953,0 +1,0,0,1,133.8092858097171,13.134018831595927,12.640214287076128,1,1.0288042970358569,1,11.847815848974092,0,40.34636106729131,2,1,48.07751000243454,0,0,27.985051581560175,3.586138330132443,0 +0,0,0,2,19.68513530987288,28.56999659116756,30.24715011514161,1,64.48850536781467,0,137.15242365646154,2,52.13637659567511,0,1,89.78798000539864,0,1,76.82472660949331,92.11447524957786,0 +1,1,0,0,122.2089236514268,30.636732492999165,54.5029724423301,1,25.766931721814423,1,26.39141086361881,1,55.90685709930151,1,1,48.52210408451521,0,1,10.982853926574736,51.32319451653565,0 +0,1,0,1,67.16040089262175,32.68843737497144,13.720918759571791,0,2.237897861185878,0,40.54937407015938,1,60.04800241643056,1,1,43.13600565366698,0,0,43.47872616854066,11.95934097765161,0 +1,1,0,0,87.73006737667926,68.02638912264362,19.92052512101879,2,14.095307996438487,0,92.25659989735672,0,97.50620715352954,1,0,47.24041970066024,0,0,29.568811138653896,31.32513347756446,0 +0,0,1,2,18.92231773850997,47.92192899444893,34.39211468040598,1,18.006731637742725,1,32.41912486095045,0,28.855909466353317,1,1,14.254650436878809,1,0,35.27204696565022,68.8641675964408,0 +0,1,0,1,130.18494687782135,10.398528212699748,19.173626400397577,0,6.578294028492082,1,4.829232204842948,2,68.92024513008613,0,0,38.81396401619291,1,0,24.435407085549095,34.60076091009388,0 +1,0,0,1,74.53365063550311,40.206284335815496,16.266715385011054,2,21.751069726387605,1,54.798595621007166,1,93.8376693272169,1,1,25.04274548200981,2,0,45.56764243964884,50.35399244298443,0 +0,1,0,2,137.90471238847454,15.253730469583488,75.70025838391328,2,32.865980360028566,0,98.11106119646348,0,91.46396712269996,1,1,8.713806550926495,0,0,49.41891641891689,94.2161101325894,0 +0,0,0,1,23.752075118415195,3.753414739540145,88.34870363785836,1,48.92930078549595,0,69.2450692126959,0,70.25587247802487,1,1,54.55937502199934,2,0,65.16503476976663,31.341357719604385,0 +0,0,0,0,134.10657307122614,3.338144616312433,21.94400867627856,2,45.38168403115576,0,94.58508025414716,0,87.46009159435019,1,1,39.49969014214053,0,0,17.96528912055269,43.32445186612011,0 +1,1,0,1,130.45748783802088,17.41389572857529,35.98136028479025,0,4.820775379403486,0,79.19092845530076,1,126.44636709871114,1,1,52.761869181793415,0,1,89.20097941760557,32.50430634066455,0 +0,0,1,2,59.2373707180826,48.27357079845356,42.97452374789164,1,32.5062202543347,1,97.30367538283974,1,77.40619535173035,1,0,19.695733783963163,0,1,46.64007052716759,74.01834069304996,0 +0,0,0,1,67.88125529525513,89.6510050945754,56.45117961157655,2,37.65924730556127,0,32.193986918267484,0,55.15127812341361,1,1,22.216069631701508,2,0,30.48922115363869,66.57106280364113,0 +1,0,0,0,61.52521649335182,47.77692962666761,96.917733387149,1,15.78335590386053,1,3.589558329459785,0,40.84340876771113,2,2,29.615959257801883,2,0,15.282467026820296,60.50302453544041,0 +0,1,0,1,62.70231892104543,9.231343906371348,80.28014090193503,1,1.5013870132356777,1,91.83572253155056,1,94.92070276702889,1,1,68.38761666023125,0,0,39.079500026332944,87.10091532878505,0 +1,2,0,0,92.48500752464132,37.20466341106546,49.08952979065273,1,26.17465202740812,1,124.0479060576823,0,57.50683083888295,1,2,48.4762157518494,0,0,60.96445194212295,43.60224134404001,0 +1,0,0,1,66.21091880138526,78.9553042969185,7.86245203576264,1,4.581437289498597,0,53.39532386263382,2,22.04214319106446,1,0,31.937679994324647,1,1,88.99361242731167,2.532648119980069,0 +0,0,0,1,71.56105126514915,9.373320008567848,25.749223316735183,0,13.629236671906224,1,61.07384776079945,0,22.69017144871267,1,1,45.3158844904932,0,0,32.85128856492256,13.363846708499116,0 +1,0,1,2,86.41616703024135,18.14895734634253,8.56113256073392,2,22.50878632642868,2,44.32614228393784,0,72.19387198434868,0,1,23.45487476157339,1,1,34.00190101027171,0.9550809816746776,0 +0,1,0,2,90.7466691681964,3.7191493897976815,71.14833667447117,1,43.67536862455539,0,84.88115362896005,1,7.042371242228579,0,0,10.317733456694253,1,1,92.24303030620428,26.581476786190883,0 +0,1,0,1,34.789549316912066,26.99335555258405,9.852536789275574,1,46.166305976185775,0,13.544615456800669,0,91.74905497031736,0,0,3.05735841256502,1,1,30.539836354526795,26.46066832708589,0 +0,1,0,1,50.65391596222541,42.26037949325386,97.6665954855752,1,98.33232528832572,0,40.25079035411108,1,18.570243273974278,0,1,19.43667202622401,1,0,6.923649892840617,74.63887263213866,0 +0,0,0,2,147.8811431076716,36.58795887372028,8.694657115494769,1,14.709480546001137,1,133.23866062268888,1,149.1194611109902,0,1,47.6053149591305,0,0,5.073303287585867,61.46567155852849,0 +0,0,0,1,60.28175366944027,40.46002884403533,22.925630006746324,0,78.42878994195934,0,139.17280186542715,0,31.96073573182397,1,1,44.80033704823461,1,0,32.47634703404585,9.67393165934528,0 +0,0,1,1,51.54467765948184,35.93652565945456,36.45823040620205,2,99.44045490846796,1,69.0527454137993,2,59.4696737370048,1,0,32.313691836801226,1,1,45.87068988362888,79.65731176628816,0 +0,0,1,1,85.33151602160133,27.344601686086843,0.2037271383081962,1,40.14751862927322,0,139.48701191494715,2,90.50708518428144,1,2,44.52870163379979,0,1,32.101378795060256,11.622284588111476,0 +0,0,0,1,44.31021850851288,34.28617021984113,95.98545973960256,1,135.52648589506657,1,144.99126696047702,0,131.54776989361028,0,0,28.32249798831591,0,0,12.213548671166658,62.38338560358025,0 +1,0,1,0,65.2740712806431,23.37389064805072,4.674108505131835,1,47.187409563941294,0,63.26134516101624,0,49.389894765373406,2,2,78.22779004315622,0,1,30.67970641795133,75.09499653840453,0 +0,0,1,0,58.563278918444375,8.496553259095712,10.695062951114576,1,31.009926146421684,1,6.800039157502219,1,18.072787214150708,0,2,22.421798433046703,1,0,13.948062444003517,48.54886320903739,0 +0,2,0,1,8.965262396689678,6.047160662092349,99.76774360463376,1,34.888888825106044,0,8.749726758720533,1,60.74079852934291,1,1,24.25007757731488,1,0,9.156793952291531,14.500480451211208,0 +1,1,0,1,77.56122667840157,85.22664062692837,19.269690839604053,2,9.173619069901074,2,62.83704034430389,1,64.17324790630943,1,2,9.843062195324904,1,0,8.315200803048667,4.8136641239101605,0 +1,1,0,1,6.941588281939682,42.34077341690684,16.635620019764968,1,4.421384051785488,0,71.80631067535202,2,86.45393138248191,1,2,3.962652185371085,0,1,119.8924605926,15.802094020911412,0 +0,0,0,1,71.96547984835547,46.19262363028744,120.28359349422256,1,35.37850915442321,2,96.57498735006716,0,0.4346835880677857,1,0,33.98667191355025,0,0,98.1481631863952,52.31058326310926,0 +0,1,0,1,2.5235001051974737,2.6518893768576026,43.79695386542224,2,6.789077342106481,0,87.11212831660914,1,32.757764819418504,1,1,11.937782773565758,1,0,32.04143780509911,39.75876317311047,0 +0,1,0,1,69.94904717437814,9.09606742588382,36.20344972423115,2,19.562137859219288,0,82.31806277040083,1,103.60444738890912,1,1,15.551748666745723,1,0,27.44149026792474,25.222369305479464,0 +0,0,0,0,147.36358854140263,34.92825571455845,41.6966344929769,2,1.6936309621941203,0,44.02634443785677,2,136.07568578564832,0,0,90.5651939832612,2,1,47.92492455160099,36.52888053615807,0 +0,0,0,0,25.843048731342428,19.028189033114657,28.19506921691512,1,0.8163484320595826,1,78.3437378525445,0,32.09524911935738,0,1,14.48448551761254,0,0,17.883764686702285,66.43862011304847,0 +0,0,1,0,147.2028970464973,0.6351872525351798,66.55270582575642,2,4.19800861301386,0,47.95978821361275,0,9.58733062053172,0,1,9.089677655952656,1,0,39.77715748274331,86.78438170763546,0 +0,0,0,2,97.11993385494316,2.767837756580493,31.9227682207691,0,5.179465192879096,1,27.915424828751256,0,84.75866423803771,1,1,49.96431680842121,1,1,38.46641999362788,73.6081652001587,0 +0,0,0,1,20.348064359413648,22.96245415517652,6.084947390830853,2,23.184463320898697,1,91.59133428640564,0,90.4524022465679,1,1,59.81844086024846,1,0,0.9427720291047714,69.71498651184382,0 +1,0,0,0,98.46574734930444,40.24260254975831,1.5387229678013148,1,14.510126207742912,1,29.05443320313628,1,72.6024517534425,1,0,23.003189349654484,1,1,59.71608717781264,43.42314930074368,0 +0,1,0,2,17.66426081627417,15.846634834430152,13.405636387857111,1,30.93251787042197,0,11.312401596355995,0,83.92569608503315,0,1,21.93887776592083,0,0,84.01283726134326,45.08501352630568,0 +0,0,0,0,88.03595859801912,14.833085715365858,37.11216641514658,1,4.226725823082811,0,119.40713313695984,1,15.20024223038206,1,2,11.681970365414374,0,0,16.788752590202847,21.941226543824232,0 +1,0,0,2,59.82988746888441,22.53681143499117,70.44057835611662,1,40.617959133264414,0,60.12852806293844,0,24.651295951488645,1,1,39.948261448556025,0,0,49.42588131823143,87.97560694416177,0 +0,1,0,0,84.99031121286738,5.782342127494839,48.10205743928182,1,4.855654098127898,0,56.8820113910165,2,45.801930617114905,0,0,9.620731378997329,2,0,12.247462471099062,98.46990182902113,0 +0,0,0,0,70.62837119542834,49.31854763872536,99.7829649038352,0,15.927729183089395,0,146.8994200797911,2,53.895101060650106,0,1,87.53988982377835,0,2,42.1543235369572,32.43430799599229,0 +0,0,1,1,97.64325826721593,28.828994737361786,32.61945963144031,0,6.248807590639816,0,27.629640104574356,1,95.47004955184325,1,1,9.460425490730318,1,1,96.45140509373716,35.490542717111495,0 +1,1,0,1,44.06100409614944,5.719967783156744,4.727220355380368,1,39.21618171424509,1,55.4306974964263,2,41.9768309233853,2,1,9.136783819869915,0,1,28.540107226439662,99.9392889585732,0 +1,0,1,0,140.29720768182293,41.52413856906169,94.46264893222104,1,20.8047978657708,1,80.1643467273015,2,21.206093407810165,1,0,98.67649900337646,1,1,88.84710931952718,41.18130713188972,0 +0,1,0,1,82.43871871468967,41.73938417105941,26.55292537077123,1,30.416013565796263,0,94.73225195490582,1,70.71594102382389,1,0,62.89690755573139,1,0,66.18981516220151,12.311822393783228,0 +0,0,0,1,94.77238283763748,21.31112687224488,2.273544297266877,2,42.17771654751491,0,0.1156883591068969,1,12.925105797979548,1,1,10.308971402445222,0,0,59.629001079323096,42.33929043475924,0 +0,0,0,1,92.52434458378404,15.06952547560701,99.6096706509972,0,9.693970001356412,1,30.50055452328405,1,2.870177072864016,1,0,48.02946989340423,0,1,40.21891334729896,7.203636827940546,0 +0,2,0,1,33.53908171874838,27.977399570837736,29.82448875483699,2,34.17097002497131,1,139.08473976438515,2,102.33969739794026,1,0,49.8320250229042,2,0,92.20672688957607,26.87595818191344,0 +0,0,0,0,12.447976037322029,40.02913072755172,76.92027903946479,1,48.61568916617151,0,77.85049460427328,1,47.10115731672167,1,2,19.034428586436427,1,0,15.445886329151849,76.83654155736701,0 +0,0,0,1,15.253017804109607,95.751463560929,29.811377149307088,1,11.406855947022144,1,74.35058428459539,0,140.4859345793192,0,0,32.47293534704373,2,1,19.318786683053297,110.46262176082058,0 +0,0,0,1,96.43644275352725,33.49168779181237,92.27660935308649,1,73.26929174451747,1,99.64815928082317,0,88.9991820161427,0,1,23.436840417074645,2,0,54.75031622006794,42.30601720477748,0 +1,0,1,2,23.521201315699894,18.34972483544034,85.80805425937135,1,61.61226782387847,1,43.0211765767616,1,58.55211536948958,1,1,13.287222781586216,1,0,38.44017138067389,98.71053605030718,0 +1,1,0,1,13.085021126220637,32.23466846192304,22.535337745456115,2,37.40274817774708,0,26.538543527116317,2,83.68084937628119,2,1,42.5176581233805,1,1,11.753831882227372,50.43095695537863,0 +0,0,0,0,59.70044159197288,26.63471177035811,38.72536883480318,0,9.42581387218781,0,50.08796172060626,1,40.75133941071603,1,1,58.43359692323975,0,0,18.62434878032198,20.0010203893618,0 +1,0,1,0,131.2195190177381,40.368489768832376,5.508664281935754,1,31.887869222600635,0,95.1022791288949,0,88.07416900890188,1,1,3.828504247410147,0,0,20.001575260364334,23.723595114979208,0 +0,1,0,0,8.265541368076445,20.463756801306204,94.9331211902274,1,21.88861833233653,1,6.254147380583092,1,55.8545384572846,2,0,41.48896668238112,0,0,7.940438109952303,16.799080905817696,0 +0,0,0,2,55.03676538873016,37.57542900726754,65.91655100541287,1,21.93628512406116,1,3.3207965137982907,1,10.141033658275887,1,1,3.6265571652510986,0,0,25.4362420957419,59.46003663822823,0 +0,0,0,0,86.5529701357949,35.20220351178558,9.879852177258512,2,26.829780667473308,0,115.9398712230858,1,94.148944686054,1,2,51.59892445522049,0,0,52.52616669870018,95.22074573544832,0 +1,1,1,1,28.3123774330788,21.061563942878724,46.12985954037112,0,4.145959732131144,1,72.54457230659747,1,1.7887004818796348,0,0,44.61151916410593,2,0,20.71308780257329,80.12799368741311,0 +0,1,0,0,65.83376236239118,63.32636839655412,75.61205834226034,2,0.005200994125698,2,37.78002540961247,0,87.16075614328331,1,0,38.66751616036992,1,1,99.42510605356324,48.80308641320092,0 +0,2,0,0,32.82191418281293,23.952105527179217,47.56631073483573,1,28.09190774769423,0,140.10395859473314,2,17.040763406572456,1,2,18.21291807813652,0,0,31.27912501411801,92.62706213589423,0 +0,0,0,1,15.70626123885871,47.8612122695641,4.4748957805896055,1,24.138888628424738,0,41.165594589371416,1,92.7731218275549,0,1,38.11079894192601,0,1,24.318804518529657,93.77515861558425,0 +0,1,0,0,54.84777552455896,23.357553602851045,22.6035876933048,2,41.90405230447007,2,148.47043761308527,1,24.434932000742748,1,0,1.6416640010087025,1,1,0.1979966629484575,70.70976406275794,0 +0,0,0,0,29.989642160330455,61.01768420722807,19.324200788810607,1,33.72162224690962,0,43.75949999465118,1,53.93779091917133,2,0,144.8126034230618,1,0,58.40841245639444,41.1003921647504,0 +0,1,1,2,86.1577596447431,28.22187962024165,13.351223502849162,1,15.74551846770414,1,18.534853053653663,1,15.112653635965,0,0,4.104487824173181,0,0,32.27562778552085,95.85351666662947,0 +0,1,0,2,60.81708658050805,5.224126437792259,47.87168712451839,0,58.37511584746645,1,10.057914913967908,0,41.99334305375416,0,1,18.31597140870897,0,0,25.813246611738748,3.056017884188622,0 +0,1,0,0,36.64779727914077,50.9241832492264,64.01333312728127,1,10.493969907457585,0,43.793874380323466,0,31.959371043090123,0,1,43.33152514208764,1,0,73.44778900295253,12.619982723524824,0 +0,0,0,1,111.95212259680277,85.58566463773217,43.816957578406,2,16.967650154328783,0,114.50152462183851,1,56.58401046012786,2,2,3.2728775566727206,1,0,62.08035474556621,10.029942835030282,0 +0,1,0,0,137.12039769653848,30.34907628195324,53.67731007484182,2,44.37327959926851,1,5.648305412003291,0,5.365736655732,1,1,29.468316277978023,0,1,10.44153946041898,75.43734931545225,0 +0,0,0,2,110.9720411200952,12.750386715977584,22.28972948943117,1,47.09142783550043,2,45.99047550815924,1,100.39830149103253,1,1,18.11010899708789,1,0,16.186218092516896,19.57756261119633,0 +1,1,0,0,24.51660340878716,27.775139978110317,86.83623761897613,0,35.40228108216476,1,8.395895990311613,1,50.3956594068275,1,1,60.41322472489604,1,1,49.56358570711564,95.66984819381268,0 +0,1,1,0,17.325534605003313,44.58464098861266,63.35388527386488,1,19.24969444219361,1,73.65496817303583,0,73.08762525044324,0,1,52.07721085020201,1,0,7.576669976114331,69.45972882551044,0 +1,0,0,0,132.64930456644612,39.66835827537936,4.807437290450661,2,34.752332639395306,0,56.01776393434456,2,58.72771193106512,0,0,7.678695667120455,2,0,5.085535570015731,26.926418943648468,0 +0,1,0,1,131.78456866278967,43.54859460322876,29.3904046228412,1,15.428614258419222,1,60.42255581490363,2,84.96903956203423,1,1,28.02992312231768,2,0,64.73974109564656,1.794921257270532,0 +0,0,0,0,14.530686288850536,35.34211237651563,12.63654167909844,1,4.251067237161188,2,92.03406853904347,1,97.1773591421672,2,1,16.33224490548462,1,2,45.66977691689703,60.39427574775833,0 +0,0,0,1,135.22895422627732,57.98424455656912,64.40579887167519,1,29.42878049148997,0,65.14232688944425,0,19.815857287592134,1,2,34.496040484657414,1,0,27.17422116514725,10.4987731787406,0 +0,0,0,0,43.63356244147304,7.329500210500973,23.71340497265642,0,32.1402210507883,1,138.33407441430637,1,7.035194748791418,0,0,26.70228600633728,0,0,24.37049698656481,82.84104772955153,0 +1,0,0,1,112.30550004586992,19.29584657948893,18.641536312575184,1,15.305705824929715,2,135.2344523032226,0,49.89625548820703,2,1,46.50466923126571,0,0,80.61878440381287,35.11579648492316,0 +0,1,0,0,56.04177921065767,40.00746837657666,25.115432498838903,1,40.4060725631628,0,37.20294522754521,0,115.06457683984648,0,0,12.093690034114283,1,0,34.87415726172504,93.93491305982872,0 +0,0,0,2,24.87598153295,30.50594342819288,39.41046429066717,0,11.362931464044134,0,63.86104737753768,0,52.54811221835974,1,1,47.5517187602154,1,1,45.34103082696118,75.23978977051712,0 +0,0,0,1,69.070001933229,48.58957223172997,70.24387776227734,0,40.27371973265859,0,50.74259630166608,0,22.88684830584638,2,0,5.735278845372011,0,0,54.614298943853285,13.259393284547588,0 +0,0,0,0,85.3189888499756,28.15866765594847,24.506771564292663,1,9.71780840515984,0,83.8741245679142,2,86.55521793880789,0,0,31.64273331156523,0,1,44.869494127060165,44.15777234755671,0 +1,0,0,1,107.58861536286182,5.448080515282394,66.79792589375501,1,29.77552580266416,0,115.91039800026122,2,69.74255985647434,2,1,66.60487718307876,0,0,43.61407718251274,73.54462879873819,0 +0,1,0,2,97.73520752208424,70.23249031449633,87.20757915041168,2,13.102341206726702,1,74.99557416385416,1,62.524372045374456,1,0,34.71271462808391,1,0,62.8064954963978,122.3156238933375,0 +0,1,0,0,16.992156008912602,48.75024991801765,0.870527634989704,1,1.0386583919154924,0,74.91442151407577,0,88.20456409520038,1,1,31.311487493755187,1,1,43.06835351366453,74.44122576613665,0 +0,1,0,2,92.26054850587202,43.20067128590505,5.900418102815324,2,13.94724545003717,1,9.816485404060554,1,82.99418058079463,0,1,39.26010593886671,0,1,19.552069266323624,21.521831777645744,0 +0,1,0,2,92.55557635335408,5.862785630218448,39.312804502797285,1,16.8239789072682,0,47.21263655984014,1,114.30827735113812,1,0,49.52867022842655,1,0,2.3809064596931995,37.0834691349231,0 +0,1,0,1,85.50079995218191,28.60230975724448,10.57104632659836,1,71.67178235057675,1,144.48359838398312,0,6.327458500945349,2,1,4.345302281259822,0,0,14.583717436416729,42.93730075378137,0 +0,0,0,0,103.91014215340633,32.85801914422174,13.627180637423264,1,44.5479866019136,1,67.9757400186237,2,62.906650277740944,0,0,49.84607107162067,1,0,37.84494652224255,64.91810166361672,0 +0,0,0,2,77.19638543964226,32.29812226391597,50.77852189881833,2,37.980964664787535,1,91.7678910009584,2,15.86488182151014,0,2,27.84353275082104,1,0,87.03983003965736,21.409439917298588,0 +0,0,0,1,66.98167638000581,40.18817350119261,8.095434110828691,1,16.20296476457675,1,55.696062561161256,2,29.10989942817297,0,0,36.65393623228037,1,0,89.75508408914625,45.55068174968004,0 +0,0,0,2,144.88588764779618,31.152350320420304,15.425793502574486,1,15.667289786575203,0,67.63915421029,2,94.89370380785388,0,1,10.468234625070188,0,0,44.22721526134254,76.61112852329903,0 +0,0,0,1,69.51129324987265,9.410383652297332,44.370655794759216,1,17.38211347922646,1,25.46058271671044,1,86.10636238719347,0,2,34.214333321091054,2,1,6.027194039938766,69.1328983053135,0 +0,0,0,2,49.50539667964144,47.91958965610343,22.451940647335373,2,17.865117296962772,0,74.90669419017799,1,28.541412707954237,0,1,73.31933095850273,1,1,64.6064190863338,2.920289454369729,0 +0,0,0,1,67.89537785737357,28.200784033805565,38.16384278468914,2,1.9468448329912011,1,58.56848284319584,0,91.23359483130903,1,0,96.56130349051428,0,2,22.271879940075955,30.47951243703257,0 +0,0,0,1,88.1642805083215,7.092584841736127,45.36714163611377,1,40.66172692770121,0,42.79787204430495,1,31.236838057038096,1,2,48.789156000633945,0,0,34.073989670318895,56.51443007387212,0 +0,0,0,0,144.86037800685904,6.483053398073846,27.92153916667445,1,33.32615115748957,1,27.34587000493096,2,96.3933395207831,2,1,40.41853074717868,1,0,25.789791624507508,14.627504518507594,0 +0,2,1,1,84.04596037406449,43.32672292591261,16.131193475037993,2,37.82965143222821,1,81.7333643468181,1,70.37752875536015,2,2,19.92619731282978,0,0,0.0096225093259794,93.43728596867228,0 +2,0,0,1,79.64658955889676,13.872854261692114,46.14190759106204,1,3.664509465451893,0,75.26572653827057,1,11.195699754204796,1,2,41.93919179225999,1,0,11.686033299025494,0.7664868541875647,0 +0,0,0,2,72.97969416035636,33.06800969544451,40.221329019851446,1,8.356344101764424,0,55.06878339865079,0,53.003075680919935,2,1,43.16660006331669,1,1,36.19059344729672,44.65282833814122,0 +0,1,0,2,132.13812112455463,6.997895653624159,88.63440378722012,1,14.440685747996106,0,101.3576120761374,0,0.912207278347188,1,1,13.66721950211048,0,0,41.6795248392712,29.163010012029243,0 +0,0,0,1,58.02412140824551,77.76739611806576,29.24873850109809,2,39.14354000240367,1,116.88892792610224,1,72.58774919078921,1,1,40.99460521650021,2,0,66.70884168463559,40.1456085856546,0 +0,1,0,1,113.7794925078276,40.00731309237267,48.90684269547383,2,17.048645235213844,1,31.74774459357169,1,101.38309003708574,1,1,27.68592276012135,1,1,18.779499323193825,71.63865488294576,0 +0,0,0,2,85.34779616360758,34.164743276010725,37.627104754670654,0,24.793945443597607,0,114.11452635270436,1,3.370737753769426,1,0,63.35169503872805,1,0,85.49628052417772,25.753072986766057,0 +0,0,0,1,26.6241679299765,1.6885862780652403,9.491294675475563,2,47.81519239376016,0,68.77917968498507,1,106.48465950496056,0,0,76.36264188113739,0,0,36.17571392591809,12.976031787671731,0 +0,0,0,1,21.64158633450833,14.646946032890684,95.59918546578837,0,3.208667490836897,0,11.236634558759572,0,89.34292097093356,1,0,58.73490765747185,0,0,13.705702170517323,57.75147196897179,0 +2,0,0,2,97.45407961690866,49.28271892831527,12.520311059264728,2,37.202890468395815,0,60.44008541857293,1,54.031086233660034,1,0,39.08901033437863,1,1,38.39591944588951,22.328026738277785,0 +0,0,0,2,33.94868279428649,35.99402010378129,44.84624407911575,1,32.32085589175763,0,71.76637209722679,2,126.67208266712684,1,0,38.69932686028061,1,0,45.39660088823369,119.84635151039444,0 +0,2,0,1,129.98588077165732,49.09596983803179,9.76845802086756,1,33.51973653707796,0,93.79255218759462,2,24.889260767354944,0,1,47.42517304005144,1,0,10.343018740654658,68.66847585411789,0 +0,0,0,0,68.40777199723982,10.330510363626257,15.712798645638877,0,75.15694157435377,0,69.62152922625364,1,68.75246153591823,2,1,10.682419406275995,1,0,13.10609717289742,58.81931571596897,0 +1,0,0,1,74.84170045867694,4.068980428493429,16.054672382969965,2,42.91692238337127,0,52.5903094491008,1,144.81808987271148,2,1,25.67254095699746,1,0,0.2770808982907657,26.67786285621729,0 +0,1,0,1,86.37440288633101,31.521295372863573,25.039541622869866,0,17.188879052046573,1,56.292085610893125,1,51.26184070684906,1,1,38.99209030927507,0,0,8.770916126849288,96.60584819176458,0 +0,0,0,0,94.18549122333886,25.721132533960155,19.90407562922504,0,19.817841807673677,0,89.47259251269564,0,11.153899404935895,1,0,98.20801448748485,1,0,41.050788186069866,92.5152366689994,0 +0,0,0,2,68.87224357978805,23.86620431436074,28.51948124861425,1,7.869223515269969,1,56.050712904199735,1,88.95544768064741,1,1,46.27216002706752,1,0,69.45224838954205,33.32684595969805,0 +0,0,0,1,91.28746415645418,24.122047709357155,34.77034438508313,1,22.921562562066672,1,38.79709446322971,1,24.06697493954228,0,0,13.485276104855677,0,0,126.27936773246748,23.53898024999309,0 +0,1,1,1,3.8682339315467273,34.65149428333854,88.84540325265407,0,23.66844741956123,0,63.59816282995385,2,12.094183955341675,1,0,4.187513342775912,0,0,39.797770159179095,22.30416014125993,0 +0,1,0,1,105.78830968347695,41.65423303444712,32.90177581711078,0,4.711091605822726,0,20.38718221363527,1,20.33675089666192,2,2,46.9269265234956,2,0,136.5327051578212,145.72534376990248,0 +0,0,0,2,67.72644895378728,47.71255901176263,0.2528638589543219,1,39.38595585650811,1,120.25644020755324,1,1.2968049367388768,1,2,36.11801111648034,0,0,20.634642516787498,3.026657025287732,0 +1,0,0,1,26.548868736638383,45.60433414754481,67.84697089682663,1,14.01253985260436,0,35.10490491939224,1,117.42452478129194,0,1,7.0015180058514535,1,0,21.35704003821327,87.25924889551989,0 +0,1,0,1,68.38212166583195,37.63914844008505,59.90994216004415,1,59.59051267460869,0,49.81428319156648,1,147.2869404994233,1,2,6.44359706947602,0,0,4.833496155059224,82.76297546143816,0 +1,1,0,1,7.141336319811753,5.27458508634443,88.58760867083647,1,72.1102680452378,0,133.68282361320735,0,13.978134324495224,2,1,95.38387955526078,1,0,40.4035311784941,28.516511221471667,0 +0,1,0,0,53.54936324631836,9.31361354139923,16.45163480089127,1,27.714728045195976,0,20.77378855737509,1,55.86557066208657,1,1,85.72273046503835,0,2,36.20310922384187,34.38010640148229,0 +0,0,0,1,72.29663857686026,15.794942920199324,9.330734881829722,0,7.6291414877567965,0,29.35286978444367,1,42.54166490811786,1,2,65.74537138478178,1,1,28.42967368237941,31.37204887624318,0 +0,0,1,1,45.654440080918,37.46155488587563,23.28261828045204,1,41.29430218535661,1,40.6014645471028,1,97.03669276107638,1,0,75.99206044922812,2,0,74.63682245157804,12.60710760653762,0 +0,0,1,2,3.1260620386016846,48.29323581212368,37.84686852751051,1,47.80872641147453,1,119.46693485136598,2,11.478387971136932,1,0,29.570730668299436,1,0,27.623094671790227,98.90001490133956,0 +0,1,0,0,57.528242440258886,39.96833167458733,9.525191988179415,2,2.007505044300384,1,2.838771069105006,2,51.31245177154016,1,1,44.33908307752669,0,1,61.66925477231861,3.188685630874133,0 +0,0,0,1,135.12227749255206,27.731154810812274,22.749201914406505,1,20.15194070462769,1,60.93657048564954,1,37.60219409300493,1,2,16.74979329196068,1,0,54.72502592302684,47.3187698100503,0 +1,0,0,1,22.88867933919963,26.09230222073488,30.252001858889777,1,10.550238935424716,0,4.194831154302015,1,7.968494553994054,1,1,58.54523351382001,1,1,14.92272006782533,90.5420880701367,0 +0,0,0,1,74.03473327397651,29.82884087330814,39.11211504927675,1,57.24846127785538,0,66.59234952704438,0,139.27720358392125,1,2,75.96833939949497,0,0,45.377793749404496,29.53653450868708,0 +0,1,0,1,45.84794946093006,32.19121363226078,11.583811494147051,1,7.064807686905778,2,87.19091255681744,1,66.9624868577351,1,1,23.1477937325468,1,0,94.92738129650976,10.25923280983081,0 +0,0,0,2,96.23827309948004,28.39590900018949,55.8746226482323,1,36.59665388361428,1,12.204139988926732,1,119.9352999764096,0,0,42.25986204511575,1,0,25.513852481093824,24.04512376998025,0 +0,1,1,1,75.45964963786004,9.636628280269347,38.393468691221805,2,35.5876859697897,1,46.254536397896594,0,80.38319710056642,1,1,19.67748505875692,0,1,95.0334852890471,37.40429940434219,0 +0,0,0,2,139.31413795146167,40.6455891746686,116.55846307099787,1,12.44274502457568,0,34.53186630885435,0,34.81277424147933,0,1,28.50469894820803,0,1,23.428869506378486,91.17203583921308,0 +0,0,0,1,22.813240258755584,42.95620982688422,50.83874487741297,2,2.0374060338585465,0,78.57323927759018,1,94.78974786815428,1,1,48.98589247683152,1,1,7.016926598095546,11.93009961680126,0 +0,0,0,0,42.16122838861144,23.897153096686765,41.22933068280338,2,47.67670950764328,1,56.16701378931054,1,23.467129302018915,0,1,20.49290598411463,2,0,45.983066267870456,113.11737885695264,0 +1,0,0,1,26.086856245715857,49.87470755339548,5.294413394774022,0,17.14885360094082,0,78.0304922267926,1,59.635519775761054,0,1,14.37677188207288,1,0,37.0162378357073,80.18783275741555,0 +0,0,0,2,28.362245571583884,32.74370912910249,15.010556870539435,0,32.469456646735765,0,130.26902481776824,2,132.7352740909857,1,1,42.6583531493929,0,0,8.359219042724547,71.3466646258114,0 +0,0,1,1,46.91923042266043,37.513036118562944,30.28884687789475,1,96.18952160220148,1,142.66147320165393,0,64.80934806688154,0,0,78.46575325376543,1,1,86.40831251992736,34.4043568178597,0 +0,0,0,1,27.03421518083361,36.66254744755622,26.679431417032816,1,17.877694452294186,0,82.00097140088855,0,72.4548610504094,2,2,70.60679743406156,1,0,65.3710667357008,31.22999703578756,0 +1,1,0,1,75.85719822788431,23.920889516055237,5.100218106874172,1,49.43424370173039,0,89.91886734606754,1,105.39063840668511,0,0,22.004890357043493,0,0,2.005232748140667,6.487329527492963,0 +1,1,0,1,63.27968458319218,5.362787745153852,22.670063148288733,1,38.405024060327776,1,58.17023177864683,0,86.52219033900445,0,0,49.62140157492777,2,0,32.59531053488941,134.29280888482873,0 +0,0,0,2,23.08675380686112,17.438529343841115,37.12538795541322,2,28.912436475278863,0,11.189202728131686,0,4.208893759350607,0,1,63.99092869819098,1,1,38.14163618645187,31.465640958910225,0 +0,1,0,1,86.06735082915836,52.56254349409177,7.212588950559429,1,38.987060371125125,1,14.099245731358462,0,105.6210113094978,1,0,95.2115955075071,2,0,39.627662748767925,32.7244492361277,0 +0,1,0,1,74.61222184226929,48.58052277711669,78.4131511631456,1,6.3366513521041945,0,126.09673003662652,1,70.24609064942814,0,1,62.97778732690684,2,1,42.14654741485807,96.86902516899607,0 +0,0,0,0,22.794605401697048,93.33728465461044,17.995740496604146,1,33.671812502680886,0,14.124365391960565,2,130.9052693150087,1,0,14.9417710237342,1,0,37.35297665111828,78.11366276569635,0 +0,1,0,0,91.77547670679796,15.644689950229813,74.7835987521106,1,42.60153258062493,1,7.527527189873634,1,79.63472172624591,0,0,37.878195381799024,1,0,27.67067047737249,13.43147246685265,0 +1,2,0,2,21.70709063249707,6.580660210597383,30.61384595356277,1,26.1826603105972,0,9.780570048841414,0,63.027248981291976,1,2,88.32742766083408,0,1,76.71658075631515,38.84071161392462,0 +0,0,0,0,79.30139967371318,35.33537168885344,1.731741731264819,0,10.72125691562668,0,87.9273785682996,2,78.37986613529102,1,1,36.3171808958596,1,0,2.4153315829473057,146.24087988654188,0 +0,1,0,1,52.69787465757939,44.54752426887071,21.988635886130847,1,64.19501713670927,1,59.4967674219466,0,84.44613711319944,0,1,15.56433281582782,1,1,9.178283113317976,37.06418892516388,0 +0,0,0,0,81.76287913493529,27.73013490805883,35.838580099212706,1,35.9535799511252,1,52.62341500774595,1,55.41508949842629,2,1,35.047480914574855,0,0,40.02177606594836,15.984867615172965,0 +1,1,0,0,131.7734713253733,46.68604461930252,75.64473040233166,0,12.510960201648864,1,86.34173970046501,0,140.24672880630607,2,0,40.99134027849256,1,0,5.639350299773771,66.27083941472443,0 +0,1,1,1,22.434466635979017,33.811283748971654,106.09748517808292,2,0.4331090420790717,1,60.75501198868476,1,58.333469870632754,1,0,72.62522269982037,1,0,36.09760343821699,46.31341427107534,0 +0,0,0,0,56.595963263093374,23.06531515484132,28.58315429794557,0,32.15704079214524,1,62.02928541582597,0,71.12090610647498,0,1,4.130381998746318,2,1,10.243531997593983,52.74218153702278,0 +0,1,0,2,115.4217386814444,11.366678799844593,40.963536810553066,1,4.123421986712605,1,62.71768882965495,2,29.301547685467902,1,1,27.55894384534654,1,0,54.26608542772561,37.61611401666351,0 +1,0,0,0,5.375790296997085,45.20286833772192,49.57738431317189,1,13.994703976529422,1,29.209074827506356,0,5.24539994959553,2,2,5.501812900267955,1,0,22.460144223965305,64.53754128817103,0 +1,0,0,1,3.997981230828024,80.39571880401745,41.92552369151806,1,29.262392264034265,1,37.28894040535371,1,63.43925606341026,0,0,32.57505880564927,2,0,87.35728646724974,25.640987166084543,0 +0,0,1,1,73.68688634443839,28.093144980835238,82.79148811621512,1,34.7459046399288,0,68.3592375655236,1,39.04831259277216,0,1,1.823132412493195,0,0,70.41736885331665,16.174814893419377,0 +0,0,0,0,76.95837690941511,2.83441055861669,31.59646890188409,1,14.0896865052946,0,26.21904504858844,2,85.6326815423579,2,2,21.08797223854436,0,0,97.7755041736503,40.79109910185877,0 +1,1,0,0,20.277712726030558,97.99050274693592,15.23590931043382,1,19.508932346755348,1,76.73197402594259,1,111.20045575664454,0,0,28.380270887184423,2,1,12.489982844440284,60.79820336838589,0 +0,0,0,1,113.7188644288631,14.903610786691646,82.57779101324157,1,17.201011850985154,0,66.9087262201239,0,53.79572519920306,1,0,22.684132627866944,2,0,67.13326005780729,10.693419543068517,0 +0,1,2,0,18.273007505873007,61.99921594831928,40.2337154223866,2,42.43139216718385,0,37.637103119641445,0,58.81795259656728,0,0,111.0787002823672,2,1,33.252762054457484,23.403773323264907,0 +0,1,0,1,92.97212486554145,39.111006833443184,93.30772174311804,0,48.259187362181926,1,53.88874046992322,1,146.41722718631956,2,1,58.87373007768104,0,1,0.0613391481767644,99.74995895046108,0 +0,0,0,0,62.046977892455295,38.58677074855166,16.34328543952292,1,72.80286537905445,1,12.95920931642225,0,71.78310625517955,0,0,48.90370517390346,0,1,41.36335999612837,83.25441302014833,0 +0,0,0,1,67.74565345359599,47.4880057774386,67.1399789419072,0,14.09177213626508,1,18.735574467849165,2,18.37212838617698,1,1,35.53423710942118,1,0,48.94328740265961,97.52631372466472,0 +0,0,0,1,90.9206635355956,38.67892218045737,13.690492691771649,1,81.91516261979906,0,66.29070963640737,1,125.5453980545916,1,2,29.65459362918669,1,1,26.84528267461907,10.647095382530614,0 +0,0,0,1,32.40190638170862,31.507478957106063,18.87741372649686,1,18.19187974042252,0,18.19659967580581,1,81.5652702589012,2,0,76.33523255773227,1,0,88.65515269434572,41.95386404993006,0 +1,0,2,0,94.31084949909842,14.89457303724776,32.131707856800226,0,20.218690545293175,0,107.89478447247797,2,55.52725223143085,2,1,32.06909995264051,0,0,11.383794389471191,113.15420158315838,0 +0,0,0,1,48.31120067069967,41.95268405060074,36.07333782117792,1,46.76952323647859,1,117.36745716488956,2,41.637080451212285,2,0,70.22466579767337,1,0,48.73371052293008,79.67251101751864,0 +0,1,0,2,74.67559900949965,23.591996909821493,51.11006724651016,0,49.36026276471027,1,5.608007264461063,2,81.10390211649147,1,1,61.176400175585215,1,0,73.68239465553813,11.142111519578318,0 +0,0,0,1,85.1122649321069,39.7526100487649,40.05977729972947,0,12.49266873347709,0,95.22543012343708,0,35.17957496378706,1,0,44.46206693630572,1,0,53.0409665632675,1.569112062338529,0 +0,1,0,2,44.176049800162986,24.880188512770555,99.67113990793251,1,70.68610298251353,0,58.21647724933537,2,45.46360349165846,1,1,91.12398889211224,2,0,46.13956682757049,3.0985451467765825,0 +0,0,0,0,84.5102598787719,34.48519967949533,69.46703509324301,1,14.479118314663095,0,16.114578168083536,1,36.010855612091724,2,1,46.50141694334612,0,0,35.43444257553988,35.27664813363991,0 +0,0,0,0,48.97246518951133,66.62641906862947,39.92756530721032,0,18.340890819312754,1,42.39566949780585,0,43.06424627168207,1,0,2.288670884188948,1,1,44.20545533200563,22.09317634770065,0 +0,1,0,2,85.96443867559111,2.097346758829449,42.49054284346352,2,20.088530651921737,0,29.857275774844343,2,59.15640349668029,0,1,7.299974073234633,1,0,21.53190333920969,64.89817258614572,0 +0,1,0,1,39.87048296738037,33.64656722881157,3.226899083686402,1,24.708830762206706,0,6.92717308993025,1,89.32202155021186,1,1,63.68805374537709,0,0,29.643329688914527,39.33879869956595,0 +0,1,0,2,66.93330910120144,30.86092130424966,46.82668318917303,1,43.29718377394002,1,73.76742951626824,1,31.50410384628519,1,1,87.9278424097421,1,1,26.43342434625435,83.13982348356208,0 +0,1,2,0,83.93166011944919,88.94317419292516,119.20535602047217,1,19.377786888695496,0,53.39130964052149,2,99.7164332597698,1,0,12.89995147840372,0,0,30.236911222249248,9.693520859056592,0 +1,0,0,0,15.620553096752388,49.99253246071124,18.049095825320133,2,47.445521524535,1,76.29082330598851,2,78.0352340326443,0,0,2.962227727840816,1,1,21.751450160246065,5.519285843540245,0 +0,1,0,0,38.90192687132102,1.264279961651671,59.91450493413917,2,17.493308684080716,0,53.84269570861692,1,143.84303547042066,0,1,23.09698858769219,0,1,32.729960800719404,44.64960205875496,0 +0,0,0,0,100.4238549276106,40.874186292559855,21.906710066297343,1,8.831823145760637,2,57.73731621812541,1,3.894736472945748,1,1,38.75859085266921,0,0,92.3018174228162,17.533123347879233,0 +0,0,0,0,85.7623797321303,29.64433011369113,21.723707447675928,2,94.8016324649358,0,23.720970135914037,2,64.44176551386462,1,1,3.185418689206465,0,0,85.23648691578985,40.24236171690207,0 +1,0,0,1,62.10280417013701,33.73756031370404,87.93694660694572,0,41.75155469662734,1,32.459558898341896,0,2.038673367835714,0,1,5.329506007494212,1,1,22.52843327677808,25.51667251903289,0 +0,1,0,1,82.33459245380718,22.816980813698866,3.661616444463184,0,142.1866001223391,1,69.80756614549708,1,51.88577120362827,1,0,93.7544361897322,1,0,42.889185548589246,93.03226389454116,0 +1,1,0,1,18.19103950036432,26.773680284563987,7.997216952551678,0,9.383291344407477,0,38.92204586949852,1,45.790698956746425,1,1,75.2469379803999,1,0,57.36785087781088,24.41311907141882,0 +1,0,0,0,92.8053987942356,127.73435383155704,37.63707106553942,2,1.6593608873870014,1,79.17565649675099,1,142.2293408399106,1,1,2.0147893829706334,1,0,13.01490591684758,146.04909158072618,0 +0,1,0,0,29.410093756994883,27.75470849925036,7.283383919306818,0,26.47359728867651,1,69.23335861985254,1,65.28805314042776,1,1,43.99466918316083,0,1,44.53831895407048,41.18718486203821,0 +0,0,0,1,29.415291278609203,52.325699292789245,21.901626159251386,1,73.5104940804147,1,49.558211010259065,1,36.91302690274014,0,0,13.233397835266342,1,1,9.245953005538285,40.8358333236199,0 +0,1,0,1,109.18023089960232,34.45302061562986,75.83946621660125,2,35.97629481487847,1,27.24947323328384,0,82.58432252944428,1,2,49.61973726483559,1,1,114.73706626085315,37.30530852074592,0 +1,0,0,0,62.94519470470928,39.19531304736688,44.68681438745893,1,78.35841262724608,0,4.794062434949176,1,64.74785247045264,1,1,50.07412377398689,0,1,31.248924455202783,108.2511943661504,0 +0,0,0,1,64.50938794373486,27.170379366581905,6.815274412791872,1,2.3747875240710536,0,25.25162756921594,0,96.35166430070473,1,1,51.24917984404985,2,0,79.4703022352995,21.301138027173938,0 +0,0,1,1,51.32431651982865,5.298971519735446,99.27850630392996,0,15.036604561649952,0,37.38257023076418,0,46.06698262684069,0,0,34.443629309765925,0,0,15.821940447856647,34.60199417925668,0 +0,2,0,1,35.5621182175416,47.35824525503081,40.175159699256646,1,3.29332518939765,0,91.48279724597516,0,20.71925213955277,1,0,86.1051954464357,1,0,41.72652407746573,58.28525609821392,0 +1,0,0,2,80.70445491859252,46.98741922825699,45.33847445818719,1,36.36688305955427,0,6.515461262370936,0,68.28074926787332,0,1,30.73714658586793,1,1,45.9805162594165,39.62823669945647,0 +0,0,1,1,90.55011790140064,30.28217365962474,15.415949611619324,0,92.490380992907,0,14.294122733823627,2,122.4293287035994,2,0,73.6468016118431,1,1,9.352411183993452,97.78026056371264,0 +1,1,0,0,76.30809832795362,43.89731881848349,40.87351294558779,1,85.71724169780322,1,51.842536338526905,2,74.4779220859202,1,1,39.57248500304029,2,0,25.99887244387643,96.64979714540176,0 +0,0,0,1,80.18566764756733,85.57855908169009,2.8437095719572483,1,49.901204061168,0,94.00587900480096,0,128.96739776944338,1,2,11.854527037603509,1,1,14.755339567625814,68.92504151505548,0 +2,0,0,1,80.39254334063136,29.28717907927955,18.95649127227127,1,76.35388897413074,1,29.939215795143724,1,7.610162319796126,1,1,50.19164487672171,0,1,16.51880341703907,68.58580984254758,0 +0,0,0,1,74.97953384747663,49.765179838656,37.38735177591508,0,4.867596380956574,0,55.131118387397095,1,76.8328809320526,0,1,45.97432212836212,0,0,31.956091262288155,43.39590317775781,0 +0,0,1,2,60.82543033286414,47.85412607130065,45.89273769475308,2,7.577438652747731,1,18.29441538374674,1,124.7432159884972,0,0,33.523633693447245,0,0,34.062059725902714,2.665394275382671,0 +1,1,0,1,65.52586467091078,28.07476834445744,137.47265167647006,1,10.118746654800336,0,65.75112936855889,1,93.09463642997304,2,1,35.922636408335414,0,0,54.04302740986357,4.806706239442082,0 +0,1,0,1,70.38785998098348,49.56825518492952,28.140031162209016,1,38.35262348697834,1,59.08358020497253,1,11.337213928115448,0,1,3.480704724080208,0,0,15.46327623046353,61.215107973114,0 +0,1,0,2,88.56910331783207,47.78137451437305,47.1967514238313,2,41.70745301240855,1,83.96326060180246,1,59.7426529020037,1,1,40.24351017011451,1,0,33.415736518516006,59.12676385955631,0 +1,0,0,1,21.9648787433968,14.802782450678126,11.287846313955164,0,40.56517932265104,1,108.9862679631934,1,62.30288818913328,1,1,22.94329435731568,1,0,21.58512315629457,85.85749310982315,0 +0,1,1,0,20.424089201364943,46.88105861841227,149.38085104831308,1,43.38195667584532,1,44.58813103141252,0,50.96742811267163,1,2,19.88278098745458,1,0,1.9619771464527147,77.39350746816811,0 +0,0,0,1,67.58541893553456,15.917730104344214,13.236537922158814,1,22.261114540154225,0,41.5899632650368,1,137.61367703135588,0,1,19.29901116908852,1,0,30.35256970250456,13.002149197342112,0 +1,0,1,1,82.71169317889199,5.43546875644334,45.15243107399491,2,15.187234939370764,1,74.73421145029415,1,67.97586556745085,0,1,72.46255478156174,0,0,27.82242039721043,51.74581024103429,0 +0,0,0,1,91.3554749856044,24.700563387126945,105.53743068988165,1,55.09240472652126,2,36.25226095138983,1,76.63330860050702,1,0,63.673340439527664,0,0,95.12068579683223,17.084167411255137,0 +0,0,0,1,99.31497622504968,46.373975984023055,90.16167268973996,0,14.558789192784143,0,23.648509679265302,1,89.82576336016085,2,1,13.69559816914655,0,0,23.793577846620806,21.01280470856659,0 +0,0,1,0,118.04291219411884,78.17365324392638,26.46785266984307,1,21.28171769380623,1,57.44927611382358,2,68.28075125016554,1,1,17.241068538989783,0,0,3.895842881843908,2.641150338877729,0 +0,0,0,2,77.46814837760216,32.97568036690287,68.71948492752901,1,17.209933945027466,0,95.61601664765124,0,0.5754313641672393,2,0,25.107539218669668,1,1,59.45739481069092,2.2808671193167376,0 +0,0,0,2,145.25946479492052,1.3731091681613294,12.607663053080376,2,11.234777943420085,0,80.48591921115656,1,4.506268273772113,0,2,15.840325241951623,1,0,94.1318047447067,28.209127125335137,0 +1,0,0,0,18.096528273269293,2.82632522224896,90.33728935851784,1,58.0700905613739,0,8.89091430463312,0,85.5505523204529,2,0,96.0096095547331,0,1,37.87951483918664,63.91942263811955,0 +0,1,0,0,65.62960594374616,1.009905915342879,0.4517843407789212,1,0.4667708406572823,2,53.284796874193816,0,113.80720856488034,0,1,25.06287349615916,1,0,6.233618668863588,68.56566387056637,0 +0,1,0,1,47.27604333699622,48.73601774874808,79.00598964754954,0,32.19936326299997,0,92.81464150168613,1,147.0436002542567,1,1,40.97861710537564,1,0,78.15855142980848,21.26147705211056,0 +0,0,0,0,99.67746071801528,96.44276728678189,14.254769998054757,0,32.70827860813231,0,49.99951014271575,1,37.30192675430478,2,1,27.86651478042132,1,1,27.060128245634964,70.42402351091377,0 +0,1,0,1,93.79980181067974,82.26915419532683,35.864507848492416,0,39.12778153627952,2,60.46362672607327,1,148.82529531921818,0,2,22.772782101704824,0,0,46.26283444759509,72.84685474485548,0 +1,0,0,1,122.11580668008251,47.81933247046798,3.461711648053312,1,3.010852591343244,0,17.434561432375062,1,39.95146413285858,2,0,63.812608600892304,1,0,4.331574107470059,75.271701895659,0 +1,1,0,1,147.38837156400805,25.63136288664504,33.61875844457408,2,35.351365443851414,0,128.2669518508364,0,31.67493723720068,1,0,17.079425028908208,0,0,58.607768289513686,2.4832619332571584,0 +0,0,1,2,65.89709213435233,91.40663324854825,35.986064650743856,1,39.40882956121508,1,15.391897004058904,0,66.81823623161273,0,0,26.97150757910225,1,0,65.82191924018431,37.53054819211437,0 +1,0,1,0,28.45143951778712,40.732410057170256,10.90734155870941,1,1.1417797990496248,0,11.63610327693625,1,148.39339982636855,1,0,36.49494589853253,0,0,19.20521188968717,85.41086498190383,0 +1,2,0,0,62.31907682537472,26.738565163564758,50.55023833089546,1,40.06831589325032,2,74.45419433050694,0,37.86281507424168,2,0,61.1714213738546,1,0,21.368397727499534,13.809598526766347,0 +0,0,1,2,81.10888102513574,4.689692497459886,44.310745140291935,2,48.06980457554147,1,58.12571860304097,0,109.75072884448257,0,1,46.67101975120024,1,0,4.302883178225509,98.39484789667608,0 +0,0,0,0,10.090237062541863,47.507460877214086,76.44653401053156,0,21.89991100862452,1,4.059622202683672,1,10.238131369936736,1,2,7.071342150444504,0,1,13.566566443456423,37.41306679435314,0 +0,0,1,0,53.15716537991045,37.16953921688651,75.66791547303939,2,3.4889496158293065,1,83.81582818193826,2,22.928432054176223,1,1,77.12361144244797,0,0,26.759587060827663,79.95068918195363,0 +0,0,0,1,28.065141666539127,20.712650173150735,26.32081468663108,0,59.29400994743095,2,139.02810725868244,1,63.31390972218859,1,1,14.372183794973395,1,1,45.12896943471856,44.68805817375396,0 +0,0,0,0,74.90620199300098,12.446665007975904,79.16009402638105,1,39.075813536295634,0,142.84589666682905,0,10.51927604338223,0,1,58.48334736468086,1,0,87.68369000967043,37.803830978837375,0 +1,0,0,2,99.31171436241443,4.712441717438487,42.70611710363309,1,41.39072020264759,0,27.86942505094938,1,6.701636830946639,1,1,76.60356765491234,0,0,0.4678046565624205,49.16146159963023,0 +0,0,0,2,51.23299343694508,26.255805490594557,52.4950727602392,1,26.39091257089224,1,70.36308733910005,2,19.2522328232195,0,0,92.09086295319976,2,0,3.359552186340281,19.003906341573828,0 +0,0,1,1,142.2028065812372,24.131854478931498,10.632822150240518,2,30.96151188718276,0,49.379821420665046,0,45.88658262033034,1,1,41.53734578224673,1,1,79.71050870487022,9.830456648636837,0 +0,1,0,2,46.70500297904336,17.08567146949124,5.195333836780636,1,36.30062935972602,0,4.245964041678518,0,39.25866775720439,1,1,93.35220372590432,0,0,27.473480098991537,93.6973238672578,0 +0,1,1,0,73.90794433781406,12.044580582254028,36.52620828114077,1,35.52416624512342,0,90.28732171970364,2,64.75353001392533,1,1,20.799125669004287,0,0,75.59618456576898,14.895702377475606,0 +1,1,0,1,95.14166743370112,14.872861316001156,39.10217145453662,1,10.13996675336478,1,49.54115568256224,1,99.46402415391846,1,0,11.43003989743784,1,1,12.59755043805621,27.99300446847316,0 +1,0,1,1,43.76428092564172,93.24798875031072,30.80450497212245,1,21.89567376453649,0,89.55028779837909,2,3.3933934269403334,1,0,49.92172551376362,0,0,1.816765894853928,30.001146737057976,0 +0,0,1,1,76.04038702157223,10.430654036352838,74.61626315786975,2,7.719667119296552,2,63.23251116993617,0,23.975907806097467,0,1,65.68112820980957,1,0,23.629802564805445,27.601402734558167,0 +1,1,0,1,137.40220785464035,94.68364009328342,24.246169817095524,1,31.32027200795932,1,6.19665533837111,0,53.84504725564223,1,0,4.118211398878308,2,0,40.78015036334028,55.97022788062333,0 +0,0,0,1,7.801952317366939,35.36538922000475,70.75819935221128,2,44.881858957960105,0,78.51727536477269,2,20.741323966648352,0,0,39.91076611867156,0,0,146.15226671638686,26.459637349147748,0 +0,1,0,1,76.17126586675623,26.455935002320278,56.34858483909682,0,46.5648093837699,0,28.952198442482626,1,124.59320874348668,1,1,10.075804020230084,2,1,95.55129165721604,7.610031521821242,0 +0,0,1,1,144.61734175336238,46.05478129836357,38.62850361219646,0,6.970773908206795,1,90.65449984052746,0,3.929793876961463,1,0,2.28835835859062,0,0,23.253538432762017,60.54511576829597,0 +0,0,0,1,55.76126235035864,47.23451815015201,14.982701757646078,0,14.71421333704655,1,28.12518263772217,2,39.11471400411934,1,1,98.0245438103128,1,1,11.093732682356396,50.55700514777124,0 +0,0,0,0,75.07278001717638,8.264956950032465,39.04951897567743,0,46.64941351127973,1,14.678956756234784,1,42.18964932160771,1,2,12.75626690492609,2,1,84.20673699716339,112.14946368174508,0 +1,0,0,2,65.41918272050161,26.339912493484384,20.46506144506472,0,8.65356974677114,0,128.56890188499,2,70.26238297825738,0,1,21.959763035663364,1,0,32.23586514292229,57.49526252810993,0 +0,0,0,0,63.31137863717685,21.006333005251783,8.706942771849535,2,33.892243860568165,1,46.26183733467434,0,107.5968881657272,2,1,95.47412080233268,2,1,35.05186219162851,64.05909108447958,0 +1,1,0,0,101.27043840755316,36.553839024385866,20.46695170676171,1,1.7819639651097396,2,37.61236625370853,1,112.62521103101368,0,2,12.081465736775291,0,0,97.30269455030668,19.92971526230861,0 +0,0,0,1,70.34426345662045,36.86280492636272,73.17491585924671,0,29.333898987225133,1,66.64591734293361,1,90.31279003693813,0,1,19.793725108982876,0,0,53.11597962882421,33.380764974689505,0 +0,1,0,2,31.56850694610922,24.548572391051763,57.329234895716574,1,39.80199432419536,1,14.259771875252053,0,19.81665476046681,1,0,60.64685537408106,0,1,22.45332408624901,30.818870802472503,0 +1,0,0,1,4.492685819691333,42.85943698744831,48.138126615464905,0,42.04636954473647,1,57.36023697887796,1,58.73300014630171,1,1,3.093121902566631,1,0,84.31797935075082,26.64328573626727,0 +0,0,0,0,125.48063287245463,7.448206234169391,18.49581141258234,2,37.13671196110221,2,84.30200828790468,0,87.7538184718695,1,1,8.0235209083395,1,0,90.44801952412848,28.190092834651946,0 +0,1,1,2,56.59155828506841,31.0631964394812,12.619068131599098,0,6.228277800305232,1,67.51348469476946,0,35.14412890272713,0,2,88.94523536931207,1,0,27.079232119022542,20.599630671388464,0 +1,1,0,1,31.535337899211413,35.11717222365132,24.40857200491409,0,11.561838767622753,1,14.891529351051853,0,99.58327929163217,0,0,6.528157929303874,2,0,33.3488504948461,79.30541209021672,0 +0,1,0,0,71.56228149064897,46.673148881821255,28.871164952082022,1,7.529355837462442,0,14.847427566640302,1,143.70131238142625,1,0,74.27234435268107,1,0,48.884062035029935,75.73732809628375,0 +1,0,0,0,10.363935213213432,14.462683499082162,6.135584673029565,2,22.29235953043635,0,45.15663970452074,1,89.43468193513435,2,1,22.932529775981383,1,1,27.757438865138507,29.841640906486656,0 +0,1,1,0,3.7901635155038136,10.63781014341984,20.014821672682064,0,38.191556162428206,0,4.449344053481075,0,103.8266264656928,1,0,30.672305644062288,2,0,21.80021837550101,42.246282539374185,0 +0,1,0,1,41.75720392543354,43.66909865732158,99.29065768346436,2,102.85049580994723,1,29.388005578809672,1,120.86500423557229,2,2,95.2499801935908,0,1,37.44588202710572,2.688085546023494,0 +0,0,0,0,133.6614745696081,6.866630521469308,6.512231648470396,2,63.6155560522106,0,32.2651405783935,1,136.08831667682162,1,1,15.989141983815202,1,0,43.69650525708793,92.6517870490008,0 +0,1,0,1,83.36472127455758,6.759767210329009,118.67010166668472,2,9.081779219110825,1,29.872038958681884,0,26.2671978658207,1,1,36.9583131450644,1,0,1.6831097275017135,53.7209022142064,0 +0,0,0,0,94.65004976914504,22.557165630301736,5.312225282938188,1,17.71316554326518,1,90.4166271321052,2,55.04931271439208,2,1,32.59624849307203,0,0,52.857495930033785,42.64544076765253,0 +0,1,1,1,144.22298847913464,25.9023109475017,14.290855932339602,1,39.28777823121053,0,42.95468749465685,1,5.412308876741228,1,0,53.28145572976946,1,1,33.80055482422143,8.139876141250852,0 +0,0,1,0,37.45068530857175,49.03045933972129,28.416407520094623,1,78.61523257183809,0,90.48521834282226,1,83.35690318508132,0,1,38.364379726090704,2,1,10.882612584238272,6.072371086282541,0 +0,0,0,1,72.28254395029478,18.108460364659223,44.87330610289984,1,37.49650316610475,0,89.56976663281209,1,146.25957564974743,0,2,84.32013479195635,0,0,27.58518547729703,41.67118746414067,0 +0,1,0,1,71.26115353666833,11.59576002737257,64.78452322712319,1,36.03625785672225,0,58.90886166599512,1,65.95560718690054,2,0,27.41997998754679,0,0,90.74039159245908,14.960707148433444,0 +0,0,0,1,50.66314944130663,11.927906057967649,3.2637709318186268,1,20.329092401122555,0,72.7056611252847,2,24.221769902366013,1,1,42.53838251688708,0,1,95.95320664765578,1.1980377537191331,0 +0,0,1,0,114.37045247071526,30.7827575538512,19.00920258778356,1,60.19961155911464,0,51.717941052969806,0,55.93466607629743,2,1,32.40684767395175,1,0,49.26549192702785,49.242132100790414,0 +0,0,0,1,42.772627630586406,4.906888431641171,14.774117216970827,0,40.01025177010156,0,74.65736258734452,1,59.18941757762399,1,1,29.991967283254777,0,1,9.529557820203882,60.32957168556051,0 +1,2,0,0,21.04923923854752,72.15251230063278,20.642819904544268,1,27.542336498468345,1,33.88074625175632,1,149.8417621826848,1,1,99.38298032661096,0,0,14.73584003552489,41.07547767684039,0 +1,0,0,1,92.29842913162072,31.85073131649005,28.410311531410205,1,83.91353621315045,0,40.537921950440605,1,25.514829976788384,1,2,13.148414538374558,1,0,57.16546211373664,7.173373716671788,0 +0,0,0,0,74.21588278050325,88.56942200489232,32.68009393491314,1,21.36483830501045,0,40.30666501658074,1,102.78607275223224,0,1,17.041430643253808,1,1,7.265052768192836,47.85012785309933,0 +0,1,0,1,114.82631467670046,44.60632216931699,7.60069270507805,1,16.840508764557022,1,52.66043883372564,0,75.62571133947277,2,1,20.52622053952056,2,0,49.04158839910778,23.714346658905267,0 +0,0,0,1,61.19149373413767,46.43066975813813,5.531887494940174,0,23.861522930740968,1,25.396721223932968,1,11.348573901794362,0,1,65.11111790830421,1,0,21.268391644299072,49.77158388756171,0 +0,0,0,1,41.09852618119135,42.46779346804437,16.376088683314023,1,42.91495743424999,1,66.44141109993618,1,4.088903947563005,1,0,53.07452418300373,1,0,144.6541701494258,27.87319980520363,0 +0,0,0,0,21.89591286735094,9.6801723310599,48.29533231189544,2,25.28499530622632,0,149.97791705692316,0,88.08358626122312,0,0,8.3633576053868,0,2,49.1006168712396,75.6940900063052,0 +0,0,1,2,28.564393806702466,30.890816566235795,35.43873732640731,1,13.862506477445937,1,14.399411305233196,1,69.94462711874012,1,1,76.32281413096024,1,0,64.47009324957806,14.213214832550667,0 +0,1,0,1,76.3780705068246,8.209100862381103,31.26964979797468,2,31.43111478055692,1,67.07587095632329,0,92.31415524893043,0,1,127.65164541512604,0,0,67.66028560082948,27.41839382885363,0 +1,1,1,1,88.66867353805328,88.64557675499421,42.431447522440266,1,42.30556463548346,0,16.05381760362231,2,4.674417994840035,2,0,4.274577957963061,0,0,81.69347341177587,41.50893368419362,0 +0,0,0,0,85.07807392166625,48.13497214039466,49.06718726844312,1,7.766997791936919,1,78.17379608609754,2,9.631749143282349,0,0,18.599876386753795,1,0,20.1687972236675,14.01582456672436,0 +1,0,0,0,63.23932123836219,37.125080478585325,136.70853926971463,1,41.23224805673155,1,85.5413144191781,2,123.3977899074261,0,1,43.93420141383695,0,0,28.525910014870743,15.093992604056124,0 +0,0,0,1,3.0767787669777835,44.43267241559968,29.729846069164417,0,43.1066668318616,0,82.77904831952364,1,76.5779817226868,0,0,33.2482088077127,1,1,98.06718972139646,35.15955363705988,0 +0,1,0,0,51.90268245967701,8.141352584247851,44.3465725869632,1,22.1448287755768,0,59.65625820851626,0,42.34727478604256,1,2,82.13202176623321,1,0,9.372536186848397,20.32094188621552,0 +0,0,0,2,5.546289540574478,13.492389029581986,6.444333482139225,2,49.20093725875734,1,98.4503119253702,0,68.45690623906216,0,0,35.91388998603537,2,2,71.32109911262734,10.272222200597032,0 +0,0,0,1,4.245123292909458,52.27548158208624,32.902535392687184,1,39.53930152705416,0,43.61379571326464,1,72.72005612203705,0,1,35.44528230797584,1,0,14.658956608490591,3.7667735327426177,0 +0,0,0,0,58.43212543022074,1.616622912564375,81.79747082988546,1,31.93969333830524,1,122.95181388290824,0,132.61585284164636,0,1,0.0658608652374603,0,0,26.082179865712718,1.868118522247969,0 +0,0,0,1,52.70166406134262,28.651801596800013,27.713164814044237,1,17.57719081975041,0,39.51303606701753,0,13.939124868792163,0,0,93.09770108223503,0,0,41.57140309611726,6.992396536249645,0 +2,0,0,1,98.95292240091396,22.686960001371776,84.68341641143383,1,43.69015037793261,0,44.89379846568956,2,125.08624462520932,1,0,30.40659868360553,1,0,42.76267526953104,84.2478220032412,0 +0,1,1,1,78.90278798828922,0.8766840096039785,8.092810890034263,1,55.55695541636154,0,49.71628236525777,2,71.68077389559484,1,0,12.175994040761353,0,0,24.28542013889784,0.8457674549484762,0 +0,0,0,0,72.3513003882004,10.58650670586826,47.91187758773174,1,48.540032112664,1,19.79000018268202,2,7.769679139928797,1,1,53.75675363378585,1,0,97.88783071141752,33.95913723313099,0 +0,0,0,2,2.395827472445728,2.427799536363495,5.993844240067875,1,36.50862792001925,1,31.712747764947807,2,133.92532852076567,1,1,22.308889225714296,1,0,35.58678638740867,92.24869885215456,0 +2,1,1,1,7.828625160651787,70.35019843470478,5.697820787696228,1,44.27740846960191,1,28.65046873438675,0,48.05740451873588,1,1,28.554278241876546,0,1,39.61460455111413,43.08219681278177,0 +0,1,0,1,79.91317374391627,2.456820041306296,15.408407845016914,2,47.15566783161157,0,57.6353306655274,1,146.6126968277292,0,1,38.52599814634347,1,0,35.26509557497956,51.6441453144763,0 +0,1,0,1,96.49521433571492,1.6958943509451707,82.81681898429727,1,13.934245569691171,0,41.53380750822344,1,12.579966653879914,0,1,40.84874698713799,0,0,89.4149002089769,7.697093208659006,0 +0,1,0,1,104.12954338423889,22.25916885763932,52.82763267414136,1,17.601776076965827,0,135.26996448029888,1,84.89960157086622,1,1,10.157165963049842,1,1,1.3333916535292367,25.781269302520855,0 +0,0,0,1,52.97543124978195,4.863366105994466,26.751447758830583,0,11.59240331711735,0,75.0326198080599,1,15.617815055875932,1,0,56.422921224151125,0,1,33.2286142038975,69.87906454897697,0 +1,0,0,0,74.8940313261479,18.71313495966688,11.993758451487874,1,96.991614920137,0,59.18620974532456,0,145.4824520434079,1,1,32.92988778030782,2,0,7.34830518194603,4.982061457342884,0 +0,1,0,1,39.122894062435975,7.523005347834011,24.43141054389916,0,24.835273477231567,2,17.670992750721897,2,95.86480610965162,1,1,22.13381581839221,2,0,6.080459629521185,7.644167288010362,0 +0,0,1,1,94.5785491330015,44.37287584108383,96.35296147691668,1,33.28673846769669,1,88.19053672196674,1,10.048178866068918,0,1,24.962028686373404,0,0,86.99261242162909,39.74876483182419,0 +0,1,0,1,23.230568713987903,24.833288366953383,91.59557666827388,1,5.975855160505827,1,50.40720725069737,0,115.57107056852088,0,2,7.945238512347324,1,1,15.770930212802636,78.21016649989349,0 +1,0,0,1,25.43821847757815,4.399918750060127,32.81682744195319,2,15.860575580444186,1,97.42907220028248,2,15.801536979955928,0,0,75.96310360304999,1,0,31.731292498521466,9.008572594783942,0 +0,0,0,2,46.15416934273819,41.23365752696005,53.00747338728457,1,15.773113010179983,0,52.74846600065698,1,32.096284124352884,0,0,11.41286330600898,0,0,99.08256411216688,16.349959787955214,0 +0,0,0,0,51.21087579334832,11.977097868560676,20.2442598076497,0,26.70056381469867,0,85.32244897068887,2,74.76458546483343,1,0,8.401964909107724,0,1,83.66075175101749,9.023038666711692,0 +0,1,1,2,124.89034282930588,11.441317094287385,47.04525884513591,2,39.21678117740602,1,99.5846371507246,0,19.708299774983463,0,2,14.6152401472554,1,1,47.40478192408818,15.767578085039874,0 +0,1,0,1,51.000495584724845,22.52782840425876,107.44712098021463,1,20.462989183847647,0,7.136613514712764,1,99.805972260809,1,2,32.330535767021395,2,0,7.468157979758272,30.897123729389403,0 +0,0,1,1,91.29615786379978,3.0383779737804097,57.28515721077938,2,49.4817080346718,0,59.39701554827362,1,97.68393693693298,1,0,8.547372873414682,1,0,5.255462117768933,107.55491651465324,0 +0,1,0,0,18.054043902143157,30.308761434197542,61.41498074648611,2,68.40981413383827,2,43.05353077118586,1,68.77887475885204,1,1,83.1006736956809,0,0,74.03964705313336,37.106198789408914,0 +1,2,0,1,89.53431252216247,8.464503692101195,100.38496825341537,0,28.331019233164,0,47.05392440834186,0,70.5652486982326,1,0,92.96644840813732,0,0,36.44745480219717,22.30538772177628,0 +0,1,0,2,18.10652732733791,8.18631882527215,10.813191978283044,2,18.10446278832809,0,131.751291265753,2,81.35524663115581,1,0,52.08190471419229,1,1,55.58673708292151,6.982302112645894,0 +1,1,0,0,91.29571929955172,35.92473730940824,2.7926141635510824,0,39.532521972864174,0,144.4287702264653,2,130.19722568554306,1,0,3.078653291735628,0,1,32.83123139350304,49.1515389929312,0 +0,0,1,1,64.33943173772794,72.57252345857796,91.8103163036408,1,16.553393086771873,0,90.21682330871452,2,20.142654851419,1,1,62.20407599379151,1,0,10.328412926131914,9.47150425202598,0 +0,0,1,0,140.25573016365146,26.666914916026823,15.892023178981953,1,48.69687623763686,1,42.644813288350775,0,54.36026692307824,1,1,58.08831817488546,1,0,30.67335973365295,6.312262145287861,0 +0,0,0,1,25.688855846834503,15.921920930200962,76.36527926005417,1,21.1064017580935,0,99.69573212699684,1,25.046613107332373,1,1,0.6667034726891896,0,0,38.21468600836796,52.52328231857037,0 +0,0,0,2,119.41230232779782,72.3901228731623,73.01552296906476,1,47.7506549910084,0,21.858846090689102,1,10.149888514381905,1,0,70.05898598022853,0,0,88.79850750815035,7.613997100244941,0 +0,1,1,1,145.9522992725751,63.11397618919027,10.897091157108571,2,52.26507917539829,0,73.2969528658731,0,54.6462205141324,1,0,14.859111205360536,1,0,74.58981738998969,38.839308027999806,0 +0,0,0,2,64.34565130338883,42.82550551528065,73.48179082230622,2,62.584464793457805,0,77.28387073727544,0,98.52781159831336,1,1,29.522401241407465,1,1,35.056622905456386,70.99083601458901,0 +1,0,0,1,113.80705416516868,81.97484793933666,100.35291998525246,1,9.616954877107911,0,6.0532168493659615,1,5.579717542846652,0,1,26.402508253558636,0,0,96.3668620737824,17.453935709677594,0 +1,1,0,0,79.16431388344832,8.664848420007292,90.80935230374162,1,5.7812117786534,1,116.63687157629695,1,146.78626720442543,1,2,45.2336257811384,1,0,78.40686371221969,44.53947978384851,0 +1,1,0,1,6.6913867525416055,6.672209082665864,70.23258158330313,1,35.369148263764814,1,112.11970994941112,0,48.510214983949865,1,1,17.153804229325548,1,0,26.19098204966782,28.16955563512748,0 +0,0,0,0,4.144079727234101,26.96212365268708,31.739624160325132,1,20.150595124346083,0,90.42330818427318,1,48.17894699069997,2,0,44.26718642862909,2,0,98.97188401653636,43.40777846228838,0 +0,1,0,1,18.131566741250417,31.606598548398637,47.37430364498077,1,30.65177060187064,0,11.306975268062674,1,10.7436883073734,1,0,33.0465431773085,0,1,31.245498468405486,83.23790990523145,0 +0,1,0,0,112.95908998841703,90.32744670982257,29.23317361779375,1,3.94455041121603,0,54.82505576078714,0,71.19401159530861,2,2,70.37588660462947,0,0,15.566055202666067,35.9652057889425,0 +0,0,0,0,26.193875333566396,38.131205509858304,24.59614748830899,0,30.492965363528857,0,79.60380527150946,1,3.976514369700579,2,0,46.20501674560741,1,1,66.73752279016989,37.11088034715886,0 +0,0,0,1,37.52565701988908,99.12071176029424,51.259744098691016,2,24.20258316740501,0,22.293722942824328,2,147.3460016933766,2,1,23.18811441458356,0,0,72.60009611527494,118.50965821158276,0 +0,1,0,1,102.14961126432038,49.91497081945634,20.38264576901943,1,23.28923723673827,0,5.461441382720894,2,14.807042492694682,2,0,30.424077892177827,2,0,81.3337864737919,39.30738733601971,0 +0,1,0,0,55.74584169977695,8.91673342665371,120.9723336460914,1,48.63508550324258,1,44.412163797837536,1,88.29850817296332,1,0,46.00782223310346,1,0,2.6873707499589505,63.71092534332492,0 +0,0,0,1,76.18426586827503,22.562129878524008,33.23550041102631,2,8.038638655719755,0,30.009541132465312,0,12.832085330297213,1,0,145.12706741122193,1,0,16.74389495801491,88.8799840375421,0 +1,1,0,1,33.551808462432305,20.09226471946739,0.4478689545543923,2,39.28835015735034,0,97.25285602920532,1,73.05294106316816,0,1,37.9999761561554,1,0,11.084631481744122,19.7759980196244,0 +0,0,0,1,13.384756180400604,19.08281425286753,10.05485025787588,1,5.016103278460498,0,15.37451954026996,0,15.373316284525323,0,1,22.26981127818225,0,0,49.68607842721929,47.41113603454619,0 +0,1,1,2,122.13203879738076,36.28081851884632,54.89838596369309,1,37.21012211612925,0,77.90928422695075,1,84.06689965334493,1,0,83.41257265908725,1,0,7.495002082546681,32.00217502012387,0 +0,0,2,2,36.84004244488617,36.95843831587609,38.86827713304303,1,24.541249904190863,0,8.8679188084051,0,110.5794710791276,1,1,61.70106102139183,1,0,126.02641072984214,42.076741863651634,0 +0,1,0,0,66.81382627987216,3.6708236057018895,63.45456326584227,1,12.33246226868266,1,86.00703778884025,2,49.441060246795175,1,0,35.877569494437154,1,0,46.19407173530669,53.831636790779726,0 +0,0,0,2,71.80181698151621,49.15974454491845,73.54155044538007,1,6.19410290463035,0,60.897508763695335,1,30.63860500606046,2,1,10.384536480170054,1,1,13.12829684335506,13.82455475372139,0 +0,0,0,1,107.82824039072123,82.03570076671151,79.3267994045831,2,27.120173411802806,0,99.93953513332508,0,15.338455969581316,0,1,6.045194905759671,1,0,7.764419499508357,22.32006157540517,0 +0,0,0,1,42.572804020483545,5.811276093324119,37.63576995156075,1,34.97191958039316,1,65.60792288826872,0,43.72519494125599,1,1,83.54226926905616,1,0,45.558389477888255,20.95854283668389,0 +0,0,0,0,75.25598554534791,11.242598049970232,47.08385860455307,2,47.26592621378991,1,35.04936362689299,0,50.037527980677545,0,0,15.591753137400532,2,1,67.44693152786002,41.50558043050384,0 +0,2,0,0,113.11867323854273,3.993778430349276,38.09239588371395,1,4.710619497826096,0,149.2302639157421,0,7.005626222300432,0,0,7.254556003173701,0,0,48.49768431637949,69.51329370186612,0 +0,0,0,2,93.64553002498766,38.11192177860325,81.35520904985256,1,38.768085556056285,1,93.30362229554422,1,36.16768560189098,1,1,61.61015058880416,0,0,60.51983309446923,31.22278618068738,0 +0,0,0,0,17.916497581113898,7.312495076253112,41.6879352224657,2,32.70343321825992,0,36.39379720660078,0,90.10088688910326,2,2,23.40297664012253,0,0,2.868300896725129,19.50558121509168,0 +0,1,1,1,6.633678793366626,49.71918250541791,34.96719881420965,1,23.12952615064472,2,55.63099219259454,1,92.27930643345404,0,2,5.866158989805714,1,0,49.30513227519387,51.710592802512814,0 +0,0,0,1,21.00023257056383,5.052399792551987,2.0136499317453427,0,10.177843296679024,0,59.914277288441575,2,61.82313497944515,2,1,27.2317672226468,1,0,45.74039783843213,96.85397304556142,0 +1,0,0,2,125.9052652417423,44.53198857947046,20.014484266778343,1,44.128030177538704,0,12.057605591985991,0,86.6157459944834,1,1,89.95934258374959,0,0,13.690852401143244,5.84084296436011,0 +0,0,0,2,96.2030141318189,18.06809554674845,25.55005783824364,0,38.14725005827261,0,34.897713055099736,2,61.41827601236066,0,1,24.187302681921715,0,0,40.010904107538174,46.55520070464156,0 +1,0,0,1,3.360357247070189,0.366599213158536,38.5214289833506,2,32.527857061130646,2,5.744345814395779,2,28.912171604679227,1,0,30.69270728702892,1,0,0.1501384419405504,81.71776031360702,0 +0,0,0,0,140.9583704249834,34.67406469662659,12.320610374554184,1,17.786484434571854,1,18.199684600921163,0,79.26877425490224,1,0,77.35905234651142,2,1,38.86709344111404,20.18244804294291,0 +0,0,1,2,13.865623789187676,63.245674728994096,68.66252459865541,0,39.73317632378866,1,89.86608457081574,1,29.148932849188576,0,1,89.941263710195,2,0,138.76878754204068,45.75797620734661,0 +0,1,0,1,22.21688864323783,66.37547565093635,78.4517963469661,1,17.038818705763216,0,65.63000917238938,2,71.74817377900725,0,1,22.50308294253964,2,0,43.89177151844534,53.19034341826209,0 +0,0,1,0,136.9301134693485,23.330595104158203,21.34972734896513,1,49.845403998012685,0,68.94734452760346,1,29.77105829410622,2,1,72.35184486966409,1,1,59.72632408295673,3.752969023000552,0 +0,0,0,2,76.020514904496,55.332383462866616,89.77446632875348,0,46.332203026831685,0,77.89884086226839,1,133.4524714650362,1,0,52.25536591824418,0,0,2.1023045458841816,89.1293866590742,0 +0,1,1,2,81.84519286028276,44.74173415804366,97.4833778677298,2,17.305235703161003,0,36.94032759471483,0,52.46576797302771,1,0,98.11699214095157,1,0,2.521427467060993,30.174025857105985,0 +1,0,0,0,29.423767776412767,40.16604438798284,92.88676371197266,1,21.495916785703333,0,101.83409416185572,0,76.65320295466897,0,1,6.249114972476582,1,1,60.090000471472656,92.20462268876511,0 +0,1,0,0,4.26702732392219,22.79314380467341,13.829833387841113,1,27.2407855668428,2,7.75509854494783,0,42.62652180214012,1,1,20.85032000406968,0,1,78.14402774244179,21.467120473131885,0 +0,1,0,1,89.8257337704191,23.49981528428962,0.0854247146058861,2,43.85197088776185,1,40.75542605112746,0,12.745197469819864,1,1,22.599927957747703,2,0,43.1461350323208,60.70590304678087,0 +0,0,0,2,46.57802124961747,95.8511970205278,41.99725618407075,2,32.425178861440976,0,53.11736445786661,1,26.597323006215998,1,1,9.91524344778862,2,0,54.97284117919156,16.919014577195092,0 +1,1,2,0,124.49224638258796,21.907078781717637,16.16869659059374,2,5.251704523673478,1,24.284349599035888,0,25.011059647250683,1,0,1.52849855710534,1,0,4.953599918346708,0.4458776746057324,0 +0,1,0,0,6.10870986986235,8.703127018431406,16.094346998422026,1,35.41407834214761,1,66.79807065214513,1,147.45701285383498,0,1,20.970423472284992,0,0,96.59240521255911,0.1927394641516366,0 +1,0,0,2,58.64610604465233,23.64715898710406,77.96864351785437,2,16.291841874515846,1,99.98050266212864,2,139.0657486526406,1,1,37.43790426742546,0,0,37.29275006591054,65.16898092471382,0 +0,0,0,2,129.28680750384035,12.773434854902735,62.05085990314844,0,44.06777784350807,1,37.5558060031488,0,78.08989619442005,0,1,28.42956830790289,0,0,21.240034588648776,2.0468502392430588,0 +0,0,0,1,77.78825119325401,78.89785005749697,38.20791251782157,1,34.44949617983365,1,26.91672106169067,0,29.47236889009071,0,1,12.15729119949267,0,0,9.58026150296285,63.633462993533335,0 +0,0,0,1,32.198435728171084,36.65085377191205,54.27132196720396,1,44.984946900441294,0,47.85741226698644,1,84.10414565998059,0,1,32.724708445608016,0,0,25.814940563737117,94.84887945872408,0 +0,0,0,1,61.83880409761654,46.20857097621349,4.382585593900839,2,41.73280479337802,0,44.64772661602596,1,9.166963542654392,1,1,13.731986983132998,0,1,70.09309802714074,44.66069410068664,0 +0,1,0,1,96.70960071381926,34.91832951670346,17.17953300077833,1,47.71162984103031,0,91.88487933234424,1,1.970237034895006,0,1,42.60441093129728,0,1,29.106781206676203,64.95213179735185,0 +1,1,1,1,56.12668623144343,4.977557695567008,66.57775079193682,1,31.175089239235536,1,57.682829738729005,1,18.009282763910555,1,2,91.75054835862667,1,0,72.394924139806,29.68837058563392,0 +0,0,0,1,114.04626480395612,45.04661992198582,90.63358125018608,1,9.691531416225384,1,23.893752933961917,1,71.79416426434328,1,0,36.77743783330455,1,1,43.09722550941573,51.30315281457988,0 +2,0,0,1,140.46587591847415,25.02778838947472,26.69648213046217,1,25.899662468610764,0,15.743409080519,1,86.20642094219227,0,0,6.515390692802948,2,0,46.29502601069772,80.02620711667879,0 +0,1,0,2,56.32298448704106,70.92007490183592,10.98604704174745,1,12.509737570019904,1,82.73412046927739,1,3.0886878730323586,1,0,38.09197745618575,1,0,0.0735179726369161,67.41322760332594,0 +0,0,0,0,85.55620349412968,18.36080870431216,46.0261562385138,1,20.25192724812368,0,14.88438623548795,0,43.25673461650563,2,1,98.34786784744053,1,0,80.70057904214282,26.369759733787117,0 +0,0,0,1,118.12345302391743,14.155915789413982,14.143634637931765,0,12.500093197086438,0,46.76494276585655,1,10.3844491157407,2,0,88.95269253539281,1,1,45.95662060839556,92.8732563257596,0 +0,1,0,1,60.19455269684149,13.450853688454515,38.416590396616805,1,24.532109676367547,2,89.9236717361442,0,15.854239811266552,1,0,8.493450969822891,1,0,50.5607632313254,120.6701662520627,0 +0,0,0,1,66.12749093020142,63.90518993604219,77.78916769061127,2,40.4596329962407,0,91.25242100645823,2,75.72978450148136,0,1,13.357925049651175,0,1,12.153822594091718,98.24351993374314,0 +0,1,0,1,20.832253144353057,67.59852390472003,17.489457828315462,1,42.15343241423297,0,69.44617627819412,0,121.83055429738648,1,1,71.64802555805858,0,1,10.681834423753806,49.14660728871035,0 +1,1,0,1,137.88379320923016,27.193236898580587,24.74913266329719,1,49.58417432267935,0,35.868939048701485,0,73.99597443204689,0,1,50.88311058750704,0,1,66.75767678123387,1.7112677985576308,0 +0,1,0,0,17.66655127691868,15.155595441827993,0.8606147685794152,1,65.04866932036526,0,37.265822419501056,2,62.02539330159069,0,2,17.036078954677553,0,0,92.25222658715236,34.01947837273523,0 +0,0,1,1,88.49837419124238,33.737960477730766,43.741617691337765,1,5.710129779105822,1,130.06592649129743,1,34.03340407851406,1,1,31.302238376409235,0,1,18.017479806654613,61.075964827761794,0 +0,1,1,1,98.65235525633894,2.644740456366001,14.579000482620968,2,7.88898190468918,1,53.66002719692433,2,44.01534586956952,2,1,46.696044064234805,0,0,95.8767722818226,110.484164807688,0 +0,1,0,0,70.84473589674441,20.087841560419594,26.795810567264954,1,49.857999018351286,1,14.52879208460569,1,83.10659108075794,1,1,41.468350335209855,0,1,42.076390632454704,5.593377387298338,0 +1,1,0,0,60.22263466002055,21.57457613505247,70.45973534855061,2,34.49995029114078,1,34.79661834777143,0,26.318687908148767,0,1,44.97880034694063,0,1,11.023785536041226,60.730796507586895,0 +0,0,0,1,122.76068073109496,42.73367359070706,27.102085798355382,2,1.224679626474262,2,70.53703593996718,1,97.512235075347,0,1,50.16311747402163,1,0,6.454276644590124,78.73286934053353,0 +0,0,0,0,58.15941421168306,68.18880003519621,10.546680432822791,2,4.803810518950585,0,17.473169834294787,1,46.67100476617432,0,1,80.75032700915823,0,2,24.07420727263775,44.03738721709161,0 +0,0,1,2,31.11808763106457,31.214798144577333,16.143096049491028,1,32.22273999653613,1,65.3953334524218,1,64.39181336578427,0,0,16.93339460015674,0,0,33.75860556514493,50.708533496029176,0 +0,0,0,1,126.39318350645296,51.12919797988626,19.305717317715214,1,35.745757421055096,0,136.8537092194237,1,78.79470448965118,1,0,54.913272669241806,0,0,84.82070809758187,25.237983274265357,0 +0,0,0,2,45.29536965950227,22.78807937123872,40.80248765637046,1,39.557028440222496,0,35.90138056993929,0,22.04585272635264,1,1,91.04836680952036,0,0,11.327222096664885,83.89721910124169,0 +0,1,0,2,53.97001678648877,21.26667211929521,66.59116819302378,2,76.58914451142724,0,78.72599783375105,0,85.08745919326303,1,0,120.81062613828315,1,0,60.13675091329426,49.17382820621162,0 +1,0,0,1,42.02287256123268,34.171472625312674,43.30210704599945,0,42.51067613273947,2,139.26498255094512,2,21.756355083808725,0,1,36.89607302497109,1,0,3.867273137964084,78.91445834021854,0 +0,1,0,1,83.95013798506945,56.17452682608983,95.81203451844036,0,47.15809277975504,1,101.00335511173476,0,56.59415780932903,0,2,31.72631345703989,2,0,28.521706783375084,86.27726759527843,0 +0,0,0,1,34.671291203684035,98.071004687631,62.117405658640415,2,18.142266546817066,2,86.1006512315449,0,7.777705443273031,0,1,48.9318919443634,0,0,45.34862035111403,9.77629257841124,0 +0,1,0,0,120.59209813780018,33.31115427644576,1.3116441545049762,2,6.324306623364811,1,66.19915706927296,0,93.00684804860812,1,1,79.39683167723683,2,0,48.5189803099646,1.34678991502184,0 +0,0,0,1,61.058721693685584,18.347324547087418,27.50580997707164,2,12.659962899994298,2,18.589747386346595,1,83.92235639490552,2,1,46.25682288976756,0,0,64.93743426367917,44.53264690865865,0 +1,0,0,2,128.79560024949888,81.0367657856899,4.854930428197324,1,95.28303976931406,0,77.42709407134822,2,134.91742894821942,1,1,71.5036593271094,0,0,2.4208025103816038,98.80986570997116,0 +0,0,0,1,39.66616302673979,6.967934270654524,37.24684193614857,1,27.32043464094565,2,92.91969278762612,1,68.45527270290705,2,0,44.83587590244613,1,1,73.04425592147427,9.050321255893184,0 +0,0,0,0,45.13195876529363,57.75902518778376,5.461476116325797,2,96.40686674589524,1,94.21286289692064,0,7.453169578597219,1,0,19.76150868006776,1,0,48.23502034194984,60.25355039318498,0 +1,0,0,1,81.32814977584934,30.055763566541227,71.79657839414344,1,33.84158848179631,0,36.823185325232,1,126.0450127919634,0,0,2.425339127878296,1,1,27.51501577671622,134.56926877230956,0 +1,1,0,1,53.54320865790771,14.593799211669396,26.435324029893717,2,6.242929325562002,2,69.11583038717856,2,55.5940994211408,1,1,26.822376884595663,1,0,58.021833068090416,31.572449406965813,0 +0,1,0,1,140.67241236131673,25.381301487007363,33.11299099999978,1,42.21093294486976,1,11.456117768992142,1,21.07182071501769,1,2,32.51262509029935,0,0,84.82359396586457,22.553086501101937,0 +1,1,0,1,84.89159383642456,11.733071513316236,98.60631152379509,1,75.83847527163785,0,82.55771019005385,1,69.83998457294881,1,1,88.71434371196386,0,0,22.118213091249384,75.20492721207569,0 +0,0,0,0,73.5066723283,13.667717890143132,41.83090350474311,1,71.13071902610037,1,54.27775147570871,0,58.9304786443961,0,2,33.571645420284504,0,0,90.43553189248044,8.416900408024725,0 +0,0,0,0,92.9406487940442,38.2275546111162,45.45339021102095,1,55.12228884072552,1,4.1397858100760745,1,58.7371268191953,1,0,19.36046818351424,0,0,4.089721066771207,16.839719245161945,0 +0,1,0,1,11.032420556902578,5.49848773852224,45.50022423145694,1,19.35568392873438,0,10.506224736657993,0,84.68717892486914,0,0,53.563930153158935,0,0,52.08710646202335,23.966334920706554,0 +0,0,1,1,51.16641068834138,17.955089959268605,95.629888175913,2,77.048129906008,1,58.82971182276954,0,90.0108861420804,0,0,38.84374376589484,1,0,62.54935533586882,8.111984390438492,0 +1,0,0,1,140.1887081208603,32.965419439374735,14.49167025187334,1,72.71930863908402,0,67.3111964746977,0,67.14497273275784,1,1,17.898162280546863,0,0,102.46882650562566,32.50650401791448,0 +0,0,0,1,17.16873568088271,44.2654069207666,83.54270229754425,1,49.646696871033,0,89.19854523410575,1,92.42899267988204,2,2,18.949634598936083,0,2,51.49297142598942,42.99299836154312,0 +1,0,1,1,89.81571582193888,44.151342490685,98.66572645241494,1,8.031136346482121,1,84.4384177653995,1,25.17306508788663,2,0,5.019733323185399,1,0,1.6332939571218397,25.09743194889261,0 +0,0,0,0,66.29287286763316,7.64216579429503,24.03163448141868,1,26.215825619235616,0,10.20182364119449,1,77.98737050792042,0,2,34.02956752309916,0,1,3.565307440147686,79.72073596620746,0 +0,0,1,0,99.79881744106848,20.59844140719973,22.68082801972198,2,10.92712154877452,1,29.52823493417271,0,27.541967011614904,0,1,7.109140285743138,1,1,28.141713855666666,0.5268155994781865,0 +0,0,0,1,90.21837347175864,17.721476876707108,20.997959874906,1,38.62949211663028,0,1.5994769502261086,0,76.29761422326874,1,1,98.59107429468872,1,0,40.95806524978581,75.7995812979598,0 +0,1,0,1,76.49212145990084,81.25417114017245,74.21368121526541,1,47.987745529394594,1,17.813396621474492,1,104.0669832449172,0,1,66.15547146688945,0,1,5.46824175341084,1.874930245247003,0 +0,1,0,1,68.6922230665883,35.027201348110715,85.29351220566656,1,54.64039330772612,2,97.81156400622044,1,91.73143053760752,1,1,33.89154625038023,0,2,22.6003777114545,61.318424965535264,0 +0,0,1,0,72.96709997888408,18.95898446836081,27.65593353027703,2,94.3442654122576,2,110.75329068649962,0,74.46587451851912,2,1,84.92747721471495,0,0,21.83711744245633,66.23589548884085,0 +0,0,0,1,71.77670624747762,27.140447269305625,6.634392212845247,1,123.85857992157956,1,81.00412555468723,1,36.63122798900571,1,0,60.615763855813256,0,1,23.16476127904229,39.26304607813559,0 +1,0,2,2,52.081212545639374,27.4429612719602,49.70239366854884,1,36.74050946686884,1,90.77040419558584,0,66.45148447214842,1,1,27.9295554184462,0,2,28.599094515193435,84.98751439436592,0 +0,0,0,2,105.9144130384515,28.81703131016271,82.7858728676185,0,20.751492860045328,0,87.72211705387132,2,97.88689584045802,1,0,44.0433441581632,1,0,6.879842363779187,11.326838506993852,0 +0,1,0,1,84.83305686528449,13.78558716843412,133.80760666247485,2,21.39869219257866,1,22.60070152874517,0,27.331015118407425,0,0,68.40792062490745,0,0,48.764392176309045,16.29283968044004,0 +0,2,0,0,77.27310152005124,29.65207329501102,11.09423075758903,0,36.58866546928817,0,83.48494437744125,1,32.90556999866075,0,1,12.005097379553591,1,0,16.372170757842046,82.94199560971953,0 +0,1,0,1,48.7375395124672,11.647356992392838,61.36183099084148,2,1.9492944140854065,1,14.270046314183048,0,93.67978851887102,1,1,24.335904281572933,0,1,93.25827321772978,45.0594220506721,0 +0,0,0,1,43.91781046512692,1.0906152380493197,49.391922781008304,0,7.041406855528775,1,120.55787502457956,2,93.30415277073274,1,1,13.021415569065004,0,1,59.3435748838089,133.45982722230067,0 +0,1,0,0,6.199353057260137,36.14894279558554,73.557452338037,1,41.16080520530083,0,74.18762429981915,1,74.52525215220336,0,1,41.02032847392716,1,0,11.600162644330048,25.426512712250805,0 +0,0,0,1,33.590785619899485,16.732062761593884,28.52689352407764,0,82.00462881817947,0,61.15700046226552,0,123.50939208943883,2,1,12.859789367290958,1,1,54.55158671006913,7.442186021238905,0 +0,0,0,1,137.9760125542399,3.5963292173480266,18.564893576962938,1,17.488178753803407,0,2.2437169111276467,1,5.140686526121518,0,0,22.09161570097344,0,1,20.504965621372406,44.61433084174663,0 +0,1,0,1,81.45915601306191,38.47754108600917,24.91994545733398,0,42.16460842624398,1,38.6943576100558,0,77.45910975533894,1,1,21.14275211981887,0,0,123.87946109168558,44.445169832517806,0 +0,0,0,1,65.7672869157922,84.88787787151219,59.80274224310664,2,46.34510368287384,1,57.5158221104893,0,120.8035009177866,0,2,11.84912399617033,2,0,39.876619560337154,66.18595153989222,0 +0,1,0,2,68.15574358269758,9.0598518114478,25.07575171902319,0,30.23915771056387,0,28.41719475328585,1,131.5278027171245,0,0,79.80086280592147,0,1,27.07633463467315,75.434827578756,0 +1,1,0,1,69.80076678556122,45.134412141550776,22.15870536530758,0,21.975012296806167,1,90.97029669984246,0,92.27007811147207,0,0,1.9025252338252416,0,1,88.48902764079962,19.003651235354912,0 +0,0,2,0,113.4137141856393,4.103716422208009,18.181634770367214,1,17.68959420980532,0,112.16992720329364,2,25.53099742841413,0,1,66.56033111436994,0,0,78.03498748135061,49.87290189252273,0 +0,0,0,1,91.87945922682108,25.797193159684667,42.42747290099796,1,3.355399444359741,0,77.00318378125453,2,15.8068941022393,0,1,0.5212106605721245,2,0,44.30632266090757,74.12829865940954,0 +0,0,0,1,96.37211371463437,9.27821334955708,9.024653541775262,0,29.48345343818423,1,63.96124565026761,1,69.6636223478797,1,1,76.85840084406786,0,0,45.815488340732685,37.53086585853354,0 +0,1,0,0,9.950134414572188,4.561092671645706,58.85815282315667,0,27.045558642938765,1,38.57487731460145,1,94.2441367467205,0,0,34.60571380237455,0,0,46.03034905483903,77.75241423201348,0 +0,1,0,1,117.4642996153616,19.71772070852864,62.68633884535222,1,24.199723647800354,0,95.19845120269945,1,58.37431455692262,1,0,40.06467726734248,2,1,36.89943661297456,68.79316419941615,0 +0,1,0,2,141.46973136065594,49.09839880841968,39.16978585494137,1,14.47587516663445,0,98.71920839630327,2,111.53237618943264,0,1,21.55024915731666,2,0,7.044572588723841,8.252554972672577,0 +1,0,0,0,32.21467688932388,32.848873484092586,13.693148133855615,2,39.77940551496611,0,49.173204378072505,1,124.7141456923519,1,1,47.94159773444349,1,0,4.8854113469324725,40.64904315894574,0 +0,0,0,1,66.66963935677151,82.62362024565711,20.309720852816408,2,24.122315743638467,1,39.45298944116192,1,94.82862857724518,1,0,36.06844291679054,0,2,24.41318631435906,4.558536708191846,0 +0,0,0,1,66.10904394666431,69.25701118585941,47.28434830840594,1,18.959711259203612,2,59.659038818952006,1,26.85277657558133,0,1,7.636452264757993,1,0,6.833446292067991,91.42125793899396,0 +0,1,0,0,107.93668156465372,111.67570880853194,117.38126617283568,2,18.98648872855973,2,16.22718497878723,2,1.150997467407594,1,0,20.256316651582363,1,1,63.736096138097125,18.236614775620687,0 +0,0,0,2,91.70745261785692,17.506743823781008,10.3402806366379,1,23.08653062614322,1,92.93881121226696,1,55.46677681161535,0,1,15.65492808328442,0,0,15.314442890332565,99.02037510405565,0 +0,0,0,0,78.15816836124645,34.28561932846003,47.87346711286972,2,9.881933697486438,0,70.14432899829237,1,69.22475779401492,1,1,10.392528484803591,1,1,42.39881557724793,96.98285793071176,0 +1,0,0,0,116.09749927899796,40.41099674178968,12.997901798846067,0,36.57086991842928,0,62.19648811443814,1,83.19721532993411,1,2,31.85990155345773,0,0,7.329613192455097,25.458617744253576,0 +0,0,0,0,144.4015561860027,27.939382368484637,19.889193981749,0,3.4432471664473163,2,82.94113677849523,1,85.44333085166417,1,1,28.520472540498503,0,1,62.19589392139018,5.559933553086766,0 +0,0,0,2,78.8421120079703,55.2874953573133,39.58691530206983,2,2.3610612179415904,1,32.103940740304296,0,8.665880933425079,1,0,73.93299101576169,0,0,52.47536323714218,0.4241055623663337,0 +0,1,0,0,107.75152464920068,7.319627687450697,15.719550925299536,1,4.0663450735191455,1,39.233436099161565,1,140.6392347947321,1,0,39.805235001124736,0,0,3.449984938442052,51.761309522083856,0 +1,0,0,1,60.56280335286681,21.145735225138395,30.041286846112325,1,15.471244992796365,1,20.740720332437117,1,70.90239335062076,1,1,39.9480365897278,1,0,3.257510150451748,76.59827320391746,0 +0,0,0,1,42.42058353045613,28.460452080698555,45.38880723378989,0,18.66788233733906,0,30.027435740748988,2,69.9771722567178,1,2,62.42180714407039,0,0,80.76928341790031,7.16216390969267,0 +0,0,0,0,125.8323088282271,34.22316475954222,37.00628920054662,2,13.513540813957563,1,22.590309159560817,0,113.05859355972149,1,0,71.02275507782632,1,1,18.70758493236511,14.71128080606618,0 +0,0,0,1,110.86842747453204,25.287751842876663,81.07485428481478,0,13.777602798375476,0,51.476935669899575,0,94.0493216546318,0,1,17.483375563192233,0,0,58.27155967504742,39.38145350685166,0 +0,0,1,1,126.5732072014764,16.094423942473302,28.94526180227358,0,46.202140191454525,0,76.63853545609544,0,99.70065326772968,2,1,29.386338180853404,0,0,11.077901790726427,78.55565643166182,0 +0,0,1,1,29.92585108394078,38.58380931107383,35.191274136074426,1,94.74270924293596,0,70.85048684888667,0,80.43114881181924,2,0,34.29807433267107,0,0,4.486852493589283,17.424476284395183,0 +0,0,0,1,90.9336618187648,10.782497381374428,85.50408605926975,1,6.567953473854383,0,10.914145978995004,0,85.86822813875975,1,2,55.98991274673334,1,0,81.96891322925535,7.717026851688064,0 +1,1,0,0,99.39733654193468,0.6319604151138469,25.98732273017254,2,49.121586639832536,1,43.33547031755401,1,105.44965227973736,1,0,44.080256630565565,1,0,41.02252309689561,1.6172569241092227,0 +0,0,0,1,92.9422301382819,8.051350204593898,72.4049134313174,2,56.43524187151809,1,22.79361037636236,1,93.29633415689828,2,0,72.2191583016709,0,1,130.39105686435343,14.337091902341545,0 +0,0,0,2,126.96003433620984,21.2127972471248,92.7240509199661,1,29.47021540923562,1,46.73612257376718,1,43.75834699807734,1,0,61.28894523463922,1,1,88.25415818782125,16.52540917761538,0 +0,0,0,0,72.10545118527683,9.622847231922632,34.350433129833064,1,36.285555282354174,1,81.16910516284926,1,90.3857763564514,0,1,77.34257481327599,2,1,34.87609391963661,97.88502566505112,0 +1,1,0,2,20.37586768626269,2.25180378036976,13.429249579006704,0,38.70600533049597,0,99.25128276038018,0,7.502510081380864,1,1,23.547294376261323,1,0,14.450626316459998,70.70747954392691,0 +1,0,0,0,93.4266239948713,8.991446601117737,127.97071114863502,1,35.63960338064555,1,66.69550840287617,0,12.085556604348024,1,1,22.578573170542043,1,1,83.19906672687436,21.85477755452308,0 +0,2,2,0,100.380775415192,9.472177837046331,91.43202615758982,1,17.924766243751517,0,74.3298540590736,0,40.065821860828194,2,0,56.25861037776597,1,0,72.8557113351191,5.838771477763338,0 +0,1,1,0,24.075775386314145,25.279194273556648,81.72207075667949,1,13.152740368192866,1,136.28618397296353,2,0.6493697863886538,2,0,32.630178179425506,0,0,43.57632293290597,85.11196004577253,0 +0,1,0,0,41.68143363442059,61.82472281375114,35.543359833706134,2,24.80102341374127,0,70.0880441485044,1,121.73191061281908,1,1,47.00176944055895,1,0,26.44707944241698,98.8494377054914,0 +0,1,0,1,101.67707157093994,92.26567473487944,20.867311249444224,1,47.37729193114688,0,27.500725088970697,0,63.93121429240786,1,1,27.33310627245743,1,0,84.19423015179011,0.1436931139355002,0 +0,1,1,2,42.61833759549308,37.98366616187814,2.532158914526689,2,25.02449588603829,0,137.9943601664712,2,35.109713806523565,1,0,31.2095620520861,0,0,43.85524957382398,1.953391756576656,0 +1,0,0,1,106.403786069766,97.08560316358124,6.295226923124559,1,23.035501349482207,0,99.7676060480287,2,43.553434122866186,0,0,14.12950713583504,0,0,40.578014906446384,61.89418040781088,0 +1,1,0,1,74.52223402173169,2.27255594542396,36.940614590966455,2,20.973049037621166,0,25.016585521740385,1,26.242527788783264,0,1,27.147308479739102,0,0,27.00075321698394,66.30435001217418,0 +0,0,1,1,145.07579617271733,11.762930961171758,0.4222548594677522,0,22.59685744075509,1,14.139858918691212,1,92.15231023803898,1,1,33.48675274940154,0,0,31.626185509389167,31.17378767122951,0 +1,0,0,1,118.6886081574698,60.790309983089976,0.6320558216736105,2,48.89927438222848,1,74.61056848978397,1,61.644058544451084,2,1,4.578721741958508,1,1,80.84177970883945,33.517623758933915,0 +0,0,0,1,74.25809599561111,39.8456712553837,0.6730114375853136,1,11.543582134134589,1,27.16839603476007,2,55.4174130250641,1,1,21.5714399643553,1,1,90.54270619694118,36.6538251403551,0 +0,1,1,0,108.34234832176696,28.98263244201254,36.02416607172431,1,27.39173973912762,0,74.33747264550587,1,22.47616058153845,0,2,4.061470404800799,0,0,133.594746118404,67.0721044355385,0 +1,0,0,1,141.97432991226276,49.35665530192548,55.29943154429874,1,35.027887357950895,2,56.36415383600044,1,10.07594483248136,0,0,24.814051624528084,0,0,72.70104750811478,0.2410230746220432,0 +0,1,0,0,96.0975739748008,19.943414196286916,44.55456666788633,1,38.55268294940098,0,95.02493028285146,1,68.4466159311228,0,1,93.41617944483473,1,0,70.48156835713735,34.49071728531104,0 +0,0,0,2,57.193171692008505,91.6660071060116,28.01443850736352,1,40.33655275551878,1,59.56231266676955,2,5.196333433033251,0,2,91.22609843072011,2,0,72.4282223134454,41.127242574454776,0 +0,1,0,0,84.03334490607206,29.098575320600386,8.460325894589571,1,14.421143337893444,2,108.26454479922748,0,40.59771075196531,2,0,99.29662137583348,2,1,111.15055261462422,34.39602012184964,0 +1,0,0,2,73.06998133792553,8.25420894365722,3.365510057748727,2,3.0987798326902736,1,106.03673189419402,0,79.4848600448534,1,2,11.851754902942602,2,0,57.792355438393415,25.75758551179493,0 +0,1,2,0,74.288069660771,0.6251225270557048,36.51810442925854,1,39.373781106132725,2,40.172506545219456,2,68.25948955127868,0,0,58.045745686263714,1,1,15.524483242484,34.744365164871326,0 +1,0,0,1,1.8954865843916424,27.764931165566736,21.37881441188533,1,15.01280236751978,0,93.00252925133438,0,144.1511749910807,0,1,67.12386610817529,0,0,93.73996061246422,14.92067163164499,0 +0,0,0,2,75.8319985218291,17.561433253241876,42.499839200480274,2,16.694082789154752,0,53.55558926042011,1,33.616037346030495,1,1,9.87914053513782,0,0,21.836161638515797,48.84520187546622,0 +1,0,0,0,128.56191472408443,56.823961214700695,53.00177292936918,0,97.30558178794922,1,5.614741908723647,2,68.96609495710814,1,1,27.98306836502768,2,0,37.407130094440994,17.374415610173223,0 +1,0,0,1,73.075807995775,13.454499339381776,26.023754576574536,1,11.794389117641945,0,58.84240572742644,1,23.50347676608425,2,1,7.78261227932896,1,0,83.1962944691668,24.14193273875989,0 +0,0,0,1,82.37119897741485,36.2460225154672,20.449358900294275,1,1.062300715274361,0,34.50990092253791,2,78.3594768474874,0,0,5.87030045733401,1,1,65.35998366409001,0.3961399563262469,0 +0,0,1,0,26.40203806102554,83.71261167580053,19.80554881782424,0,43.97960065105105,0,54.82441898679635,2,33.11872347183995,0,1,48.66230652541698,1,1,6.764845291075655,7.282714202456636,0 +1,1,1,0,15.796432702475204,67.63292441510094,64.15395723827211,2,15.060338874158369,0,9.835682737165168,1,146.48939831213443,1,1,43.31268153501886,1,0,34.001630344942654,72.5807385409573,0 +0,1,0,1,51.48002544816903,23.364288511321128,56.0518824111767,2,38.96705657787587,1,0.0456939262449329,0,53.40685443850964,2,1,21.68748643675909,0,0,88.61236527551081,39.14128078393176,0 +0,0,0,0,102.8944915031916,44.43428453581446,79.61878034584271,1,11.693698330205043,0,66.32836424017486,0,26.228329498897747,0,2,3.665715317568213,0,0,25.342794007393334,71.84547110613485,0 +0,2,0,1,109.55837243874517,84.57213844512236,54.50359666475917,1,9.587889525345538,0,48.81153331612092,0,39.05941129603699,0,1,18.86038336840369,1,0,10.683275903084631,4.525746404982583,0 +0,0,0,0,58.79577200616909,11.161317213319627,27.70220408993449,1,20.36614655443517,0,52.59083044289243,0,47.7724936314357,1,2,24.8259543403176,1,1,68.10393297560879,46.94618246211558,0 +0,1,0,2,74.49602369716351,0.0535186474461379,5.125318774957488,0,4.488556590857545,0,52.14999427538597,0,28.227133917258467,0,1,47.25733764412436,1,0,45.917684750805776,29.455617260540727,0 +0,1,0,2,54.84363020213691,10.40947992657899,43.49419849481159,1,3.2255663653972366,1,90.43987994405116,1,75.08044940014854,1,2,26.859673248665768,1,0,47.55062817530465,20.550894186328023,0 +0,1,1,1,43.223818433266494,45.1192328772185,35.31636813176914,1,4.066482300272334,2,62.73865306980722,1,90.13921872499722,1,0,48.46052839568144,0,0,17.60897175614448,57.89049691146162,0 +0,1,0,2,108.76829952828376,17.44668685503924,25.161916811830743,1,16.420755228001934,0,128.45217579547884,0,24.822705616478096,0,1,74.68383139697269,0,0,23.36040066207368,63.41120117402825,0 +0,0,0,2,124.73738264666022,23.55232197722322,31.34179258141536,1,44.87477364467463,0,96.20447502216832,1,84.61608247645074,0,0,3.308214110967267,2,1,48.93640409778326,33.92247118976339,0 +0,0,0,1,12.762896207929812,78.04117003386273,83.82399180514717,1,24.354693612736337,1,27.87595779018689,2,144.56961078155746,0,0,31.172116535316167,0,0,77.75262431483227,36.58831440768877,0 +0,1,0,1,82.1974496130712,30.584421274026973,5.0811162813775015,1,44.295479542194485,1,80.0865573974712,0,80.04275313050114,0,1,23.4381418632124,2,0,10.861635670438002,0.725792335238179,0 +0,0,1,0,73.38766365433574,16.571857608564706,99.09113029920732,2,4.62291108740992,0,67.73690982754897,2,55.70662541058302,1,1,67.80606567118517,0,1,0.1499377531738288,57.777708993153645,0 +0,1,0,0,81.80260999265818,38.73944804806256,5.711259923417522,1,10.09733387134674,0,50.89653586904587,1,7.105148233014313,1,2,15.672076959306514,0,0,0.4988931175918254,43.8569849110676,0 +0,1,0,0,125.33755623303708,58.10928016509656,53.00800211160511,0,23.24388574866521,0,87.51318048611897,2,94.68780685340704,0,1,6.166487571272744,0,1,20.421904587567376,133.95399382539932,0 +0,0,0,0,58.03015891990794,21.354206791323914,55.907412841981646,2,1.0271907760328711,1,11.018098252719067,1,53.50978346981555,1,1,32.71769797205659,0,0,2.6884639822460974,72.19738397427984,0 +0,0,0,1,90.43677231725144,28.784318984256984,24.694470738567198,2,17.240390098410412,0,1.4224085699397648,2,85.63129064428658,0,0,24.9512663196942,1,0,9.860289454896144,121.93110955471468,0 +0,0,0,1,52.98762018831828,15.740996721093984,71.16761224361765,0,45.45604140409265,0,32.92500518535431,1,24.704815990744866,1,0,6.168698545070156,1,0,47.13378909603463,60.19752143719464,0 +0,0,0,0,76.48253669189737,7.096708402414276,16.33702656939529,0,58.45010179924291,0,57.7960972211397,1,26.710722660052465,2,0,2.0177234840760336,0,0,25.71285039154182,90.32860224996598,0 +0,0,1,1,50.95533101909791,17.45061441577319,17.918924420751576,1,54.74681669033333,1,8.216012825984564,0,61.55213420781492,1,0,15.917872556630662,2,0,39.58956237233039,7.550254447954785,0 +0,1,1,0,78.36961685052026,40.973435497980525,22.27612271145131,0,0.9850090351131656,0,0.1285358841466355,1,40.31071342662291,0,1,53.49623888591893,1,0,27.904034061844392,30.186088195585263,0 +1,1,0,0,13.957043060946406,11.194179693272876,24.667245518779268,0,5.272632823713858,0,83.94571965944772,1,68.44347219497568,1,2,48.66990552911876,1,0,6.441566366367091,109.60974176400718,0 +0,0,1,1,99.78327975447274,49.5774744863936,70.87853751535249,1,90.29673211409818,1,64.76602104531028,2,56.97613503522823,1,0,22.97075712168247,0,0,137.85639477899943,38.57971854217131,0 +1,0,0,1,0.637015962735743,41.25812213037105,41.92977993855693,1,39.455141770690496,1,21.444851150539385,1,53.27953563164159,2,1,6.9276391874821766,1,0,21.83790202426229,12.418943168993769,0 +1,0,0,0,78.61924919199697,26.325071603115248,41.4106539175352,1,45.68584770116728,0,58.931739391858486,1,92.77660828905772,1,0,18.942136953166283,1,1,124.04538663854387,6.181535792511089,0 +1,0,0,2,17.26833181934287,19.192321837350207,75.83169084407206,0,15.24606150744301,0,93.98085469623472,0,116.33988883766364,0,0,74.8786039018797,0,0,19.77573004012447,75.82582498912555,0 +0,0,0,0,135.37519366093167,17.190311487305728,49.48273929524778,2,2.008495933314242,2,62.63438596466116,2,95.84345096946552,0,1,90.5094960327646,0,0,32.1161913386964,94.63006403856538,0 +1,1,0,1,95.20861580305233,3.0554511328546585,46.04086388279711,1,19.64928193373417,1,90.59188674786836,1,64.06327470830954,2,0,24.442923965048635,1,0,29.132190956460217,96.94602500586616,0 +1,0,0,1,40.00343218833747,61.33489989001552,65.07455918785264,1,31.242684363708054,0,35.6584721902861,0,31.391972449350234,1,1,99.8796924420478,2,0,45.45288886316043,22.188910412083438,0 +0,1,0,0,135.65676877062776,11.905900245651596,25.88999441147689,0,41.25075576958291,0,12.746870199945992,0,23.08388106375736,0,2,33.060837519429555,0,0,8.807929136411497,4.761638785169314,0 +0,0,1,2,69.24881265790813,68.0765788586994,75.94693814714165,2,43.69432982626879,0,86.93196073831632,1,97.42024770916784,1,1,22.216017297019384,0,0,52.62862804954916,27.25377305875095,0 +1,1,0,2,60.78807585238432,38.03672081450233,81.57939995123726,0,13.51316188816853,2,39.55632255182612,0,20.01615779799568,2,1,42.38428404861087,0,0,53.91310410631607,46.61555251559851,0 +0,1,0,1,72.42300190362639,3.571275508046823,57.795553389823176,1,1.4145566251698494,0,122.61614707218148,1,63.05216770788714,1,1,2.961244916466216,2,0,83.50917694570502,29.55120140103949,0 +0,1,0,0,73.69137542472356,39.9782968496872,56.83750856896243,2,29.34848886823425,0,17.91755138452719,1,52.26011806078664,1,2,32.599692194813976,0,1,24.45137299834502,68.64967506525824,0 +0,0,1,0,0.618641400905362,27.435860472480705,31.978648194159508,2,73.11326373786747,0,36.0225243702445,2,134.86090578633502,0,1,47.29840538708135,2,0,11.998697805073878,97.09329359050088,0 +0,1,0,1,136.36365290609913,11.57491182530796,36.681618592830034,0,39.84941330276116,0,63.66282933683038,1,39.7954301897778,1,0,32.616280365018,0,1,48.89651938542436,58.99048924661384,0 +0,0,0,1,17.1083073281446,24.32768429949281,81.3491005543333,1,32.50143996194254,0,13.009316500914975,1,75.60939167055834,1,2,10.60773675845464,1,0,30.82907280128105,96.01022016236976,0 +1,1,0,0,88.96870199645815,54.50075605748452,65.03200214272462,1,37.04130746547269,0,51.80428786329146,0,33.9389578579246,0,1,41.73896758583383,0,0,53.64230287080476,27.542940316780808,0 +0,1,0,1,28.23556757753607,0.6146802208302715,98.14369919703525,2,11.6285999825104,1,53.0327525737661,1,53.43873448043979,1,0,19.739404083279837,0,0,64.78690216044842,21.2419664873113,0 +0,1,0,1,149.8501833149375,0.4256920498830308,51.32098216299497,2,43.12549016674186,0,6.097966130539467,1,45.2731477774687,1,0,51.166324064321664,0,0,99.8981719344343,30.65771581822131,0 +0,0,0,0,89.5390964945101,36.983621429039104,39.02165513084759,1,78.2397352087602,0,105.54787762217728,1,124.00231991569083,1,0,49.87447844558167,0,0,81.50788678317123,6.574806724340504,0 +1,0,0,1,82.25311019901991,78.67942561170666,42.210427232177125,1,46.1719233453961,1,58.83765686957052,1,38.32246412738939,1,1,117.00873442072724,0,0,76.82218026924173,15.883890188372952,0 +0,1,0,0,48.04689624452516,33.05221141981724,131.1552898613183,2,23.890807592598108,0,88.34359900193843,2,42.0292317034701,0,1,18.95463682880147,1,1,48.49658905209363,64.9519186935799,0 +1,1,1,1,97.88409096011786,72.0218136440935,32.3699214786982,1,46.53086029416475,1,81.97797559882045,1,74.12625249467298,1,1,28.49455753016254,0,0,25.98662705885785,9.14615209775521,0 +1,1,1,1,57.33488880062772,4.319651678202669,44.36759671460309,1,20.12294560335944,0,101.11626741884533,0,66.48927385235908,2,0,148.51699370007296,0,0,53.98291881124994,11.463504790866596,0 +0,0,0,1,22.88117490181033,20.555315063578977,7.9133440089808,2,27.98657205348913,0,42.0531291795921,1,42.137192249672026,1,1,34.1006935991231,0,0,5.717204088898281,10.810386354464107,0 +1,1,0,1,58.56284780253916,6.4894479428336425,44.27831560849777,1,9.092101300724526,0,128.69787708711846,2,129.38954069319516,1,1,3.6993247168597865,1,0,26.938662504599087,10.116881920567511,0 +0,0,0,1,137.53882712407207,56.72339473346753,76.20614495283478,0,18.460643650599124,0,146.96439620218493,1,84.10528917542985,1,1,52.6118680714991,0,0,10.431975221039908,16.90397733797414,0 +1,0,0,1,119.6496729537686,74.75019433341636,50.30339157422589,1,12.486499776258851,0,72.96475280479567,0,126.50104565889274,2,0,38.06293356119694,0,0,23.711181984243435,12.91489726621135,0 +0,0,0,2,121.04376249567616,41.2355409823473,14.736460544076984,1,29.7960482198306,1,19.87067781575671,1,108.25413533408644,1,1,65.81291197877292,1,0,2.910449028881623,24.62801055337408,0 +1,1,0,1,54.23832153205748,78.91081205614272,54.23944574938645,0,34.865606526240086,0,37.580960375709004,0,10.428391351299377,0,0,9.789329102912848,0,0,99.73041477925491,17.38235999202848,0 +0,0,0,2,93.7863430775015,48.52450176138605,45.4503759377169,1,27.32311459535212,1,141.756565068692,1,47.98822655840823,1,1,85.98454626562908,1,2,93.98009273393772,8.723191188034473,0 +1,1,0,1,24.03778947644495,5.2747423495001,134.53793725935512,1,42.2755597326679,0,73.11052818669373,0,15.471534151776956,2,1,7.453283508091152,0,0,15.203045088923044,85.05348955013847,0 +1,1,0,2,78.27560117490634,24.01958054161362,16.111316502605742,2,4.213692444095512,0,5.450881954357511,0,106.68828966938725,2,0,96.45286623097158,0,0,54.36026924780911,8.187569343258433,0 +0,1,1,1,140.8322693406957,13.153091933001075,53.803416077203,1,23.962783738074044,2,30.252746730283924,1,17.031749915049748,0,1,15.42807831541756,0,0,25.228563012723093,55.9197795403019,0 +0,0,0,1,24.343661378528815,68.03305930172648,46.741974005898825,1,15.37724324371094,2,98.81246289772828,2,80.66124907509924,1,1,35.01605219573412,1,1,6.586387249418274,86.98091523444492,0 +0,0,0,0,140.30505207353738,64.60585800120987,60.26980292862745,1,7.141967847086356,0,20.43611256113012,1,138.75284344410187,2,2,21.20612390993803,1,0,10.85852833779757,38.71015768937802,0 +0,0,0,0,7.6733211169006,81.3159589691765,71.30956889232758,1,37.66555744212673,1,57.97097282572896,1,20.20647640864593,0,2,6.804361388406122,0,0,45.46445525013243,72.58878825435616,0 +0,0,0,0,126.17796129483838,96.47481815155746,29.047457859085853,1,6.867590660787765,2,69.5505428486294,2,53.25914732094624,1,1,39.59245184397207,1,0,45.05003303014572,82.14948744361068,0 +0,1,0,1,146.67616429181535,73.39741934560593,103.80714772106928,1,62.5716712907623,1,24.25716536308232,1,77.73283906802936,0,0,14.012971111328005,0,1,33.19559532842006,106.19963458457192,0 +1,0,0,0,134.7135215885487,23.109678815475448,37.29392596181074,2,16.54076440301576,1,5.19933773857662,1,82.56058706122539,1,1,15.888273673022397,1,1,29.386939068800565,11.42421768852432,0 +0,1,0,1,19.14975899950807,25.10126476238296,29.191877117543974,2,20.81877418275341,0,105.08635038079588,1,32.81532123881013,2,0,31.64924744783788,0,0,13.570080963805353,95.15477694642786,0 +0,0,1,2,29.21806626371251,96.75991771022348,96.80098801638972,1,93.7090381441502,0,59.64177652933994,0,86.77941282845788,1,2,13.95083028056111,0,0,43.360921599559056,86.08290532454848,0 +0,1,0,1,132.10487241359567,26.5727315410358,81.10520390336508,1,2.144070708320822,1,4.073064426696043,1,122.42598774758282,2,0,24.674293670531185,2,0,83.69216833335142,42.17056710690104,0 +0,1,0,0,72.89511722094693,17.563171956598445,40.42701689927,1,36.88638143352724,0,2.8275032707631595,1,13.39792840038942,2,0,62.375604614191474,0,1,37.8284820537345,47.24502045455664,0 +0,0,1,0,35.861171480235306,38.46869217969757,73.73430676147862,1,44.90239486208083,0,13.395203551601863,1,62.598222979338125,0,0,18.23859276991309,0,1,6.408577249241088,104.29045047949224,0 +1,1,0,2,52.33931492975774,20.471487438635997,45.93404747508056,2,42.60864471135184,1,137.592219159226,1,12.64639690555221,1,1,9.40810171549878,0,0,64.11309778923076,31.23628929345586,0 +1,0,0,1,29.14987496492219,45.47266146668272,73.1128500248326,1,38.51471768311328,0,97.32636895532268,1,97.0578653542332,1,0,60.64103210926406,1,0,46.03836669978844,32.013738012785446,0 +1,1,0,2,82.9580153321107,11.093985586112089,19.82349318908497,1,17.44131924514656,1,52.54048162558526,1,97.16855370908829,1,0,8.996916157637042,1,1,15.869883289608106,22.552941503666077,0 +0,0,1,1,108.61723759751656,36.99552583436419,52.03554333767081,0,0.5574389902124777,0,98.09397324578325,1,91.42390304429424,1,1,55.165358441943575,1,0,51.26947190200614,26.32287898076368,0 +0,0,0,1,139.6617687181207,94.01002418017558,43.28849322074031,2,42.34061378656276,1,59.20749002633843,0,93.75987587467272,0,1,41.297766040906296,0,1,1.9720763674995143,47.5329091768593,0 +1,0,0,0,65.65932182430117,17.198413855893214,40.83658842908192,1,80.72213101442007,1,7.756167203820391,2,45.140894781151935,0,1,81.13313557585867,1,2,85.20067519218112,25.50409724687577,0 +0,0,0,2,39.820073386201535,36.07225523040915,16.68852558284702,1,48.767845275391885,0,38.00621022069314,0,102.9874564611984,0,2,43.02208149509904,0,1,35.625688749230925,55.281110135493705,0 +0,1,0,0,92.83218487615152,12.278700028476536,31.878746194269663,0,7.9421281324715265,0,34.25722367783573,2,1.8028756636402743,2,0,39.26445415199623,1,1,24.051554729803083,63.08044059119475,0 +0,1,0,1,45.22189808896392,47.14862779477406,14.251530209368624,2,31.444354837807055,1,96.0636630156214,0,121.4660929814458,1,1,33.95926384437017,1,1,30.761807196553843,26.674401736671875,0 +0,0,0,1,61.49662785282487,98.44964327720108,71.96927882711077,1,11.66824733073824,1,26.42717886193935,0,114.12502393917498,0,2,20.318890822592184,0,2,83.58356442882771,90.79674230824018,0 +1,0,0,2,34.35189672297344,41.73240247563161,97.71887620720736,0,41.38977383368334,0,1.7896278296891832,1,3.632741450753846,1,0,10.673296172006264,1,0,83.572868345072,29.381534439758838,0 +1,0,0,0,24.248207704446077,24.61819522197745,11.817296057530186,2,6.980394784158229,2,1.758641212866141,1,68.47753941029468,1,1,55.46522650699456,0,0,115.49535963755709,84.6775778065182,0 +0,0,0,0,19.63044263409739,25.073692385151634,136.9878593554938,2,47.65375862863216,1,93.20110658961634,1,75.9125450362434,0,1,68.66276676878984,1,0,49.06290405855988,93.63362600131512,0 +0,0,0,2,9.419574141255078,40.62404336401973,16.23053460765608,2,34.62843944709056,1,78.83433407980979,0,116.35931669944324,1,0,5.258965980462172,1,1,53.19706590095532,16.340234359197776,0 +0,0,0,1,27.1361568396009,68.52068374957562,0.9612559722519898,1,46.50343067550893,0,91.61427831761704,0,135.51492630127458,1,0,51.37543988164405,1,0,58.980092448446726,18.77809294390529,0 +0,0,0,1,49.302845439102335,26.43987982602198,27.15298620703592,1,32.94141418262535,1,133.974074261556,0,76.13698909129693,1,0,1.3880926042911412,0,0,23.618522284307694,19.027513947974512,0 +0,1,0,0,50.90752326878592,11.984302013818182,90.23507772466382,1,24.948404487980767,0,142.13993073585047,0,49.99205722897203,1,0,36.15142523119157,0,0,71.64154281407933,8.132447663355158,0 +0,0,1,1,50.118399501477285,22.76184029682731,14.877593262540534,1,31.719460659973407,1,51.44677833416908,1,83.95150877184932,0,2,24.134801532033997,1,0,29.459770661573952,61.784029089690215,0 +0,1,1,1,74.60382457666293,41.06875033088077,15.38409609140094,1,72.29700674301434,0,43.52332376145589,0,6.749979173297782,0,1,26.61313265973152,1,1,79.94378914365151,28.21303895750791,0 +0,0,0,1,116.98134538370246,41.39683141798569,10.37623486843558,0,39.27778977930204,1,95.05427170836884,1,10.257048535868735,0,2,27.77483698896688,0,0,31.80746304059014,67.0270190535997,0 +0,1,1,1,106.36562182007113,62.92320781749415,42.17808876534608,1,79.73315157512091,0,14.982787529544266,1,98.29453752636596,1,1,21.07270473426341,1,0,103.8566255182584,94.03863759690483,0 +0,0,0,0,17.93891960415415,34.084875677653656,30.47055920901853,1,36.256231950813216,1,47.33210509297183,0,80.89903798146221,0,0,24.053245647661843,1,0,59.65607068352697,14.112560463418957,0 +1,0,0,1,86.95734080309057,42.98645938922485,17.68546189598132,1,18.988452765184437,2,56.6712346019924,1,72.6489632328952,1,1,50.28812529623041,1,1,46.12085264757335,37.02151292298526,0 +0,0,0,0,120.78860523913242,32.20967524542805,78.83675165497205,2,25.50702799235801,0,63.65602849381647,0,33.47863558223042,0,1,52.23828514746362,1,1,18.64314950244316,30.235578082155406,0 +0,1,0,0,133.72080143269193,34.34887858284725,27.395848129441703,1,0.9708348303800574,1,49.963552786341445,0,43.068048338027694,1,1,83.62514353899547,0,0,5.001440389072198,37.174981357881336,0 +1,0,1,0,59.63284389148251,50.3675842552971,42.95311543885142,0,11.961754785341633,1,66.82891414994948,2,2.053980225797508,0,0,16.743607964312275,2,0,78.23132565981408,6.110981807335325,0 +0,0,0,0,108.17027199418364,89.36656898748123,52.322174266112384,1,6.27004348618247,2,0.2695558454062108,1,124.31703286178085,1,0,54.00153077568377,1,0,85.55887538431844,42.58477052195968,0 +0,1,0,1,0.8968755622629165,88.1764905482425,48.41335149383383,2,14.210269057405196,1,24.78266516651515,0,71.85766116960322,2,0,17.71905003955293,0,1,83.83858743041932,31.126375331705663,0 +0,0,1,1,47.31617972125717,44.47266881363085,37.24844818925815,2,16.12156317992641,0,44.56488070283909,2,89.87007707765984,0,1,84.22248284693121,0,0,93.01177295986224,28.786853318785827,0 +0,0,0,0,3.651007382610256,42.48402492880985,5.709140448510669,1,7.028334500335426,1,93.85273967618198,1,94.14911915864666,1,0,34.961953502136225,1,0,71.39635327420788,14.206509783046329,0 +0,0,0,1,66.35876915119613,31.13325189331383,18.053164125274986,2,43.04208928038351,1,130.49582937589793,2,75.48276390699584,1,0,0.3812347879279143,1,0,30.73205611178898,4.331639999918158,0 +0,2,0,1,48.76895370164054,41.269442381346735,2.9147935346351908,2,74.51107022051855,2,25.746028549988004,1,118.079621057276,0,1,21.33030702679137,0,0,25.88745202597611,47.73028940850877,0 +0,0,0,0,82.97039983210644,58.14238933308385,46.27924185397468,1,9.973970417804672,0,11.024801581431609,2,58.25832212451596,1,1,49.90679708074422,1,0,29.02283525182397,92.38195161622993,0 +1,1,1,1,61.94965623530288,48.88044531391452,22.34169935114122,1,41.71153076784368,1,7.799209081322939,1,54.95975697112897,1,1,77.81503593399651,1,0,44.63832042343367,0.5377758326464144,0 +0,0,0,1,67.08238777207919,29.776187541013226,49.79736153026392,2,43.00182760392551,1,4.898332317396803,0,73.35052974086413,2,0,91.2667315893884,0,2,84.7619013560221,31.29826286864792,0 +0,1,0,0,52.30396303247783,35.31663523388261,10.724285092945063,2,47.460316224045215,1,92.6942016796266,0,57.9486121132149,2,1,26.778293807314547,0,0,37.08719470343487,3.143318548727964,0 +0,0,0,1,39.14094320611714,11.34977184187348,9.81625806248616,2,0.3952105624412894,0,55.893785375403525,1,29.45837824602462,1,0,25.214970922171748,0,0,15.584169468336611,63.08774684828427,0 +0,0,0,0,108.08914998130209,47.24754217633781,86.11222286069366,2,38.83233055916233,1,97.84567584042534,1,81.25447576282927,1,1,23.67709004114978,2,0,12.305915174603571,62.83499368726022,0 +1,0,1,1,128.69728301356773,20.19995019267083,46.08647439516477,1,8.668586302630654,0,89.66516465047292,2,133.0648170741237,1,0,40.74741489244588,0,0,29.417492255493507,73.97248460326233,0 +0,0,1,1,146.69528101497443,16.038158897340526,24.25179007367436,0,10.61542572799709,0,75.50097003518225,2,52.32321221563774,1,1,99.05564533600624,2,0,18.82796584283579,53.38944289452771,0 +0,0,0,0,60.24646223454534,24.765674903089945,81.35401112899993,1,48.19932707246964,1,111.34730395585709,2,20.244239295789374,1,1,7.1272987596358695,0,1,27.81681612034764,15.629907857733963,0 +0,1,0,1,143.89039995793118,44.170471898381614,34.54091520186119,1,15.659388619015818,2,2.6450821032177663,1,29.600158002565447,0,0,99.37390606343595,1,1,29.233113006900613,53.26441646280104,0 +1,1,0,2,54.61738958138557,28.40375219121432,48.16612333037415,1,6.8945549204294245,1,57.18872746940303,1,60.76164300572166,0,2,5.833175088176102,0,0,76.97338884191723,30.22441935872917,0 +0,1,0,1,40.660363798017855,52.989193685164246,84.18006758557382,2,3.699828415402806,0,104.24009921963552,0,67.29303645602891,1,1,36.48598955034525,1,1,9.590866155585614,7.954675757927365,0 +0,0,1,1,81.56779498421864,4.81189410199957,84.31894350112259,1,56.79627798018595,1,79.70275930588019,0,19.266674888663037,0,1,3.078713510695563,1,0,111.11135713824882,28.648848509922303,0 +1,0,0,1,95.15916214340596,6.756875751694929,1.2326445817095688,1,26.60224823928885,1,86.82053955854114,1,50.32383063965803,1,1,21.334061243878303,1,0,50.21731721269616,16.60776814196191,0 +1,0,0,1,61.633014206464445,25.51124654265277,77.27961847543284,0,11.629084442505471,2,30.00114951074388,1,57.96629171723164,0,0,29.08989239466428,1,1,21.276377682990223,10.29435325826326,0 +0,0,1,1,141.0238810390165,42.94558191658714,33.699411588748646,1,43.078891171127296,0,19.16196344113192,0,74.37619080682347,0,0,4.628396208956498,0,0,47.67142370927295,61.15796629015176,0 +0,1,0,1,79.08640249058305,36.08996523243658,30.82669461894078,2,35.35125811487045,0,47.28022040902707,0,67.56324349658246,2,1,55.66410463347681,1,0,17.007040304981665,131.66636399225868,0 +0,1,0,1,58.38163000027077,30.1210997399605,28.503933328412845,0,28.068501067962377,1,37.36294702503242,2,55.988035638978445,1,1,34.291476653888935,1,1,2.3703802143144994,65.8610258434785,0 +0,0,0,2,55.838575197620685,2.49116717260795,33.02267178605825,1,45.00575154372702,0,70.88642279218672,0,44.22839207085937,0,0,6.447285279292736,0,1,87.40002762265227,0.1908106682782684,0 +0,0,0,0,69.19033718307992,48.233420811600176,25.13916113063716,1,22.879909208022248,1,77.45146167807253,2,143.38809746608726,0,1,2.047231050897713,2,0,74.60702072325537,24.04257165363069,0 +0,0,0,1,77.56744341891198,60.79263911476416,20.998677888075,2,33.678751959572324,0,18.2548590399792,0,81.90403238555069,2,0,25.914504086154555,0,1,58.32013127645623,20.64658779599772,0 +1,0,0,1,75.35296985509822,17.779015467712412,43.7925095529038,1,31.691841387724462,1,74.2311052711377,1,35.47875597947385,1,2,75.3772813291887,0,0,12.297649610804385,44.35080315925629,0 +0,0,0,2,95.31404406896831,16.610122273906768,71.41436763631154,0,45.3857292405696,0,72.98668194412464,1,134.6164348806608,1,1,11.902271576011408,1,0,14.308261061838662,74.75155337209006,0 +0,0,1,0,5.302473762424476,8.917931690973441,54.2482243169914,1,11.52494340521621,1,67.43011170437185,0,4.64461213034773,0,1,86.26382075112956,1,0,88.99892012487807,134.51621760635572,0 +1,1,1,1,43.26087032065689,22.921998377910025,18.96022089190723,1,17.94559268777398,2,27.225960509302748,2,52.007937750247805,0,1,86.28563463667884,1,0,0.1725518435774953,63.02280102363775,0 +0,0,1,1,98.80906913095691,12.132004344450376,38.02640271815784,0,40.78305691881112,0,119.6127449047418,1,64.42740401636121,1,1,32.90254705932378,1,0,11.210620227306734,86.11704140063452,0 +1,0,0,1,142.6624562085675,18.000096816685097,41.18020566904384,0,38.871085544314674,1,32.30622775281092,2,34.888011438910006,0,1,34.34793789276201,0,1,15.618697026368562,3.394902068461353,0 +0,0,0,0,82.3554871359313,44.26580819631485,8.91834163302173,0,10.280468984701772,1,77.97510593397078,0,64.50217668788177,1,2,14.718267413517928,2,1,41.395597366592405,68.50902423867339,0 +0,1,0,1,116.41612572346466,19.468399060161463,59.56969088183,1,14.875513460675355,1,142.96522605792583,0,0.7913200118200736,0,1,26.765565456326343,0,0,53.609253431512286,47.946132187147214,0 +0,0,0,1,60.80054265267013,16.634714926509055,16.879425914520702,1,19.22228185586764,0,41.42640273293628,0,58.36844517823647,1,1,38.77718546729284,0,0,90.84578441002571,23.080255479977847,0 +0,1,1,0,24.71974814121096,1.8130073055129925,6.443589607465877,1,26.290953474041395,1,48.74698877229719,0,142.09579654261518,1,0,34.42761012835452,2,1,13.97443494036883,23.14421163789157,0 +0,0,0,1,33.846435101786945,1.513762022906373,8.954653349563223,0,20.42212407726322,0,143.8522427394252,1,119.93467510579646,1,0,31.31097993970856,0,0,39.1684419838506,64.08927089410889,0 +0,1,0,1,81.72041282910666,25.344336146132733,18.76836302236859,1,41.32219314556308,0,15.929493393259293,1,99.89408671371856,1,0,34.89557727277946,1,0,27.792244075148243,56.23340549934417,0 +1,1,0,1,24.64576520100741,47.92032212607435,68.1291923783306,0,42.07898535327408,0,138.72733370692666,2,21.03707737739495,1,0,90.26483012057244,1,0,88.93657152081408,69.89983093844091,0 +0,1,0,1,139.30908087165284,27.62293476296517,28.916533104896665,1,22.67826415725941,0,35.653129350145576,1,7.808385755493663,1,0,5.5026274939980135,2,0,49.263731482600726,91.3393283853252,0 +0,0,0,2,125.09082959947682,94.6417428089032,36.48228981626871,2,5.533039082575048,0,18.172634403343217,2,139.59029325353842,0,1,2.289583154564212,2,0,32.16314299224987,63.056239324201535,0 +0,0,1,1,93.38623254080564,47.27293435893847,35.49680189374556,1,28.65405696643073,1,31.85732153510907,2,64.4320141878471,1,1,39.67772566688973,0,0,147.04059864078994,30.650834586835536,0 +1,0,1,2,58.791420011359406,28.351475130279347,7.925485857371751,1,37.77262878433768,0,72.39900024884608,0,137.03328927570226,1,0,58.66767212552545,1,0,128.54173726064366,35.813619201196204,0 +0,1,2,0,6.425990946669835,29.88382841428527,43.59378781785479,1,23.49952923591805,0,35.26867197405173,1,128.97363168696228,0,1,15.590085981196022,2,0,74.11250101937317,41.05792324706802,0 +1,0,0,1,127.33095106452429,34.4486046732772,46.30049570286028,1,8.835961612971733,0,15.80331062276228,1,21.607706797198023,1,1,98.09387929394084,1,0,42.45658272359703,52.22709405940461,0 +0,1,0,0,50.93092863857345,8.687229451204997,33.96789975806414,2,7.860204650196451,0,39.19225891680871,0,99.86536513601288,1,1,8.62482123054008,1,1,39.9731463541663,21.528231719835134,0 +0,1,0,1,37.71445907277023,24.2684390794,6.138813496794176,1,26.54740073449523,2,41.23834039678384,0,76.59476797458461,0,2,41.810588898071856,2,1,69.9176857598723,17.43259135640883,0 +0,0,0,1,140.18577280936609,43.012603359921634,27.46393767273813,2,12.1740460704169,1,76.79793645807241,0,60.8117063751212,1,1,35.66319155373106,0,0,3.771625363285469,9.178421063922777,0 +0,0,1,2,47.78920527591246,33.38573253991963,76.48029539863532,1,11.516743973211074,2,64.95609720825992,2,38.30633658019316,1,2,0.2246649346412388,0,1,64.29163151475628,20.60020087978561,0 +0,0,1,1,45.3288818838551,49.16248482556498,2.713378759097368,2,2.1187280605327654,1,5.535540380739007,0,55.89697051418497,1,1,23.538629080240074,1,1,50.73244712834423,24.97211602938133,0 +0,0,0,2,89.05411061996307,49.13759566575031,32.884155696867566,1,48.40008420294216,0,65.59912286831991,0,30.225913490970296,1,1,4.577286679661668,0,1,99.866142953041,53.94829420139607,0 +1,0,0,1,61.7862244059142,11.956116797608052,60.85675005719976,2,45.60777520870744,2,19.81089098458868,0,148.90865993651286,0,0,89.20261733933792,0,0,54.2920585742808,49.39225456267257,0 +1,0,0,2,72.80703281605619,4.82931701148383,38.69051857227736,1,22.160782251005624,1,12.965402258540816,2,119.19717410536036,1,0,2.754950560333219,1,0,24.066584448089472,95.12597525470504,0 +0,1,0,1,14.408530899721944,24.385661571920654,5.035704904527149,0,43.646627516175535,0,73.89645484761596,1,52.92789398748116,1,1,10.392526460855557,0,0,90.21371976185628,122.6129336770488,0 +0,1,1,0,102.7317095593807,54.8821604890082,46.14210670656282,1,29.121006132461407,2,25.95129120325837,2,37.72417538159841,0,1,61.40009711972064,1,0,46.9206079504858,40.77917692862035,0 +0,0,0,0,91.50686402219642,66.13898645734093,38.02373793493268,1,34.7176795756673,1,136.60184010666742,2,77.77079818817259,1,1,11.604851099392144,0,1,78.56421399493675,17.427618300708136,0 +0,0,1,0,36.494939370659154,14.43154827368609,6.172927516021337,0,39.20159799321322,0,66.73057500343234,2,98.89424301214714,1,1,16.942921094284667,0,0,149.49395270999167,34.03721075814599,0 +0,0,1,0,4.480446872700538,48.7410338165756,23.597155729803248,2,3.3970716160459267,0,81.64595674853386,0,87.70260274263224,2,1,76.82888247649379,2,0,147.8368524651992,30.18601275275623,0 +0,1,0,2,78.40898550099865,34.66791750286099,20.53191535606259,1,37.05791353973828,2,56.69185204818385,0,105.99274522066187,1,1,44.11096876482663,0,1,35.68118128175312,38.13724642572421,0 +0,0,0,1,81.14498445380396,12.081207146424344,2.30809308757654,0,9.92831417161505,0,15.490208643792023,1,22.537611749805563,1,0,36.5321032794261,1,0,83.03343721681192,29.365679213183103,0 +0,0,0,0,62.76415662129222,35.90870176020047,57.84428019756666,1,43.99903542254584,1,96.8914921789182,0,82.57687711319704,2,0,18.86050148497855,0,0,68.54534842003596,46.78346960667957,0 +0,1,1,1,32.17614485693554,40.4089216738582,49.67050567906824,1,20.742203457411044,0,79.99461469448472,0,22.326194330438465,1,0,39.4233012283137,0,0,36.9482545897688,96.85573206528434,0 +0,1,0,2,98.29073780222448,38.12860062452084,12.730533107121069,1,2.2655116975740297,0,17.73263762891307,1,141.66369903965938,1,0,48.96613826022565,1,0,9.264902552967923,95.504682561381,0 +1,1,0,0,26.92037352492748,21.76629106536476,80.6794013492214,1,20.645599444243057,0,50.895379373480885,1,59.88687267524816,1,1,10.84259021677384,2,0,62.57386973579365,105.36481788064128,0 +0,0,1,0,39.81491230447396,12.503238729218864,3.7898739027034,1,33.773572276854,1,70.12734050050302,0,36.08748406178293,1,1,78.9835187561992,1,1,10.062731542588754,54.11577381415857,0 +1,0,0,1,103.77268475155314,10.602326484737512,75.60104917471186,1,58.48481384949342,1,1.3207463718959311,2,72.01969544191766,2,0,33.542080717082335,2,1,40.14876993468871,60.682978799511176,0 +0,1,0,1,93.49766726672696,43.53931384587216,45.50334908107631,1,41.894342167494486,0,147.95138218208697,1,76.67593544820315,2,0,55.05619039470656,2,0,50.361451475616,49.35964544612476,0 +1,0,0,2,43.853506807799,99.66617803403676,70.732123708912,2,11.78511188004802,1,29.88975152413971,0,14.446426107027447,1,1,18.90043049645899,2,0,10.726603941185676,74.64519875938205,0 +0,1,0,2,117.64594643280202,21.002106613585493,17.491690301006074,1,40.39667765242526,1,78.18139703483658,0,60.72304261582395,1,1,2.4546977165441577,2,1,44.79995811737283,91.35084319870164,0 +1,0,0,1,47.39837022293874,25.80713818524903,6.30118010750676,1,29.228386068382505,1,75.51410863008249,0,109.338785902225,2,2,20.05930513766082,0,0,5.969796490400131,35.96414978620196,0 +0,0,0,1,25.066131881286253,19.47985135529555,38.35082224640665,0,49.45347617066015,1,147.29373653767996,2,62.51156529703819,1,1,67.93216847573683,0,0,44.73890209982469,32.64727980112048,0 +0,1,0,1,81.1955170055563,4.921492966124874,29.529212812903133,1,10.901860246430134,1,20.57068627948277,1,6.582279516305089,1,1,56.06063014750354,1,0,102.54021617680796,24.23707487252513,0 +1,0,0,2,100.92820062016926,14.769048275410816,44.99755990992588,1,33.29170655106324,1,73.10021872820568,1,125.86048916347497,1,1,6.704504500864789,0,1,3.930194284053151,6.017944386385066,0 +1,1,0,1,73.79641231587219,28.326704816312187,17.124520603534886,1,74.16464152341894,1,41.95940453470201,0,123.97164683247172,1,2,63.20752350503643,0,0,9.014555765379711,130.6962285746142,0 +0,0,0,2,71.8898865759364,4.724535735338736,16.030693682175194,2,20.77223834949019,1,81.87572346651365,1,34.11549120751447,1,0,13.369662071537796,1,0,132.7309007096672,14.64125484545405,0 +0,0,0,1,56.92016159563167,25.862283339968023,28.110552572174687,1,56.09785002361208,0,88.39150244620227,0,107.9728938752776,1,1,94.61713588994488,1,0,35.65313539967732,26.447859737448383,0 +1,0,0,1,98.43361683933568,32.79461042354803,41.60709981781848,0,18.19876036434009,0,84.93723320376688,1,66.19994752923276,2,1,31.12702767580972,2,0,25.093576721042187,27.27701705351405,0 +0,0,0,1,56.85253219378784,5.167184434489097,8.973328939429603,0,49.092261802006135,0,48.22216220595666,0,16.07848157174203,1,2,97.00935578796415,0,1,54.73258442426688,21.847672162752303,0 +0,1,0,1,10.408731517892722,35.703438738979536,75.63774268315842,2,23.578170476209745,0,88.31890423768262,2,86.17762909722099,1,1,87.52487592019716,1,1,58.34710059950671,6.700774296068329,0 +0,1,0,2,74.63831418712289,28.56163355133885,97.6660679677837,1,29.292272073931876,1,39.0085436795935,1,17.184334419697105,1,0,2.1415453078625744,1,1,18.71019984234377,55.95963422903199,0 +0,0,0,2,96.08550487281512,19.20227279687652,33.08468486801294,0,10.029842339070688,2,143.78545259886354,0,122.93766779034736,0,0,43.45790296385215,1,2,45.77004723294464,54.90546701691953,0 +0,1,1,1,69.35124272431264,34.7922999161402,22.543842942880804,1,7.668767764948408,1,33.242084077687814,2,75.06431087256797,0,2,61.061279669958935,1,0,16.850914118535666,24.07690080163932,0 +0,0,0,2,48.72696827795417,31.22131078126756,16.01818817965582,1,20.79812510883813,1,50.59099490275024,1,134.0456613526137,0,0,18.34052394950854,1,0,49.54902051619327,57.39224346376853,0 +0,1,0,1,81.84826389425898,46.88148889485788,46.3510390319232,1,32.87599854698273,0,36.450602038671455,1,40.34839261882076,1,0,76.35088398011032,0,0,1.468001768914412,92.26682743539268,0 diff --git a/data/GAMETES_Epistasis_2-Way_mixed_attribute_a_20s_1600her_0.4__maf_0.2_EDM-2_01.tsv.gz b/data/GAMETES_Epistasis_2-Way_mixed_attribute_a_20s_1600her_0.4__maf_0.2_EDM-2_01.tsv.gz deleted file mode 100644 index c568d26..0000000 Binary files a/data/GAMETES_Epistasis_2-Way_mixed_attribute_a_20s_1600her_0.4__maf_0.2_EDM-2_01.tsv.gz and /dev/null differ diff --git a/data/README.md b/data/README.md new file mode 100644 index 0000000..7c8c150 --- /dev/null +++ b/data/README.md @@ -0,0 +1,26 @@ +# Example Data + +The example datasets are generated by [GAMETES](https://github.com/URBSLab/GAMETES), a tool designed to simulate genetic interactions (epistasis). These datasets comprise 1600 samples each, with: +* 18 non-informative (low importance) features labeled as `N0` through `N17`. +* 2 informative (high importance) features labeled as `P1` and `P2` or `M0P0` and `M0P1`. +* A final column labeled `class`, indicates the outcome. + +Below is the summary of the key differences between each example files. + +| File Name | Feature Type (Number of Categories per Feature) | Label Type (Number of Labels) | Missing Data | +| ----- | ----- | ----- | ----- | +| `GAMETES_Epistasis_2-Way_20atts_0.4H_EDM-1_1.csv` | Discrete (3) | Binary | No | +| `GAMETES_Epistasis_2-Way_continuous_endpoint_a_20s_1600her_0.4__maf_0.2_EDM-2_01.csv` | Discrete (3) | **Continuous** | No | +| `GAMETES_Epistasis_2-Way_mixed_attribute_a_20s_1600her_0.4__maf_0.2_EDM-2_01.csv` | **Mix discrete (3) and continuous** | Binary | No | +| `GAMETES_Epistasis_2-Way_missing_values_0.1_a_20s_1600her_0.4__maf_0.2_EDM-2_01.csv` | Discrete (3) | Binary | **Yes** | +| `3Class_Datasets_Loc_2_01.csv` | Discrete (3) | **Multiclass (3)** | No | + +## Reference + +For more details, please refer to the following paper: + +Urbanowicz, Ryan J., Jeff Kiralis, Nicholas A. Sinnott-Armstrong, Tamra Heberling, Jonathan M. Fisher, and Jason H. Moore. 2012. “GAMETES: A Fast, Direct Algorithm for Generating Pure, Strict, Epistatic Models with Random Architectures.” BioData Mining 5 (1): 16. https://doi.org/10.1186/1756-0381-5-16. + + + + diff --git a/demo/examples_basic_usage.ipynb b/demo/examples_basic_usage.ipynb new file mode 100644 index 0000000..7b97848 --- /dev/null +++ b/demo/examples_basic_usage.ipynb @@ -0,0 +1,524 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "23a20c20-5c12-47e9-b61e-0b63bbb91d02", + "metadata": {}, + "outputs": [], + "source": [ + "import os \n", + "import sys\n", + "# Get the absolute path to the directory containing the package\n", + "package_path = os.path.abspath(os.path.join(\"\", \"..\"))\n", + "\n", + "# Add the package path to sys.path\n", + "sys.path.insert(0, package_path)" + ] + }, + { + "cell_type": "markdown", + "id": "50df7de4-2f60-4c86-ae1f-9ca7772ef54d", + "metadata": {}, + "source": [ + "## Using the Core Algorithms\n", + "### ReliefF" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "3709ec0c-6f04-4a93-be55-2dc1f08e48f5", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Feature name Feature importances Feature rank \n", + "M0P1 0.12228125 1 \n", + "M0P0 0.11928750 2 \n", + "N0 -0.00030625 3 \n", + "N10 -0.00059375 4 \n", + "N13 -0.00316250 5 \n", + "N14 -0.00317500 6 \n", + "N1 -0.00495625 7 \n", + "N8 -0.00607500 8 \n", + "N12 -0.00691875 9 \n", + "N16 -0.00705000 10 \n", + "N4 -0.00768125 11 \n", + "N17 -0.00790000 12 \n", + "N9 -0.00796875 13 \n", + "N3 -0.00800000 14 \n", + "N11 -0.00832500 15 \n", + "N5 -0.00835625 16 \n", + "N2 -0.00941250 17 \n", + "N7 -0.00959375 18 \n", + "N6 -0.01013125 19 \n", + "N15 -0.01020625 20 \n" + ] + } + ], + "source": [ + "# Import necessary packages\n", + "import pandas as pd\n", + "from skrebate import ReliefF\n", + "\n", + "# Load the example dataset\n", + "genetic_data = pd.read_csv(\n", + " '../data/GAMETES_Epistasis_2-Way_20atts_0.4H_EDM-1_1.csv')\n", + "\n", + "# Separate the features and labels from the dataset\n", + "features, labels = genetic_data.drop('class', axis=1).values, genetic_data['class'].values\n", + "\n", + "# Apply the ReliefF algorithm for feature selection\n", + "fs = ReliefF()\n", + "fs.fit(features, labels)\n", + "\n", + "# Print out the results\n", + "feature_name = genetic_data.drop('class', axis=1).columns\n", + "fs.summary(feature_name=feature_name)" + ] + }, + { + "cell_type": "markdown", + "id": "40dabab1-8572-43cf-a86c-f76026020804", + "metadata": {}, + "source": [ + "### SURF" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "dcb66091-bbce-40d5-a5f3-d696a8ec3a2f", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Feature name Feature importances Feature rank \n", + "M0P0 0.06157283 1 \n", + "M0P1 0.06155927 2 \n", + "N10 -0.00049277 3 \n", + "N0 -0.00059267 4 \n", + "N13 -0.00132625 5 \n", + "N5 -0.00222361 6 \n", + "N16 -0.00256536 7 \n", + "N1 -0.00269856 8 \n", + "N8 -0.00300784 9 \n", + "N14 -0.00301537 10 \n", + "N9 -0.00302025 11 \n", + "N11 -0.00361912 12 \n", + "N12 -0.00419101 13 \n", + "N7 -0.00423327 14 \n", + "N2 -0.00453031 15 \n", + "N4 -0.00455866 16 \n", + "N15 -0.00468981 17 \n", + "N17 -0.00504565 18 \n", + "N6 -0.00590625 19 \n", + "N3 -0.00634880 20 \n" + ] + } + ], + "source": [ + "# Import necessary packages\n", + "import pandas as pd\n", + "from skrebate import SURF\n", + "\n", + "# Load the example dataset\n", + "genetic_data = pd.read_csv(\n", + " '../data/GAMETES_Epistasis_2-Way_20atts_0.4H_EDM-1_1.csv')\n", + "\n", + "# Separate the features and labels from the dataset\n", + "features, labels = genetic_data.drop('class', axis=1).values, genetic_data['class'].values\n", + "\n", + "# Apply the algorithm for feature selection\n", + "fs = SURF()\n", + "fs.fit(features, labels)\n", + "\n", + "# Print out the results\n", + "feature_name = genetic_data.drop('class', axis=1).columns\n", + "fs.summary(feature_name=feature_name)" + ] + }, + { + "cell_type": "markdown", + "id": "ea7d936c-1ec4-4125-9031-c52d98e9005d", + "metadata": {}, + "source": [ + "### SURF*" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "ef70c9cf-c311-450a-a255-d1103d9bb31a", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Feature name Feature importances Feature rank \n", + "M0P1 0.12864101 1 \n", + "M0P0 0.12792470 2 \n", + "N10 -0.00106372 3 \n", + "N0 -0.00136069 4 \n", + "N13 -0.00307977 5 \n", + "N5 -0.00538099 6 \n", + "N1 -0.00616617 7 \n", + "N16 -0.00650725 8 \n", + "N14 -0.00663881 9 \n", + "N8 -0.00690113 10 \n", + "N7 -0.00765252 11 \n", + "N12 -0.00810566 12 \n", + "N9 -0.00878649 13 \n", + "N4 -0.00882028 14 \n", + "N11 -0.00897106 15 \n", + "N2 -0.00911812 16 \n", + "N15 -0.01001887 17 \n", + "N17 -0.01019251 18 \n", + "N6 -0.01174531 19 \n", + "N3 -0.01225238 20 \n" + ] + } + ], + "source": [ + "# Import necessary packages\n", + "import pandas as pd\n", + "from skrebate import SURFstar\n", + "\n", + "# Load the example dataset\n", + "genetic_data = pd.read_csv(\n", + " '../data/GAMETES_Epistasis_2-Way_20atts_0.4H_EDM-1_1.csv')\n", + "\n", + "# Separate the features and labels from the dataset\n", + "features, labels = genetic_data.drop('class', axis=1).values, genetic_data['class'].values\n", + "\n", + "# Apply the algorithm for feature selection\n", + "fs = SURFstar()\n", + "fs.fit(features, labels)\n", + "\n", + "# Print out the results\n", + "feature_name = genetic_data.drop('class', axis=1).columns\n", + "fs.summary(feature_name=feature_name)" + ] + }, + { + "cell_type": "markdown", + "id": "570853d3-0c28-4bf1-9ed5-6300af967c0d", + "metadata": {}, + "source": [ + "### MultiSURF" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "384d9a87-4e17-47ff-8460-d3b6ed145847", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Feature name Feature importances Feature rank \n", + "M0P1 0.08845469 1 \n", + "M0P0 0.08807613 2 \n", + "N0 -0.00049561 3 \n", + "N10 -0.00056682 4 \n", + "N13 -0.00212670 5 \n", + "N14 -0.00467041 6 \n", + "N8 -0.00613933 7 \n", + "N9 -0.00624673 8 \n", + "N1 -0.00625501 9 \n", + "N12 -0.00658989 10 \n", + "N16 -0.00666320 11 \n", + "N11 -0.00764327 12 \n", + "N5 -0.00822562 13 \n", + "N4 -0.00838633 14 \n", + "N15 -0.00857736 15 \n", + "N2 -0.00903556 16 \n", + "N6 -0.00912725 17 \n", + "N7 -0.00916942 18 \n", + "N3 -0.00931820 19 \n", + "N17 -0.00978209 20 \n" + ] + } + ], + "source": [ + "# Import necessary packages\n", + "import pandas as pd\n", + "from skrebate import MultiSURF\n", + "\n", + "# Load the example dataset\n", + "genetic_data = pd.read_csv(\n", + " '../data/GAMETES_Epistasis_2-Way_20atts_0.4H_EDM-1_1.csv')\n", + "\n", + "# Separate the features and labels from the dataset\n", + "features, labels = genetic_data.drop('class', axis=1).values, genetic_data['class'].values\n", + "\n", + "# Apply the algorithm for feature selection\n", + "fs = MultiSURF()\n", + "fs.fit(features, labels)\n", + "\n", + "# Print out the results\n", + "feature_name = genetic_data.drop('class', axis=1).columns\n", + "fs.summary(feature_name=feature_name)" + ] + }, + { + "cell_type": "markdown", + "id": "5ef6380f-5194-4fdc-8042-0942b003576d", + "metadata": {}, + "source": [ + "### MultiSURF*" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "c2d5078a-4dc7-41ce-ae90-d694966b30fd", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Feature name Feature importances Feature rank \n", + "M0P1 0.17498272 1 \n", + "M0P0 0.17344628 2 \n", + "N10 -0.00179863 3 \n", + "N0 -0.00181761 4 \n", + "N13 -0.00553229 5 \n", + "N14 -0.01039264 6 \n", + "N8 -0.01294620 7 \n", + "N12 -0.01297249 8 \n", + "N5 -0.01327019 9 \n", + "N1 -0.01362589 10 \n", + "N16 -0.01397024 11 \n", + "N9 -0.01406904 12 \n", + "N11 -0.01442700 13 \n", + "N7 -0.01500246 14 \n", + "N4 -0.01541660 15 \n", + "N15 -0.01603204 16 \n", + "N2 -0.01606567 17 \n", + "N3 -0.01765580 18 \n", + "N17 -0.01826211 19 \n", + "N6 -0.01848672 20 \n" + ] + } + ], + "source": [ + "# Import necessary packages\n", + "import pandas as pd\n", + "from skrebate import MultiSURFstar\n", + "\n", + "# Load the example dataset\n", + "genetic_data = pd.read_csv(\n", + " '../data/GAMETES_Epistasis_2-Way_20atts_0.4H_EDM-1_1.csv')\n", + "\n", + "# Separate the features and labels from the dataset\n", + "features, labels = genetic_data.drop('class', axis=1).values, genetic_data['class'].values\n", + "\n", + "# Apply the algorithm for feature selection\n", + "fs = MultiSURFstar()\n", + "fs.fit(features, labels)\n", + "\n", + "# Print out the results\n", + "feature_name = genetic_data.drop('class', axis=1).columns\n", + "fs.summary(feature_name=feature_name)" + ] + }, + { + "cell_type": "markdown", + "id": "6e0ff9ee", + "metadata": {}, + "source": [ + "### SWRF*" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "2539b79e", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Feature name Feature importances Feature rank \n", + "M0P1 0.35784528 1 \n", + "M0P0 0.35567375 2 \n", + "N10 -0.00280410 3 \n", + "N0 -0.00443871 4 \n", + "N13 -0.01114346 5 \n", + "N16 -0.01239890 6 \n", + "N5 -0.01295049 7 \n", + "N12 -0.01493585 8 \n", + "N7 -0.01494721 9 \n", + "N8 -0.01545232 10 \n", + "N11 -0.01629748 11 \n", + "N9 -0.01708514 12 \n", + "N14 -0.01774524 13 \n", + "N2 -0.01867276 14 \n", + "N1 -0.01870363 15 \n", + "N15 -0.01902452 16 \n", + "N4 -0.01911098 17 \n", + "N17 -0.02216275 18 \n", + "N3 -0.02343095 19 \n", + "N6 -0.02517648 20 \n" + ] + } + ], + "source": [ + "# Import necessary packages\n", + "import pandas as pd\n", + "from skrebate import SWRFstar\n", + "\n", + "# Load the example dataset\n", + "genetic_data = pd.read_csv(\n", + " '../data/GAMETES_Epistasis_2-Way_20atts_0.4H_EDM-1_1.csv')\n", + "\n", + "# Separate the features and labels from the dataset\n", + "features, labels = genetic_data.drop('class', axis=1).values, genetic_data['class'].values\n", + "\n", + "# Apply the algorithm for feature selection\n", + "fs = SWRFstar()\n", + "fs.fit(features, labels)\n", + "\n", + "# Print out the results\n", + "feature_name = genetic_data.drop('class', axis=1).columns\n", + "fs.summary(feature_name=feature_name)" + ] + }, + { + "cell_type": "markdown", + "id": "15266abe-3190-460b-8be5-1054b0fb5a21", + "metadata": {}, + "source": [ + "## Using as End-to-end Pipeline\n", + "### Single train/test split" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "17e11f7d-682c-460b-a49a-f098805c5d88", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Accuracy: 0.781\n" + ] + } + ], + "source": [ + "# Import necessary packages\n", + "import pandas as pd\n", + "from sklearn.pipeline import make_pipeline\n", + "from skrebate import ReliefF\n", + "from sklearn.ensemble import RandomForestClassifier\n", + "from sklearn.model_selection import train_test_split\n", + "from sklearn.metrics import accuracy_score\n", + "\n", + "# Load the example dataset\n", + "genetic_data = pd.read_csv(\n", + " '../data/GAMETES_Epistasis_2-Way_20atts_0.4H_EDM-1_1.csv')\n", + "\n", + "# Separate the features and labels from the dataset\n", + "features, labels = genetic_data.drop('class', axis=1).values, genetic_data['class'].values\n", + "\n", + "# Split the data to training and testing\n", + "X_train, X_test, y_train, y_test = train_test_split(features, labels, test_size=0.3, random_state=42)\n", + "\n", + "# Make pipeline\n", + "clf = make_pipeline(\n", + " ReliefF(n_features_to_select=2),\n", + " RandomForestClassifier(n_estimators=100)\n", + ")\n", + "\n", + "# Train the model\n", + "clf.fit(X_train, y_train)\n", + "\n", + "# Evaluate the model on testing set\n", + "y_pred = clf.predict(X_test)\n", + "accuracy = accuracy_score(y_test, y_pred)\n", + "print(f\"Accuracy: {accuracy:.3f}\")" + ] + }, + { + "cell_type": "markdown", + "id": "a9e65954-4d6d-4068-8af9-4867505c9c1f", + "metadata": {}, + "source": [ + "### Cross-validation" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "50f8f279-ed80-4dd8-8467-78be501eed2a", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Mean accuracy: 0.793\n" + ] + } + ], + "source": [ + "# Import necessary packages\n", + "import pandas as pd\n", + "import numpy as np\n", + "from sklearn.pipeline import make_pipeline\n", + "from skrebate import ReliefF\n", + "from sklearn.ensemble import RandomForestClassifier\n", + "from sklearn.model_selection import cross_val_score\n", + "\n", + "# Load the example dataset\n", + "genetic_data = pd.read_csv(\n", + " '../data/GAMETES_Epistasis_2-Way_20atts_0.4H_EDM-1_1.csv')\n", + "\n", + "# Separate the features and labels from the dataset\n", + "features, labels = genetic_data.drop('class', axis=1).values, genetic_data['class'].values\n", + "\n", + "# Make pipeline\n", + "clf = make_pipeline(\n", + " ReliefF(n_features_to_select=2),\n", + " RandomForestClassifier(n_estimators=100)\n", + ")\n", + "\n", + "print(f\"Mean accuracy: {np.mean(cross_val_score(clf, features, labels)):.3f}\")" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "base", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.13" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/demo/feature_type_test.ipynb b/demo/feature_type_test.ipynb new file mode 100644 index 0000000..dec8e6e --- /dev/null +++ b/demo/feature_type_test.ipynb @@ -0,0 +1,437 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "8646c1e9-2414-4a4f-8916-23a748bf3924", + "metadata": {}, + "outputs": [], + "source": [ + "import os \n", + "import sys\n", + "# Get the absolute path to the directory containing the package\n", + "package_path = os.path.abspath(os.path.join(\"\", \"..\"))\n", + "\n", + "# Add the package path to sys.path\n", + "sys.path.insert(0, package_path)" + ] + }, + { + "cell_type": "markdown", + "id": "02ec022a-e78e-414c-b965-637ec25a5d49", + "metadata": {}, + "source": [ + "## Examples on documentation" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "f6805819-faec-475d-b361-95377a665e43", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Feature name Feature importances Feature rank Feature type \n", + "N0 0.00175000 6 discrete \n", + "N1 0.00151250 7 discrete \n", + "N2 0.00364375 3 discrete \n", + "N3 -0.00049375 10 discrete \n", + "N4 -0.00167332 14 continuous \n", + "N5 -0.00006580 9 continuous \n", + "N6 -0.00186120 15 continuous \n", + "N7 -0.00221250 18 discrete \n", + "N8 -0.00221196 17 continuous \n", + "N9 0.00262500 4 discrete \n", + "N10 -0.00113065 12 continuous \n", + "N11 0.00223750 5 discrete \n", + "N12 -0.00166648 13 continuous \n", + "N13 -0.00423750 20 discrete \n", + "N14 -0.00414375 19 discrete \n", + "N15 -0.00198510 16 continuous \n", + "N16 0.00032500 8 discrete \n", + "N17 -0.00103750 11 discrete \n", + "M0P0 0.01765217 1 continuous \n", + "M0P1 0.01097106 2 continuous \n" + ] + } + ], + "source": [ + "# Import necessary packages\n", + "import pandas as pd\n", + "from skrebate import ReliefF\n", + "\n", + "# Load the example dataset\n", + "genetic_data = pd.read_csv(\n", + " '../data/GAMETES_Epistasis_2-Way_mixed_attribute_a_20s_1600her_0.4__maf_0.2_EDM-2_01.csv')\n", + "\n", + "# Separate the features and labels from the dataset\n", + "features, labels = genetic_data.drop('class', axis=1).values, genetic_data['class'].values\n", + "\n", + "# Apply the ReliefF algorithm for feature selection\n", + "fs = ReliefF()\n", + "fs.fit(features, labels)\n", + "\n", + "# Print out the results\n", + "feature_name = genetic_data.drop('class', axis=1).columns\n", + "fs.summary(sort=False, feature_name=feature_name, show_feature_type=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "c175f223-b73e-4bad-af99-32a353079107", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Feature name Feature importances Feature rank Feature type \n", + "N0 0.00175000 6 discrete \n", + "N1 0.00151250 7 discrete \n", + "N2 0.00364375 3 discrete \n", + "N3 -0.00049375 10 discrete \n", + "N4 -0.00167332 14 continuous \n", + "N5 -0.00006580 9 continuous \n", + "N6 -0.00186120 15 continuous \n", + "N7 -0.00221250 18 discrete \n", + "N8 -0.00221196 17 continuous \n", + "N9 0.00262500 4 discrete \n", + "N10 -0.00113065 12 continuous \n", + "N11 0.00223750 5 discrete \n", + "N12 -0.00166648 13 continuous \n", + "N13 -0.00423750 20 discrete \n", + "N14 -0.00414375 19 discrete \n", + "N15 -0.00198510 16 continuous \n", + "N16 0.00032500 8 discrete \n", + "N17 -0.00103750 11 discrete \n", + "M0P0 0.01765217 1 continuous \n", + "M0P1 0.01097106 2 continuous \n" + ] + } + ], + "source": [ + "# Import necessary packages\n", + "import pandas as pd\n", + "from skrebate import ReliefF\n", + "\n", + "# Load the example dataset\n", + "genetic_data = pd.read_csv(\n", + " '../data/GAMETES_Epistasis_2-Way_mixed_attribute_a_20s_1600her_0.4__maf_0.2_EDM-2_01.csv')\n", + "\n", + "# Separate the features and labels from the dataset\n", + "features, labels = genetic_data.drop('class', axis=1).values, genetic_data['class'].values\n", + "\n", + "# Apply the ReliefF algorithm for feature selection\n", + "fs = ReliefF(categorical_features=[0, 1, 2, 3, 7, 9, 11, 13, 14, 16, 17])\n", + "fs.fit(features, labels)\n", + "\n", + "# Print out the results\n", + "feature_name = genetic_data.drop('class', axis=1).columns\n", + "fs.summary(sort=False, feature_name=feature_name, show_feature_type=True)" + ] + }, + { + "cell_type": "markdown", + "id": "199dac97-7c62-499a-96ed-c8a96fc6a7cf", + "metadata": {}, + "source": [ + "## Other Tests" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "756975c0-fa40-49f9-a836-8c42fd32f360", + "metadata": {}, + "outputs": [], + "source": [ + "from sklearn.model_selection import train_test_split" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "907495ad-9ccf-47a8-a6ea-d080f7a1b437", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Training data: 1200; Testing data: 400\n" + ] + } + ], + "source": [ + "# Prepare the data\n", + "genetic_data_mixed_attributes = pd.read_csv(\n", + " '../data/GAMETES_Epistasis_2-Way_mixed_attribute_a_20s_1600her_0.4__maf_0.2_EDM-2_01.csv')\n", + "\n", + "features, labels = genetic_data_mixed_attributes.drop('class', axis=1).values, genetic_data_mixed_attributes['class'].values\n", + "\n", + "X_train, X_test, y_train, y_test = train_test_split(features, labels)\n", + "print(f'Training data: {len(X_train)}; Testing data: {len(X_test)}')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "f2872527-17d6-4c40-9afc-7f0d55944fac", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Automatically identify label type as binary\n", + "Created distance array in 0.010340213775634766 seconds.\n", + "Feature scoring under way ...\n", + "Completed scoring in 7.872896671295166 seconds.\n", + "Feature name Feature importances Feature rank Feature type \n", + "N0 0.00002500 6 continuous \n", + "N1 -0.00078333 12 continuous \n", + "N2 -0.00082083 13 continuous \n", + "N3 -0.00138750 15 continuous \n", + "N4 -0.00167789 18 continuous \n", + "N5 -0.00071363 11 continuous \n", + "N6 0.00034540 4 continuous \n", + "N7 -0.00141667 16 continuous \n", + "N8 -0.00059514 9 continuous \n", + "N9 -0.00138333 14 continuous \n", + "N10 -0.00167647 17 continuous \n", + "N11 0.00004583 5 continuous \n", + "N12 -0.00046142 8 continuous \n", + "N13 -0.00285417 20 continuous \n", + "N14 -0.00186250 19 continuous \n", + "N15 -0.00013726 7 continuous \n", + "N16 0.00074167 3 continuous \n", + "N17 -0.00069583 10 continuous \n", + "M0P0 0.01436958 1 continuous \n", + "M0P1 0.01428217 2 continuous \n" + ] + } + ], + "source": [ + "# Test 1 - default value: categorical threshold = 2\n", + "fs = ReliefF(verbose=True)\n", + "fs.fit(X_train, y_train)\n", + "\n", + "feature_name = genetic_data.drop('class', axis=1).columns\n", + "fs.summary(sort=False, feature_name=feature_name, show_feature_type=True)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "31abcefb-e4bc-47ff-9b3a-051f0eeb1299", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Automatically identify label type as binary\n", + "Created distance array in 0.016304731369018555 seconds.\n", + "Feature scoring under way ...\n", + "Completed scoring in 6.505752086639404 seconds.\n", + "Feature name Feature importances Feature rank Feature type \n", + "N0 0.00152500 6 discrete \n", + "N1 0.00121667 7 discrete \n", + "N2 0.00073333 10 discrete \n", + "N3 0.00230000 5 discrete \n", + "N4 -0.00303759 17 continuous \n", + "N5 -0.00088524 12 continuous \n", + "N6 0.00403174 4 continuous \n", + "N7 -0.00135833 15 discrete \n", + "N8 -0.00066926 11 continuous \n", + "N9 0.00114167 8 discrete \n", + "N10 -0.00476300 19 continuous \n", + "N11 0.00430833 3 discrete \n", + "N12 -0.00112665 13 continuous \n", + "N13 -0.00591667 20 discrete \n", + "N14 -0.00125833 14 discrete \n", + "N15 -0.00370901 18 continuous \n", + "N16 0.00112500 9 discrete \n", + "N17 -0.00245000 16 discrete \n", + "M0P0 0.01583936 1 continuous \n", + "M0P1 0.01070135 2 continuous \n" + ] + } + ], + "source": [ + "# Test 2 - set up categorical threshold = 10\n", + "fs = ReliefF(categorical_threshold=10, verbose=True)\n", + "fs.fit(X_train, y_train)\n", + "\n", + "feature_name = genetic_data.drop('class', axis=1).columns\n", + "fs.summary(sort=False, feature_name=feature_name, show_feature_type=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "63e7885b-b314-43af-9a75-9e0f867392e4", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Automatically identify label type as binary\n", + "Created distance array in 0.009785175323486328 seconds.\n", + "Feature scoring under way ...\n", + "Completed scoring in 7.633818864822388 seconds.\n", + "Feature name Feature importances Feature rank Feature type \n", + "N0 0.00002500 6 continuous \n", + "N1 -0.00078333 12 continuous \n", + "N2 -0.00082083 13 continuous \n", + "N3 -0.00138750 15 continuous \n", + "N4 -0.00167789 18 continuous \n", + "N5 -0.00071363 11 continuous \n", + "N6 0.00034540 4 continuous \n", + "N7 -0.00141667 16 continuous \n", + "N8 -0.00059514 9 continuous \n", + "N9 -0.00138333 14 continuous \n", + "N10 -0.00167647 17 continuous \n", + "N11 0.00004583 5 continuous \n", + "N12 -0.00046142 8 continuous \n", + "N13 -0.00285417 20 continuous \n", + "N14 -0.00186250 19 continuous \n", + "N15 -0.00013726 7 continuous \n", + "N16 0.00074167 3 continuous \n", + "N17 -0.00069583 10 continuous \n", + "M0P0 0.01436958 1 continuous \n", + "M0P1 0.01428217 2 continuous \n" + ] + } + ], + "source": [ + "# Test 3 - manaully set up feature type: empty list\n", + "fs = ReliefF(categorical_features=[], verbose=True)\n", + "fs.fit(X_train, y_train)\n", + "\n", + "feature_name = genetic_data.drop('class', axis=1).columns\n", + "fs.summary(sort=False, feature_name=feature_name, show_feature_type=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "3e7736ca-886c-482b-a843-c4cb72060029", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Automatically identify label type as binary\n", + "Created distance array in 0.014851093292236328 seconds.\n", + "Feature scoring under way ...\n", + "Completed scoring in 6.979879856109619 seconds.\n", + "Feature name Feature importances Feature rank Feature type \n", + "N0 0.00152500 6 discrete \n", + "N1 0.00121667 7 discrete \n", + "N2 0.00073333 10 discrete \n", + "N3 0.00230000 5 discrete \n", + "N4 -0.00303759 17 continuous \n", + "N5 -0.00088524 12 continuous \n", + "N6 0.00403174 4 continuous \n", + "N7 -0.00135833 15 discrete \n", + "N8 -0.00066926 11 continuous \n", + "N9 0.00114167 8 discrete \n", + "N10 -0.00476300 19 continuous \n", + "N11 0.00430833 3 discrete \n", + "N12 -0.00112665 13 continuous \n", + "N13 -0.00591667 20 discrete \n", + "N14 -0.00125833 14 discrete \n", + "N15 -0.00370901 18 continuous \n", + "N16 0.00112500 9 discrete \n", + "N17 -0.00245000 16 discrete \n", + "M0P0 0.01583936 1 continuous \n", + "M0P1 0.01070135 2 continuous \n" + ] + } + ], + "source": [ + "# Test 4 - manaully set up feature type: customized list\n", + "fs = ReliefF(categorical_features=[0, 1, 2, 3, 7, 9, 11, 13, 14, 16, 17], verbose=True)\n", + "fs.fit(X_train, y_train)\n", + "\n", + "feature_name = genetic_data.drop('class', axis=1).columns\n", + "fs.summary(sort=False, feature_name=feature_name, show_feature_type=True)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "6a7decb0-6a3e-49c0-957a-82627ba2593c", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Automatically identify label type as binary\n", + "Created distance array in 0.010467052459716797 seconds.\n", + "Feature scoring under way ...\n", + "Completed scoring in 7.745252847671509 seconds.\n", + "Feature name Feature importances Feature rank Feature type \n", + "N0 0.00002500 6 continuous \n", + "N1 -0.00078333 12 continuous \n", + "N2 -0.00082083 13 continuous \n", + "N3 -0.00138750 15 continuous \n", + "N4 -0.00167789 18 continuous \n", + "N5 -0.00071363 11 continuous \n", + "N6 0.00034540 4 continuous \n", + "N7 -0.00141667 16 continuous \n", + "N8 -0.00059514 9 continuous \n", + "N9 -0.00138333 14 continuous \n", + "N10 -0.00167647 17 continuous \n", + "N11 0.00004583 5 continuous \n", + "N12 -0.00046142 8 continuous \n", + "N13 -0.00285417 20 continuous \n", + "N14 -0.00186250 19 continuous \n", + "N15 -0.00013726 7 continuous \n", + "N16 0.00074167 3 continuous \n", + "N17 -0.00069583 10 continuous \n", + "M0P0 0.01436958 1 continuous \n", + "M0P1 0.01428217 2 continuous \n" + ] + } + ], + "source": [ + "# Test 5 - enter both, should only using the cate_gorical_features\n", + "fs = ReliefF(categorical_threshold=10, categorical_features=[], verbose=True)\n", + "fs.fit(X_train, y_train)\n", + "\n", + "feature_name = genetic_data.drop('class', axis=1).columns\n", + "fs.summary(sort=False, feature_name=feature_name, show_feature_type=True)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "base", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.13" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/demo/heatmaps.ipynb b/demo/heatmaps.ipynb new file mode 100644 index 0000000..6e2d766 --- /dev/null +++ b/demo/heatmaps.ipynb @@ -0,0 +1,484 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 44, + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "import pandas as pd\n", + "import seaborn as sns\n", + "import matplotlib.pyplot as plt\n", + "import numpy as np" + ] + }, + { + "cell_type": "code", + "execution_count": 45, + "metadata": {}, + "outputs": [], + "source": [ + "# Define the path to the 'Results' directory\n", + "results_dir = './data'" + ] + }, + { + "cell_type": "code", + "execution_count": 46, + "metadata": {}, + "outputs": [], + "source": [ + "# Initialize a DataFrame to hold all rankings\n", + "all_rankings_df = pd.DataFrame()" + ] + }, + { + "cell_type": "code", + "execution_count": 47, + "metadata": {}, + "outputs": [], + "source": [ + "# Initialize a dictionary to hold the total number of features (N) for each RBA method\n", + "total_features_per_rba = {}" + ] + }, + { + "cell_type": "code", + "execution_count": 48, + "metadata": {}, + "outputs": [], + "source": [ + "# Iterate over each subfolder in the Results directory, each named for an RBA\n", + "for rba in os.listdir(results_dir):\n", + " rba_path = os.path.join(results_dir, rba)\n", + " if os.path.isdir(rba_path): # Ensure it's a directory\n", + " method_feature_counts = [] # To store feature counts for each dataset within this method\n", + " for file in os.listdir(rba_path):\n", + " if file.endswith('.txt'): # Ensure the file is a .txt file\n", + " file_path = os.path.join(rba_path, file)\n", + " \n", + " # Extract the dataset identifier from the file name\n", + " parts = file.split('_')\n", + " dataset_id = '_'.join(parts[-2].split('_')[:2])\n", + " \n", + " # Determine Ranks\n", + " df = pd.read_csv(file_path, sep='\\t', usecols=['Feature'])\n", + " column_to_use = 'ABS_Feature_Importance' if \"ABS\" in rba else 'Feature_Importance'\n", + " df = pd.read_csv(file_path, sep='\\t', usecols=['Feature', column_to_use])\n", + " df.sort_values(by=column_to_use, ascending=False, inplace=True)\n", + " df.reset_index(drop=True, inplace=True)\n", + " df['Rank'] = df.index + 1\n", + " \n", + " # Store in a dataframe\n", + " predictive_df = df[df['Feature'].str.startswith('M')][['Feature', 'Rank']]\n", + " predictive_df['RBA'] = rba\n", + " predictive_df['Dataset'] = dataset_id\n", + " \n", + " all_rankings_df = pd.concat([all_rankings_df, predictive_df], ignore_index=True)\n", + " \n", + " # Add the feature count of this dataset to the list for this method\n", + " method_feature_counts.append(df['Feature'].nunique())\n", + " \n", + " # Store the maximum feature count encountered for this method as N\n", + " total_features_per_rba[rba] = max(method_feature_counts)" + ] + }, + { + "cell_type": "code", + "execution_count": 49, + "metadata": {}, + "outputs": [], + "source": [ + "# Assuming all_rankings_df is correctly prepared and contains 'RBA', 'Feature', 'Rank', 'Dataset'\n", + "\n", + "# Since all datasets have the same N, we can pick the N from any RBA method from total_features_per_rba\n", + "N = next(iter(total_features_per_rba.values()))\n", + "\n", + "# Step 1: Identify the lowest-ranked predictive feature for each dataset for each RBA\n", + "lowest_ranks = all_rankings_df.groupby(['RBA', 'Dataset'])['Rank'].max().reset_index()\n", + "\n", + "# Initialize a structure to hold the calculated percentages for each RBA method\n", + "percentages = {rba: [0] * N for rba in lowest_ranks['RBA'].unique()}\n", + "\n", + "# Step 2: Calculate percentages for each position for each RBA\n", + "for rba in percentages.keys():\n", + " rba_data = lowest_ranks[lowest_ranks['RBA'] == rba]\n", + " for position in range(1, N + 1):\n", + " # Count how many of the lowest ranks are better (lower number) than the current position\n", + " count_higher = rba_data[rba_data['Rank'] <= (position)].shape[0]\n", + " total_datasets = rba_data.shape[0] # Should be 30 per RBA if there are 30 datasets\n", + " percentages[rba][position - 1] = (count_higher / total_datasets) * 100\n", + "\n", + "# Convert the percentages to a DataFrame for visualization\n", + "percentages_df = pd.DataFrame(percentages, index=range(1, N + 1))\n" + ] + }, + { + "cell_type": "code", + "execution_count": 50, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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TMD805QpU+wK1P7TokWL0q1Cuf5+nnjiCT3xxBM3fe0/V2+sXbtWH330kX7++WcdPnxY8fHxkhz7u3h9NVJG/P39b/rsnwkRR2IKDw/PsP36SqSzZ8/e9LUAALgbEigAkE2sWLFCnTt3VkpKiho0aKA+ffooPDxcFStW1J49e2754+9OrFq1St26ddPFixcVGBiosWPHasSIEfLx8bHrlytXLuXKlUsXL17UiRMnMkygHDt2TJJUvHjxLIntRjeugGnduvUtf8wXLVrU9udnn31Wjz/+uNasWaPVq1crOjpaUVFR+uabbzRhwgT98MMPt03IZIWtW7dKkipVqmRre+uttzRkyBB5enqqSZMmatasmcLDw1W1alUtX75cr7zySqbGvnjxourWrau9e/eqePHiatq0qUqXLq0yZcrowQcfVIECBdK9pmnTpjpw4IA2bdqk7777TtHR0dq0aZM2bdqkSZMm6b///a+6dOli+9wLFy6sqlWr3jKOG7fDZCRHjhx65513NHnyZEVFRWndunX68ccftWTJEi1ZskT16tXT2rVrlSNHjky9b0dcfz916tRR3rx5b9rvxvc6ZswYTZ06Vf7+/nrooYf0yCOPKDw8XLVq1dKUKVP03//+945iuJMk0c04GtONW8VudD05c6sEDgAA7oYECgBkE0899ZSuXr2qL7/8Uu3bt7d79vvvv2fJHJs2bVK7du109epVPfzww3r33XdVpEiRm/avVq2afvjhB23ZskUVKlRI9/y3336TdO3HaVYLCQmRt7e3kpOTtWDBAhUuXPi2r0lNTZVpmvL399cjjzyiRx55RNK11QUjR47UkiVLNG3aNL333ntZHu+Ndu3apT179sjDw0MdOnSQdG071vDhw+Xp6amNGzem27rx6aefZnr8V199VXv37lWnTp20dOlSux/oGdUUSUtLU1pamjw9PVW/fn3bMdYJCQmaP3++RowYoRdeeEFdunSx1TwpV66cVq5ceadv3U5KSooMw1D+/PnVt29f9e3bV5K0e/du9erVS5s2bdInn3yiPn363NU8t1KwYEHt379fQ4cOzfA47n86cOCApk2bppCQEG3ZssW25ei6q1ev3qtQ70lMx48fz7D9+rHooaGhWRcoAADZHEVkASAbOHPmjI4dO6acOXOmS55I0oYNG7JknqFDh+rq1avq2LGjoqKi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MoGydu3adAkUHx8flS1bVsHBwS6KCgAAAAAAWN3s2bP11FNPKSQkRFevXlWtWrV06dIltW7dWnPnznV4XEsmUBo3buzqEAAAAAAAQDbk5+enRYsW6d///rd+//13JScnq2zZsipTpsxdjWuZBMqAAQMy3fe99967h5EAAAAAAJBNsIUnnbS0NM2aNUtnzpzR5MmTJUkDBw5U69at1alTJ4fHtUwCZdGiRfLy8lK1atXk4+Nz037/3NoDAAAAAABw3TPPPKMvvvhC06ZNs7WFhYWpf//++uuvv/Tss886NK5lziDq2bOn/P39tW/fPpUoUUKjR4/WunXrtH79ersrOjra1aECAAAAAGAJhmHIMDycdN35gobU1FQ9//zzKlCggPLly6c+ffrYTsL56aefVL16dfn7+6tu3bratm1blnwmn3zyiRYtWqRevXrZ2iIjI7Vw4ULNnj3b4XEtk0BZsmSJTp06pffff1/Jycnq0aOH8ufPr/79+ysqKkopKSmuDhEAAAAAANyBCRMm6IsvvtBHH32kpUuXasOGDXrppZd07tw5tW3bVi1bttSWLVvUqFEjtWnTRpcuXbrrORMTEzM8gCYsLEynTp1yeFzLJFCkayfttG/fXh9++KFOnTqlBQsWKCEhQV26dFGBAgU0YMAArVq1ytVhAgAAAABgDddroDjrugOJiYmaPXu25s2bp6ZNm6pp06aaMmWKNm7cqEWLFqlIkSKaPHmyKlWqpKlTp8rT01MrVqy464+kffv2euaZZ7R7925b29GjRzV27Ni7OrTGMjVQ/ilHjhzq3LmzOnfurISEBM2ZM0eRkZF6//33lZqa6tCYly8nZHGUAJBeWpJj/xsFAABgNWZqsqtDcIiZlj3jvt9s3bpVXl5eatq0qa2tW7du6tatmzp27KjmzZvb2j08PFS/fn2tW7dOPXv2vKt5586dq8cff1yVK1dWzpw55e3trbNnz6px48Z6//33HR7XsgkUSYqLi9Onn36qpUuXavPmzSpVqpS6devm8HgFipfPwugAAAAA4H632dUB4HacegrP/8/z999/2y1u8PX1la+vr133P/74Qw888ICmT5+uN998U6ZpqkOHDpoyZYpiY2PTrQYJDQ3VoUOH7jrMnDlz6qOPPtK0adO0Z88excfHq0yZMqpYseJdjWu5BMqJEyf02Wef6ZNPPtHG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SMaOHWtL1lwvItupUydNnTpVr7zyisPjkkABAAAAAABOVbBgQS1fvlyff/65GjRooL/++ksrV67MklNzFi9erNdff109evSwbd3p3Lmz5syZowULFjg8rltt4QEAAAAA4L7iYVy7nDXXXejXr5/69etnu2/SpIl27dp1l0Gld/nyZRUqVChde7FixXT69GmHx2UFCgAAAAAAuG+0atVKr7/+ukzTlCQZhqHExES9+uqrioiIcHhcEigAAAAAAOC+8eabb+rw4cMqUqSIrl69qg4dOqhgwYLat2/fXRWpZQsPAAAAAADZlYuOMbayfPnyad26ddqwYYN27typ5ORklS1bVg899JA8PBxfR0ICBQAAAAAA3Df69++v5s2bq0mTJmrQoEGWjcsWHgAAAAAAsisLH2PsKjlz5tSMGTMUFham8uXLa+jQofryyy914cKFuxo3e7x7AAAAAACATHj99de1bds2nT9/Xq+99ppy5cqlWbNmqVChQqpdu7bD47KFBwAAAACA7IoaKBlKS0vT/v37tX//fh08eFCHDx+Wt7e3goODHR6TBAoAAAAAALhvNG3aVD///LNy5syp+vXrq0GDBho1apSqVat2V0Vk2cIDAAAAAADuG8eOHVNSUpJKlSqlMmXKqEyZMgoPD7+r5IlEAgUAAAAAgOyLIrLp7Nu3TydPntTo0aPl4eGhGTNmqFixYqpcubL+9a9/OTwuW3gAAAAAAMB9JU+ePGrevLmCg4OVO3duBQYG6ptvvtGZM2c0d+5ch8bMHukjAAAAAACQHitQ0hkxYoTq1aunoKAgtW7dWtHR0WrSpIm2bdumuLg4h8dlBQoAAAAAALhvbN++XW3bttVrr72mWrVqydPTM0vGJYECAAAAAEB25cyVIdlkBcratWslSTt37tSyZcvk7++vihUrKiws7K7GJYECAAAAAADuGxcuXFCXLl20du1a5c+fX4mJiYqPj1enTp20YMEC5cqVy6Fxs0f6CAAAAAAAIBNGjBghSTp69KiOHz+uCxcu6Ndff9WhQ4c0bNgwh8e13AqUxMRE+fn5uToMAAAAAACszzCuXc6aKxuIiorSV199pUKFCtnaqlSpov/85z969NFHHR7XcitQHnroIZ06dUorV66UaZquDgcAAAAAAGQjSUlJunz5crp2T09PXb161eFxLZVAiY6OVqlSpdS8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KCIgIvD5/eFv7pdxWFSGRX2/nofniXPPnHvuZ+69eT+cew6WLVuG5s2bw8SkzEzXQkRERERERFRGlOTcJEyglAmvv/46TExM0K9fP8ybNw+VKlUq7S4REREREREREQEoQ6vwfPTRRwgKCsK6devg5eUFf39/fPDBB4iOji7trhERERERERHRC67MJFDefPNNbNu2Dbdv38bGjRvRuHFjrF69Gk2bNoWLiwuCg4OxevVqXL9+vbS7SkRERERERFQ26OZAKamfF1iZeYVHx9LSEp06dUKnTp0AAJcvX8bWrVvxzTffYMiQIVCpVMjKyirlXhIRERERERHRi6TMJVB0/v33X+zbt0/5iY2NhaWlJVq2bFnaXSMiIiIiIiIqIziJbEkpMwmUP//8U0mW/PXXX0hOToaJiQmaNGmCfv36ISgoCK1atYJarS7trhIRERERERHRC6bMJFACAwOhUqlQp04dDBkyBEFBQQgICICNjU1pd42IiIiIiIiIXnBlJoHy008/ISgoCABgZWUFjUYDADhy5Ai2b98OR0dH9OrVC/b29qXYSyIiIiIiIqIypCQnd33BJ5EtM6vw9OzZE+PHj4eLiwv27dsHANi4cSOaNm2Kd955B6+//joaNmyImzdvlnJPiYiIiIiIiOhFU2YSKMuXL0dERAS++uortGrVCgAwa9Ys1KlTBzdv3kRiYiLc3d2xdOnSUu4pERERERERUVmhKuGfF1eZSaB8++23mDNnDoYOHQqNRoPExEQcO3YMY8aMgVarhUajwfjx47Fu3brS7ioRERERERERvWDKTAIlJiZGGXkCAH/99RdUKpUyLwoA+Pj44OLFi6XRPSIiIiIiIiJ6gZWZBIq5uTlMTU2V3/fu3QtHR0d4eXkpZdnZ2bCysiqN7hERERERERHRC6zMJFBq1aqFHTt2AABEBJs3b4a/v79enW3btqFGjRql0T0iIiIiIiIieoGVmWWMp02bhu7du+PMmTO4fPkyzp49i3nz5gEArly5gj/++ANhYWH49ttvS7mnRERERERERGWDSqWCqoSWFy6p/ZRVZWYESqdOnbBq1SqcOnUKV65cQVhYGHr06AEAeOuttzBu3DiMHz8evXv3Lt2OEhEREREREdELRyUiUtqdKExMTAzKlSsHR0fHJ/5sWloatFotAEBddyRUpubG7h4RERERERGVIZL9APeP/wcAkJqaCo1GU8o9Mq7cz7mpl09Ao7Euof2mQ+tR5+F+n8O4FqbMvMJTkNwTyRIRERERERERlbRnIoFCRERERERERHlQqR7+lNS+XmBlZg4UIiIiIiIiIqKyigkUIiIiIiIiIqJC8BUeIiIiIiIiomeW6v9/SmpfLy6OQCEiIiIiIiIiKgRHoBARERERERE9qziJbInhCBQiIiIiIiIiokJwBAoRERERERHRM4tzoJQUjkAhIiIiIiIiIioER6AQERERERERPas4B0qJ4QgUIiIiIiIiIqJCMIFCRERERERERFQIvsJDRERERERE9MziJLIlhSNQiIiIiIiIiIgKwREoRERERERERM8qTiJbYjgChYiIiIiIiIioEEygEBEREREREREVgq/wEBERERERET2zOIlsSeEIFCIiIiIiIiKiQnAEChEREREREdGzigNQSgxHoBARERERERERFYIjUIiIiIiIiIieWRyCUlI4AoWIiIiIiIiIqBBMoBARERERERERFYKv8BARERERERE9q1QAVCX0as2L/QYPR6AQERERERERERWGI1CIiIiIiIiInlmcRLakcAQKERERERERERWLhIQEdOnSBVqtFl5eXvjhhx9Ku0tPjSNQiIiIiIiIiKhYvPrqq9BoNNizZw9OnDiB4cOHw8vLC82aNSvtrj0xJlCIiIiIiIiInlUqVQlOIvtk+/nnn3+wf/9+XLlyBS4uLmjYsCEiIiLw5ZdfPpMJFL7CQ0RERERERERGt2fPHtStWxcuLi5K2UsvvYTIyMhS7NXTe+5HoIjI//4750Ep9oSIiIiIiIhKQu5nv9zPhM+jtLR7KKnJXR/u6/HFxcXB09NTr6xixYpITEw0ZrdKzHOfQElPT1f+O/NkeCn2hIiIiIiIiEpaeno6tFptaXej2LhUqVUq+01JSUF2drbyu1qthlqt1quTmpoKKysrvTKtVou0tLQS6aOx8RUeIiIiIiIiInoiFStWhJ2dnfIzb948gzq2tra4d09/1EpGRgbs7e1LqJfG9dyPQHFyckJMTAy8vLxw9epV2NnZlXaXnkspKSmoWLEi4uPjYWtrW9rdeW4xzsWPMS5+jHHxY4yLH2Nc/Bjj4scYFz/GuGTkFWcRUd5GcHJyKs3uFQtra2ukpqaW2v7v378PU1NTqHJNKvvo6BMAcHV1xZ9//qlX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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Create custom color scheme\n", + "custom_cmap = sns.color_palette('Oranges', n_colors=1000)[:800] + sns.color_palette('Blues', n_colors=1000)[800:]\n", + "\n", + "# Define your preferred order of the RBAs as a list\n", + "rba_order = [\n", + " 'RandomShuffle',\n", + " 'MutualInformation',\n", + " 'SURFstar',\n", + " 'MultiSURFstar',\n", + " 'SWRFstar',\n", + "]\n", + "\n", + "# Define a mapping from your RBA order to new descriptive names\n", + "rba_descriptive_names = {\n", + " 'RandomShuffle': 'Random Shuffle',\n", + " 'MutualInformation': 'Mutual Information',\n", + " 'ReliefF10': 'ReliefF 10NN',\n", + " 'ReliefF100': 'ReliefF 100NN',\n", + " 'SURFstar': 'SURF*',\n", + " 'MultiSURF': 'MultiSURF',\n", + " 'MultiSURFstar': 'MultiSURF*',\n", + " 'SWRFstar': 'SWRF*',\n", + " 'ABS_ReliefF10': 'ReliefF 10NN ABS',\n", + " 'ABS_ReliefF': 'ReliefF 100NN ABS',\n", + " 'ABS_MultiSURF': 'MultiSURF ABS',\n", + " 'ABS_MultiSURFstar': 'MultiSURF* ABS',\n", + " 'ABD_SWRFstar': 'SWRF* ABS',\n", + "}\n", + "\n", + "percentages_df = percentages_df.iloc[1:] # Drop the first row as this will always be 0\n", + "percentages_df_transposed = percentages_df.T # Transpose percentages_df to switch rows and columns for horizontal orientation\n", + "\n", + "# Reorder the DataFrame according to your defined RBA order\n", + "percentages_df_ordered = percentages_df_transposed.loc[rba_order] # The .loc indexer reindexes the DataFrame to the specified order; any missing labels will result in NaN rows\n", + "\n", + "# Define the tick labels as percentages of optimality\n", + "xtick_labels = ['Optimal', '10%', '20%', '30%', '40%', '50%', '60%', '70%', '80%', '90%', '100%']\n", + "# Generate a list of positions at which to place the x-tick labels, assuming they should be placed at even intervals\n", + "xtick_positions = np.linspace(start=0, stop=percentages_df_transposed.shape[1] - 0.13, num=len(xtick_labels))\n", + "\n", + "# Create the heatmap with the reordered DataFrame\n", + "plt.figure(figsize=(12, 7)) # Adjust the size as necessary\n", + "heatmap = sns.heatmap(percentages_df_ordered, annot=False, fmt=\".1f\", cmap=custom_cmap, cbar_kws={'label': 'Power (Frequency of Success)'})\n", + "\n", + "# Add horizontal lines manually between Methods\n", + "for i in range(percentages_df_ordered.shape[0] - 1):\n", + " heatmap.axhline(i + 1, color='black', linewidth=1.5)\n", + "\n", + "# Adding black border around the heatmap\n", + "for _, spine in heatmap.spines.items():\n", + " spine.set_visible(True)\n", + " spine.set_linewidth(1.5)\n", + " spine.set_edgecolor(\"black\")\n", + "\n", + "# Adding black border around the color bar in legend\n", + "cbar = heatmap.collections[0].colorbar\n", + "cbar.outline.set_linewidth(1.5)\n", + "cbar.outline.set_edgecolor(\"black\")\n", + "\n", + "# Set the title and axis labels appropriately\n", + "heatmap.set_title('a_20 Test Datasets Heatmap', fontsize = 16)\n", + "heatmap.set_xlabel('Predictive features in top % of ranked features', fontsize = 14)\n", + "heatmap.set_ylabel('Method', fontsize = 14)\n", + "\n", + "# Set the custom x-tick labels, positions, and fontsize\n", + "heatmap.set_xticks(xtick_positions)\n", + "heatmap.set_xticklabels(xtick_labels, rotation=0, fontsize=11)\n", + "\n", + "# Set the custom y-tick labels fontsize\n", + "new_ytick_labels = [rba_descriptive_names[rba] for rba in rba_order]\n", + "heatmap.set_yticklabels(new_ytick_labels, fontsize=11)\n", + "\n", + "# Save and show the Plot\n", + "plt.rcParams['font.sans-serif'] = 'Helvetica'\n", + "plt.rcParams['font.family'] = 'sans-serif'\n", + "plt.rcParams['pdf.fonttype'] = 42\n", + "plt.tight_layout() # Adjust the layout\n", + "# save_path = os.path.join(results_dir, 'XOR2_a20_ABS.pdf') # Save\n", + "# plt.savefig(save_path, format='pdf', bbox_inches='tight') # Save\n", + "plt.show() # Display the heatmap" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Below is the parsing code that goes through all result files and calculates the ranks for each feature for all replicates" + ] + }, + { + "cell_type": "code", + "execution_count": 51, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Consolidated rankings saved to: ./data/consolidated_rankings.csv\n" + ] + } + ], + "source": [ + "# Define the path to the 'Results' directory\n", + "results_dir = './data/' # Change this to the path of your 'Results' directory\n", + "\n", + "# Initialize a DataFrame to hold all rankings\n", + "all_rankings_df = pd.DataFrame()\n", + "\n", + "# Initialize a dictionary to hold the total number of features (N) for each RBA method\n", + "total_features_per_rba = {}\n", + "\n", + "# Iterate over each subfolder in the Results directory, each named for an RBA\n", + "for rba in os.listdir(results_dir):\n", + " rba_path = os.path.join(results_dir, rba)\n", + " if os.path.isdir(rba_path): # Ensure it's a directory\n", + " method_feature_counts = [] # To store feature counts for each dataset within this method\n", + " for file in os.listdir(rba_path):\n", + " if file.endswith('.txt'): # Ensure the file is a .txt file\n", + " file_path = os.path.join(rba_path, file)\n", + " \n", + " # Extract the dataset identifier from the file name\n", + " parts = file.split('_')\n", + " dataset_id = '_'.join(parts[-2].split('_')[:2])\n", + " \n", + " # Determine Ranks\n", + " df = pd.read_csv(file_path, sep='\\t', usecols=['Feature'])\n", + " if rba == \"RandomShuffle\":\n", + " df['Rank'] = df.index + 1\n", + " else:\n", + " column_to_use = 'ABS_Feature_Importance' if \"ABS\" in rba else 'Feature_Importance'\n", + " df = pd.read_csv(file_path, sep='\\t', usecols=['Feature', column_to_use])\n", + " df.sort_values(by=column_to_use, ascending=False, inplace=True)\n", + " df.reset_index(drop=True, inplace=True)\n", + " df['Rank'] = df.index + 1\n", + " \n", + " # Store in a dataframe\n", + " predictive_df = df[df['Feature'].str.startswith('M')][['Feature', 'Rank']]\n", + " predictive_df['RBA'] = rba\n", + " predictive_df['Dataset'] = dataset_id\n", + " \n", + " all_rankings_df = pd.concat([all_rankings_df, predictive_df], ignore_index=True)\n", + " \n", + " # Add the feature count of this dataset to the list for this method\n", + " method_feature_counts.append(df['Feature'].nunique())\n", + " \n", + " # Store the maximum feature count encountered for this method as N\n", + " total_features_per_rba[rba] = max(method_feature_counts)\n", + "\n", + "# Now, you have both the rankings and the total number of features (N) for each RBA method\n", + "# You can use total_features_per_rba to access N for each method as needed\n", + "\n", + "# Specify the path to save the consolidated rankings file\n", + "save_path = os.path.join(results_dir, 'consolidated_rankings.csv')\n", + "all_rankings_df.to_csv(save_path, index=False)\n", + "\n", + "print(f\"Consolidated rankings saved to: {save_path}\")\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### This code generates the ranking percentages that are needed to create the heatmaps" + ] + }, + { + "cell_type": "code", + "execution_count": 52, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Percentages saved to percentages_df.csv.\n" + ] + } + ], + "source": [ + "# Assuming all_rankings_df is correctly prepared and contains 'RBA', 'Feature', 'Rank', 'Dataset'\n", + "\n", + "# Since all datasets have the same N, we can pick the N from any RBA method from total_features_per_rba\n", + "N = next(iter(total_features_per_rba.values()))\n", + "\n", + "# Step 1: Identify the lowest-ranked predictive feature for each dataset for each RBA\n", + "lowest_ranks = all_rankings_df.groupby(['RBA', 'Dataset'])['Rank'].max().reset_index()\n", + "\n", + "# Initialize a structure to hold the calculated percentages for each RBA method\n", + "percentages = {rba: [0] * N for rba in lowest_ranks['RBA'].unique()}\n", + "\n", + "# Step 2: Calculate percentages for each position for each RBA\n", + "for rba in percentages.keys():\n", + " rba_data = lowest_ranks[lowest_ranks['RBA'] == rba]\n", + " for position in range(1, N + 1):\n", + " # Count how many of the lowest ranks are better (lower number) than the current position\n", + " count_higher = rba_data[rba_data['Rank'] <= (position)].shape[0]\n", + " total_datasets = rba_data.shape[0] # Should be 30 per RBA if there are 30 datasets\n", + " percentages[rba][position - 1] = (count_higher / total_datasets) * 100\n", + "\n", + "# Convert the percentages to a DataFrame for visualization\n", + "percentages_df = pd.DataFrame(percentages, index=range(1, N + 1))\n", + "\n", + "# Save percentages_df to a CSV file\n", + "save_path_percentages = os.path.join(results_dir, 'percentages_df.csv')\n", + "percentages_df.to_csv(save_path_percentages, index_label='Ranking Position')\n", + "\n", + "print(\"Percentages saved to percentages_df.csv.\")\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Plotting code for heatmaps" + ] + }, + { + "cell_type": "code", + "execution_count": 53, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "1 extra bytes in post.stringData array\n", + "'created' timestamp seems very low; regarding as unix timestamp\n", + "Zapf NOT subset; don't know how to subset; dropped\n", + "feat NOT subset; don't know how to subset; dropped\n", + "meta NOT subset; don't know how to subset; dropped\n", + "morx NOT subset; don't know how to subset; dropped\n" + ] + }, + { + "data": { + "image/png": "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PHmynn76aeXOnVvSte99zpw58vf318cff6yCBQva+oeFhenNN9+UJM2bN++2cV7/PipXrmzX3rBhQ02fPl3t27dXQkLCbce57vpWq5td/fv3T/eaxYsXKzY2Vh06dNDo0aPl4fH//1+j7t27q1evXrpw4YI+/vhjW7uXl5ftb9HT09PWXrRoUTVp0kTSnf0tli5dWjNnzrRtySpcuLAefPBBSde2xz366KO2vhUqVFC5cuWUnJysw4cP33VMlStX1ssvv2x73x4eHpo0aZLKlSunuLg4ff3115l+HwAA3O84hQcAsol+/fqpX79+dm2XL1/WoUOHtGzZMklZf5TtqlWrNGTIEB08eFAeHh569dVX1bFjR0lScnKyrZ9hGLccx8sr6/+fm7S0NH377beSpFatWqV77uHhoYcffljz58/Xzz//rHLlyqlmzZqSrv1oDgkJUY8ePVS1alV5enqqVatWGY5zr1z/roKCgmxtY8aM0ZgxY+z6Xbx4Ufv379d3331n97pbyZcvnzZv3mzXlpqaqqNHj+qrr75KN0bZsmUVGBiow4cPq127dnrmmWf04IMPyt/fX+Hh4ZozZ46t7w8//KDExETVq1dPhQoVSjd3RESE/P39tW3bNqWmptr9mP+nmjVr6rvvvtPw4cN14cIFtW3bViVLlpQkDRs27Lbv85/q1q2rkJCQmz4/evSoduzYYdf2zTffSMr4v6Hr7YsXL9bPP/+sp556SpJsBZVvdPbsWe3Zs8dWN+dO/havJ35ulCtXLklSrVq10vUPCAiQJLu6Jo7G1L59+3Rze3h46JFHHtGePXu0detWuwQOAADujAQKAGQjBw8e1Lx58/TTTz/pwIEDOnPmjCTZrabICkePHtXQoUP15ZdfSrr2v5C/8847dqsZAgMDbf++ePFihj9cr68euL4SJSudO3fOVty0TJkyt+x7/X95f+ihh/Taa69p/PjxmjFjhmbMmKGcOXOqYcOGeuSRR9SzZ0+7hMa9dL0g7D+TEL/++qsWLlyozZs369ChQ7YVKnf6HV+5ckVvv/22vv/+e/3+++86evSoUlJSMhwnODhYy5cv1+DBg7Vy5UqtXLlS3t7eqlmzplq2bKk+ffrYCtReX/WwadOm2ybOzp49q/z589/0+csvv6yTJ0/q/fff17PPPqtnn31WhQoVUrNmzfToo4+qXbt2t0zA/NOUKVPsCtT+06JFi9KtQrn+fp544gk98cQTN33tP1dvrF27Vh999JF+/vlnHT58WPHx8ZIc+1u8vhopI/7+/jd99s+EiCMxhYeHZ9h+fSXS2bNnb/paAADcDQkUAMgmVqxYoc6dOyslJUUNGjRQnz59FB4erooVK2rPnj23/PF3J1atWqVu3brp4sWLCgwM1NixYzVixAj5+PjY9cuVK5dy5cqlixcv6sSJExkmUI4dOyZJKl68eJbEdqMbV8C0bt36lj/mixYtavv3s88+q8cff1xr1qzR6tWrFR0draioKH3zzTeaMGGCfvjhh9smZLLC1q1bJUmVKlWytb311lsaMmSIPD091aRJEzVr1kzh4eGqWrWqli9frldeeSVTY1+8eFF169bV3r17Vbx4cTVt2lSlS5dWmTJl9OCDD6pAgQLpXtO0aVMdOHBAmzZt0nfffafo6Ght2rRJmzZt0qRJk/Tf//5XXbp0sX3uhQsXVtWqVW8Zx43bYTKSI0cOvfPOO5o8ebKioqK0bt06/fjjj1qyZImWLFmievXqae3atcqRI0em3rcjrr+fOnXqKG/evDftd+N7HTNmjKZOnSp/f3899NBDeuSRRxQeHq5atWppypQp+u9//3tHMdxJkuhmHI3pxq1iN7qenLlVAgcAAHdDAgUAsomnnnpKV69e1Zdffqn27dvbPfv999+zZI5NmzapXbt2unr1qh5++GG9++67KlKkyE37V6tWTT/88IO2bNmiChUqpHv+22+/Sbr24zSrhYSEyNvbW8nJyVqwYIEKFy5829ekpqbKNE35+/vrkUce0SOPPCLp2uqCkSNHasmSJZo2bZree++9LI/3Rrt27dKePXvk4eGhDh06SLq2HWv48OHy9PTUxo0b023d+PTTTzM9/quvvqq9e/eqU6dOWrp0qd0P9IxqiqSlpSktLU2enp6qX7++7RjrhIQEzZ8/XyNGjNALL7ygLl262GqelCtXTitXrrzTt24nJSVFhmEof/786tu3r/r27StJ2r17t3r16qVNmzbpk08+UZ8+fe5qnlspWLCg9u/fr6FDh2Z4HPc/HThwQNOmTVNISIi2bNli23J03dWrV+9VqPckpuPHj2fYfv1Y9NDQ0KwLFACAbI4isgCQDZw5c0bHjh1Tzpw50yVPJGnDhg1ZMs/QoUN19epVdezYUVFR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bGysJClXrlx66qmnNH78eIfHvesESmxsrJYtW6Zly5Zp06ZNSk1NVVBQkDp16qSOHTuqVatWdzsFAAAAAABAphiGoWHDhmnYsGFKSEjQlStXlCdPnrse16EEyu+//25LmuzcuVOmaapAgQIaOHCgOnbsqKZNm8rbm1ojAAAAAADcUxxjnKG33npLixYt0uHDh7V582a98soratSokdq3b+/wmJlef/PTTz9p1KhRCg8PV9WqVTV+/HjFx8drxIgR2rBhg+Li4jRv3jy1aNGC5AkAAAAAAHCJqVOnasKECerQoYMuXbqk1NRUFStWTL1799bbb7/t8LiZXoHSoEEDGYah4OBg9e7dWx06dLArEBsTE3PT15YoUcLhAAEAAAAAwE1QAyWduXPnas6cOercubMmTpwoSRo6dKgCAwM1ZcoUDR482KFx72gLj2maOnfunD744AN98MEHmXqNYRhKSUlxKDgAAAAAAIA7cebMGZUpUyZde9WqVfXXX385PG6mEyh9+/Z1eBIAAAAAAABnaNSokT7++GNVqlRJ0rWFHZK0aNEiVa9e3eFxM51AWbhwocOTAAAAAACAe4Aisum8+eabat26tdasWaPk5GQ9/fTTiomJUUJCgqKiohwe966PMQYAAAAAALCKkiVLavfu3Vq6dKl27Nih5ORkderUSY899pgCAwMdHpcECgAAAAAA2RVFZO2kpKSoS5cumjNnjh577DE99thjWTa29d89AAAAAABAJnh5eenUqVNau3Zt1o+d5SMCAAAAAAC4yKOPPqpnn31W27dvV7ly5eThYb92ZMCAAQ6NSwIFAAAAAIDsiiKy6cyZM0dBQUH64osv0j0zDIMECgAAAAAAbocaKOnExMTck3Gzx7sHAAAAAAC4ierVq+vYsWN2bbGxsUpNTc2yOUigAAAAAACAbG379u1KSkqyaytfvrwOHTqUZXOwhQcAAAAAgOyKGig3ZZpmlo7HChQAAAAAAIDbYAUKAAAAAADZFUVknYYECgAAAAAAyPZ+/vlnHT161HZvmqa2bt2qEydO2PVr1KiRQ+OTQAEAAAAAANlez54907X17t3b7t4wDIdP5iGBAgAAAABAdkURWUlSTEzMPZ+DBAoAAAAAAMjWcufOrVy5ct3Ra86ePauQkJBM93fvCjAAAAAAAGRrHv9fSPZeXxZOITRt2lTDhw/X/v37b9t39+7dGjJkiNq2bXtHc7ACBQAAAAAAZGubN2/WW2+9pcaNGytPnjyqU6eOwsPDlTt3bpmmqfPnz+vgwYPatGmT/v77b7388st6/fXX72gOEigAAAAAAGRXhpxYA8U50zjC29tbw4YN05NPPqlvvvlGq1ev1qpVq3TmzBmlpKQoNDRUderU0YwZM/Twww/L29v7jucggQIAAAAAAO4LPj4+6tChgzp06JDlY1t3AxMAAAAAAIBFkEABAAAAACC7clYBWVshWcdNmjRJRYoUsd3/9NNPql69uvz9/VW3bl1t27btbj+Ne4oECgAAAAAAuKf27t2rSZMm2e7PnTuntm3bqmXLltqyZYsaNWqkNm3a6NKlSy6M8tZIoAAAAAAAkF0ZhnMvB6SlpWngwIGqU6eOrW3RokUqUqSIJk+erEqVKmnq1Kny9PTUihUr7urjME1T586dk2madzVORkigAAAAAACAe2bOnDny9fVV//79bW3r169X8+bNbfceHh6qX7++1q1bd9fzFS1aVL///vtdj/NPbnUKj5mW7OoQAAAAAAD3GL/9rOPIkSP697//rZ9++kkbN260tcfGxqpx48Z2fUNDQ3Xo0KG7ms8wDD3xxBOaPXu25s+fLy+vrEt7uFUC5eruha4OAQAAAACArJMFxV3vaK7/+fvvv5Wammq79/X1la+vb7qXPPHEExoxYoRKlSpll0CJj4+Xn5+fXd/AwEDFx8ffdZh79uzRmjVr9PXXXys8PFweHvafT3R0tEPjulUCBQAAAAAA3L3Q0FC7+8jISI0fP96ubfHixTp+/LhGjhyZ7vVBQUFKTEy0a7ty5YqCg4PvOrbatWurdu3adz3OP7lVAsWnQn8ZHt6uDgMAAAAAcA+ZacnuswPhLoq7OjTX/8TFxSkgIMB2n9Hqk7Vr12r37t3KmTOnJCk1NVUpKSnKkSOHkpOT1bRpU7v+x44dU1hY2F2HGRkZaft3fHy8AgICZGTBZ+RWCRTDw1uGJwkUAAAAAADuRlBQkF0CJSNTpkzR6NGjbffLli3T7Nmz9cMPP+jTTz/V8uXLbc9SUlIUHR2t+fPn33VsycnJeumll7Rw4UKdO3dOf/zxhyIjI1W3bl0988wzDo/LKTwAAAAAAGRX12ugOOu6A4UKFVLZsmVtV6FCheTl5aWyZctq8ODB2r9/vyIjI/Xrr7+qX79+CggIUIsWLe76Ixk7dqwtWXO9iGynTp00depUvfLKKw6PSwIFAAAAAAA4VcGCBbV8+XJ9/vnnatCggf766y+tXLkyS07NWbx4sV5//XX16NHDtnWnc+fOmjNnjhYsWODwuG61hQcAAAAAgPuKh3HtctZcd6Ffv37q16+f7b5JkybatWvXXQaV3uXLl1WoUKF07cWKFdPp06cdHpcVKAAAAAAA4L7RqlUrvf766zJNU5JkGIYSExP16quvKiIiwuFxSaAAAAAAAID7xptvvqnDhw+rSJEiunr1qjp06KCCBQtq3759d1Wkli08AAAAAABkVy46xtjK8uXLp3Xr1mnDhg3auXOnkpOTVbZsWT300EPy8HB8HQkJFAAAAAAAcN/o37+/mjdvriZNmqhBgwZZNi5beAAAAAAAyK4sfIyxq+TMmVMzZsxQWFiYypcvr6FDh+rLL7/UhQsX7mrc7PHuAQAAAAAAMuH111/Xtm3bdP78eb322mvKlSuXZs2apUKFCql27doOj8sWHgAAAAAAsitqoGQoLS1N+/fv1/79+3Xw4EEdPnxY3t7eCg4OdnhMEigAAAAAAOC+0bRpU/3888/KmTOn6tevrwYNGmjUqFGqVq3aXRWRZQsPAAAAAAC4bxw7dkxJSUkqVaqUypQpozJlyig8PPyukicSCRQAAAAAALIvisims2/fPp08eVKjR4+Wh4eHZsyYoWLFiqly5cr617/+5fC4bOEBAAAAAAD3lTx58qh58+YKDg5W7ty5FRgYqG+++UZnzpzR3LlzHRoze6SPAAAAAABAeqxASWfEiBGqV6+egoKC1Lp1a0VHR6tJkybatm2b4uLiHB6XFSgAAAAAAOC+sX37drVt21avvfaaatWqJU9PzywZlwQKAAAAAADZlTNXhmSTFShr166VJO3cuVPLli2Tv7+/KlasqLCwsLsalwQKAAAAAAC4b1y4cEFdunTR2rVrlT9/fiUmJio+Pl6dOnXSggULlCtXLofGzR7pIwAAAAAAgEwYMWKEJOno0aM6fvy4Lly4oF9//VWHDh3SsGHDHB7XcitQEhMT5efn5+owAAAAAACwPsO4djlrrmwgKipKX331lQoVKmRrq1Kliv7zn//o0UcfdXhcy61Aeeihh3Tq1CmtXLlSpmm6OhwAAAAAAJCNJCUl6fLly+naPT09dfXqVYfHtVQCJTo6WqVKlVLz5s01b948xcfHuzokAAAAAACsi2OM0+nYsaOeeeYZbd++3dZ28OBBjRo1Si1atHB4XEu9+4ULF2rv3r3at2+fOnXqpJw5c7o6JAAAAAAAkI28/vrrqlChgmrUqKGgoCCFhISoTJkyCgwM1Ny5cx0e13IJlCJFiuirr77SqlWrdP78eVeHBAAAAAAAspGAgAB9+OGHiomJ0dKlS/XOO+9o586dWr16tQoUKODwuJYrItulSxe1aNHirpbVAAAAAADgFgzDeVtrLF5EdtOmTVqxYoWuXr2qFi1a6KGHHlJYWFiWjW+pFSgTJ07Uww8/7OowAAAAAABANrJkyRI1aNBAn376qVavXq1WrVpp3LhxWTqHpRIoEyZM0Llz5+zaWrZsqaNHj7ooIgAAAAAALOz6McbOuixq0qRJGjNmjA4cOKDt27dr4cKFmjZtmlJSUrJsDkslUDI6tvjHH39UQkKCC6IBAAAAAADZwcGDB/XYY4/Z7nv06KHU1FQdOXIky+awXA0UAAAAAACQSc48XtjCxxinpaXJ19fXdu/l5SVvb2+lpqZm2RzWffcAAAAAAAAWwQoUAAAAAACyK1ag2Lz++uvKkyeP7T41NVVz5sxR3rx57fo5WlzWcgmUZcuWKV++fLb7tLQ0ffnllypYsKBdvz59+jg7NAAAAAAAYEFhYWFavny5XVvhwoW1YsUKuzbDMO6fBMqoUaPStY0ePdru3jAMEigAAAAAAECSFBsbe8/nsFQCJSYmxtUhAAAAAACQfbCFx2kslUApWrRopvpldNwxAAAAAADAvWKpBIokrVmzRitWrJCXl5d69uyp6tWr6/fff9eWLVt09epVJScn67PPPtP69etdHSoAAAAAAK5lGNcuZ83lxiyVQFmyZIn69OmjHDlyyNvbW2+88YbGjRunCRMmKCUlRZLk7e2drqAsAAAAAADAvWSpDUwzZ85U//79denSJV28eFFjxozRuHHj1KpVKx08eFBXr15VUlKSjhw54upQAQAAAACwAI//r4Nyry9rpRCczlLvft++fXr22Wfl6ekp6dqJPKZpauzYsSpRooS8vCy1YAYAAAAAALgJSyVQEhMTFRAQYLsPCAiQr6+vcufO7bqgAAAAAACA22NJBwAAAAAA2RXHGDuNe797AAAAAACATLDcCpQ33nhDwcHBtvvU1FS9+eabCgkJsbUZhqGXX37ZFeEBAAAAAGAdHh7XLmfN5cYsl0CZPXt2urY33njD7p4ECgAAAAAAcCZLJVDS0tJcHQIAAAAAAEA6lkqgAAAAAACAO2AY1y5nzeXGLJVAmThxYobt/v7+yp8/vyIiIlS0aFEnRwUAAAAAANydpRIo48ePv+VzwzDUv39/LViwQB5uXrwGAAAAAACOMXYeS737tLS0m15nzpzRokWL9Nlnn2nGjBmuDhUAAAAAALgRS61AuZU8efKod+/eunDhgubPn69Ro0a5OiQAAAAAAFyLFShOk+3efePGjRUTE+PqMAAAAAAAgBvJdgmUpKQk+fr6ujoMAAAAAADgRrLNFp7r5s2bp5o1a7o6DAAAAAAAXI9jjJ3GUgmUxYsXZ9humqZOnz6t5cuXa/PmzVq9erWTIwMAAAAAAO7MUgmUfv363fSZh4eHGjRooG+//VYRERHOCwoAAAAAAKuiiKzTWCqBcrPisP7+/sqTJ488PT2dHBEAAAAAAIDFEihFixbNknGSkpKUlJQkSbp8+XKWjAkAAAAAgOUYhhNXoLh3DRTLrb+Ji4vTjBkzdODAAUnS1atXNWLECFWoUEENGzbU559/ftsxpkyZoly5cilXrlwKDQ291yEDAAAAAID7nKUSKDExMapUqZImTpyos2fPSpJefPFFzZo1S1WqVFF4eLh69uypTZs23XKcMWPG6OLFi7p48aLi4uKcEToAAAAAAM53vQaKsy43ZqktPNOnT1eJEiW0du1a5cyZU6Zp6v3331ffvn21cOFCSVJwcLBef/111atX76bj+Pr6ytfXV5KomwIAAAAAAO6apdJH33//vV5++WXlzJlTkrRr1y6dPXtWnTt3tvVp2bLlbVegAAAAAAAAZCVLrUCJi4tTyZIlbfebNm2yHV983QMPPKBTp065IjwAAAAAAKzFMJxX3JUistZRsGBBnTlzxnb/448/qmzZssqVK5etLS4ujsKwAAAAAADAqSyVQGnSpIleffVVJScnKyYmRitXrlTz5s3t+sydO/eW9U8AAAAAAHAbFJF1Gktt4Zk4caJq166t4OBgXb16Vb6+vho6dKgkacmSJXrrrbe0Y8cObd++3bWBAgAAAAAAt2KpBErhwoW1e/duffLJJ7p48aI6dOhgq4ny22+/KX/+/IqOjlZ4eLiLIwUAAAAAwAKcuTKEFSjWkjt3bj3++OPp2mfMmOGCaAAAAAAAACyWQHnvvffUtWtXBQYG6r333rtl3wEDBjgpKgAAAAAA4O4slUAZNGiQGjdurMDAQA0aNOim/QzDIIECAAAAAADHGDuNpRIoaWlpGf4bAAAAAADAlSxbAWbAgAE6c+ZMuvbTp0/bTuYBAAAAAMCtcYyx01hqBYokLV68WJL0/vvvq0KFCsqXL5/d8127dundd9/VG2+84YrwAAAAAACAG7JcAqVfv36SrtU5GTVqVLrnXl5eGjx4sJOjAgAAAAAA7sxyCZTk5GSZpikfHx/t3btXJUuWtHvu6enposgAAAAAALAYZ26tYQuPtVxPkMTExOiBBx6Qh4d7f0EAAAAAAMD1LJVAadSoUab7RkdH38NIAAAAAADIBliB4jSWSqD8c7sOAAAAAACAFVgqgbJw4UJXhwAAAAAAQPbhYVy7nDWXG7NUAuVGa9euveXzpk2bOikSAAAAAADg7iybQGnevLkMw5BpmrY2w/j/bFdqaqorwgIAAAAAAG7IsgmUmJgYu/vExETt3LlTr7zyil5++WUXRQUAAAAAgIVQRNZpLJtAKVq0aLq2smXLqm7dumrfvr06d+7sgqgAAAAAAIA7smwC5WYKFy6sw4cPuzoMAAAAAABcjxUoTmPZBEpGSZKEhAR9+OGHyps3rwsiAgAAAAAA7sqyCZTw8HC7orGSZJqmfHx8tGjRItcEBQAAAACAlbACxWksm0BZt25dujYfHx+VLVtWwcHBLogIAAAAAAC4K0slUAYMGJCpfoZh6N13373H0QAAAAAAkA38Y/cG7g1LJVAWLVokLy8vVatWTT4+Pq4OBwAAAAAAQJLFEig9e/bUypUrtW/fPrVv315du3ZVixYt5OVlqTABAAAAAICbsVQFmCVLlujUqVN6//33lZycrB49eih//vzq37+/oqKilJKS4uoQAQAAAACwEMPJl/uyVAJFulYotn379vrwww916tQpLViwQAkJCerSpYsKFCigAQMGaNWqVa4OEwAAAAAAuBHLJVBulCNHDnXu3FlLly7VqVOn9MILL+ijjz5S69atXR0aAAAAAACud/0YY2ddbszyxUXi4uL06aefaunSpdq8ebNKlSqlbt26uTosAAAAAADgRiyZQDlx4oQ+++wzffLJJ9q4caOKFy+url27au7cuapataqrwwMAAAAAAG7GUgmUefPmaenSpdqwYYOKFCmirl27aubMmapZs6arQwMAAAAAwHoM49rlrLncmKUSKP/617/k5eWlxo0bq27dujIMQ1999ZW++uqrdH0nTpzogggBAAAAAIA7slQCJSwsTIZh6ODBgzp48OBN+xmGQQIFAAAAAAB5yHnnw1BE1jJiY2NdHQIAAAAAAEA6lkqgAAAAAACAO0ANFKdx7/U3AAAAAAAAmUACBQAAAAAA4DbYwgMAAAAAQHbFFh6nYQUKAAAAAADAbbACBQAAAACAbItjjJ3Fvd89AAAAAABAJrACBQAAAACA7IoaKE7DChQAAAAAAIDbYAUKAAAAAADZFStQnIYVKAAAAAAAALdBAgUAAAAAAOA22MIDAAAAAEC2xTHGzuLe7x4AAAAAANwzp06dUteuXZUrVy4FBgaqQ4cOOnnypCTpp59+UvXq1eXv76+6detq27ZtLo721kigAAAAAACQXV0vIuus6w716tVLsbGx+uabb/T111/r4MGD6t+/v86dO6e2bduqZcuW2rJlixo1aqQ2bdro0qVL9+BDyhokUAAAAAAAQJaLi4vT999/r7lz56p+/fqKiIjQa6+9pqioKM2ZM0dFihTR5MmTValSJU2dOlWenp5asWKFq8O+KbeqgWKmJbs6BAAAAADAPeZWv/0Mj2uXs+a6A8ePH1fRokVVqVIlW1uBAgUkSevWrVPz5s1t7R4eHqpfv77WrVunnj17Zk28WcytEihXdy90dQgAAAAAAGR7f//9t1JTU233vr6+8vX1tetTo0YNxcbG2rUtWLBAfn5+unDhgooWLWr3LDQ0VIcOHbpnMd8ttvAAAAAAAIA7Ehoaqly5ctmuKVOm3LL/5cuX9fjjj+vNN9/UhAkTFB8fLz8/P7s+gYGBio+Pv5dh3xW3WoHiU6G/DA9vV4cBAAAAALiHzLRkN9qBYPzvctZc18TFxSkgIMB2/8/VJzfauHGjevfurRMnTmju3Ll66qmn9PHHHysxMdGu35UrVxQcHJz1YWcRt0qgGB7eMjxJoAAAAAAAcDeCgoLsEig388UXX6hHjx5q0KCBvv/+e5UsWVKSVKhQIR09etSu77FjxxQWFnZP4s0KbOEBAAAAACC7svAxxhcvXtSgQYPUtWtXu+SJJDVr1kzr1q2z3aekpCg6OtqusKzVkEABAAAAAABZbvXq1YqPj9fw4cN1+PBhHTx40HZ16dJF+/fvV2RkpH799Vf169dPAQEBatGihavDvim32sIDAAAAAACc4/Dhw0pOTlaNGjXSPYuJidHy5cs1dOhQTZ8+XbVr19bKlSvl5WXdNIV1IwMAAAAAALdmeFy7nDXXHRg1apRGjRp10+fFihXTrl277jYqp2ELDwAAAAAAwG2wAgUAAAAAgGzKMAwZd1jc9W7mcmesQAEAAAAAALgNVqAAAAAAAJBtGXLe2ghWoAAAAAAAAOAWSKAAAAAAAADcBlt4AAAAAADIrgzj2uWsudwYK1AAAAAAAABugxUoAAAAAABkV6xAcRpWoAAAAAAAANwGK1AAAAAAAMi2POS8tRHuvQbDvd89AAAAAABAJrACBQAAAACA7IoaKE7DChQAAAAAAIDbIIECAAAAAABwG2zhAQAAAAAgu2ILj9OwAgUAAAAAAOA2WIECAAAAAEC2xTHGzuLe7x4AAAAAACATSKAAAAAAAADcBlt4AAAAAADIrigi6zSsQAEAAAAAALgNVqAAAAAAAJBdGR7XLmfN5cbc+90DAAAAAABkAitQAAAAAADItoz/Xc6ay32xAgUAAAAAAOA2SKAAAAAAAADcBlt4AAAAAADIrjjG2GlYgQIAAAAAAHAbllqBkpiYKD8/P1eHAQAAAABA9sAxxk5jqXf/0EMP6dSpU1q5cqVM03R1OAAAAAAAAJIstAIlOjpapUqVUvPmzRUWFqaIiAjlzJnT1WEBAAAAAGBd1EBxGsusQFm4cKH27t2rffv2qVOnTiRPAAAAAACAZVgqgVKkSBF99dVXWrVqlc6fP+/qkAAAAAAAACRZaAuPJHXp0kUtWrRQixYtXB0KAAAAAADZgPG/y1lzuS/LrECZOHGiHn74YVeHAQAAAAAAkI5lEigTJkzQuXPn7Npatmypo0ePuigiAAAAAAAs7voxxs663Jhl3n1Gxxb/+OOPSkhIcEE0AAAAAAAA/89SNVAAAAAAAMCdoAaKs1hmBQoAAAAAAIBVsQIFAAAAAIDsyjCuXc6ay41ZKoGybNky5cuXz3aflpamL7/8UgULFrTr16dPH2eHBgAAAAAA3JhhZlS91QU8PDK3m8gwDKWmpmZ63MuXLyswMFCS5FvpcRme3g7FBwAAAADIHszUZCX9vkCSFB8fr4CAABdHlLVu/J176dAmBfj7OWfehETlLFlP0v35ud6OZVagxMTEuDoEAAAAAACyIffeWuMslkmgFC1aNFP9LLJgBgAAAAAAuBHLJFAkac2aNVqxYoW8vLzUs2dPVa9eXb///ru2bNmiq1evKjk5WZ999pnWr1/v6lABAAAAALAAJxaRdfOVLpZJoCxZskR9+vRRjhw55O3trTfeeEPjxo3ThAkTlJKSIkny9vZOV1AWAAAAAADgXstc5VYnmDlzpvr3769Lly7p4sWLGjNmjMaNG6dWrVrp4MGDunr1qpKSknTkyBFXhwoAAAAAANyMZRIo+/bt07PPPitPT09J0qhRo2SapsaOHasSJUrIy8syi2UAAAAAAICbsUwCJTEx0e4IpICAAPn6+ip37tyuCwoAAAAAAEAWqoECAAAAAADukOHEIrJOK1ZrTZZZgQIAAAAAAGBVllqB8sYbbyg4ONh2n5qaqjfffFMhISG2NsMw9PLLL99ynKSkJCUlJUmSLl++fG+CBQAAAADA5Qw573hh916BYpimabo6CEny8MjcYhjDMJSamnrLPuPHj9eECRPStftWelyGp7dD8QEAAAAAsgczNVlJvy+QJMXHx9vV27wfXL58WYGBgZKkS4d/VkCAv5PmTVDOErUl3Z+f6+1YZgtPWlpapq7bJU8kacyYMbp48aIuXryouLg4J0QPAAAAAADuZ5ZJoHz++ec6f/58lozl6+uroKAg2wUAAAAAwH3pehFZZ11uzDI1ULp06SIPDw9VqVJFzZo1U/PmzdWwYUP5+fm5OjQAAAAAAODmLLMCZeXKlRozZoxy5cqluXPnqmXLlgoODlbjxo3173//W5s2bcrU9h0AAAAAANyH4eTLfVmmiOyNUlNTtW3bNm3cuFE//fSTNm7cqBMnTigwMFARERH66quvMj3WjcV1KCILAAAAAPc/tyoiG/OLc4vIFq8p6f78XG/HMlt4buTp6alatWqpVq1aeuyxx7Rq1SrNnz9fGzdu1Ndff+3q8AAAAAAAgJuxXAIlJSVFGzZs0KpVq/Tdd99px44dypUrl5o0aaL58+erRYsWrg4RAAAA/9fenYdFVf1/AH8P2wAzLAKCCIgLIu77ghIg7kvuZipumLuGabmkpRmmZZqplX6tqLRVcyvD7SuaS6mQe26guIGoKCIgIvD5/eFv7pdxWFSGRX2/nofniXPPnHvuZ+69eT+cew4REZUNJTm5KyeRLRuWLVuGrVu3YteuXcjIyEDTpk3RrVs3LFu2DM2bN4eJSZmZroWIiIiIiIiojCjJuUmYQCkTXn/9dZiYmKBfv36YN28eKlWqVNpdIiIiIiIiIiICUIZW4fnoo48QFBSEdevWwcvLC/7+/vjggw8QHR1d2l0jIiIiIiIiohdcmUmgvPnmm9i2bRtu376NjRs3onHjxli9ejWaNm0KFxcXBAcHY/Xq1bh+/Xppd5WIiIiIiIiobNDNgVJSPy+wMvMKj46lpSU6deqETp06AQAuX76MrVu34ptvvsGQIUOgUqmQlZVVyr0kIiIiIiIiohdJmUug6Pz777/Yt2+f8hMbGwtLS0u0bNmytLtGREREREREVEZwEtmSUmYSKH/++aeSLPnrr7+QnJwMExMTNGnSBP369UNQUBBatWoFtVpd2l0lIiIiIiIiohdMmUmgBAYGQqVSoU6dOhgyZAiCgoIQEBAAGxub0u4aEREREREREb3gykwC5aeffkJQUBAAwMrKChqNBgBw5MgRbN++HY6OjujVqxfs7e1LsZdEREREREREZUhJTu76gk8iW2ZW4enZsyfGjx8PFxcX7Nu3DwCwceNGNG3aFO+88w5ef/11NGzYEDdv3izlnhIRERERERHRi6bMJFCWL1+OiIgIfPXVV2jVqhUAYNasWahTpw5u3ryJxMREuLu7Y+nSpaXcUyIiIiIiIqKyQlXCPy+uMpNA+fbbbzFnzhwMHToUGo0GiYmJOHbsGMaMGQOtVguNRoPx48dj3bp1pd1VIiIiIiIiInrBlJkESkxMjDLyBAD++usvqFQqZV4UAPDx8cHFixdLo3tERERERERE9AIrMwkUc3NzmJqaKr/v3bsXjo6O8PLyUsqys7NhZWVVGt0jIiIiIiIiohdYmUmg1KpVCzt27AAAiAg2b94Mf39/vTrbtm1DjRo1SqN7RERERERERPQCKzPLGE+bNg3du3fHmTNncPnyZZw9exbz5s0DAFy5cgV//PEHwsLC8O2335ZyT4mIiIiIiIjKBpVKBVUJLS9cUvspq8rMCJROnTph1apVOHXqFK5cuYKwsDD06NEDAPDWW29h3LhxGD9+PHr37l26HSUiIiIiIiKiF45KRKS0O1GYmJgYlCtXDo6Ojk/82bS0NGi1WgCAuu5IqEzNjd09IiIiIiIiKkMk+wHuH/8PACA1NRUajaaUe2RcuZ9zUy+fgEZjXUL7TYfWo87D/T6HcS1MmXmFpyC5J5IlIiIiIiIiIippz0QChYiIiIiIiIjyoFI9/Cmpfb3AyswcKEREREREREREZRUTKEREREREREREheArPERERERERETPLNX//5TUvl5cHIFCRERERERERFQIjkAhIiIiIiIielZxEtkSwxEoRERERERERESF4AgUIiIiIiIiomcW50ApKRyBQkRERERERERUCI5AISIiIiIiInpWcQ6UEsMRKEREREREREREhWAChYiIiIiIiIioEHyFh4iIiIiIiOiZxUlkSwpHoBARERERERERFYIjUIiIiIiIiIieVZxEtsRwBAoRERERERERUSGYQCEiIiIiIiIiKgRf4SEiIiIiIiJ6ZnES2ZLCEShERERERERERIXgCBQiIiIiIiKiZxUHoJQYjkAhIiIiIiIiIioER6AQERERERERPbM4BKWkcAQKEREREREREVEhmEAhIiIiIiIiIioEX+EhIiIiIiIielapAKhK6NWaF/sNHo5AISIiIiIiIiIqDEegEBERERERET2zOIlsSeEIFCIiIiIiIiIqFgkJCejSpQu0Wi28vLzwww8/lHaXnhpHoBARERERERFRsXj11Veh0WiwZ88enDhxAsOHD4eXlxeaNWtW2l17YkygEBERERERET2rVKoSnET2yfbzzz//YP/+/bhy5QpcXFzQsGFDRERE4Msvv3wmEyh8hYeIiIiIiIiIjG7Pnj2oW7cuXFxclLKXXnoJkZGRpdirp/fcj0ARkf/9d86DUuwJERERERERlYTcz365nwmfR2lp91BSk7s+3Nfji4uLg6enp15ZxYoVkZiYaMxulZjnPoGSnp6u/HfmyfBS7AkRERERERGVtPT0dGi12tLuRrFxqVKrVPabkpKC7Oxs5Xe1Wg21Wq1XJzU1FVZWVnplWq0WaWlpJdJHY+MrPERERERERET0RCpWrAg7OzvlZ968eQZ1bG1tce+e/qiVjIwM2Nvbl1Avjeu5H4Hi5OSEmJgYeHl54erVq7CzsyvtLj2XUlJSULFiRcTHx8PW1ra0u/PcYpyLH2Nc/Bjj4scYFz/GuPgxxsWPMS5+jHHJyCvOIqK8jeDk5FSa3SsW1tbWSE1NLbX9379/H6amplDl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4IFUqVJFpk6dyvPYCJKTk0WtVsuqVav0ytu3by+9evVijI1ozZo1AkAuXLigV84YF90nn3wiAOTSpUt65R06dJD+/fszxkayc+dOqVatmly7dk0pi4iIEFNTU7lw4QLjXERP+syRkpIiVlZW8sMPPyjb09LSxMHBQb799luD9nNyciQwMFASExNF5OHEvbknaX/jjTdk4cKFRj8uer6UmQRKfHy8VK9eXapVqyZfffWVHD16VI4cOSLLli0TJycn6dWrl2RlZSkJlGrVqsmWLVvk0KFD0rdvX7G2tlaWFFu1apUAkL1790p6enqREygLFiwQKysr+fXXX+XIkSMyd+5ccXFxEQASHR0tIi9WAiUuLk60Wq2MHj1ajhw5IsuXLxdLS0u9OjpZWVni5+cnt2/fVsqqVq0qc+fOlaNHj8rYsWMlKCioJA6jTNmwYYOymtS5c+f0fq5cucIYG8H58+fF0tJS+vTpI3v27JGoqCh54403xMzMTPbv388YF5Pcq/AwxkV36dIlsbe3l65du8ru3btl//790rdvX7G1tZX4+HjG2EjeeustKV++vPzwww9y+PBhmT17tpiamkpUVBRjbEQDBw40+IOUCO8VxhAXFycajUb8/Pxk586dcvToUQkLCxNTU1PZsWMHY2wkSUlJ4ujoKH379pUDBw7Izz//LC4uLspKMYxz0TzNM8f48ePF1dVVNm/eLHv37pV27dqJl5eX3iqMOqtXr5Y5c+Yov3/77bdSp04d2bNnj2zZskUqVqwou3fvLt6DpGdemUmgiIjcvn1b3n77balRo4ao1WqxsbERX19fWblypWRnZ4uIKAmU5cuXS61atcTKykpatGghe/fuVdqJj48XHx8fsbCwkP379xc5gZKRkSFDhgwRW1tbcXJykrFjx0psbKx4eXlJxYoVReTFSqCIiOzdu1eaNm0qarVaKleurKy1/qgVK1bIokWL9MqOHTsmzZs3F41GI+3atZOLFy8WW9/LqgULFugtt537R3feMcZFt3XrViWGjo6O0rp1a4mMjFS2M8bGlzuBIsIYG0N0dLS0b99ebG1tRavVSps2beTQoUPKdsa46LKzsyUsLEzc3NzEwsJCGjRoIL/99puynTE2Dk9PTxk5cmSe2xjjojt27Jj06tVLnJ2dRavVSrNmzXgeF4MDBw7ISy+9JDY2NsoI+NzP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wsICx48fzzNR+vrrr+Ott94CgCLdZwpS0HW7du1aBAcHK8tvb968Gd7e3ggLC4Obm5tS73HjlN81e+fOHZw9e7bI/T158iSCg4Px22+/AXiYzH3jjTcA/O81trfffhtLly6FiBTb64JERPT8YgKFiCgfgwcPRmpqqt4DIfDwoWLWrFlITU2FSqVCQEAA3N3d8dNPP+H48eNKvZs3b+Ljjz8ucB81atRA48aN8dtvv+l99vz58/j666/h6empPFCamDy8Zec31D23V199Fenp6ZgwYQJExCCBohsx8fbbbyM7O1sp37dvHyZPnoyzZ8/C3t6+0P3kVq1aNbRs2RKRkZGIiIhQynNycjB16lR8++230Gq1AP73IJU7gaN7/SOvpI6JiYnBcXt4eACA8ooSAMTExOCrr7567D4/7ndsa2uLjRs3YuHChXr9SEhIQHx8/FO9vlNUj54P3t7eaNKkCXbs2IHt27fr1Z0/fz4ePHhgMKdOcnKy3jmq+65ycnLQr1+/J+rPzz//jMqVK6NZs2ZKWY0aNbBu3TrlHLt27Rp2795d4PwTPXv2hJWVFZYuXYqrV68q5ffv38dHH30EExMTo756kde5CABff/21UR+wa9asiTFjxiA+Ph7vvfcegIejbfr06YPY2FjltSedRYsWYenSpcp8TT169IC1tTU+//xzvbjExsZi5cqVT90v3b1g9uzZeomNU6dOYdy4cdi1axcqVaoE4GGsbt++rSSAdPufO3euQbt53a/c3d0BAFu3btXb18yZM/XuQwXp2bMntFotPv/8c71ka3JyMsaMGYMff/wRVapUAfBw1NWyZcsQHR2t14bu9yeZ44mIiAjAI+sfEhE94/JbxrggeS3HK/Jw6dqGDRsKAGnWrJm89tprEhgYKADEzc1NLl26pNSNiIgQMzMzsba2ln79+smIESPExcVFOnXqVOgyxgcOHBArKyvRarUSHBwsgwYNEjs7O1GpVPLrr78q9XRLcgYGBsqSJUtExHAVHp07d+6IWq0WAFKvXj2DY8vOzlb6Vrt2bQkJCZFOnTqJqamp2NrayuHDh58qbidOnJBy5cqJqampdOrUSUJCQqR27doCQIKCgpQVNuLj45V6PXv2lJCQEPHy8hIXFxdp3769soTwjRs3RETE19dXAEhwcLCy3POOHTsEgKjVaunatav07dtXNBqNslzso6vwFPU71q2y4uPjI0OHDpWBAwdKuXLlBIB88803BcYqv1V4Hmc1kvzolozu1q2brF69WkREoqKiRKvVipmZmXTr1k3GjBmjxO6ll17SaxOAVKhQQSwtLSUwMFBGjx4t9erVEwASEBBQ6P5zy87Olpo1a0pUVJRe+fr16wWA1K9fX0JCQsTV1VW0Wq1eXPOyfPlyASD29vYSHBwsI0aMkKpVq+a5ZPSTrsLzaMzT0tKUtjt06CAjRoyQevXqiVarlZ49ewoA6dq1q5w6dUpZhWfgwIEG7T/6HedexlgnKSlJHBwcxNzcXFldKyEhQSpVqqRc26+99pqy3HqdOnXkzp07yud1K9uUK1dOBg8eLEOHDhU7OzvlWn6aVXhEREaOHCkApGrVqjJkyBDp0aOHWFlZiYWFhURERCj1pk2bJgDEy8tLRo0aJV26dBELCwtltaJq1aopfdAtle7t7S0TJkxQ2vDz81PKBw0aJA0bNhQHBwdlValHV+F5tK8iIqtWrRITExMpV66c9O3bVwYOHCiurq4GqxRFR0eLqampco8YNWqUtGzZUgBIzZo15d69ewXGi4iI6FFMoBDRc8WYCRQRkZSUFHnzzTfFw8NDLCwsxNPTU0aPHi3Xrl0zqBsZGSm+vr6iVqvF1dVVJk2aJCkpKYUmUEREDh06JO3atRONRiOOjo7Stm1b2bNnj16dCxcuSKNGjcTc3Fx69uwpIvknUEREunfvrrek56MyMzMlLCxMvLy8xMLCQipWrCgDBw5UHgALk1/cYmJipF+/flKuXDmxsrKS2rVry9y5c/WWjhZ5+LDv7+8vGo1GXF1dZeTIkZKQkCBHjhwRDw8PsbW1latXr4qIyJYtW8TDw0PMzMxk0aJFShvh4eHi4+MjarVaqlWrJvPnz5fTp08/dgJF5PG/47t370poaKhUrlxZzM3NRaPRiK+vr6xdu7bQWBVHAiU6Olq8vb3FzMxMJk6cqJQfP35cevToIfb29qJWq8Xb21veeecdSUtL0/u87jzctWuXtGjRQqysrKRKlSoyffp0vaWaH8fq1aule/fueW4LDw+XqlWrirm5uTRv3lxZErcwGzdulJYtW4q1tbVoNBpp1qyZfP311wb1ippAERE5d+6cdO7cWWxtbcXJyUn69+8vZ8+elcuXL0vNmjXF2tpaDh48WOQEiojIkiVLBIC0bt1aKbt27ZqSdFWr1eLl5SVTpkwxWGJaRGTt2rVSr149sbCwkMqVK0tYWJhyzj9tAiUnJ0c+//xzqV27tlhYWIizs7N0797dICGWmZkpM2fOFA8PD7G2tpbmzZvLjz/+KCIio0ePFrVaLZMmTRIRkQcPHkjPnj3FyspKypUrp7QRHx8vr7zyitjb24utra107NhRjh07piz1/DgJFJGHSycHBASItbW12NnZSatWreTnn382qLd161YJCAgQW1tbMTMzE3d3dxk5cqSSnCUiInoSKpEnnJ2QiIiInnkqlQqtWrXiPBBEREREj4lzoBARERERERERFYIJFCIiIiIiIiKiQjCBQkRERERERERUCLPS7gARERGVPE6BRkRERPRkOAKFiIiIiIiIiKgQTKAQERERERERERWCCRQiIiIiIiIiokIwgUJEREREREREVAgmUIiIiIiIiIiICsEEChERERERERFRIZhAISIiIiIiIiIqBBMoRERERERERESFYAKFiIiIiIiIiKgQ/wdANEYpBuUpMAAAAABJRU5ErkJggg==", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Create custom color scheme\n", + "custom_cmap = sns.color_palette('Oranges', n_colors=1000)[:800] + sns.color_palette('Blues', n_colors=1000)[800:]\n", + "\n", + "# Define your preferred order of the RBAs as a list\n", + "rba_order = [\n", + " 'RandomShuffle',\n", + " 'MutualInformation',\n", + " 'SURFstar',\n", + " 'MultiSURFstar',\n", + " 'SWRFstar',\n", + "]\n", + "\n", + "# Define a mapping from your RBA order to new descriptive names\n", + "rba_descriptive_names = {\n", + " 'RandomShuffle': 'Random Shuffle',\n", + " 'MutualInformation': 'Mutual Information',\n", + " 'ReliefF10': 'ReliefF 10NN',\n", + " 'ReliefF100': 'ReliefF 100NN',\n", + " 'MultiSURF': 'MultiSURF',\n", + " 'MultiSURFstar': 'MultiSURF*',\n", + " 'SURFstar': 'SURF*',\n", + " 'SWRFstar': 'SWRF*',\n", + " 'ABS_ReliefF10': 'ReliefF 10NN ABS',\n", + " 'ABS_ReliefF': 'ReliefF 100NN ABS',\n", + " 'ABS_MultiSURF': 'MultiSURF ABS',\n", + " 'ABS_MultiSURFstar': 'MultiSURF* ABS',\n", + " 'ABD_SWRFstar': 'SWRF* ABS',\n", + "}\n", + "\n", + "percentages_df = percentages_df.iloc[1:] # Drop the first row as this will always be 0\n", + "percentages_df_transposed = percentages_df.T # Transpose percentages_df to switch rows and columns for horizontal orientation\n", + "\n", + "# Reorder the DataFrame according to your defined RBA order\n", + "percentages_df_ordered = percentages_df_transposed.loc[rba_order] # The .loc indexer reindexes the DataFrame to the specified order; any missing labels will result in NaN rows\n", + "\n", + "# Define the tick labels as percentages of optimality\n", + "xtick_labels = ['Optimal', '10%', '20%', '30%', '40%', '50%', '60%', '70%', '80%', '90%', '100%']\n", + "# Generate a list of positions at which to place the x-tick labels, assuming they should be placed at even intervals\n", + "xtick_positions = np.linspace(start=0, stop=percentages_df_transposed.shape[1] - 0.13, num=len(xtick_labels))\n", + "\n", + "# Create the heatmap with the reordered DataFrame\n", + "plt.figure(figsize=(12, 7)) # Adjust the size as necessary\n", + "heatmap = sns.heatmap(percentages_df_ordered, annot=False, fmt=\".1f\", cmap=custom_cmap, cbar_kws={'label': 'Power (Frequency of Success)'})\n", + "\n", + "# Add horizontal lines manually between Methods\n", + "for i in range(percentages_df_ordered.shape[0] - 1):\n", + " heatmap.axhline(i + 1, color='black', linewidth=1.5)\n", + "\n", + "# Adding black border around the heatmap\n", + "for _, spine in heatmap.spines.items():\n", + " spine.set_visible(True)\n", + " spine.set_linewidth(1.5)\n", + " spine.set_edgecolor(\"black\")\n", + "\n", + "# Adding black border around the color bar in legend\n", + "cbar = heatmap.collections[0].colorbar\n", + "cbar.outline.set_linewidth(1.5)\n", + "cbar.outline.set_edgecolor(\"black\")\n", + "\n", + "# Set the title and axis labels appropriately\n", + "heatmap.set_title('a_20 Test Datasets Heatmap', fontsize = 16)\n", + "heatmap.set_xlabel('Predictive features in top % of ranked features', fontsize = 14)\n", + "heatmap.set_ylabel('Method', fontsize = 14)\n", + "\n", + "# Set the custom x-tick labels, positions, and fontsize\n", + "heatmap.set_xticks(xtick_positions)\n", + "heatmap.set_xticklabels(xtick_labels, rotation=0, fontsize=11)\n", + "\n", + "# Set the custom y-tick labels fontsize\n", + "new_ytick_labels = [rba_descriptive_names[rba] for rba in rba_order]\n", + "heatmap.set_yticklabels(new_ytick_labels, fontsize=11)\n", + "\n", + "# Save and show the Plot\n", + "plt.rcParams['font.sans-serif'] = 'Helvetica'\n", + "plt.rcParams['font.family'] = 'sans-serif'\n", + "plt.rcParams['pdf.fonttype'] = 42\n", + "plt.tight_layout() # Adjust the layout\n", + "save_path = os.path.join(results_dir, 'a_20_Testdataset_Heatmap.pdf') # Save\n", + "plt.savefig(save_path, format='pdf', bbox_inches='tight') # Save\n", + "plt.show() # Display the heatmap" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "base", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.13" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/demo/run_benchmark.py b/demo/run_benchmark.py new file mode 100644 index 0000000..549bdaf --- /dev/null +++ b/demo/run_benchmark.py @@ -0,0 +1,145 @@ +import os +import sys +import pandas as pd +import numpy as np +import argparse +import time + +from multiprocessing import Pool, cpu_count + +from sklearn.feature_selection import mutual_info_classif + +# Get the absolute path to the directory containing the package +package_path = os.path.abspath(os.path.join("", "..")) + +# Add the package path to sys.path +sys.path.insert(0, package_path) +from skrebate import SURFstar, MultiSURFstar, SWRFstar + +def find_txt_groups(root_dir): + # Grab all the folders that contain 30 txt files and exclude the file name that contains 'Results' + txt_groups = [] + + for root, dirs, files in os.walk(root_dir): + txt_files = [f for f in files if f.endswith('.txt') and 'Results' not in f] + + files_count = len(txt_files) + + # if files_count == 30 and 'Results' not in root: + # txt_groups.append(root) + # elif files_count != 0: + # print(f"{root} got {len(txt_files)} files") + if 'Results' not in root: + txt_groups.append(root) + elif files_count != 0: + print(f"{root} got {len(txt_files)} files") + + return txt_groups + + +def single_file_job(args): + # Run all the methods on a single data file + exp_dir, txt_file, result_dir, methods = args + + try: + print(f"\tProcessing with data file {txt_file}...") + if txt_file.endswith('.txt'): + data = pd.read_csv(os.path.join(exp_dir, txt_file), sep='\t') + elif txt_file.endswith('.csv'): + data = pd.read_csv(os.path.join(exp_dir, txt_file)) + else: + raise ValueError(f"Unsupported file format: {txt_file}") + features, labels = data.drop('class', axis=1).values, data['class'].values + + for method_name, (method, params) in methods.items(): + if method_name == "RandomShuffle": + importances = np.random.permutation(len(data.drop('class', axis=1).columns)) + elif method_name == "MutualInformation": + importances = mutual_info_classif(features, labels) + else: + fs = method(**params) + fs.fit(features, labels) + importances = fs.feature_importances_ + + results = pd.DataFrame({ + 'Feature': data.drop('class', axis=1).columns, + 'Feature_Importance': importances + }) + + base_name = os.path.splitext(os.path.basename(txt_file))[0] + results.to_csv(os.path.join(result_dir, exp_dir, method_name, f"{base_name}_Results.txt"), index=False, sep='\t') + return f"File {txt_file} processed successfully." + except Exception as e: + raise e # Uncomment this line to raise the exception after logging the error + return f"Error processing {txt_file}: {e}" + + +def main(data_dir, result_dir, methods, num_cpus, dry_run): + # Find all the folder that contains 30 data files + exp_dirs = find_txt_groups(data_dir) + print(f"Found {len(exp_dirs)} exps") + + if dry_run: + print("[Dry Run] The files in the following folders will be processed:") + for exp_dir in exp_dirs: + print(f"{exp_dir}") + return + + # Generate the configuration for all the jobs + args = [] + for exp_dir in exp_dirs: + + for method_name, _ in methods.items(): + os.makedirs(os.path.join(result_dir, exp_dir, method_name), exist_ok=True) + + txt_files = [f for f in os.listdir(exp_dir) if (f.endswith('.txt') or f.endswith('.csv'))] + + args += [(exp_dir, txt_file, result_dir, methods) for txt_file in txt_files] + + start_time = time.time() + + # results = [] + # for arg in args: + # results.append(single_file_job(arg)) # Test a single file job to ensure everything is working + + print(f"Parallel processing on {len(args)} tasks...") + with Pool(processes=num_cpus) as pool: + results = pool.map(single_file_job, args) + + elapsed_time = time.time() - start_time + print(f"\nTotal processing time: {elapsed_time:.2f} seconds") + + for result in results: + print(result) + + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description="Parallel processing for feature importance computation.") + # parser.add_argument("--data_dir", type=str, required=True, help="Path to the directory containing .txt files.") + # parser.add_argument("--result_dir", type=str, default='.', help="Path to the directory for saving results.") + parser.add_argument("--num_cpus", type=int, default=None, help="Number of CPU cores to use for multiprocessing.") + parser.add_argument("-n", "--dry_run", action="store_true", help="If set, perform a dry run without actual computation.") + args = parser.parse_args() + + if args.num_cpus is None: + num_cpus = cpu_count() + else: + num_cpus = args.num_cpus + print(f"Using cpu number: {num_cpus}") + + + ############Path and method setting############ + data_dir = "../data/" + result_dir = 'Results' + + methods = { + "RandomShuffle": (None, None), + "MutualInformation": (None, None), + "SURFstar": (SURFstar, {'n_features_to_select': 5}), + "MultiSURFstar": (MultiSURFstar, {'n_features_to_select': 5}), + "SWRFstar": (SWRFstar, {'n_features_to_select': 5}), + } + ############Path and method setting############ + + main(data_dir, result_dir, methods, args.num_cpus, args.dry_run) + diff --git a/docs/404.html b/docs/404.html index 672e09c..bb9b8be 100644 --- a/docs/404.html +++ b/docs/404.html @@ -1,153 +1,135 @@ - - - - - - - - - - - scikit-rebate - - - - - - - - - - - - - - -
- - - - -
- - - - - -
-
-
-
    -
  • Docs »
  • - - -
  • - -
  • -
-
-
-
-
- - -

404

- -

Page not found

- - -
-
- - -
-
- -
- -
- -
- - - GitHub - - - - -
- - - - - - - + + + + + + + + scikit-rebate + + + + + + + + + + + + +
+ + +
+ +
+
+
    +
  • +
  • +
  • +
+
+
+
+
+ + +

404

+ +

Page not found

+ + +
+
+ +
+
+ +
+ +
+ +
+ + + + GitHub + + + + + +
+ + + + + + + + + diff --git a/docs/assets/styles/custom.css b/docs/assets/styles/custom.css new file mode 100644 index 0000000..8ed0aab --- /dev/null +++ b/docs/assets/styles/custom.css @@ -0,0 +1,7 @@ +.wy-table-responsive table td, .wy-table-responsive table th { + white-space: normal !important; +} + +.wy-table-responsive { + overflow : visible !important; +} \ No newline at end of file diff --git a/docs/citing/index.html b/docs/citing/index.html index 3ebaf58..08eb6da 100644 --- a/docs/citing/index.html +++ b/docs/citing/index.html @@ -1,192 +1,171 @@ - - - - - - - - - - - Citing - scikit-rebate - - - - - - - - - - - - - - - - -
- - - - -
- - - - - -
-
-
- -
-
-
-
- -

If you use scikit-rebate or the MultiSURF algorithm in a scientific publication, please consider citing the following paper (currently available as a pre-print in arXiv):

-

Urbanowicz, Ryan J., Randal S. Olson, Peter Schmitt, Melissa Meeker, and Jason H. Moore. "Benchmarking relief-based feature selection methods." arXiv preprint arXiv:1711.08477 (2017).

-

Alternatively a complete review of Relief-based algorithms is available at:

-

Urbanowicz, Ryan J., Melissa Meeker, William LaCava, Randal S. Olson, and Jason H. Moore. "Relief-based feature selection: introduction and review." arXiv preprint arXiv:1711.08421 (2017).

-

To cite the original Relief paper:

-

Kira, Kenji, and Larry A. Rendell. "A practical approach to feature selection." In Machine Learning Proceedings 1992, pp. 249-256. 1992.

-

To cite the original ReliefF paper:

-

Kononenko, Igor. "Estimating attributes: analysis and extensions of RELIEF." In European conference on machine learning, pp. 171-182. Springer, Berlin, Heidelberg, 1994.

-

To cite the original SURF paper:

-

Greene, Casey S., Nadia M. Penrod, Jeff Kiralis, and Jason H. Moore. "Spatially uniform relieff (SURF) for computationally-efficient filtering of gene-gene interactions." BioData mining 2, no. 1 (2009): 5.

-

To cite the original SURF* paper:

-

Greene, Casey S., Daniel S. Himmelstein, Jeff Kiralis, and Jason H. Moore. "The informative extremes: using both nearest and farthest individuals can improve relief algorithms in the domain of human genetics." In European Conference on Evolutionary Computation, Machine Learning and Data Mining in Bioinformatics, pp. 182-193. Springer, Berlin, Heidelberg, 2010.

-

To cite the original MultiSURF* paper:

-

Granizo-Mackenzie, Delaney, and Jason H. Moore. "Multiple threshold spatially uniform relieff for the genetic analysis of complex human diseases." In European Conference on Evolutionary Computation, Machine Learning and Data Mining in Bioinformatics, pp. 1-10. Springer, Berlin, Heidelberg, 2013.

-

To cite the original TuRF paper:

-

Moore, Jason H., and Bill C. White. "Tuning ReliefF for genome-wide genetic analysis." In European Conference on Evolutionary Computation, Machine Learning and Data Mining in Bioinformatics, pp. 166-175. Springer, Berlin, Heidelberg, 2007.

- -
-
- - -
-
- -
- -
- -
- - - GitHub - - - « Previous - - - Next » - - -
- - - - - - - + + + + + + + + Citing - scikit-rebate + + + + + + + + + + + + + + +
+ + +
+ +
+
+ +
+
+
+
+ + +

If you use scikit-rebate or the MultiSURF algorithm in a scientific publication, please consider citing the following paper:

+ +

Urbanowicz, Ryan J., Randal S. Olson, Peter Schmitt, Melissa Meeker, and Jason H. Moore. "Benchmarking relief-based feature selection methods for bioinformatics data mining." Journal of Biomedical Informatics, 85:168–188, 2018.

+

Alternatively a complete review of Relief-based algorithms is available at:

+ +

Urbanowicz, Ryan J., Melissa Meeker, William LaCava, Randal S. Olson, and Jason H. Moore. "Relief-based feature selection: introduction and review." Journal of Biomedical Informatics, 85:189–203, 2018.

+

To cite the original Relief paper:

+

Kira, Kenji, and Larry A. Rendell. "A practical approach to feature selection." In Machine Learning Proceedings 1992, pp. 249-256. 1992.

+

To cite the original ReliefF paper:

+

Kononenko, Igor. "Estimating attributes: analysis and extensions of RELIEF." In European conference on machine learning, pp. 171-182. Springer, Berlin, Heidelberg, 1994.

+

To cite the original SURF paper:

+

Greene, Casey S., Nadia M. Penrod, Jeff Kiralis, and Jason H. Moore. "Spatially uniform relieff (SURF) for computationally-efficient filtering of gene-gene interactions." BioData Mining 2, no. 1 (2009): 5.

+

To cite the original SURF* paper:

+

Greene, Casey S., Daniel S. Himmelstein, Jeff Kiralis, and Jason H. Moore. "The informative extremes: using both nearest and farthest individuals can improve relief algorithms in the domain of human genetics." In European Conference on Evolutionary Computation, Machine Learning and Data Mining in Bioinformatics, pp. 182-193. Springer, Berlin, Heidelberg, 2010.

+

To cite the original MultiSURF* paper:

+

Granizo-Mackenzie, Delaney, and Jason H. Moore. "Multiple threshold spatially uniform relieff for the genetic analysis of complex human diseases." In European Conference on Evolutionary Computation, Machine Learning and Data Mining in Bioinformatics, pp. 1-10. Springer, Berlin, Heidelberg, 2013.

+ +

To cite the original SWRF* paper:

+

Stokes, Matthew E., and Shyam Visweswaran. "Application of a spatially-weighted relief algorithm for ranking genetic predictors of disease." BioData Mining, 5:20, 2012.

+

To cite the original μ-Relief paper:

+

Aggarwal, Nitisha, Unmesh Shukla, G. J. Saxena, et al. "Mean based relief: An improved feature selection method based on relieff." Applied Intelligence, 53:23004–23028, 2023.

+

To cite the original TuRF paper:

+

Moore, Jason H., and Bill C. White. "Tuning ReliefF for genome-wide genetic analysis." In European Conference on Evolutionary Computation, Machine Learning and Data Mining in Bioinformatics, pp. 166-175. Springer, Berlin, Heidelberg, 2007.

+ +
+
+ +
+
+ +
+ +
+ +
+ + + + GitHub + + + + « Previous + + + Next » + + +
+ + + + + + + + + diff --git a/docs/contributing/index.html b/docs/contributing/index.html index 34c3132..6af0e9a 100644 --- a/docs/contributing/index.html +++ b/docs/contributing/index.html @@ -1,302 +1,260 @@ - - - - - - - - - - - Contributing - scikit-rebate - - - - - - - - - - - - - - - - -
- - - - -
- - - - - -
-
-
- -
-
-
-
- -

We welcome you to check the existing issues for bugs or enhancements to work on. If you have an idea for an extension to scikit-rebate, please file a new issue so we can discuss it.

-

Project layout

-

The latest stable release of scikit-rebate is on the master branch, whereas the latest version of scikit-rebate in development is on the development branch. Make sure you are looking at and working on the correct branch if you're looking to contribute code.

-

In terms of directory structure:

-
    -
  • All of scikit-rebate's code sources are in the skrebate directory
  • -
  • The documentation sources are in the docs_sources directory
  • -
  • The latest documentation build is in the docs directory
  • -
  • Unit tests for scikit-rebate are in the tests.py file
  • -
-

Make sure to familiarize yourself with the project layout before making any major contributions, and especially make sure to send all code changes to the development branch.

-

How to contribute

-

The preferred way to contribute to scikit-rebate is to fork the -main repository on -GitHub:

-
    -
  1. -

    Fork the project repository: - click on the 'Fork' button near the top of the page. This creates - a copy of the code under your account on the GitHub server.

    -
  2. -
  3. -

    Clone this copy to your local disk:

    -
      $ git clone git@github.com:YourLogin/scikit-rebate.git
    -  $ cd scikit-rebate
    -
    -
  4. -
  5. -

    Create a branch to hold your changes:

    -
      $ git checkout -b my-contribution
    -
    -
  6. -
  7. -

    Make sure your local environment is setup correctly for development. Installation instructions are almost identical to the user instructions except that scikit-rebate should not be installed. If you have scikit-rebate installed on your computer, then make sure you are using a virtual environment that does not have scikit-rebate installed. Furthermore, you should make sure you have installed the nose package into your development environment so that you can test changes locally.

    -
      $ conda install nose
    -
    -
  8. -
  9. -

    Start making changes on your newly created branch, remembering to never work on the master branch! Work on this copy on your computer using Git to do the version control.

    -
  10. -
  11. -

    Once some changes are saved locally, you can use your tweaked version of scikit-rebate by navigating to the project's base directory and running scikit-rebate in a script.

    -
  12. -
  13. -

    To check your changes haven't broken any existing tests and to check new tests you've added pass run the following (note, you must have the nose package installed within your dev environment for this to work):

    -
      $ nosetests -s -v
    -
    -
  14. -
  15. -

    When you're done editing and local testing, run:

    -
      $ git add modified_files
    -  $ git commit
    -
    -
  16. -
-

to record your changes in Git, then push them to GitHub with:

-
      $ git push -u origin my-contribution
-
-

Finally, go to the web page of your fork of the scikit-rebate repo, and click 'Pull Request' (PR) to send your changes to the maintainers for review. Make sure that you send your PR to the development branch, as the master branch is reserved for the latest stable release. This will start the CI server to check all the project's unit tests run and send an email to the maintainers.

-

(For details on the above look up the Git documentation on the web.)

-

Before submitting your pull request

-

Before you submit a pull request for your contribution, please work through this checklist to make sure that you have done everything necessary so we can efficiently review and accept your changes.

-

If your contribution changes scikit-rebate in any way:

-
    -
  • -

    Update the documentation so all of your changes are reflected there.

    -
  • -
  • -

    Update the README if anything there has changed.

    -
  • -
-

If your contribution involves any code changes:

-
    -
  • -

    Update the project unit tests to test your code changes.

    -
  • -
  • -

    Make sure that your code is properly commented with docstrings and comments explaining your rationale behind non-obvious coding practices.

    -
  • -
-

If your contribution requires a new library dependency:

-
    -
  • -

    Double-check that the new dependency is easy to install via pip or Anaconda and supports both Python 2 and 3. If the dependency requires a complicated installation, then we most likely won't merge your changes because we want to keep scikit-rebate easy to install.

    -
  • -
  • -

    Add a line to pip install the library to .travis_install.sh

    -
  • -
  • -

    Add a line to print the version of the library to .travis_install.sh

    -
  • -
  • -

    Similarly add a line to print the version of the library to .travis_test.sh

    -
  • -
-

Updating the documentation

-

We use mkdocs to manage our documentation. This allows us to write the docs in Markdown and compile them to HTML as needed. Below are a few useful commands to know when updating the documentation. Make sure that you are running them in the base repository directory.

-
    -
  • -

    mkdocs serve: Hosts of a local version of the documentation that you can access at the provided URL. The local version will update automatically as you save changes to the documentation.

    -
  • -
  • -

    mkdocs build --clean: Creates a fresh build of the documentation in HTML. Always run this before deploying the documentation to GitHub.

    -
  • -
  • -

    mkdocs gh-deploy: Deploys the documentation to GitHub. If you're deploying on your fork of scikit-rebate, the online documentation should be accessible at http://<YOUR GITHUB USERNAME>.github.io/scikit-rebate/. Generally, you shouldn't need to run this command because you can view your changes with mkdocs serve.

    -
  • -
-

After submitting your pull request

-

After submitting your pull request, Travis-CI will automatically run unit tests on your changes and make sure that your updated code builds and runs on Python 2 and 3. We also use services that automatically check code quality and test coverage.

-

Check back shortly after submitting your pull request to make sure that your code passes these checks. If any of the checks come back with a red X, then do your best to address the errors.

- -
-
- - -
-
- -
- -
- -
- - - GitHub - - - « Previous - - - Next » - - -
- - - - - - - + + + + + + + + Contributing - scikit-rebate + + + + + + + + + + + + + + +
+ + +
+ +
+
+ +
+
+
+
+ +

We welcome you to check the existing issues for bugs or enhancements to work on. If you have an idea for an extension to scikit-rebate, please file a new issue so we can discuss it.

+

Project layout

+

The latest stable release of scikit-rebate is on the master branch, whereas the latest version of scikit-rebate in development is on the development branch. Make sure you are looking at and working on the correct branch if you're looking to contribute code.

+

In terms of directory structure:

+
    +
  • All of scikit-rebate's code sources are in the skrebate directory
  • +
  • The documentation sources are in the docs_sources directory
  • +
  • The latest documentation build is in the docs directory
  • +
  • Unit tests for scikit-rebate are in the tests.py file
  • +
+

Make sure to familiarize yourself with the project layout before making any major contributions, and especially make sure to send all code changes to the development branch.

+

How to contribute

+

The preferred way to contribute to scikit-rebate is to fork the +main repository on +GitHub:

+
    +
  1. +

    Fork the project repository: + click on the 'Fork' button near the top of the page. This creates + a copy of the code under your account on the GitHub server.

    +
  2. +
  3. +

    Clone this copy to your local disk:

    +
      $ git clone git@github.com:YourLogin/scikit-rebate.git
    +  $ cd scikit-rebate
    +
    +
  4. +
  5. +

    Create a branch to hold your changes:

    +
      $ git checkout -b my-contribution
    +
    +
  6. +
  7. +

    Make sure your local environment is setup correctly for development. Installation instructions are almost identical to the user instructions except that scikit-rebate should not be installed. If you have scikit-rebate installed on your computer, then make sure you are using a virtual environment that does not have scikit-rebate installed. Furthermore, you should make sure you have installed the nose package into your development environment so that you can test changes locally.

    +
      $ conda install nose
    +
    +
  8. +
  9. +

    Start making changes on your newly created branch, remembering to never work on the master branch! Work on this copy on your computer using Git to do the version control.

    +
  10. +
  11. +

    Once some changes are saved locally, you can use your tweaked version of scikit-rebate by navigating to the project's base directory and running scikit-rebate in a script.

    +
  12. +
  13. +

    To check your changes haven't broken any existing tests and to check new tests you've added pass run the following (note, you must have the nose package installed within your dev environment for this to work):

    +
      $ nosetests -s -v
    +
    +
  14. +
  15. +

    When you're done editing and local testing, run:

    +
      $ git add modified_files
    +  $ git commit
    +
    +
  16. +
+

to record your changes in Git, then push them to GitHub with:

+
      $ git push -u origin my-contribution
+
+

Finally, go to the web page of your fork of the scikit-rebate repo, and click 'Pull Request' (PR) to send your changes to the maintainers for review. Make sure that you send your PR to the development branch, as the master branch is reserved for the latest stable release. This will start the CI server to check all the project's unit tests run and send an email to the maintainers.

+

(For details on the above look up the Git documentation on the web.)

+

Before submitting your pull request

+

Before you submit a pull request for your contribution, please work through this checklist to make sure that you have done everything necessary so we can efficiently review and accept your changes.

+

If your contribution changes scikit-rebate in any way:

+
    +
  • +

    Update the documentation so all of your changes are reflected there.

    +
  • +
  • +

    Update the README if anything there has changed.

    +
  • +
+

If your contribution involves any code changes:

+
    +
  • +

    Update the project unit tests to test your code changes.

    +
  • +
  • +

    Make sure that your code is properly commented with docstrings and comments explaining your rationale behind non-obvious coding practices.

    +
  • +
+

If your contribution requires a new library dependency:

+
    +
  • +

    Double-check that the new dependency is easy to install via pip or Anaconda and supports both Python 2 and 3. If the dependency requires a complicated installation, then we most likely won't merge your changes because we want to keep scikit-rebate easy to install.

    +
  • +
  • +

    Add a line to pip install the library to .travis_install.sh

    +
  • +
  • +

    Add a line to print the version of the library to .travis_install.sh

    +
  • +
  • +

    Similarly add a line to print the version of the library to .travis_test.sh

    +
  • +
+

Updating the documentation

+

We use mkdocs to manage our documentation. This allows us to write the docs in Markdown and compile them to HTML as needed. Below are a few useful commands to know when updating the documentation. Make sure that you are running them in the base repository directory.

+
    +
  • +

    mkdocs serve: Hosts of a local version of the documentation that you can access at the provided URL. The local version will update automatically as you save changes to the documentation.

    +
  • +
  • +

    mkdocs build --clean: Creates a fresh build of the documentation in HTML. Always run this before deploying the documentation to GitHub.

    +
  • +
  • +

    mkdocs gh-deploy: Deploys the documentation to GitHub. If you're deploying on your fork of scikit-rebate, the online documentation should be accessible at http://<YOUR GITHUB USERNAME>.github.io/scikit-rebate/. Generally, you shouldn't need to run this command because you can view your changes with mkdocs serve.

    +
  • +
+

After submitting your pull request

+

After submitting your pull request, Travis-CI will automatically run unit tests on your changes and make sure that your updated code builds and runs on Python 2 and 3. We also use services that automatically check code quality and test coverage.

+

Check back shortly after submitting your pull request to make sure that your code passes these checks. If any of the checks come back with a red X, then do your best to address the errors.

+ +
+
+ +
+
+ +
+ +
+ +
+ + + + GitHub + + + + « Previous + + + Next » + + +
+ + + + + + + + + diff --git a/docs/css/fonts/Roboto-Slab-Bold.woff b/docs/css/fonts/Roboto-Slab-Bold.woff new file mode 100644 index 0000000..6cb6000 Binary files /dev/null and b/docs/css/fonts/Roboto-Slab-Bold.woff differ diff --git a/docs/css/fonts/Roboto-Slab-Bold.woff2 b/docs/css/fonts/Roboto-Slab-Bold.woff2 new file mode 100644 index 0000000..7059e23 Binary files /dev/null and b/docs/css/fonts/Roboto-Slab-Bold.woff2 differ diff --git a/docs/css/fonts/Roboto-Slab-Regular.woff b/docs/css/fonts/Roboto-Slab-Regular.woff new file mode 100644 index 0000000..f815f63 Binary files /dev/null and b/docs/css/fonts/Roboto-Slab-Regular.woff differ diff --git a/docs/css/fonts/Roboto-Slab-Regular.woff2 b/docs/css/fonts/Roboto-Slab-Regular.woff2 new file mode 100644 index 0000000..f2c76e5 Binary files /dev/null and b/docs/css/fonts/Roboto-Slab-Regular.woff2 differ diff --git a/docs/css/fonts/fontawesome-webfont.eot b/docs/css/fonts/fontawesome-webfont.eot new file mode 100644 index 0000000..e9f60ca Binary files /dev/null and b/docs/css/fonts/fontawesome-webfont.eot differ diff --git a/docs/css/fonts/fontawesome-webfont.svg b/docs/css/fonts/fontawesome-webfont.svg new file mode 100644 index 0000000..855c845 --- /dev/null +++ b/docs/css/fonts/fontawesome-webfont.svg @@ -0,0 +1,2671 @@ + + + + +Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016 + By ,,, +Copyright Dave Gandy 2016. All rights reserved. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/css/fonts/fontawesome-webfont.ttf b/docs/css/fonts/fontawesome-webfont.ttf new file mode 100644 index 0000000..35acda2 Binary files /dev/null and b/docs/css/fonts/fontawesome-webfont.ttf differ diff --git a/docs/css/fonts/fontawesome-webfont.woff b/docs/css/fonts/fontawesome-webfont.woff new file mode 100644 index 0000000..400014a Binary files /dev/null and b/docs/css/fonts/fontawesome-webfont.woff differ diff --git a/docs/css/fonts/fontawesome-webfont.woff2 b/docs/css/fonts/fontawesome-webfont.woff2 new file mode 100644 index 0000000..4d13fc6 Binary files /dev/null and b/docs/css/fonts/fontawesome-webfont.woff2 differ diff --git a/docs/css/fonts/lato-bold-italic.woff b/docs/css/fonts/lato-bold-italic.woff new file mode 100644 index 0000000..88ad05b Binary files /dev/null and b/docs/css/fonts/lato-bold-italic.woff differ diff --git a/docs/css/fonts/lato-bold-italic.woff2 b/docs/css/fonts/lato-bold-italic.woff2 new file mode 100644 index 0000000..c4e3d80 Binary files /dev/null and b/docs/css/fonts/lato-bold-italic.woff2 differ diff --git a/docs/css/fonts/lato-bold.woff b/docs/css/fonts/lato-bold.woff new file mode 100644 index 0000000..c6dff51 Binary files /dev/null and b/docs/css/fonts/lato-bold.woff differ diff --git a/docs/css/fonts/lato-bold.woff2 b/docs/css/fonts/lato-bold.woff2 new file mode 100644 index 0000000..bb19504 Binary files /dev/null and b/docs/css/fonts/lato-bold.woff2 differ diff --git a/docs/css/fonts/lato-normal-italic.woff b/docs/css/fonts/lato-normal-italic.woff new file mode 100644 index 0000000..76114bc Binary files /dev/null and b/docs/css/fonts/lato-normal-italic.woff differ diff --git a/docs/css/fonts/lato-normal-italic.woff2 b/docs/css/fonts/lato-normal-italic.woff2 new file mode 100644 index 0000000..3404f37 Binary files /dev/null and b/docs/css/fonts/lato-normal-italic.woff2 differ diff --git a/docs/css/fonts/lato-normal.woff b/docs/css/fonts/lato-normal.woff new file mode 100644 index 0000000..ae1307f Binary files /dev/null and b/docs/css/fonts/lato-normal.woff differ diff --git a/docs/css/fonts/lato-normal.woff2 b/docs/css/fonts/lato-normal.woff2 new file mode 100644 index 0000000..3bf9843 Binary files /dev/null and b/docs/css/fonts/lato-normal.woff2 differ diff --git a/docs/css/highlight.css b/docs/css/highlight.css deleted file mode 100644 index def2c81..0000000 --- a/docs/css/highlight.css +++ /dev/null @@ -1,124 +0,0 @@ -/* -This is the GitHub theme for highlight.js - -github.com style (c) Vasily Polovnyov - -*/ - -.hljs { - display: block; - overflow-x: auto; - color: #333; - -webkit-text-size-adjust: none; -} - -.hljs-comment, -.diff .hljs-header, -.hljs-javadoc { - color: #998; - font-style: italic; -} - -.hljs-keyword, -.css .rule .hljs-keyword, -.hljs-winutils, -.nginx .hljs-title, -.hljs-subst, -.hljs-request, -.hljs-status { - color: #333; - font-weight: bold; -} - -.hljs-number, -.hljs-hexcolor, -.ruby .hljs-constant { - color: #008080; -} - -.hljs-string, -.hljs-tag .hljs-value, -.hljs-phpdoc, -.hljs-dartdoc, -.tex .hljs-formula { - color: #d14; -} - -.hljs-title, -.hljs-id, -.scss .hljs-preprocessor { - color: #900; - font-weight: bold; -} - -.hljs-list .hljs-keyword, -.hljs-subst { - font-weight: normal; -} - -.hljs-class .hljs-title, -.hljs-type, -.vhdl .hljs-literal, -.tex .hljs-command { - color: #458; - font-weight: bold; -} - -.hljs-tag, -.hljs-tag .hljs-title, -.hljs-rule .hljs-property, -.django .hljs-tag .hljs-keyword { - color: #000080; - font-weight: normal; -} - -.hljs-attribute, -.hljs-variable, -.lisp .hljs-body, -.hljs-name { - color: #008080; -} - -.hljs-regexp { - color: #009926; -} - -.hljs-symbol, -.ruby .hljs-symbol .hljs-string, -.lisp .hljs-keyword, -.clojure .hljs-keyword, -.scheme .hljs-keyword, -.tex .hljs-special, -.hljs-prompt { - color: #990073; -} - -.hljs-built_in { - color: #0086b3; -} - -.hljs-preprocessor, -.hljs-pragma, -.hljs-pi, -.hljs-doctype, -.hljs-shebang, -.hljs-cdata { - color: #999; - font-weight: bold; -} - -.hljs-deletion { - background: #fdd; -} - -.hljs-addition { - background: #dfd; -} - -.diff .hljs-change { - background: #0086b3; -} - -.hljs-chunk { - color: #aaa; -} diff --git a/docs/css/theme.css b/docs/css/theme.css index b3c3cd6..ad77300 100644 --- a/docs/css/theme.css +++ b/docs/css/theme.css @@ -1,12 +1,13 @@ -/* - * This file is copied from the upstream ReadTheDocs Sphinx - * theme. To aid upgradability this file should *not* be edited. - * modifications we need should be included in theme_extra.css. - * - * https://github.com/rtfd/readthedocs.org/blob/master/readthedocs/core/static/core/css/theme.css - */ - -*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none}[hidden]{display:none}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}a:hover,a:active{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}blockquote{margin:0}dfn{font-style:italic}ins{background:#ff9;color:#000;text-decoration:none}mark{background:#ff0;color:#000;font-style:italic;font-weight:bold}pre,code,.rst-content tt,kbd,samp{font-family:monospace,serif;_font-family:"courier new",monospace;font-size:1em}pre{white-space:pre}q{quotes:none}q:before,q:after{content:"";content:none}small{font-size:85%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}ul,ol,dl{margin:0;padding:0;list-style:none;list-style-image:none}li{list-style:none}dd{margin:0}img{border:0;-ms-interpolation-mode:bicubic;vertical-align:middle;max-width:100%}svg:not(:root){overflow:hidden}figure{margin:0}form{margin:0}fieldset{border:0;margin:0;padding:0}label{cursor:pointer}legend{border:0;*margin-left:-7px;padding:0;white-space:normal}button,input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}button,input{line-height:normal}button,input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button;*overflow:visible}button[disabled],input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;*width:13px;*height:13px}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top;resize:vertical}table{border-collapse:collapse;border-spacing:0}td{vertical-align:top}.chromeframe{margin:0.2em 0;background:#ccc;color:#000;padding:0.2em 0}.ir{display:block;border:0;text-indent:-999em;overflow:hidden;background-color:transparent;background-repeat:no-repeat;text-align:left;direction:ltr;*line-height:0}.ir br{display:none}.hidden{display:none !important;visibility:hidden}.visuallyhidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.visuallyhidden.focusable:active,.visuallyhidden.focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}.invisible{visibility:hidden}.relative{position:relative}big,small{font-size:100%}@media print{html,body,section{background:none !important}*{box-shadow:none !important;text-shadow:none !important;filter:none !important;-ms-filter:none !important}a,a:visited{text-decoration:underline}.ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}@page{margin:0.5cm}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}}.fa:before,.rst-content .admonition-title:before,.rst-content h1 .headerlink:before,.rst-content h2 .headerlink:before,.rst-content h3 .headerlink:before,.rst-content h4 .headerlink:before,.rst-content h5 .headerlink:before,.rst-content h6 .headerlink:before,.rst-content dl dt .headerlink:before,.icon:before,.wy-dropdown .caret:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before,.wy-alert,.rst-content .note,.rst-content .attention,.rst-content .caution,.rst-content .danger,.rst-content .error,.rst-content .hint,.rst-content .important,.rst-content .tip,.rst-content .warning,.rst-content .seealso,.rst-content .admonition-todo,.btn,input[type="text"],input[type="password"],input[type="email"],input[type="url"],input[type="date"],input[type="month"],input[type="time"],input[type="datetime"],input[type="datetime-local"],input[type="week"],input[type="number"],input[type="search"],input[type="tel"],input[type="color"],select,textarea,.wy-menu-vertical li.on a,.wy-menu-vertical li.current>a,.wy-side-nav-search>a,.wy-side-nav-search .wy-dropdown>a,.wy-nav-top a{-webkit-font-smoothing:antialiased}.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;content:""}.clearfix:after{clear:both}/*! - * Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome - * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */@font-face{font-family:'FontAwesome';src:url("../fonts/fontawesome-webfont.eot?v=4.1.0");src:url("../fonts/fontawesome-webfont.eot?#iefix&v=4.1.0") format("embedded-opentype"),url("../fonts/fontawesome-webfont.woff?v=4.1.0") format("woff"),url("../fonts/fontawesome-webfont.ttf?v=4.1.0") format("truetype"),url("../fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular") format("svg");font-weight:normal;font-style:normal}.fa,.rst-content .admonition-title,.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content dl dt .headerlink,.icon{display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333em;line-height:0.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14286em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14286em;width:2.14286em;top:0.14286em;text-align:center}.fa-li.fa-lg{left:-1.85714em}.fa-border{padding:.2em .25em .15em;border:solid 0.08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left,.rst-content .pull-left.admonition-title,.rst-content h1 .pull-left.headerlink,.rst-content h2 .pull-left.headerlink,.rst-content h3 .pull-left.headerlink,.rst-content h4 .pull-left.headerlink,.rst-content h5 .pull-left.headerlink,.rst-content h6 .pull-left.headerlink,.rst-content dl dt .pull-left.headerlink,.pull-left.icon{margin-right:.3em}.fa.pull-right,.rst-content .pull-right.admonition-title,.rst-content h1 .pull-right.headerlink,.rst-content h2 .pull-right.headerlink,.rst-content h3 .pull-right.headerlink,.rst-content h4 .pull-right.headerlink,.rst-content h5 .pull-right.headerlink,.rst-content h6 .pull-right.headerlink,.rst-content dl dt .pull-right.headerlink,.pull-right.icon{margin-left:.3em}.fa-spin{-webkit-animation:spin 2s infinite linear;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;animation:spin 2s infinite linear}@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)}100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)}100%{-o-transform:rotate(359deg)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0);-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:scale(1, -1);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1)}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:""}.fa-music:before{content:""}.fa-search:before,.icon-search:before{content:""}.fa-envelope-o:before{content:""}.fa-heart:before{content:""}.fa-star:before{content:""}.fa-star-o:before{content:""}.fa-user:before{content:""}.fa-film:before{content:""}.fa-th-large:before{content:""}.fa-th:before{content:""}.fa-th-list:before{content:""}.fa-check:before{content:""}.fa-times:before{content:""}.fa-search-plus:before{content:""}.fa-search-minus:before{content:""}.fa-power-off:before{content:""}.fa-signal:before{content:""}.fa-gear:before,.fa-cog:before{content:""}.fa-trash-o:before{content:""}.fa-home:before,.icon-home:before{content:""}.fa-file-o:before{content:""}.fa-clock-o:before{content:""}.fa-road:before{content:""}.fa-download:before{content:""}.fa-arrow-circle-o-down:before{content:""}.fa-arrow-circle-o-up:before{content:""}.fa-inbox:before{content:""}.fa-play-circle-o:before{content:""}.fa-rotate-right:before,.fa-repeat:before{content:""}.fa-refresh:before{content:""}.fa-list-alt:before{content:""}.fa-lock:before{content:""}.fa-flag:before{content:""}.fa-headphones:before{content:""}.fa-volume-off:before{content:""}.fa-volume-down:before{content:""}.fa-volume-up:before{content:""}.fa-qrcode:before{content:""}.fa-barcode:before{content:""}.fa-tag:before{content:""}.fa-tags:before{content:""}.fa-book:before,.icon-book:before{content:""}.fa-bookmark:before{content:""}.fa-print:before{content:""}.fa-camera:before{content:""}.fa-font:before{content:""}.fa-bold:before{content:""}.fa-italic:before{content:""}.fa-text-height:before{content:""}.fa-text-width:before{content:""}.fa-align-left:before{content:""}.fa-align-center:before{content:""}.fa-align-right:before{content:""}.fa-align-justify:before{content:""}.fa-list:before{content:""}.fa-dedent:before,.fa-outdent:before{content:""}.fa-indent:before{content:""}.fa-video-camera:before{content:""}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:""}.fa-pencil:before{content:""}.fa-map-marker:before{content:""}.fa-adjust:before{content:""}.fa-tint:before{content:""}.fa-edit:before,.fa-pencil-square-o:before{content:""}.fa-share-square-o:before{content:""}.fa-check-square-o:before{content:""}.fa-arrows:before{content:""}.fa-step-backward:before{content:""}.fa-fast-backward:before{content:""}.fa-backward:before{content:""}.fa-play:before{content:""}.fa-pause:before{content:""}.fa-stop:before{content:""}.fa-forward:before{content:""}.fa-fast-forward:before{content:""}.fa-step-forward:before{content:""}.fa-eject:before{content:""}.fa-chevron-left:before{content:""}.fa-chevron-right:before{content:""}.fa-plus-circle:before{content:""}.fa-minus-circle:before{content:""}.fa-times-circle:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before{content:""}.fa-check-circle:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before{content:""}.fa-question-circle:before{content:""}.fa-info-circle:before{content:""}.fa-crosshairs:before{content:""}.fa-times-circle-o:before{content:""}.fa-check-circle-o:before{content:""}.fa-ban:before{content:""}.fa-arrow-left:before{content:""}.fa-arrow-right:before{content:""}.fa-arrow-up:before{content:""}.fa-arrow-down:before{content:""}.fa-mail-forward:before,.fa-share:before{content:""}.fa-expand:before{content:""}.fa-compress:before{content:""}.fa-plus:before{content:""}.fa-minus:before{content:""}.fa-asterisk:before{content:""}.fa-exclamation-circle:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before,.rst-content .admonition-title:before{content:""}.fa-gift:before{content:""}.fa-leaf:before{content:""}.fa-fire:before,.icon-fire:before{content:""}.fa-eye:before{content:""}.fa-eye-slash:before{content:""}.fa-warning:before,.fa-exclamation-triangle:before{content:""}.fa-plane:before{content:""}.fa-calendar:before{content:""}.fa-random:before{content:""}.fa-comment:before{content:""}.fa-magnet:before{content:""}.fa-chevron-up:before{content:""}.fa-chevron-down:before{content:""}.fa-retweet:before{content:""}.fa-shopping-cart:before{content:""}.fa-folder:before{content:""}.fa-folder-open:before{content:""}.fa-arrows-v:before{content:""}.fa-arrows-h:before{content:""}.fa-bar-chart-o:before{content:""}.fa-twitter-square:before{content:""}.fa-facebook-square:before{content:""}.fa-camera-retro:before{content:""}.fa-key:before{content:""}.fa-gears:before,.fa-cogs:before{content:""}.fa-comments:before{content:""}.fa-thumbs-o-up:before{content:""}.fa-thumbs-o-down:before{content:""}.fa-star-half:before{content:""}.fa-heart-o:before{content:""}.fa-sign-out:before{content:""}.fa-linkedin-square:before{content:""}.fa-thumb-tack:before{content:""}.fa-external-link:before{content:""}.fa-sign-in:before{content:""}.fa-trophy:before{content:""}.fa-github-square:before{content:""}.fa-upload:before{content:""}.fa-lemon-o:before{content:""}.fa-phone:before{content:""}.fa-square-o:before{content:""}.fa-bookmark-o:before{content:""}.fa-phone-square:before{content:""}.fa-twitter:before{content:""}.fa-facebook:before{content:""}.fa-github:before,.icon-github:before{content:""}.fa-unlock:before{content:""}.fa-credit-card:before{content:""}.fa-rss:before{content:""}.fa-hdd-o:before{content:""}.fa-bullhorn:before{content:""}.fa-bell:before{content:""}.fa-certificate:before{content:""}.fa-hand-o-right:before{content:""}.fa-hand-o-left:before{content:""}.fa-hand-o-up:before{content:""}.fa-hand-o-down:before{content:""}.fa-arrow-circle-left:before,.icon-circle-arrow-left:before{content:""}.fa-arrow-circle-right:before,.icon-circle-arrow-right:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-globe:before{content:""}.fa-wrench:before{content:""}.fa-tasks:before{content:""}.fa-filter:before{content:""}.fa-briefcase:before{content:""}.fa-arrows-alt:before{content:""}.fa-group:before,.fa-users:before{content:""}.fa-chain:before,.fa-link:before,.icon-link:before{content:""}.fa-cloud:before{content:""}.fa-flask:before{content:""}.fa-cut:before,.fa-scissors:before{content:""}.fa-copy:before,.fa-files-o:before{content:""}.fa-paperclip:before{content:""}.fa-save:before,.fa-floppy-o:before{content:""}.fa-square:before{content:""}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:""}.fa-list-ul:before{content:""}.fa-list-ol:before{content:""}.fa-strikethrough:before{content:""}.fa-underline:before{content:""}.fa-table:before{content:""}.fa-magic:before{content:""}.fa-truck:before{content:""}.fa-pinterest:before{content:""}.fa-pinterest-square:before{content:""}.fa-google-plus-square:before{content:""}.fa-google-plus:before{content:""}.fa-money:before{content:""}.fa-caret-down:before,.wy-dropdown .caret:before,.icon-caret-down:before{content:""}.fa-caret-up:before{content:""}.fa-caret-left:before{content:""}.fa-caret-right:before{content:""}.fa-columns:before{content:""}.fa-unsorted:before,.fa-sort:before{content:""}.fa-sort-down:before,.fa-sort-desc:before{content:""}.fa-sort-up:before,.fa-sort-asc:before{content:""}.fa-envelope:before{content:""}.fa-linkedin:before{content:""}.fa-rotate-left:before,.fa-undo:before{content:""}.fa-legal:before,.fa-gavel:before{content:""}.fa-dashboard:before,.fa-tachometer:before{content:""}.fa-comment-o:before{content:""}.fa-comments-o:before{content:""}.fa-flash:before,.fa-bolt:before{content:""}.fa-sitemap:before{content:""}.fa-umbrella:before{content:""}.fa-paste:before,.fa-clipboard:before{content:""}.fa-lightbulb-o:before{content:""}.fa-exchange:before{content:""}.fa-cloud-download:before{content:""}.fa-cloud-upload:before{content:""}.fa-user-md:before{content:""}.fa-stethoscope:before{content:""}.fa-suitcase:before{content:""}.fa-bell-o:before{content:""}.fa-coffee:before{content:""}.fa-cutlery:before{content:""}.fa-file-text-o:before{content:""}.fa-building-o:before{content:""}.fa-hospital-o:before{content:""}.fa-ambulance:before{content:""}.fa-medkit:before{content:""}.fa-fighter-jet:before{content:""}.fa-beer:before{content:""}.fa-h-square:before{content:""}.fa-plus-square:before{content:""}.fa-angle-double-left:before{content:""}.fa-angle-double-right:before{content:""}.fa-angle-double-up:before{content:""}.fa-angle-double-down:before{content:""}.fa-angle-left:before{content:""}.fa-angle-right:before{content:""}.fa-angle-up:before{content:""}.fa-angle-down:before{content:""}.fa-desktop:before{content:""}.fa-laptop:before{content:""}.fa-tablet:before{content:""}.fa-mobile-phone:before,.fa-mobile:before{content:""}.fa-circle-o:before{content:""}.fa-quote-left:before{content:""}.fa-quote-right:before{content:""}.fa-spinner:before{content:""}.fa-circle:before{content:""}.fa-mail-reply:before,.fa-reply:before{content:""}.fa-github-alt:before{content:""}.fa-folder-o:before{content:""}.fa-folder-open-o:before{content:""}.fa-smile-o:before{content:""}.fa-frown-o:before{content:""}.fa-meh-o:before{content:""}.fa-gamepad:before{content:""}.fa-keyboard-o:before{content:""}.fa-flag-o:before{content:""}.fa-flag-checkered:before{content:""}.fa-terminal:before{content:""}.fa-code:before{content:""}.fa-mail-reply-all:before,.fa-reply-all:before{content:""}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:""}.fa-location-arrow:before{content:""}.fa-crop:before{content:""}.fa-code-fork:before{content:""}.fa-unlink:before,.fa-chain-broken:before{content:""}.fa-question:before{content:""}.fa-info:before{content:""}.fa-exclamation:before{content:""}.fa-superscript:before{content:""}.fa-subscript:before{content:""}.fa-eraser:before{content:""}.fa-puzzle-piece:before{content:""}.fa-microphone:before{content:""}.fa-microphone-slash:before{content:""}.fa-shield:before{content:""}.fa-calendar-o:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-rocket:before{content:""}.fa-maxcdn:before{content:""}.fa-chevron-circle-left:before{content:""}.fa-chevron-circle-right:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-html5:before{content:""}.fa-css3:before{content:""}.fa-anchor:before{content:""}.fa-unlock-alt:before{content:""}.fa-bullseye:before{content:""}.fa-ellipsis-h:before{content:""}.fa-ellipsis-v:before{content:""}.fa-rss-square:before{content:""}.fa-play-circle:before{content:""}.fa-ticket:before{content:""}.fa-minus-square:before{content:""}.fa-minus-square-o:before{content:""}.fa-level-up:before{content:""}.fa-level-down:before{content:""}.fa-check-square:before{content:""}.fa-pencil-square:before{content:""}.fa-external-link-square:before{content:""}.fa-share-square:before{content:""}.fa-compass:before{content:""}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:""}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:""}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:""}.fa-euro:before,.fa-eur:before{content:""}.fa-gbp:before{content:""}.fa-dollar:before,.fa-usd:before{content:""}.fa-rupee:before,.fa-inr:before{content:""}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:""}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:""}.fa-won:before,.fa-krw:before{content:""}.fa-bitcoin:before,.fa-btc:before{content:""}.fa-file:before{content:""}.fa-file-text:before{content:""}.fa-sort-alpha-asc:before{content:""}.fa-sort-alpha-desc:before{content:""}.fa-sort-amount-asc:before{content:""}.fa-sort-amount-desc:before{content:""}.fa-sort-numeric-asc:before{content:""}.fa-sort-numeric-desc:before{content:""}.fa-thumbs-up:before{content:""}.fa-thumbs-down:before{content:""}.fa-youtube-square:before{content:""}.fa-youtube:before{content:""}.fa-xing:before{content:""}.fa-xing-square:before{content:""}.fa-youtube-play:before{content:""}.fa-dropbox:before{content:""}.fa-stack-overflow:before{content:""}.fa-instagram:before{content:""}.fa-flickr:before{content:""}.fa-adn:before{content:""}.fa-bitbucket:before,.icon-bitbucket:before{content:""}.fa-bitbucket-square:before{content:""}.fa-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-long-arrow-down:before{content:""}.fa-long-arrow-up:before{content:""}.fa-long-arrow-left:before{content:""}.fa-long-arrow-right:before{content:""}.fa-apple:before{content:""}.fa-windows:before{content:""}.fa-android:before{content:""}.fa-linux:before{content:""}.fa-dribbble:before{content:""}.fa-skype:before{content:""}.fa-foursquare:before{content:""}.fa-trello:before{content:""}.fa-female:before{content:""}.fa-male:before{content:""}.fa-gittip:before{content:""}.fa-sun-o:before{content:""}.fa-moon-o:before{content:""}.fa-archive:before{content:""}.fa-bug:before{content:""}.fa-vk:before{content:""}.fa-weibo:before{content:""}.fa-renren:before{content:""}.fa-pagelines:before{content:""}.fa-stack-exchange:before{content:""}.fa-arrow-circle-o-right:before{content:""}.fa-arrow-circle-o-left:before{content:""}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:""}.fa-dot-circle-o:before{content:""}.fa-wheelchair:before{content:""}.fa-vimeo-square:before{content:""}.fa-turkish-lira:before,.fa-try:before{content:""}.fa-plus-square-o:before{content:""}.fa-space-shuttle:before{content:""}.fa-slack:before{content:""}.fa-envelope-square:before{content:""}.fa-wordpress:before{content:""}.fa-openid:before{content:""}.fa-institution:before,.fa-bank:before,.fa-university:before{content:""}.fa-mortar-board:before,.fa-graduation-cap:before{content:""}.fa-yahoo:before{content:""}.fa-google:before{content:""}.fa-reddit:before{content:""}.fa-reddit-square:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-stumbleupon:before{content:""}.fa-delicious:before{content:""}.fa-digg:before{content:""}.fa-pied-piper-square:before,.fa-pied-piper:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-drupal:before{content:""}.fa-joomla:before{content:""}.fa-language:before{content:""}.fa-fax:before{content:""}.fa-building:before{content:""}.fa-child:before{content:""}.fa-paw:before{content:""}.fa-spoon:before{content:""}.fa-cube:before{content:""}.fa-cubes:before{content:""}.fa-behance:before{content:""}.fa-behance-square:before{content:""}.fa-steam:before{content:""}.fa-steam-square:before{content:""}.fa-recycle:before{content:""}.fa-automobile:before,.fa-car:before{content:""}.fa-cab:before,.fa-taxi:before{content:""}.fa-tree:before{content:""}.fa-spotify:before{content:""}.fa-deviantart:before{content:""}.fa-soundcloud:before{content:""}.fa-database:before{content:""}.fa-file-pdf-o:before{content:""}.fa-file-word-o:before{content:""}.fa-file-excel-o:before{content:""}.fa-file-powerpoint-o:before{content:""}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:""}.fa-file-zip-o:before,.fa-file-archive-o:before{content:""}.fa-file-sound-o:before,.fa-file-audio-o:before{content:""}.fa-file-movie-o:before,.fa-file-video-o:before{content:""}.fa-file-code-o:before{content:""}.fa-vine:before{content:""}.fa-codepen:before{content:""}.fa-jsfiddle:before{content:""}.fa-life-bouy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:""}.fa-circle-o-notch:before{content:""}.fa-ra:before,.fa-rebel:before{content:""}.fa-ge:before,.fa-empire:before{content:""}.fa-git-square:before{content:""}.fa-git:before{content:""}.fa-hacker-news:before{content:""}.fa-tencent-weibo:before{content:""}.fa-qq:before{content:""}.fa-wechat:before,.fa-weixin:before{content:""}.fa-send:before,.fa-paper-plane:before{content:""}.fa-send-o:before,.fa-paper-plane-o:before{content:""}.fa-history:before{content:""}.fa-circle-thin:before{content:""}.fa-header:before{content:""}.fa-paragraph:before{content:""}.fa-sliders:before{content:""}.fa-share-alt:before{content:""}.fa-share-alt-square:before{content:""}.fa-bomb:before{content:""}.fa,.rst-content .admonition-title,.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content dl dt .headerlink,.icon,.wy-dropdown .caret,.wy-inline-validate.wy-inline-validate-success .wy-input-context,.wy-inline-validate.wy-inline-validate-danger .wy-input-context,.wy-inline-validate.wy-inline-validate-warning .wy-input-context,.wy-inline-validate.wy-inline-validate-info .wy-input-context{font-family:inherit}.fa:before,.rst-content .admonition-title:before,.rst-content h1 .headerlink:before,.rst-content h2 .headerlink:before,.rst-content h3 .headerlink:before,.rst-content h4 .headerlink:before,.rst-content h5 .headerlink:before,.rst-content h6 .headerlink:before,.rst-content dl dt .headerlink:before,.icon:before,.wy-dropdown .caret:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before{font-family:"FontAwesome";display:inline-block;font-style:normal;font-weight:normal;line-height:1;text-decoration:inherit}a .fa,a .rst-content .admonition-title,.rst-content a .admonition-title,a .rst-content h1 .headerlink,.rst-content h1 a .headerlink,a .rst-content h2 .headerlink,.rst-content h2 a .headerlink,a .rst-content h3 .headerlink,.rst-content h3 a .headerlink,a .rst-content h4 .headerlink,.rst-content h4 a .headerlink,a .rst-content h5 .headerlink,.rst-content h5 a .headerlink,a .rst-content h6 .headerlink,.rst-content h6 a .headerlink,a .rst-content dl dt .headerlink,.rst-content dl dt a .headerlink,a .icon{display:inline-block;text-decoration:inherit}.btn .fa,.btn .rst-content .admonition-title,.rst-content .btn .admonition-title,.btn .rst-content h1 .headerlink,.rst-content h1 .btn .headerlink,.btn .rst-content h2 .headerlink,.rst-content h2 .btn .headerlink,.btn .rst-content h3 .headerlink,.rst-content h3 .btn .headerlink,.btn .rst-content h4 .headerlink,.rst-content h4 .btn .headerlink,.btn .rst-content h5 .headerlink,.rst-content h5 .btn .headerlink,.btn .rst-content h6 .headerlink,.rst-content h6 .btn .headerlink,.btn .rst-content dl dt .headerlink,.rst-content dl dt .btn .headerlink,.btn .icon,.nav .fa,.nav .rst-content .admonition-title,.rst-content .nav .admonition-title,.nav .rst-content h1 .headerlink,.rst-content h1 .nav .headerlink,.nav .rst-content h2 .headerlink,.rst-content h2 .nav .headerlink,.nav .rst-content h3 .headerlink,.rst-content h3 .nav .headerlink,.nav .rst-content h4 .headerlink,.rst-content h4 .nav .headerlink,.nav .rst-content h5 .headerlink,.rst-content h5 .nav .headerlink,.nav .rst-content h6 .headerlink,.rst-content h6 .nav .headerlink,.nav .rst-content dl dt .headerlink,.rst-content dl dt .nav .headerlink,.nav .icon{display:inline}.btn .fa.fa-large,.btn .rst-content .fa-large.admonition-title,.rst-content .btn .fa-large.admonition-title,.btn .rst-content h1 .fa-large.headerlink,.rst-content h1 .btn .fa-large.headerlink,.btn .rst-content h2 .fa-large.headerlink,.rst-content h2 .btn .fa-large.headerlink,.btn .rst-content h3 .fa-large.headerlink,.rst-content h3 .btn .fa-large.headerlink,.btn .rst-content h4 .fa-large.headerlink,.rst-content h4 .btn .fa-large.headerlink,.btn .rst-content h5 .fa-large.headerlink,.rst-content h5 .btn .fa-large.headerlink,.btn .rst-content h6 .fa-large.headerlink,.rst-content h6 .btn .fa-large.headerlink,.btn .rst-content dl dt .fa-large.headerlink,.rst-content dl dt .btn .fa-large.headerlink,.btn .fa-large.icon,.nav .fa.fa-large,.nav .rst-content .fa-large.admonition-title,.rst-content .nav .fa-large.admonition-title,.nav .rst-content h1 .fa-large.headerlink,.rst-content h1 .nav .fa-large.headerlink,.nav .rst-content h2 .fa-large.headerlink,.rst-content h2 .nav .fa-large.headerlink,.nav .rst-content h3 .fa-large.headerlink,.rst-content h3 .nav .fa-large.headerlink,.nav .rst-content h4 .fa-large.headerlink,.rst-content h4 .nav .fa-large.headerlink,.nav .rst-content h5 .fa-large.headerlink,.rst-content h5 .nav .fa-large.headerlink,.nav .rst-content h6 .fa-large.headerlink,.rst-content h6 .nav .fa-large.headerlink,.nav .rst-content dl dt .fa-large.headerlink,.rst-content dl dt .nav .fa-large.headerlink,.nav .fa-large.icon{line-height:0.9em}.btn .fa.fa-spin,.btn .rst-content .fa-spin.admonition-title,.rst-content .btn .fa-spin.admonition-title,.btn .rst-content h1 .fa-spin.headerlink,.rst-content h1 .btn .fa-spin.headerlink,.btn .rst-content h2 .fa-spin.headerlink,.rst-content h2 .btn .fa-spin.headerlink,.btn .rst-content h3 .fa-spin.headerlink,.rst-content h3 .btn .fa-spin.headerlink,.btn .rst-content h4 .fa-spin.headerlink,.rst-content h4 .btn .fa-spin.headerlink,.btn .rst-content h5 .fa-spin.headerlink,.rst-content h5 .btn .fa-spin.headerlink,.btn .rst-content h6 .fa-spin.headerlink,.rst-content h6 .btn .fa-spin.headerlink,.btn .rst-content dl dt .fa-spin.headerlink,.rst-content dl dt .btn .fa-spin.headerlink,.btn .fa-spin.icon,.nav .fa.fa-spin,.nav .rst-content .fa-spin.admonition-title,.rst-content .nav .fa-spin.admonition-title,.nav .rst-content h1 .fa-spin.headerlink,.rst-content h1 .nav .fa-spin.headerlink,.nav .rst-content h2 .fa-spin.headerlink,.rst-content h2 .nav .fa-spin.headerlink,.nav .rst-content h3 .fa-spin.headerlink,.rst-content h3 .nav .fa-spin.headerlink,.nav .rst-content h4 .fa-spin.headerlink,.rst-content h4 .nav .fa-spin.headerlink,.nav .rst-content h5 .fa-spin.headerlink,.rst-content h5 .nav .fa-spin.headerlink,.nav .rst-content h6 .fa-spin.headerlink,.rst-content h6 .nav .fa-spin.headerlink,.nav .rst-content dl dt .fa-spin.headerlink,.rst-content dl dt .nav .fa-spin.headerlink,.nav .fa-spin.icon{display:inline-block}.btn.fa:before,.rst-content .btn.admonition-title:before,.rst-content h1 .btn.headerlink:before,.rst-content h2 .btn.headerlink:before,.rst-content h3 .btn.headerlink:before,.rst-content h4 .btn.headerlink:before,.rst-content h5 .btn.headerlink:before,.rst-content h6 .btn.headerlink:before,.rst-content dl dt .btn.headerlink:before,.btn.icon:before{opacity:0.5;-webkit-transition:opacity 0.05s ease-in;-moz-transition:opacity 0.05s ease-in;transition:opacity 0.05s ease-in}.btn.fa:hover:before,.rst-content .btn.admonition-title:hover:before,.rst-content h1 .btn.headerlink:hover:before,.rst-content h2 .btn.headerlink:hover:before,.rst-content h3 .btn.headerlink:hover:before,.rst-content h4 .btn.headerlink:hover:before,.rst-content h5 .btn.headerlink:hover:before,.rst-content h6 .btn.headerlink:hover:before,.rst-content dl dt .btn.headerlink:hover:before,.btn.icon:hover:before{opacity:1}.btn-mini .fa:before,.btn-mini .rst-content .admonition-title:before,.rst-content .btn-mini .admonition-title:before,.btn-mini .rst-content h1 .headerlink:before,.rst-content h1 .btn-mini .headerlink:before,.btn-mini .rst-content h2 .headerlink:before,.rst-content h2 .btn-mini .headerlink:before,.btn-mini .rst-content h3 .headerlink:before,.rst-content h3 .btn-mini .headerlink:before,.btn-mini .rst-content h4 .headerlink:before,.rst-content h4 .btn-mini .headerlink:before,.btn-mini .rst-content h5 .headerlink:before,.rst-content h5 .btn-mini .headerlink:before,.btn-mini .rst-content h6 .headerlink:before,.rst-content h6 .btn-mini .headerlink:before,.btn-mini .rst-content dl dt .headerlink:before,.rst-content dl dt .btn-mini .headerlink:before,.btn-mini .icon:before{font-size:14px;vertical-align:-15%}.wy-alert,.rst-content .note,.rst-content .attention,.rst-content .caution,.rst-content .danger,.rst-content .error,.rst-content .hint,.rst-content .important,.rst-content .tip,.rst-content .warning,.rst-content .seealso,.rst-content .admonition-todo{padding:12px;line-height:24px;margin-bottom:24px;background:#e7f2fa}.wy-alert-title,.rst-content .admonition-title{color:#fff;font-weight:bold;display:block;color:#fff;background:#6ab0de;margin:-12px;padding:6px 12px;margin-bottom:12px}.wy-alert.wy-alert-danger,.rst-content .wy-alert-danger.note,.rst-content .wy-alert-danger.attention,.rst-content .wy-alert-danger.caution,.rst-content .danger,.rst-content .error,.rst-content .wy-alert-danger.hint,.rst-content .wy-alert-danger.important,.rst-content .wy-alert-danger.tip,.rst-content .wy-alert-danger.warning,.rst-content .wy-alert-danger.seealso,.rst-content .wy-alert-danger.admonition-todo{background:#fdf3f2}.wy-alert.wy-alert-danger .wy-alert-title,.rst-content .wy-alert-danger.note .wy-alert-title,.rst-content .wy-alert-danger.attention .wy-alert-title,.rst-content .wy-alert-danger.caution .wy-alert-title,.rst-content .danger .wy-alert-title,.rst-content .error .wy-alert-title,.rst-content .wy-alert-danger.hint .wy-alert-title,.rst-content .wy-alert-danger.important .wy-alert-title,.rst-content .wy-alert-danger.tip .wy-alert-title,.rst-content .wy-alert-danger.warning .wy-alert-title,.rst-content .wy-alert-danger.seealso .wy-alert-title,.rst-content .wy-alert-danger.admonition-todo .wy-alert-title,.wy-alert.wy-alert-danger .rst-content .admonition-title,.rst-content .wy-alert.wy-alert-danger .admonition-title,.rst-content .wy-alert-danger.note .admonition-title,.rst-content .wy-alert-danger.attention .admonition-title,.rst-content .wy-alert-danger.caution .admonition-title,.rst-content .danger .admonition-title,.rst-content .error .admonition-title,.rst-content .wy-alert-danger.hint .admonition-title,.rst-content .wy-alert-danger.important .admonition-title,.rst-content .wy-alert-danger.tip .admonition-title,.rst-content .wy-alert-danger.warning .admonition-title,.rst-content .wy-alert-danger.seealso .admonition-title,.rst-content .wy-alert-danger.admonition-todo .admonition-title{background:#f29f97}.wy-alert.wy-alert-warning,.rst-content .wy-alert-warning.note,.rst-content .attention,.rst-content .caution,.rst-content .wy-alert-warning.danger,.rst-content .wy-alert-warning.error,.rst-content .wy-alert-warning.hint,.rst-content .wy-alert-warning.important,.rst-content .wy-alert-warning.tip,.rst-content .warning,.rst-content .wy-alert-warning.seealso,.rst-content .admonition-todo{background:#ffedcc}.wy-alert.wy-alert-warning .wy-alert-title,.rst-content .wy-alert-warning.note .wy-alert-title,.rst-content .attention .wy-alert-title,.rst-content .caution .wy-alert-title,.rst-content .wy-alert-warning.danger .wy-alert-title,.rst-content .wy-alert-warning.error .wy-alert-title,.rst-content .wy-alert-warning.hint .wy-alert-title,.rst-content .wy-alert-warning.important .wy-alert-title,.rst-content .wy-alert-warning.tip .wy-alert-title,.rst-content .warning .wy-alert-title,.rst-content .wy-alert-warning.seealso .wy-alert-title,.rst-content .admonition-todo .wy-alert-title,.wy-alert.wy-alert-warning .rst-content .admonition-title,.rst-content .wy-alert.wy-alert-warning .admonition-title,.rst-content .wy-alert-warning.note .admonition-title,.rst-content .attention .admonition-title,.rst-content .caution .admonition-title,.rst-content .wy-alert-warning.danger .admonition-title,.rst-content .wy-alert-warning.error .admonition-title,.rst-content .wy-alert-warning.hint .admonition-title,.rst-content .wy-alert-warning.important .admonition-title,.rst-content .wy-alert-warning.tip .admonition-title,.rst-content .warning .admonition-title,.rst-content .wy-alert-warning.seealso .admonition-title,.rst-content .admonition-todo .admonition-title{background:#f0b37e}.wy-alert.wy-alert-info,.rst-content .note,.rst-content .wy-alert-info.attention,.rst-content .wy-alert-info.caution,.rst-content .wy-alert-info.danger,.rst-content .wy-alert-info.error,.rst-content .wy-alert-info.hint,.rst-content .wy-alert-info.important,.rst-content .wy-alert-info.tip,.rst-content .wy-alert-info.warning,.rst-content .seealso,.rst-content .wy-alert-info.admonition-todo{background:#e7f2fa}.wy-alert.wy-alert-info .wy-alert-title,.rst-content .note .wy-alert-title,.rst-content .wy-alert-info.attention .wy-alert-title,.rst-content .wy-alert-info.caution .wy-alert-title,.rst-content .wy-alert-info.danger .wy-alert-title,.rst-content .wy-alert-info.error .wy-alert-title,.rst-content .wy-alert-info.hint .wy-alert-title,.rst-content .wy-alert-info.important .wy-alert-title,.rst-content .wy-alert-info.tip .wy-alert-title,.rst-content .wy-alert-info.warning .wy-alert-title,.rst-content .seealso .wy-alert-title,.rst-content .wy-alert-info.admonition-todo .wy-alert-title,.wy-alert.wy-alert-info .rst-content .admonition-title,.rst-content .wy-alert.wy-alert-info .admonition-title,.rst-content .note .admonition-title,.rst-content .wy-alert-info.attention .admonition-title,.rst-content .wy-alert-info.caution .admonition-title,.rst-content .wy-alert-info.danger .admonition-title,.rst-content .wy-alert-info.error .admonition-title,.rst-content .wy-alert-info.hint .admonition-title,.rst-content .wy-alert-info.important .admonition-title,.rst-content .wy-alert-info.tip .admonition-title,.rst-content .wy-alert-info.warning .admonition-title,.rst-content .seealso .admonition-title,.rst-content .wy-alert-info.admonition-todo .admonition-title{background:#6ab0de}.wy-alert.wy-alert-success,.rst-content .wy-alert-success.note,.rst-content .wy-alert-success.attention,.rst-content .wy-alert-success.caution,.rst-content .wy-alert-success.danger,.rst-content .wy-alert-success.error,.rst-content .hint,.rst-content .important,.rst-content .tip,.rst-content .wy-alert-success.warning,.rst-content .wy-alert-success.seealso,.rst-content .wy-alert-success.admonition-todo{background:#dbfaf4}.wy-alert.wy-alert-success .wy-alert-title,.rst-content .wy-alert-success.note .wy-alert-title,.rst-content .wy-alert-success.attention .wy-alert-title,.rst-content .wy-alert-success.caution .wy-alert-title,.rst-content .wy-alert-success.danger .wy-alert-title,.rst-content .wy-alert-success.error .wy-alert-title,.rst-content .hint .wy-alert-title,.rst-content .important .wy-alert-title,.rst-content .tip .wy-alert-title,.rst-content .wy-alert-success.warning .wy-alert-title,.rst-content .wy-alert-success.seealso .wy-alert-title,.rst-content .wy-alert-success.admonition-todo .wy-alert-title,.wy-alert.wy-alert-success .rst-content .admonition-title,.rst-content .wy-alert.wy-alert-success .admonition-title,.rst-content .wy-alert-success.note .admonition-title,.rst-content .wy-alert-success.attention .admonition-title,.rst-content .wy-alert-success.caution .admonition-title,.rst-content .wy-alert-success.danger .admonition-title,.rst-content .wy-alert-success.error .admonition-title,.rst-content .hint .admonition-title,.rst-content .important .admonition-title,.rst-content .tip .admonition-title,.rst-content .wy-alert-success.warning .admonition-title,.rst-content .wy-alert-success.seealso .admonition-title,.rst-content .wy-alert-success.admonition-todo .admonition-title{background:#1abc9c}.wy-alert.wy-alert-neutral,.rst-content .wy-alert-neutral.note,.rst-content .wy-alert-neutral.attention,.rst-content .wy-alert-neutral.caution,.rst-content .wy-alert-neutral.danger,.rst-content .wy-alert-neutral.error,.rst-content .wy-alert-neutral.hint,.rst-content .wy-alert-neutral.important,.rst-content .wy-alert-neutral.tip,.rst-content .wy-alert-neutral.warning,.rst-content .wy-alert-neutral.seealso,.rst-content .wy-alert-neutral.admonition-todo{background:#f3f6f6}.wy-alert.wy-alert-neutral .wy-alert-title,.rst-content .wy-alert-neutral.note .wy-alert-title,.rst-content .wy-alert-neutral.attention .wy-alert-title,.rst-content .wy-alert-neutral.caution .wy-alert-title,.rst-content .wy-alert-neutral.danger .wy-alert-title,.rst-content .wy-alert-neutral.error .wy-alert-title,.rst-content .wy-alert-neutral.hint .wy-alert-title,.rst-content .wy-alert-neutral.important .wy-alert-title,.rst-content .wy-alert-neutral.tip .wy-alert-title,.rst-content .wy-alert-neutral.warning .wy-alert-title,.rst-content .wy-alert-neutral.seealso .wy-alert-title,.rst-content .wy-alert-neutral.admonition-todo .wy-alert-title,.wy-alert.wy-alert-neutral .rst-content .admonition-title,.rst-content .wy-alert.wy-alert-neutral .admonition-title,.rst-content .wy-alert-neutral.note .admonition-title,.rst-content .wy-alert-neutral.attention .admonition-title,.rst-content .wy-alert-neutral.caution .admonition-title,.rst-content .wy-alert-neutral.danger .admonition-title,.rst-content .wy-alert-neutral.error .admonition-title,.rst-content .wy-alert-neutral.hint .admonition-title,.rst-content .wy-alert-neutral.important .admonition-title,.rst-content .wy-alert-neutral.tip .admonition-title,.rst-content .wy-alert-neutral.warning .admonition-title,.rst-content .wy-alert-neutral.seealso .admonition-title,.rst-content .wy-alert-neutral.admonition-todo .admonition-title{color:#404040;background:#e1e4e5}.wy-alert.wy-alert-neutral a,.rst-content .wy-alert-neutral.note a,.rst-content .wy-alert-neutral.attention a,.rst-content .wy-alert-neutral.caution a,.rst-content .wy-alert-neutral.danger a,.rst-content .wy-alert-neutral.error a,.rst-content .wy-alert-neutral.hint a,.rst-content .wy-alert-neutral.important a,.rst-content .wy-alert-neutral.tip a,.rst-content .wy-alert-neutral.warning a,.rst-content .wy-alert-neutral.seealso a,.rst-content .wy-alert-neutral.admonition-todo a{color:#2980B9}.wy-alert p:last-child,.rst-content .note p:last-child,.rst-content .attention p:last-child,.rst-content .caution p:last-child,.rst-content .danger p:last-child,.rst-content .error p:last-child,.rst-content .hint p:last-child,.rst-content .important p:last-child,.rst-content .tip p:last-child,.rst-content .warning p:last-child,.rst-content .seealso p:last-child,.rst-content .admonition-todo p:last-child{margin-bottom:0}.wy-tray-container{position:fixed;bottom:0px;left:0;z-index:600}.wy-tray-container li{display:block;width:300px;background:transparent;color:#fff;text-align:center;box-shadow:0 5px 5px 0 rgba(0,0,0,0.1);padding:0 24px;min-width:20%;opacity:0;height:0;line-height:56px;overflow:hidden;-webkit-transition:all 0.3s ease-in;-moz-transition:all 0.3s ease-in;transition:all 0.3s ease-in}.wy-tray-container li.wy-tray-item-success{background:#27AE60}.wy-tray-container li.wy-tray-item-info{background:#2980B9}.wy-tray-container li.wy-tray-item-warning{background:#E67E22}.wy-tray-container li.wy-tray-item-danger{background:#E74C3C}.wy-tray-container li.on{opacity:1;height:56px}@media screen and (max-width: 768px){.wy-tray-container{bottom:auto;top:0;width:100%}.wy-tray-container li{width:100%}}button{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle;cursor:pointer;line-height:normal;-webkit-appearance:button;*overflow:visible}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}button[disabled]{cursor:default}.btn{display:inline-block;border-radius:2px;line-height:normal;white-space:nowrap;text-align:center;cursor:pointer;font-size:100%;padding:6px 12px 8px 12px;color:#fff;border:1px solid rgba(0,0,0,0.1);background-color:#27AE60;text-decoration:none;font-weight:normal;font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;box-shadow:0px 1px 2px -1px rgba(255,255,255,0.5) inset,0px -2px 0px 0px rgba(0,0,0,0.1) inset;outline-none:false;vertical-align:middle;*display:inline;zoom:1;-webkit-user-drag:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-transition:all 0.1s linear;-moz-transition:all 0.1s linear;transition:all 0.1s linear}.btn-hover{background:#2e8ece;color:#fff}.btn:hover{background:#2cc36b;color:#fff}.btn:focus{background:#2cc36b;outline:0}.btn:active{box-shadow:0px -1px 0px 0px rgba(0,0,0,0.05) inset,0px 2px 0px 0px rgba(0,0,0,0.1) inset;padding:8px 12px 6px 12px}.btn:visited{color:#fff}.btn:disabled{background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);filter:alpha(opacity=40);opacity:0.4;cursor:not-allowed;box-shadow:none}.btn-disabled{background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);filter:alpha(opacity=40);opacity:0.4;cursor:not-allowed;box-shadow:none}.btn-disabled:hover,.btn-disabled:focus,.btn-disabled:active{background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);filter:alpha(opacity=40);opacity:0.4;cursor:not-allowed;box-shadow:none}.btn::-moz-focus-inner{padding:0;border:0}.btn-small{font-size:80%}.btn-info{background-color:#2980B9 !important}.btn-info:hover{background-color:#2e8ece !important}.btn-neutral{background-color:#f3f6f6 !important;color:#404040 !important}.btn-neutral:hover{background-color:#e5ebeb !important;color:#404040}.btn-neutral:visited{color:#404040 !important}.btn-success{background-color:#27AE60 !important}.btn-success:hover{background-color:#295 !important}.btn-danger{background-color:#E74C3C !important}.btn-danger:hover{background-color:#ea6153 !important}.btn-warning{background-color:#E67E22 !important}.btn-warning:hover{background-color:#e98b39 !important}.btn-invert{background-color:#222}.btn-invert:hover{background-color:#2f2f2f !important}.btn-link{background-color:transparent !important;color:#2980B9;box-shadow:none;border-color:transparent !important}.btn-link:hover{background-color:transparent !important;color:#409ad5 !important;box-shadow:none}.btn-link:active{background-color:transparent !important;color:#409ad5 !important;box-shadow:none}.btn-link:visited{color:#9B59B6}.wy-btn-group .btn,.wy-control .btn{vertical-align:middle}.wy-btn-group{margin-bottom:24px;*zoom:1}.wy-btn-group:before,.wy-btn-group:after{display:table;content:""}.wy-btn-group:after{clear:both}.wy-dropdown{position:relative;display:inline-block}.wy-dropdown-menu{position:absolute;left:0;display:none;float:left;top:100%;min-width:100%;background:#fcfcfc;z-index:100;border:solid 1px #cfd7dd;box-shadow:0 2px 2px 0 rgba(0,0,0,0.1);padding:12px}.wy-dropdown-menu>dd>a{display:block;clear:both;color:#404040;white-space:nowrap;font-size:90%;padding:0 12px;cursor:pointer}.wy-dropdown-menu>dd>a:hover{background:#2980B9;color:#fff}.wy-dropdown-menu>dd.divider{border-top:solid 1px #cfd7dd;margin:6px 0}.wy-dropdown-menu>dd.search{padding-bottom:12px}.wy-dropdown-menu>dd.search input[type="search"]{width:100%}.wy-dropdown-menu>dd.call-to-action{background:#e3e3e3;text-transform:uppercase;font-weight:500;font-size:80%}.wy-dropdown-menu>dd.call-to-action:hover{background:#e3e3e3}.wy-dropdown-menu>dd.call-to-action .btn{color:#fff}.wy-dropdown.wy-dropdown-up .wy-dropdown-menu{bottom:100%;top:auto;left:auto;right:0}.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu{background:#fcfcfc;margin-top:2px}.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu a{padding:6px 12px}.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu a:hover{background:#2980B9;color:#fff}.wy-dropdown.wy-dropdown-left .wy-dropdown-menu{right:0;text-align:right}.wy-dropdown-arrow:before{content:" ";border-bottom:5px solid #f5f5f5;border-left:5px solid transparent;border-right:5px solid transparent;position:absolute;display:block;top:-4px;left:50%;margin-left:-3px}.wy-dropdown-arrow.wy-dropdown-arrow-left:before{left:11px}.wy-form-stacked select{display:block}.wy-form-aligned input,.wy-form-aligned textarea,.wy-form-aligned select,.wy-form-aligned .wy-help-inline,.wy-form-aligned label{display:inline-block;*display:inline;*zoom:1;vertical-align:middle}.wy-form-aligned .wy-control-group>label{display:inline-block;vertical-align:middle;width:10em;margin:6px 12px 0 0;float:left}.wy-form-aligned .wy-control{float:left}.wy-form-aligned .wy-control label{display:block}.wy-form-aligned .wy-control select{margin-top:6px}fieldset{border:0;margin:0;padding:0}legend{display:block;width:100%;border:0;padding:0;white-space:normal;margin-bottom:24px;font-size:150%;*margin-left:-7px}label{display:block;margin:0 0 0.3125em 0;color:#999;font-size:90%}input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}.wy-control-group{margin-bottom:24px;*zoom:1;max-width:68em;margin-left:auto;margin-right:auto;*zoom:1}.wy-control-group:before,.wy-control-group:after{display:table;content:""}.wy-control-group:after{clear:both}.wy-control-group:before,.wy-control-group:after{display:table;content:""}.wy-control-group:after{clear:both}.wy-control-group.wy-control-group-required>label:after{content:" *";color:#E74C3C}.wy-control-group .wy-form-full,.wy-control-group .wy-form-halves,.wy-control-group .wy-form-thirds{padding-bottom:12px}.wy-control-group .wy-form-full select,.wy-control-group .wy-form-halves select,.wy-control-group .wy-form-thirds select{width:100%}.wy-control-group .wy-form-full input[type="text"],.wy-control-group .wy-form-full input[type="password"],.wy-control-group .wy-form-full input[type="email"],.wy-control-group .wy-form-full input[type="url"],.wy-control-group .wy-form-full input[type="date"],.wy-control-group .wy-form-full input[type="month"],.wy-control-group .wy-form-full input[type="time"],.wy-control-group .wy-form-full input[type="datetime"],.wy-control-group .wy-form-full input[type="datetime-local"],.wy-control-group .wy-form-full input[type="week"],.wy-control-group .wy-form-full input[type="number"],.wy-control-group .wy-form-full input[type="search"],.wy-control-group .wy-form-full input[type="tel"],.wy-control-group .wy-form-full input[type="color"],.wy-control-group .wy-form-halves input[type="text"],.wy-control-group .wy-form-halves input[type="password"],.wy-control-group .wy-form-halves input[type="email"],.wy-control-group .wy-form-halves input[type="url"],.wy-control-group .wy-form-halves input[type="date"],.wy-control-group .wy-form-halves input[type="month"],.wy-control-group .wy-form-halves input[type="time"],.wy-control-group .wy-form-halves input[type="datetime"],.wy-control-group .wy-form-halves input[type="datetime-local"],.wy-control-group .wy-form-halves input[type="week"],.wy-control-group .wy-form-halves input[type="number"],.wy-control-group .wy-form-halves input[type="search"],.wy-control-group .wy-form-halves input[type="tel"],.wy-control-group .wy-form-halves input[type="color"],.wy-control-group .wy-form-thirds input[type="text"],.wy-control-group .wy-form-thirds input[type="password"],.wy-control-group .wy-form-thirds input[type="email"],.wy-control-group .wy-form-thirds input[type="url"],.wy-control-group .wy-form-thirds input[type="date"],.wy-control-group .wy-form-thirds input[type="month"],.wy-control-group .wy-form-thirds input[type="time"],.wy-control-group .wy-form-thirds input[type="datetime"],.wy-control-group .wy-form-thirds input[type="datetime-local"],.wy-control-group .wy-form-thirds input[type="week"],.wy-control-group .wy-form-thirds input[type="number"],.wy-control-group .wy-form-thirds input[type="search"],.wy-control-group .wy-form-thirds input[type="tel"],.wy-control-group .wy-form-thirds input[type="color"]{width:100%}.wy-control-group .wy-form-full{float:left;display:block;margin-right:2.35765%;width:100%;margin-right:0}.wy-control-group .wy-form-full:last-child{margin-right:0}.wy-control-group .wy-form-halves{float:left;display:block;margin-right:2.35765%;width:48.82117%}.wy-control-group .wy-form-halves:last-child{margin-right:0}.wy-control-group .wy-form-halves:nth-of-type(2n){margin-right:0}.wy-control-group .wy-form-halves:nth-of-type(2n+1){clear:left}.wy-control-group .wy-form-thirds{float:left;display:block;margin-right:2.35765%;width:31.76157%}.wy-control-group .wy-form-thirds:last-child{margin-right:0}.wy-control-group .wy-form-thirds:nth-of-type(3n){margin-right:0}.wy-control-group .wy-form-thirds:nth-of-type(3n+1){clear:left}.wy-control-group.wy-control-group-no-input .wy-control{margin:6px 0 0 0;font-size:90%}.wy-control-no-input{display:inline-block;margin:6px 0 0 0;font-size:90%}.wy-control-group.fluid-input input[type="text"],.wy-control-group.fluid-input input[type="password"],.wy-control-group.fluid-input input[type="email"],.wy-control-group.fluid-input input[type="url"],.wy-control-group.fluid-input input[type="date"],.wy-control-group.fluid-input input[type="month"],.wy-control-group.fluid-input input[type="time"],.wy-control-group.fluid-input input[type="datetime"],.wy-control-group.fluid-input input[type="datetime-local"],.wy-control-group.fluid-input input[type="week"],.wy-control-group.fluid-input input[type="number"],.wy-control-group.fluid-input input[type="search"],.wy-control-group.fluid-input input[type="tel"],.wy-control-group.fluid-input input[type="color"]{width:100%}.wy-form-message-inline{display:inline-block;padding-left:0.3em;color:#666;vertical-align:middle;font-size:90%}.wy-form-message{display:block;color:#999;font-size:70%;margin-top:0.3125em;font-style:italic}input{line-height:normal}input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;*overflow:visible}input[type="text"],input[type="password"],input[type="email"],input[type="url"],input[type="date"],input[type="month"],input[type="time"],input[type="datetime"],input[type="datetime-local"],input[type="week"],input[type="number"],input[type="search"],input[type="tel"],input[type="color"]{-webkit-appearance:none;padding:6px;display:inline-block;border:1px solid #ccc;font-size:80%;font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;box-shadow:inset 0 1px 3px #ddd;border-radius:0;-webkit-transition:border 0.3s linear;-moz-transition:border 0.3s linear;transition:border 0.3s linear}input[type="datetime-local"]{padding:0.34375em 0.625em}input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0;margin-right:0.3125em;*height:13px;*width:13px}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}input[type="text"]:focus,input[type="password"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus{outline:0;outline:thin dotted \9;border-color:#333}input.no-focus:focus{border-color:#ccc !important}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:1px auto #129FEA}input[type="text"][disabled],input[type="password"][disabled],input[type="email"][disabled],input[type="url"][disabled],input[type="date"][disabled],input[type="month"][disabled],input[type="time"][disabled],input[type="datetime"][disabled],input[type="datetime-local"][disabled],input[type="week"][disabled],input[type="number"][disabled],input[type="search"][disabled],input[type="tel"][disabled],input[type="color"][disabled]{cursor:not-allowed;background-color:#f3f6f6;color:#cad2d3}input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#E74C3C;border:1px solid #E74C3C}input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{border-color:#E74C3C}input[type="file"]:focus:invalid:focus,input[type="radio"]:focus:invalid:focus,input[type="checkbox"]:focus:invalid:focus{outline-color:#E74C3C}input.wy-input-large{padding:12px;font-size:100%}textarea{overflow:auto;vertical-align:top;width:100%;font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif}select,textarea{padding:0.5em 0.625em;display:inline-block;border:1px solid #ccc;font-size:80%;box-shadow:inset 0 1px 3px #ddd;-webkit-transition:border 0.3s linear;-moz-transition:border 0.3s linear;transition:border 0.3s linear}select{border:1px solid #ccc;background-color:#fff}select[multiple]{height:auto}select:focus,textarea:focus{outline:0}select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{cursor:not-allowed;background-color:#fff;color:#cad2d3;border-color:transparent}.wy-checkbox,.wy-radio{margin:6px 0;color:#404040;display:block}.wy-checkbox input,.wy-radio input{vertical-align:baseline}.wy-form-message-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle}.wy-input-prefix,.wy-input-suffix{white-space:nowrap}.wy-input-prefix .wy-input-context,.wy-input-suffix .wy-input-context{padding:6px;display:inline-block;font-size:80%;background-color:#f3f6f6;border:solid 1px #ccc;color:#999}.wy-input-suffix .wy-input-context{border-left:0}.wy-input-prefix .wy-input-context{border-right:0}.wy-control-group.wy-control-group-error .wy-form-message,.wy-control-group.wy-control-group-error>label{color:#E74C3C}.wy-control-group.wy-control-group-error input[type="text"],.wy-control-group.wy-control-group-error input[type="password"],.wy-control-group.wy-control-group-error input[type="email"],.wy-control-group.wy-control-group-error input[type="url"],.wy-control-group.wy-control-group-error input[type="date"],.wy-control-group.wy-control-group-error input[type="month"],.wy-control-group.wy-control-group-error input[type="time"],.wy-control-group.wy-control-group-error input[type="datetime"],.wy-control-group.wy-control-group-error input[type="datetime-local"],.wy-control-group.wy-control-group-error input[type="week"],.wy-control-group.wy-control-group-error input[type="number"],.wy-control-group.wy-control-group-error input[type="search"],.wy-control-group.wy-control-group-error input[type="tel"],.wy-control-group.wy-control-group-error input[type="color"]{border:solid 1px #E74C3C}.wy-control-group.wy-control-group-error textarea{border:solid 1px #E74C3C}.wy-inline-validate{white-space:nowrap}.wy-inline-validate .wy-input-context{padding:0.5em 0.625em;display:inline-block;font-size:80%}.wy-inline-validate.wy-inline-validate-success .wy-input-context{color:#27AE60}.wy-inline-validate.wy-inline-validate-danger .wy-input-context{color:#E74C3C}.wy-inline-validate.wy-inline-validate-warning .wy-input-context{color:#E67E22}.wy-inline-validate.wy-inline-validate-info .wy-input-context{color:#2980B9}.rotate-90{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.rotate-180{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.rotate-270{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.mirror{-webkit-transform:scaleX(-1);-moz-transform:scaleX(-1);-ms-transform:scaleX(-1);-o-transform:scaleX(-1);transform:scaleX(-1)}.mirror.rotate-90{-webkit-transform:scaleX(-1) rotate(90deg);-moz-transform:scaleX(-1) rotate(90deg);-ms-transform:scaleX(-1) rotate(90deg);-o-transform:scaleX(-1) rotate(90deg);transform:scaleX(-1) rotate(90deg)}.mirror.rotate-180{-webkit-transform:scaleX(-1) rotate(180deg);-moz-transform:scaleX(-1) rotate(180deg);-ms-transform:scaleX(-1) rotate(180deg);-o-transform:scaleX(-1) rotate(180deg);transform:scaleX(-1) rotate(180deg)}.mirror.rotate-270{-webkit-transform:scaleX(-1) rotate(270deg);-moz-transform:scaleX(-1) rotate(270deg);-ms-transform:scaleX(-1) rotate(270deg);-o-transform:scaleX(-1) rotate(270deg);transform:scaleX(-1) rotate(270deg)}@media only screen and (max-width: 480px){.wy-form button[type="submit"]{margin:0.7em 0 0}.wy-form input[type="text"],.wy-form input[type="password"],.wy-form input[type="email"],.wy-form input[type="url"],.wy-form input[type="date"],.wy-form input[type="month"],.wy-form input[type="time"],.wy-form input[type="datetime"],.wy-form input[type="datetime-local"],.wy-form input[type="week"],.wy-form input[type="number"],.wy-form input[type="search"],.wy-form input[type="tel"],.wy-form input[type="color"]{margin-bottom:0.3em;display:block}.wy-form label{margin-bottom:0.3em;display:block}.wy-form input[type="password"],.wy-form input[type="email"],.wy-form input[type="url"],.wy-form input[type="date"],.wy-form input[type="month"],.wy-form input[type="time"],.wy-form input[type="datetime"],.wy-form input[type="datetime-local"],.wy-form input[type="week"],.wy-form input[type="number"],.wy-form input[type="search"],.wy-form input[type="tel"],.wy-form input[type="color"]{margin-bottom:0}.wy-form-aligned .wy-control-group label{margin-bottom:0.3em;text-align:left;display:block;width:100%}.wy-form-aligned .wy-control{margin:1.5em 0 0 0}.wy-form .wy-help-inline,.wy-form-message-inline,.wy-form-message{display:block;font-size:80%;padding:6px 0}}@media screen and (max-width: 768px){.tablet-hide{display:none}}@media screen and (max-width: 480px){.mobile-hide{display:none}}.float-left{float:left}.float-right{float:right}.full-width{width:100%}.wy-table,.rst-content table.docutils,.rst-content table.field-list{border-collapse:collapse;border-spacing:0;empty-cells:show;margin-bottom:24px}.wy-table caption,.rst-content table.docutils caption,.rst-content table.field-list caption{color:#000;font:italic 85%/1 arial,sans-serif;padding:1em 0;text-align:center}.wy-table td,.rst-content table.docutils td,.rst-content table.field-list td,.wy-table th,.rst-content table.docutils th,.rst-content table.field-list th{font-size:90%;margin:0;overflow:visible;padding:8px 16px}.wy-table td:first-child,.rst-content table.docutils td:first-child,.rst-content table.field-list td:first-child,.wy-table th:first-child,.rst-content table.docutils th:first-child,.rst-content table.field-list th:first-child{border-left-width:0}.wy-table thead,.rst-content table.docutils thead,.rst-content table.field-list thead{color:#000;text-align:left;vertical-align:bottom;white-space:nowrap}.wy-table thead th,.rst-content table.docutils thead th,.rst-content table.field-list thead th{font-weight:bold;border-bottom:solid 2px #e1e4e5}.wy-table td,.rst-content table.docutils td,.rst-content table.field-list td{background-color:transparent;vertical-align:middle}.wy-table td p,.rst-content table.docutils td p,.rst-content table.field-list td p{line-height:18px}.wy-table td p:last-child,.rst-content table.docutils td p:last-child,.rst-content table.field-list td p:last-child{margin-bottom:0}.wy-table .wy-table-cell-min,.rst-content table.docutils .wy-table-cell-min,.rst-content table.field-list .wy-table-cell-min{width:1%;padding-right:0}.wy-table .wy-table-cell-min input[type=checkbox],.rst-content table.docutils .wy-table-cell-min input[type=checkbox],.rst-content table.field-list .wy-table-cell-min input[type=checkbox],.wy-table .wy-table-cell-min input[type=checkbox],.rst-content table.docutils .wy-table-cell-min input[type=checkbox],.rst-content table.field-list .wy-table-cell-min input[type=checkbox]{margin:0}.wy-table-secondary{color:gray;font-size:90%}.wy-table-tertiary{color:gray;font-size:80%}.wy-table-odd td,.wy-table-striped tr:nth-child(2n-1) td,.rst-content table.docutils:not(.field-list) tr:nth-child(2n-1) td{background-color:#f3f6f6}.wy-table-backed{background-color:#f3f6f6}.wy-table-bordered-all,.rst-content table.docutils{border:1px solid #e1e4e5}.wy-table-bordered-all td,.rst-content table.docutils td{border-bottom:1px solid #e1e4e5;border-left:1px solid #e1e4e5}.wy-table-bordered-all tbody>tr:last-child td,.rst-content table.docutils tbody>tr:last-child td{border-bottom-width:0}.wy-table-bordered{border:1px solid #e1e4e5}.wy-table-bordered-rows td{border-bottom:1px solid #e1e4e5}.wy-table-bordered-rows tbody>tr:last-child td{border-bottom-width:0}.wy-table-horizontal tbody>tr:last-child td{border-bottom-width:0}.wy-table-horizontal td,.wy-table-horizontal th{border-width:0 0 1px 0;border-bottom:1px solid #e1e4e5}.wy-table-horizontal tbody>tr:last-child td{border-bottom-width:0}.wy-table-responsive{margin-bottom:24px;max-width:100%;overflow:auto}.wy-table-responsive table{margin-bottom:0 !important}.wy-table-responsive table td,.wy-table-responsive table th{white-space:nowrap}a{color:#2980B9;text-decoration:none}a:hover{color:#3091d1}a:visited{color:#9B59B6}html{height:100%;overflow-x:hidden}body{font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;font-weight:normal;color:#404040;min-height:100%;overflow-x:hidden;background:#edf0f2}.wy-text-left{text-align:left}.wy-text-center{text-align:center}.wy-text-right{text-align:right}.wy-text-large{font-size:120%}.wy-text-normal{font-size:100%}.wy-text-small,small{font-size:80%}.wy-text-strike{text-decoration:line-through}.wy-text-warning{color:#E67E22 !important}a.wy-text-warning:hover{color:#eb9950 !important}.wy-text-info{color:#2980B9 !important}a.wy-text-info:hover{color:#409ad5 !important}.wy-text-success{color:#27AE60 !important}a.wy-text-success:hover{color:#36d278 !important}.wy-text-danger{color:#E74C3C !important}a.wy-text-danger:hover{color:#ed7669 !important}.wy-text-neutral{color:#404040 !important}a.wy-text-neutral:hover{color:#595959 !important}h1,h2,h3,h4,h5,h6,legend{margin-top:0;font-weight:700;font-family:"Roboto Slab","ff-tisa-web-pro","Georgia",Arial,sans-serif}p{line-height:24px;margin:0;font-size:16px;margin-bottom:24px}h1{font-size:175%}h2{font-size:150%}h3{font-size:125%}h4{font-size:115%}h5{font-size:110%}h6{font-size:100%}hr{display:block;height:1px;border:0;border-top:1px solid #e1e4e5;margin:24px 0;padding:0}code,.rst-content tt{white-space:nowrap;max-width:100%;background:#fff;border:solid 1px #e1e4e5;font-size:75%;padding:0 5px;font-family:Consolas,"Andale Mono WT","Andale Mono","Lucida Console","Lucida Sans Typewriter","DejaVu Sans Mono","Bitstream Vera Sans Mono","Liberation Mono","Nimbus Mono L",Monaco,"Courier New",Courier,monospace;color:#E74C3C;overflow-x:auto}code.code-large,.rst-content tt.code-large{font-size:90%}.wy-plain-list-disc,.rst-content .section ul,.rst-content .toctree-wrapper ul,article ul{list-style:disc;line-height:24px;margin-bottom:24px}.wy-plain-list-disc li,.rst-content .section ul li,.rst-content .toctree-wrapper ul li,article ul li{list-style:disc;margin-left:24px}.wy-plain-list-disc li p:last-child,.rst-content .section ul li p:last-child,.rst-content .toctree-wrapper ul li p:last-child,article ul li p:last-child{margin-bottom:0}.wy-plain-list-disc li ul,.rst-content .section ul li ul,.rst-content .toctree-wrapper ul li ul,article ul li ul{margin-bottom:0}.wy-plain-list-disc li li,.rst-content .section ul li li,.rst-content .toctree-wrapper ul li li,article ul li li{list-style:circle}.wy-plain-list-disc li li li,.rst-content .section ul li li li,.rst-content .toctree-wrapper ul li li li,article ul li li li{list-style:square}.wy-plain-list-disc li ol li,.rst-content .section ul li ol li,.rst-content .toctree-wrapper ul li ol li,article ul li ol li{list-style:decimal}.wy-plain-list-decimal,.rst-content .section ol,.rst-content ol.arabic,article ol{list-style:decimal;line-height:24px;margin-bottom:24px}.wy-plain-list-decimal li,.rst-content .section ol li,.rst-content ol.arabic li,article ol li{list-style:decimal;margin-left:24px}.wy-plain-list-decimal li p:last-child,.rst-content .section ol li p:last-child,.rst-content ol.arabic li p:last-child,article ol li p:last-child{margin-bottom:0}.wy-plain-list-decimal li ul,.rst-content .section ol li ul,.rst-content ol.arabic li ul,article ol li ul{margin-bottom:0}.wy-plain-list-decimal li ul li,.rst-content .section ol li ul li,.rst-content ol.arabic li ul li,article ol li ul li{list-style:disc}.codeblock-example{border:1px solid #e1e4e5;border-bottom:none;padding:24px;padding-top:48px;font-weight:500;background:#fff;position:relative}.codeblock-example:after{content:"Example";position:absolute;top:0px;left:0px;background:#9B59B6;color:#fff;padding:6px 12px}.codeblock-example.prettyprint-example-only{border:1px solid #e1e4e5;margin-bottom:24px}.codeblock,pre.literal-block,.rst-content .literal-block,.rst-content pre.literal-block,div[class^='highlight']{border:1px solid #e1e4e5;padding:0px;overflow-x:auto;background:#fff;margin:1px 0 24px 0}.codeblock div[class^='highlight'],pre.literal-block div[class^='highlight'],.rst-content .literal-block div[class^='highlight'],div[class^='highlight'] div[class^='highlight']{border:none;background:none;margin:0}div[class^='highlight'] td.code{width:100%}.linenodiv pre{border-right:solid 1px #e6e9ea;margin:0;padding:12px 12px;font-family:Consolas,"Andale Mono WT","Andale Mono","Lucida Console","Lucida Sans Typewriter","DejaVu Sans Mono","Bitstream Vera Sans Mono","Liberation Mono","Nimbus Mono L",Monaco,"Courier New",Courier,monospace;font-size:12px;line-height:1.5;color:#d9d9d9}div[class^='highlight'] pre{white-space:pre;margin:0;padding:12px 12px;font-family:Consolas,"Andale Mono WT","Andale Mono","Lucida Console","Lucida Sans Typewriter","DejaVu Sans Mono","Bitstream Vera Sans Mono","Liberation Mono","Nimbus Mono L",Monaco,"Courier New",Courier,monospace;font-size:12px;line-height:1.5;display:block;overflow:auto;color:#404040}@media print{.codeblock,pre.literal-block,.rst-content .literal-block,.rst-content pre.literal-block,div[class^='highlight'],div[class^='highlight'] pre{white-space:pre-wrap}}.hll{background-color:#ffc;margin:0 -12px;padding:0 12px;display:block}.c{color:#998;font-style:italic}.err{color:#a61717;background-color:#e3d2d2}.k{font-weight:bold}.o{font-weight:bold}.cm{color:#998;font-style:italic}.cp{color:#999;font-weight:bold}.c1{color:#998;font-style:italic}.cs{color:#999;font-weight:bold;font-style:italic}.gd{color:#000;background-color:#fdd}.gd .x{color:#000;background-color:#faa}.ge{font-style:italic}.gr{color:#a00}.gh{color:#999}.gi{color:#000;background-color:#dfd}.gi .x{color:#000;background-color:#afa}.go{color:#888}.gp{color:#555}.gs{font-weight:bold}.gu{color:purple;font-weight:bold}.gt{color:#a00}.kc{font-weight:bold}.kd{font-weight:bold}.kn{font-weight:bold}.kp{font-weight:bold}.kr{font-weight:bold}.kt{color:#458;font-weight:bold}.m{color:#099}.s{color:#d14}.n{color:#333}.na{color:teal}.nb{color:#0086b3}.nc{color:#458;font-weight:bold}.no{color:teal}.ni{color:purple}.ne{color:#900;font-weight:bold}.nf{color:#900;font-weight:bold}.nn{color:#555}.nt{color:navy}.nv{color:teal}.ow{font-weight:bold}.w{color:#bbb}.mf{color:#099}.mh{color:#099}.mi{color:#099}.mo{color:#099}.sb{color:#d14}.sc{color:#d14}.sd{color:#d14}.s2{color:#d14}.se{color:#d14}.sh{color:#d14}.si{color:#d14}.sx{color:#d14}.sr{color:#009926}.s1{color:#d14}.ss{color:#990073}.bp{color:#999}.vc{color:teal}.vg{color:teal}.vi{color:teal}.il{color:#099}.gc{color:#999;background-color:#EAF2F5}.wy-breadcrumbs li{display:inline-block}.wy-breadcrumbs li.wy-breadcrumbs-aside{float:right}.wy-breadcrumbs li a{display:inline-block;padding:5px}.wy-breadcrumbs li a:first-child{padding-left:0}.wy-breadcrumbs-extra{margin-bottom:0;color:#b3b3b3;font-size:80%;display:inline-block}@media screen and (max-width: 480px){.wy-breadcrumbs-extra{display:none}.wy-breadcrumbs li.wy-breadcrumbs-aside{display:none}}@media print{.wy-breadcrumbs li.wy-breadcrumbs-aside{display:none}}.wy-affix{position:fixed;top:1.618em}.wy-menu a:hover{text-decoration:none}.wy-menu-horiz{*zoom:1}.wy-menu-horiz:before,.wy-menu-horiz:after{display:table;content:""}.wy-menu-horiz:after{clear:both}.wy-menu-horiz ul,.wy-menu-horiz li{display:inline-block}.wy-menu-horiz li:hover{background:rgba(255,255,255,0.1)}.wy-menu-horiz li.divide-left{border-left:solid 1px #404040}.wy-menu-horiz li.divide-right{border-right:solid 1px #404040}.wy-menu-horiz a{height:32px;display:inline-block;line-height:32px;padding:0 16px}.wy-menu-vertical header{height:32px;display:inline-block;line-height:32px;padding:0 1.618em;display:block;font-weight:bold;text-transform:uppercase;font-size:80%;color:#2980B9;white-space:nowrap}.wy-menu-vertical ul{margin-bottom:0}.wy-menu-vertical li.divide-top{border-top:solid 1px #404040}.wy-menu-vertical li.divide-bottom{border-bottom:solid 1px #404040}.wy-menu-vertical li.current{background:#e3e3e3}.wy-menu-vertical li.current a{color:gray;border-right:solid 1px #c9c9c9;padding:0.4045em 2.427em}.wy-menu-vertical li.current a:hover{background:#d6d6d6}.wy-menu-vertical li.on a,.wy-menu-vertical li.current>a{color:#404040;padding:0.4045em 1.618em;font-weight:bold;position:relative;background:#fcfcfc;border:none;border-bottom:solid 1px #c9c9c9;border-top:solid 1px #c9c9c9;padding-left:1.618em -4px}.wy-menu-vertical li.on a:hover,.wy-menu-vertical li.current>a:hover{background:#fcfcfc}.wy-menu-vertical li.toctree-l2.current>a{background:#c9c9c9;padding:0.4045em 2.427em}.wy-menu-vertical li.current ul{display:block}.wy-menu-vertical li ul{margin-bottom:0;display:none}.wy-menu-vertical .local-toc li ul{display:block}.wy-menu-vertical li ul li a{margin-bottom:0;color:#b3b3b3;font-weight:normal}.wy-menu-vertical a{display:inline-block;line-height:18px;padding:0.4045em 1.618em;display:block;position:relative;font-size:90%;color:#b3b3b3}.wy-menu-vertical a:hover{background-color:#4e4a4a;cursor:pointer}.wy-menu-vertical a:active{background-color:#2980B9;cursor:pointer;color:#fff}.wy-side-nav-search{z-index:200;background-color:#2980B9;text-align:center;padding:0.809em;display:block;color:#fcfcfc;margin-bottom:0.809em}.wy-side-nav-search input[type=text]{width:100%;border-radius:50px;padding:6px 12px;border-color:#2472a4}.wy-side-nav-search img{display:block;margin:auto auto 0.809em auto;height:45px;width:45px;background-color:#2980B9;padding:5px;border-radius:100%}.wy-side-nav-search>a,.wy-side-nav-search .wy-dropdown>a{color:#fcfcfc;font-size:100%;font-weight:bold;display:inline-block;padding:4px 6px;margin-bottom:0.809em}.wy-side-nav-search>a:hover,.wy-side-nav-search .wy-dropdown>a:hover{background:rgba(255,255,255,0.1)}.wy-nav .wy-menu-vertical header{color:#2980B9}.wy-nav .wy-menu-vertical a{color:#b3b3b3}.wy-nav .wy-menu-vertical a:hover{background-color:#2980B9;color:#fff}[data-menu-wrap]{-webkit-transition:all 0.2s ease-in;-moz-transition:all 0.2s ease-in;transition:all 0.2s ease-in;position:absolute;opacity:1;width:100%;opacity:0}[data-menu-wrap].move-center{left:0;right:auto;opacity:1}[data-menu-wrap].move-left{right:auto;left:-100%;opacity:0}[data-menu-wrap].move-right{right:-100%;left:auto;opacity:0}.wy-body-for-nav{background:left repeat-y #fcfcfc;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxOERBMTRGRDBFMUUxMUUzODUwMkJCOThDMEVFNURFMCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoxOERBMTRGRTBFMUUxMUUzODUwMkJCOThDMEVFNURFMCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjE4REExNEZCMEUxRTExRTM4NTAyQkI5OEMwRUU1REUwIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjE4REExNEZDMEUxRTExRTM4NTAyQkI5OEMwRUU1REUwIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+EwrlwAAAAA5JREFUeNpiMDU0BAgwAAE2AJgB9BnaAAAAAElFTkSuQmCC);background-size:300px 1px}.wy-grid-for-nav{position:absolute;width:100%;height:100%}.wy-nav-side{position:absolute;top:0;left:0;width:300px;overflow:hidden;min-height:100%;background:#343131;z-index:200}.wy-nav-top{display:none;background:#2980B9;color:#fff;padding:0.4045em 0.809em;position:relative;line-height:50px;text-align:center;font-size:100%;*zoom:1}.wy-nav-top:before,.wy-nav-top:after{display:table;content:""}.wy-nav-top:after{clear:both}.wy-nav-top a{color:#fff;font-weight:bold}.wy-nav-top img{margin-right:12px;height:45px;width:45px;background-color:#2980B9;padding:5px;border-radius:100%}.wy-nav-top i{font-size:30px;float:left;cursor:pointer}.wy-nav-content-wrap{margin-left:300px;background:#fcfcfc;min-height:100%}.wy-nav-content{padding:1.618em 3.236em;height:100%;max-width:800px;margin:auto}.wy-body-mask{position:fixed;width:100%;height:100%;background:rgba(0,0,0,0.2);display:none;z-index:499}.wy-body-mask.on{display:block}footer{color:#999}footer p{margin-bottom:12px}.rst-footer-buttons{*zoom:1}.rst-footer-buttons:before,.rst-footer-buttons:after{display:table;content:""}.rst-footer-buttons:after{clear:both}#search-results .search li{margin-bottom:24px;border-bottom:solid 1px #e1e4e5;padding-bottom:24px}#search-results .search li:first-child{border-top:solid 1px #e1e4e5;padding-top:24px}#search-results .search li a{font-size:120%;margin-bottom:12px;display:inline-block}#search-results .context{color:gray;font-size:90%}@media screen and (max-width: 768px){.wy-body-for-nav{background:#fcfcfc}.wy-nav-top{display:block}.wy-nav-side{left:-300px}.wy-nav-side.shift{width:85%;left:0}.wy-nav-content-wrap{margin-left:0}.wy-nav-content-wrap .wy-nav-content{padding:1.618em}.wy-nav-content-wrap.shift{position:fixed;min-width:100%;left:85%;top:0;height:100%;overflow:hidden}}@media screen and (min-width: 1400px){.wy-nav-content-wrap{background:rgba(0,0,0,0.05)}.wy-nav-content{margin:0;background:#fcfcfc}}@media print{.rst-versions,footer,.wy-nav-side{display:none}.wy-nav-content-wrap{margin-left:0}}nav.stickynav{position:fixed;top:0}.rst-versions{position:fixed;bottom:0;left:0;width:300px;color:#fcfcfc;background:#1f1d1d;border-top:solid 10px #343131;font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;z-index:400}.rst-versions a{color:#2980B9;text-decoration:none}.rst-versions .rst-badge-small{display:none}.rst-versions .rst-current-version{padding:12px;background-color:#272525;display:block;text-align:right;font-size:90%;cursor:pointer;color:#27AE60;*zoom:1}.rst-versions .rst-current-version:before,.rst-versions .rst-current-version:after{display:table;content:""}.rst-versions .rst-current-version:after{clear:both}.rst-versions .rst-current-version .fa,.rst-versions .rst-current-version .rst-content .admonition-title,.rst-content .rst-versions .rst-current-version .admonition-title,.rst-versions .rst-current-version .rst-content h1 .headerlink,.rst-content h1 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content h2 .headerlink,.rst-content h2 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content h3 .headerlink,.rst-content h3 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content h4 .headerlink,.rst-content h4 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content h5 .headerlink,.rst-content h5 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content h6 .headerlink,.rst-content h6 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content dl dt .headerlink,.rst-content dl dt .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .icon{color:#fcfcfc}.rst-versions .rst-current-version .fa-book,.rst-versions .rst-current-version .icon-book{float:left}.rst-versions .rst-current-version .icon-book{float:left}.rst-versions .rst-current-version.rst-out-of-date{background-color:#E74C3C;color:#fff}.rst-versions .rst-current-version.rst-active-old-version{background-color:#F1C40F;color:#000}.rst-versions.shift-up .rst-other-versions{display:block}.rst-versions .rst-other-versions{font-size:90%;padding:12px;color:gray;display:none}.rst-versions .rst-other-versions hr{display:block;height:1px;border:0;margin:20px 0;padding:0;border-top:solid 1px #413d3d}.rst-versions .rst-other-versions dd{display:inline-block;margin:0}.rst-versions .rst-other-versions dd a{display:inline-block;padding:6px;color:#fcfcfc}.rst-versions.rst-badge{width:auto;bottom:20px;right:20px;left:auto;border:none;max-width:300px}.rst-versions.rst-badge .icon-book{float:none}.rst-versions.rst-badge .fa-book,.rst-versions.rst-badge .icon-book{float:none}.rst-versions.rst-badge.shift-up .rst-current-version{text-align:right}.rst-versions.rst-badge.shift-up .rst-current-version .fa-book,.rst-versions.rst-badge.shift-up .rst-current-version .icon-book{float:left}.rst-versions.rst-badge.shift-up .rst-current-version .icon-book{float:left}.rst-versions.rst-badge .rst-current-version{width:auto;height:30px;line-height:30px;padding:0 6px;display:block;text-align:center}@media screen and (max-width: 768px){.rst-versions{width:85%;display:none}.rst-versions.shift{display:block}img{width:100%;height:auto}}.rst-content img{max-width:100%;height:auto !important}.rst-content div.figure{margin-bottom:24px}.rst-content div.figure.align-center{text-align:center}.rst-content .section>img{margin-bottom:24px}.rst-content blockquote{margin-left:24px;line-height:24px;margin-bottom:24px}.rst-content .note .last,.rst-content .attention .last,.rst-content .caution .last,.rst-content .danger .last,.rst-content .error .last,.rst-content .hint .last,.rst-content .important .last,.rst-content .tip .last,.rst-content .warning .last,.rst-content .seealso .last,.rst-content .admonition-todo .last{margin-bottom:0}.rst-content .admonition-title:before{margin-right:4px}.rst-content .admonition table{border-color:rgba(0,0,0,0.1)}.rst-content .admonition table td,.rst-content .admonition table th{background:transparent !important;border-color:rgba(0,0,0,0.1) !important}.rst-content .section ol.loweralpha,.rst-content .section ol.loweralpha li{list-style:lower-alpha}.rst-content .section ol.upperalpha,.rst-content .section ol.upperalpha li{list-style:upper-alpha}.rst-content .section ol p,.rst-content .section ul p{margin-bottom:12px}.rst-content .line-block{margin-left:24px}.rst-content .topic-title{font-weight:bold;margin-bottom:12px}.rst-content .toc-backref{color:#404040}.rst-content .align-right{float:right;margin:0px 0px 24px 24px}.rst-content .align-left{float:left;margin:0px 24px 24px 0px}.rst-content .align-center{margin:auto;display:block}.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content dl dt .headerlink{display:none;visibility:hidden;font-size:14px}.rst-content h1 .headerlink:after,.rst-content h2 .headerlink:after,.rst-content h3 .headerlink:after,.rst-content h4 .headerlink:after,.rst-content h5 .headerlink:after,.rst-content h6 .headerlink:after,.rst-content dl dt .headerlink:after{visibility:visible;content:"";font-family:FontAwesome;display:inline-block}.rst-content h1:hover .headerlink,.rst-content h2:hover .headerlink,.rst-content h3:hover .headerlink,.rst-content h4:hover .headerlink,.rst-content h5:hover .headerlink,.rst-content h6:hover .headerlink,.rst-content dl dt:hover .headerlink{display:inline-block}.rst-content .sidebar{float:right;width:40%;display:block;margin:0 0 24px 24px;padding:24px;background:#f3f6f6;border:solid 1px #e1e4e5}.rst-content .sidebar p,.rst-content .sidebar ul,.rst-content .sidebar dl{font-size:90%}.rst-content .sidebar .last{margin-bottom:0}.rst-content .sidebar .sidebar-title{display:block;font-family:"Roboto Slab","ff-tisa-web-pro","Georgia",Arial,sans-serif;font-weight:bold;background:#e1e4e5;padding:6px 12px;margin:-24px;margin-bottom:24px;font-size:100%}.rst-content .highlighted{background:#F1C40F;display:inline-block;font-weight:bold;padding:0 6px}.rst-content .footnote-reference,.rst-content .citation-reference{vertical-align:super;font-size:90%}.rst-content table.docutils.citation,.rst-content table.docutils.footnote{background:none;border:none;color:#999}.rst-content table.docutils.citation td,.rst-content table.docutils.citation tr,.rst-content table.docutils.footnote td,.rst-content table.docutils.footnote tr{border:none;background-color:transparent !important;white-space:normal}.rst-content table.docutils.citation td.label,.rst-content table.docutils.footnote td.label{padding-left:0;padding-right:0;vertical-align:top}.rst-content table.field-list{border:none}.rst-content table.field-list td{border:none;padding-top:5px}.rst-content table.field-list td>strong{display:inline-block;margin-top:3px}.rst-content table.field-list .field-name{padding-right:10px;text-align:left;white-space:nowrap}.rst-content table.field-list .field-body{text-align:left;padding-left:0}.rst-content tt{color:#000}.rst-content tt big,.rst-content tt em{font-size:100% !important;line-height:normal}.rst-content tt .xref,a .rst-content tt{font-weight:bold}.rst-content a tt{color:#2980B9}.rst-content dl{margin-bottom:24px}.rst-content dl dt{font-weight:bold}.rst-content dl p,.rst-content dl table,.rst-content dl ul,.rst-content dl ol{margin-bottom:12px !important}.rst-content dl dd{margin:0 0 12px 24px}.rst-content dl:not(.docutils){margin-bottom:24px}.rst-content dl:not(.docutils) dt{display:inline-block;margin:6px 0;font-size:90%;line-height:normal;background:#e7f2fa;color:#2980B9;border-top:solid 3px #6ab0de;padding:6px;position:relative}.rst-content dl:not(.docutils) dt:before{color:#6ab0de}.rst-content dl:not(.docutils) dt .headerlink{color:#404040;font-size:100% !important}.rst-content dl:not(.docutils) dl dt{margin-bottom:6px;border:none;border-left:solid 3px #ccc;background:#f0f0f0;color:gray}.rst-content dl:not(.docutils) dl dt .headerlink{color:#404040;font-size:100% !important}.rst-content dl:not(.docutils) dt:first-child{margin-top:0}.rst-content dl:not(.docutils) tt{font-weight:bold}.rst-content dl:not(.docutils) tt.descname,.rst-content dl:not(.docutils) tt.descclassname{background-color:transparent;border:none;padding:0;font-size:100% !important}.rst-content dl:not(.docutils) tt.descname{font-weight:bold}.rst-content dl:not(.docutils) .optional{display:inline-block;padding:0 4px;color:#000;font-weight:bold}.rst-content dl:not(.docutils) .property{display:inline-block;padding-right:8px}.rst-content .viewcode-link,.rst-content .viewcode-back{display:inline-block;color:#27AE60;font-size:80%;padding-left:24px}.rst-content .viewcode-back{display:block;float:right}.rst-content p.rubric{margin-bottom:12px;font-weight:bold}@media screen and (max-width: 480px){.rst-content .sidebar{width:100%}}span[id*='MathJax-Span']{color:#404040}.math{text-align:center} +/* + * This file is copied from the upstream ReadTheDocs Sphinx + * theme. To aid upgradability this file should *not* be edited. + * modifications we need should be included in theme_extra.css. + * + * https://github.com/readthedocs/sphinx_rtd_theme + */ + + /* sphinx_rtd_theme version 1.2.0 | MIT license */ +html{box-sizing:border-box}*,:after,:before{box-sizing:inherit}article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}[hidden],audio:not([controls]){display:none}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}blockquote{margin:0}dfn{font-style:italic}ins{background:#ff9;text-decoration:none}ins,mark{color:#000}mark{background:#ff0;font-style:italic;font-weight:700}.rst-content code,.rst-content tt,code,kbd,pre,samp{font-family:monospace,serif;_font-family:courier new,monospace;font-size:1em}pre{white-space:pre}q{quotes:none}q:after,q:before{content:"";content:none}small{font-size:85%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}dl,ol,ul{margin:0;padding:0;list-style:none;list-style-image:none}li{list-style:none}dd{margin:0}img{border:0;-ms-interpolation-mode:bicubic;vertical-align:middle;max-width:100%}svg:not(:root){overflow:hidden}figure,form{margin:0}label{cursor:pointer}button,input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}button,input{line-height:normal}button,input[type=button],input[type=reset],input[type=submit]{cursor:pointer;-webkit-appearance:button;*overflow:visible}button[disabled],input[disabled]{cursor:default}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}textarea{resize:vertical}table{border-collapse:collapse;border-spacing:0}td{vertical-align:top}.chromeframe{margin:.2em 0;background:#ccc;color:#000;padding:.2em 0}.ir{display:block;border:0;text-indent:-999em;overflow:hidden;background-color:transparent;background-repeat:no-repeat;text-align:left;direction:ltr;*line-height:0}.ir br{display:none}.hidden{display:none!important;visibility:hidden}.visuallyhidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.visuallyhidden.focusable:active,.visuallyhidden.focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}.invisible{visibility:hidden}.relative{position:relative}big,small{font-size:100%}@media print{body,html,section{background:none!important}*{box-shadow:none!important;text-shadow:none!important;filter:none!important;-ms-filter:none!important}a,a:visited{text-decoration:underline}.ir a:after,a[href^="#"]:after,a[href^="javascript:"]:after{content:""}blockquote,pre{page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}@page{margin:.5cm}.rst-content .toctree-wrapper>p.caption,h2,h3,p{orphans:3;widows:3}.rst-content .toctree-wrapper>p.caption,h2,h3{page-break-after:avoid}}.btn,.fa:before,.icon:before,.rst-content .admonition,.rst-content .admonition-title:before,.rst-content .admonition-todo,.rst-content .attention,.rst-content .caution,.rst-content .code-block-caption .headerlink:before,.rst-content .danger,.rst-content .eqno .headerlink:before,.rst-content .error,.rst-content .hint,.rst-content .important,.rst-content .note,.rst-content .seealso,.rst-content .tip,.rst-content .warning,.rst-content code.download span:first-child:before,.rst-content dl dt .headerlink:before,.rst-content h1 .headerlink:before,.rst-content h2 .headerlink:before,.rst-content h3 .headerlink:before,.rst-content h4 .headerlink:before,.rst-content h5 .headerlink:before,.rst-content h6 .headerlink:before,.rst-content p.caption .headerlink:before,.rst-content p .headerlink:before,.rst-content table>caption .headerlink:before,.rst-content tt.download span:first-child:before,.wy-alert,.wy-dropdown .caret:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before,.wy-menu-vertical li.current>a button.toctree-expand:before,.wy-menu-vertical li.on a button.toctree-expand:before,.wy-menu-vertical li button.toctree-expand:before,input[type=color],input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],select,textarea{-webkit-font-smoothing:antialiased}.clearfix{*zoom:1}.clearfix:after,.clearfix:before{display:table;content:""}.clearfix:after{clear:both}/*! + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */@font-face{font-family:FontAwesome;src:url(fonts/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713);src:url(fonts/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713?#iefix&v=4.7.0) format("embedded-opentype"),url(fonts/fontawesome-webfont.woff2?af7ae505a9eed503f8b8e6982036873e) format("woff2"),url(fonts/fontawesome-webfont.woff?fee66e712a8a08eef5805a46892932ad) format("woff"),url(fonts/fontawesome-webfont.ttf?b06871f281fee6b241d60582ae9369b9) format("truetype"),url(fonts/fontawesome-webfont.svg?912ec66d7572ff821749319396470bde#fontawesomeregular) format("svg");font-weight:400;font-style:normal}.fa,.icon,.rst-content .admonition-title,.rst-content .code-block-caption .headerlink,.rst-content .eqno .headerlink,.rst-content code.download span:first-child,.rst-content dl dt .headerlink,.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content p.caption .headerlink,.rst-content p .headerlink,.rst-content table>caption .headerlink,.rst-content tt.download span:first-child,.wy-menu-vertical li.current>a button.toctree-expand,.wy-menu-vertical li.on a button.toctree-expand,.wy-menu-vertical li button.toctree-expand{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14286em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14286em;width:2.14286em;top:.14286em;text-align:center}.fa-li.fa-lg{left:-1.85714em}.fa-border{padding:.2em .25em .15em;border:.08em solid #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa-pull-left.icon,.fa.fa-pull-left,.rst-content .code-block-caption .fa-pull-left.headerlink,.rst-content .eqno .fa-pull-left.headerlink,.rst-content .fa-pull-left.admonition-title,.rst-content code.download span.fa-pull-left:first-child,.rst-content dl dt .fa-pull-left.headerlink,.rst-content h1 .fa-pull-left.headerlink,.rst-content h2 .fa-pull-left.headerlink,.rst-content h3 .fa-pull-left.headerlink,.rst-content h4 .fa-pull-left.headerlink,.rst-content h5 .fa-pull-left.headerlink,.rst-content h6 .fa-pull-left.headerlink,.rst-content p .fa-pull-left.headerlink,.rst-content table>caption .fa-pull-left.headerlink,.rst-content tt.download span.fa-pull-left:first-child,.wy-menu-vertical li.current>a button.fa-pull-left.toctree-expand,.wy-menu-vertical li.on a button.fa-pull-left.toctree-expand,.wy-menu-vertical li button.fa-pull-left.toctree-expand{margin-right:.3em}.fa-pull-right.icon,.fa.fa-pull-right,.rst-content .code-block-caption .fa-pull-right.headerlink,.rst-content .eqno .fa-pull-right.headerlink,.rst-content .fa-pull-right.admonition-title,.rst-content code.download span.fa-pull-right:first-child,.rst-content dl dt .fa-pull-right.headerlink,.rst-content h1 .fa-pull-right.headerlink,.rst-content h2 .fa-pull-right.headerlink,.rst-content h3 .fa-pull-right.headerlink,.rst-content h4 .fa-pull-right.headerlink,.rst-content h5 .fa-pull-right.headerlink,.rst-content h6 .fa-pull-right.headerlink,.rst-content p .fa-pull-right.headerlink,.rst-content table>caption .fa-pull-right.headerlink,.rst-content tt.download span.fa-pull-right:first-child,.wy-menu-vertical li.current>a button.fa-pull-right.toctree-expand,.wy-menu-vertical li.on a button.fa-pull-right.toctree-expand,.wy-menu-vertical li button.fa-pull-right.toctree-expand{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left,.pull-left.icon,.rst-content .code-block-caption .pull-left.headerlink,.rst-content .eqno .pull-left.headerlink,.rst-content .pull-left.admonition-title,.rst-content code.download span.pull-left:first-child,.rst-content dl dt .pull-left.headerlink,.rst-content h1 .pull-left.headerlink,.rst-content h2 .pull-left.headerlink,.rst-content h3 .pull-left.headerlink,.rst-content h4 .pull-left.headerlink,.rst-content h5 .pull-left.headerlink,.rst-content h6 .pull-left.headerlink,.rst-content p .pull-left.headerlink,.rst-content table>caption .pull-left.headerlink,.rst-content tt.download span.pull-left:first-child,.wy-menu-vertical li.current>a button.pull-left.toctree-expand,.wy-menu-vertical li.on a button.pull-left.toctree-expand,.wy-menu-vertical li button.pull-left.toctree-expand{margin-right:.3em}.fa.pull-right,.pull-right.icon,.rst-content .code-block-caption .pull-right.headerlink,.rst-content .eqno .pull-right.headerlink,.rst-content .pull-right.admonition-title,.rst-content code.download span.pull-right:first-child,.rst-content dl dt .pull-right.headerlink,.rst-content h1 .pull-right.headerlink,.rst-content h2 .pull-right.headerlink,.rst-content h3 .pull-right.headerlink,.rst-content h4 .pull-right.headerlink,.rst-content h5 .pull-right.headerlink,.rst-content h6 .pull-right.headerlink,.rst-content p .pull-right.headerlink,.rst-content table>caption .pull-right.headerlink,.rst-content tt.download span.pull-right:first-child,.wy-menu-vertical li.current>a button.pull-right.toctree-expand,.wy-menu-vertical li.on a button.pull-right.toctree-expand,.wy-menu-vertical li button.pull-right.toctree-expand{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);-ms-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scaleY(-1);-ms-transform:scaleY(-1);transform:scaleY(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:""}.fa-music:before{content:""}.fa-search:before,.icon-search:before{content:""}.fa-envelope-o:before{content:""}.fa-heart:before{content:""}.fa-star:before{content:""}.fa-star-o:before{content:""}.fa-user:before{content:""}.fa-film:before{content:""}.fa-th-large:before{content:""}.fa-th:before{content:""}.fa-th-list:before{content:""}.fa-check:before{content:""}.fa-close:before,.fa-remove:before,.fa-times:before{content:""}.fa-search-plus:before{content:""}.fa-search-minus:before{content:""}.fa-power-off:before{content:""}.fa-signal:before{content:""}.fa-cog:before,.fa-gear:before{content:""}.fa-trash-o:before{content:""}.fa-home:before,.icon-home:before{content:""}.fa-file-o:before{content:""}.fa-clock-o:before{content:""}.fa-road:before{content:""}.fa-download:before,.rst-content code.download span:first-child:before,.rst-content tt.download span:first-child:before{content:""}.fa-arrow-circle-o-down:before{content:""}.fa-arrow-circle-o-up:before{content:""}.fa-inbox:before{content:""}.fa-play-circle-o:before{content:""}.fa-repeat:before,.fa-rotate-right:before{content:""}.fa-refresh:before{content:""}.fa-list-alt:before{content:""}.fa-lock:before{content:""}.fa-flag:before{content:""}.fa-headphones:before{content:""}.fa-volume-off:before{content:""}.fa-volume-down:before{content:""}.fa-volume-up:before{content:""}.fa-qrcode:before{content:""}.fa-barcode:before{content:""}.fa-tag:before{content:""}.fa-tags:before{content:""}.fa-book:before,.icon-book:before{content:""}.fa-bookmark:before{content:""}.fa-print:before{content:""}.fa-camera:before{content:""}.fa-font:before{content:""}.fa-bold:before{content:""}.fa-italic:before{content:""}.fa-text-height:before{content:""}.fa-text-width:before{content:""}.fa-align-left:before{content:""}.fa-align-center:before{content:""}.fa-align-right:before{content:""}.fa-align-justify:before{content:""}.fa-list:before{content:""}.fa-dedent:before,.fa-outdent:before{content:""}.fa-indent:before{content:""}.fa-video-camera:before{content:""}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:""}.fa-pencil:before{content:""}.fa-map-marker:before{content:""}.fa-adjust:before{content:""}.fa-tint:before{content:""}.fa-edit:before,.fa-pencil-square-o:before{content:""}.fa-share-square-o:before{content:""}.fa-check-square-o:before{content:""}.fa-arrows:before{content:""}.fa-step-backward:before{content:""}.fa-fast-backward:before{content:""}.fa-backward:before{content:""}.fa-play:before{content:""}.fa-pause:before{content:""}.fa-stop:before{content:""}.fa-forward:before{content:""}.fa-fast-forward:before{content:""}.fa-step-forward:before{content:""}.fa-eject:before{content:""}.fa-chevron-left:before{content:""}.fa-chevron-right:before{content:""}.fa-plus-circle:before{content:""}.fa-minus-circle:before{content:""}.fa-times-circle:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before{content:""}.fa-check-circle:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before{content:""}.fa-question-circle:before{content:""}.fa-info-circle:before{content:""}.fa-crosshairs:before{content:""}.fa-times-circle-o:before{content:""}.fa-check-circle-o:before{content:""}.fa-ban:before{content:""}.fa-arrow-left:before{content:""}.fa-arrow-right:before{content:""}.fa-arrow-up:before{content:""}.fa-arrow-down:before{content:""}.fa-mail-forward:before,.fa-share:before{content:""}.fa-expand:before{content:""}.fa-compress:before{content:""}.fa-plus:before{content:""}.fa-minus:before{content:""}.fa-asterisk:before{content:""}.fa-exclamation-circle:before,.rst-content .admonition-title:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before{content:""}.fa-gift:before{content:""}.fa-leaf:before{content:""}.fa-fire:before,.icon-fire:before{content:""}.fa-eye:before{content:""}.fa-eye-slash:before{content:""}.fa-exclamation-triangle:before,.fa-warning:before{content:""}.fa-plane:before{content:""}.fa-calendar:before{content:""}.fa-random:before{content:""}.fa-comment:before{content:""}.fa-magnet:before{content:""}.fa-chevron-up:before{content:""}.fa-chevron-down:before{content:""}.fa-retweet:before{content:""}.fa-shopping-cart:before{content:""}.fa-folder:before{content:""}.fa-folder-open:before{content:""}.fa-arrows-v:before{content:""}.fa-arrows-h:before{content:""}.fa-bar-chart-o:before,.fa-bar-chart:before{content:""}.fa-twitter-square:before{content:""}.fa-facebook-square:before{content:""}.fa-camera-retro:before{content:""}.fa-key:before{content:""}.fa-cogs:before,.fa-gears:before{content:""}.fa-comments:before{content:""}.fa-thumbs-o-up:before{content:""}.fa-thumbs-o-down:before{content:""}.fa-star-half:before{content:""}.fa-heart-o:before{content:""}.fa-sign-out:before{content:""}.fa-linkedin-square:before{content:""}.fa-thumb-tack:before{content:""}.fa-external-link:before{content:""}.fa-sign-in:before{content:""}.fa-trophy:before{content:""}.fa-github-square:before{content:""}.fa-upload:before{content:""}.fa-lemon-o:before{content:""}.fa-phone:before{content:""}.fa-square-o:before{content:""}.fa-bookmark-o:before{content:""}.fa-phone-square:before{content:""}.fa-twitter:before{content:""}.fa-facebook-f:before,.fa-facebook:before{content:""}.fa-github:before,.icon-github:before{content:""}.fa-unlock:before{content:""}.fa-credit-card:before{content:""}.fa-feed:before,.fa-rss:before{content:""}.fa-hdd-o:before{content:""}.fa-bullhorn:before{content:""}.fa-bell:before{content:""}.fa-certificate:before{content:""}.fa-hand-o-right:before{content:""}.fa-hand-o-left:before{content:""}.fa-hand-o-up:before{content:""}.fa-hand-o-down:before{content:""}.fa-arrow-circle-left:before,.icon-circle-arrow-left:before{content:""}.fa-arrow-circle-right:before,.icon-circle-arrow-right:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-globe:before{content:""}.fa-wrench:before{content:""}.fa-tasks:before{content:""}.fa-filter:before{content:""}.fa-briefcase:before{content:""}.fa-arrows-alt:before{content:""}.fa-group:before,.fa-users:before{content:""}.fa-chain:before,.fa-link:before,.icon-link:before{content:""}.fa-cloud:before{content:""}.fa-flask:before{content:""}.fa-cut:before,.fa-scissors:before{content:""}.fa-copy:before,.fa-files-o:before{content:""}.fa-paperclip:before{content:""}.fa-floppy-o:before,.fa-save:before{content:""}.fa-square:before{content:""}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:""}.fa-list-ul:before{content:""}.fa-list-ol:before{content:""}.fa-strikethrough:before{content:""}.fa-underline:before{content:""}.fa-table:before{content:""}.fa-magic:before{content:""}.fa-truck:before{content:""}.fa-pinterest:before{content:""}.fa-pinterest-square:before{content:""}.fa-google-plus-square:before{content:""}.fa-google-plus:before{content:""}.fa-money:before{content:""}.fa-caret-down:before,.icon-caret-down:before,.wy-dropdown .caret:before{content:""}.fa-caret-up:before{content:""}.fa-caret-left:before{content:""}.fa-caret-right:before{content:""}.fa-columns:before{content:""}.fa-sort:before,.fa-unsorted:before{content:""}.fa-sort-desc:before,.fa-sort-down:before{content:""}.fa-sort-asc:before,.fa-sort-up:before{content:""}.fa-envelope:before{content:""}.fa-linkedin:before{content:""}.fa-rotate-left:before,.fa-undo:before{content:""}.fa-gavel:before,.fa-legal:before{content:""}.fa-dashboard:before,.fa-tachometer:before{content:""}.fa-comment-o:before{content:""}.fa-comments-o:before{content:""}.fa-bolt:before,.fa-flash:before{content:""}.fa-sitemap:before{content:""}.fa-umbrella:before{content:""}.fa-clipboard:before,.fa-paste:before{content:""}.fa-lightbulb-o:before{content:""}.fa-exchange:before{content:""}.fa-cloud-download:before{content:""}.fa-cloud-upload:before{content:""}.fa-user-md:before{content:""}.fa-stethoscope:before{content:""}.fa-suitcase:before{content:""}.fa-bell-o:before{content:""}.fa-coffee:before{content:""}.fa-cutlery:before{content:""}.fa-file-text-o:before{content:""}.fa-building-o:before{content:""}.fa-hospital-o:before{content:""}.fa-ambulance:before{content:""}.fa-medkit:before{content:""}.fa-fighter-jet:before{content:""}.fa-beer:before{content:""}.fa-h-square:before{content:""}.fa-plus-square:before{content:""}.fa-angle-double-left:before{content:""}.fa-angle-double-right:before{content:""}.fa-angle-double-up:before{content:""}.fa-angle-double-down:before{content:""}.fa-angle-left:before{content:""}.fa-angle-right:before{content:""}.fa-angle-up:before{content:""}.fa-angle-down:before{content:""}.fa-desktop:before{content:""}.fa-laptop:before{content:""}.fa-tablet:before{content:""}.fa-mobile-phone:before,.fa-mobile:before{content:""}.fa-circle-o:before{content:""}.fa-quote-left:before{content:""}.fa-quote-right:before{content:""}.fa-spinner:before{content:""}.fa-circle:before{content:""}.fa-mail-reply:before,.fa-reply:before{content:""}.fa-github-alt:before{content:""}.fa-folder-o:before{content:""}.fa-folder-open-o:before{content:""}.fa-smile-o:before{content:""}.fa-frown-o:before{content:""}.fa-meh-o:before{content:""}.fa-gamepad:before{content:""}.fa-keyboard-o:before{content:""}.fa-flag-o:before{content:""}.fa-flag-checkered:before{content:""}.fa-terminal:before{content:""}.fa-code:before{content:""}.fa-mail-reply-all:before,.fa-reply-all:before{content:""}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:""}.fa-location-arrow:before{content:""}.fa-crop:before{content:""}.fa-code-fork:before{content:""}.fa-chain-broken:before,.fa-unlink:before{content:""}.fa-question:before{content:""}.fa-info:before{content:""}.fa-exclamation:before{content:""}.fa-superscript:before{content:""}.fa-subscript:before{content:""}.fa-eraser:before{content:""}.fa-puzzle-piece:before{content:""}.fa-microphone:before{content:""}.fa-microphone-slash:before{content:""}.fa-shield:before{content:""}.fa-calendar-o:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-rocket:before{content:""}.fa-maxcdn:before{content:""}.fa-chevron-circle-left:before{content:""}.fa-chevron-circle-right:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-html5:before{content:""}.fa-css3:before{content:""}.fa-anchor:before{content:""}.fa-unlock-alt:before{content:""}.fa-bullseye:before{content:""}.fa-ellipsis-h:before{content:""}.fa-ellipsis-v:before{content:""}.fa-rss-square:before{content:""}.fa-play-circle:before{content:""}.fa-ticket:before{content:""}.fa-minus-square:before{content:""}.fa-minus-square-o:before,.wy-menu-vertical li.current>a button.toctree-expand:before,.wy-menu-vertical li.on a button.toctree-expand:before{content:""}.fa-level-up:before{content:""}.fa-level-down:before{content:""}.fa-check-square:before{content:""}.fa-pencil-square:before{content:""}.fa-external-link-square:before{content:""}.fa-share-square:before{content:""}.fa-compass:before{content:""}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:""}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:""}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:""}.fa-eur:before,.fa-euro:before{content:""}.fa-gbp:before{content:""}.fa-dollar:before,.fa-usd:before{content:""}.fa-inr:before,.fa-rupee:before{content:""}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:""}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:""}.fa-krw:before,.fa-won:before{content:""}.fa-bitcoin:before,.fa-btc:before{content:""}.fa-file:before{content:""}.fa-file-text:before{content:""}.fa-sort-alpha-asc:before{content:""}.fa-sort-alpha-desc:before{content:""}.fa-sort-amount-asc:before{content:""}.fa-sort-amount-desc:before{content:""}.fa-sort-numeric-asc:before{content:""}.fa-sort-numeric-desc:before{content:""}.fa-thumbs-up:before{content:""}.fa-thumbs-down:before{content:""}.fa-youtube-square:before{content:""}.fa-youtube:before{content:""}.fa-xing:before{content:""}.fa-xing-square:before{content:""}.fa-youtube-play:before{content:""}.fa-dropbox:before{content:""}.fa-stack-overflow:before{content:""}.fa-instagram:before{content:""}.fa-flickr:before{content:""}.fa-adn:before{content:""}.fa-bitbucket:before,.icon-bitbucket:before{content:""}.fa-bitbucket-square:before{content:""}.fa-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-long-arrow-down:before{content:""}.fa-long-arrow-up:before{content:""}.fa-long-arrow-left:before{content:""}.fa-long-arrow-right:before{content:""}.fa-apple:before{content:""}.fa-windows:before{content:""}.fa-android:before{content:""}.fa-linux:before{content:""}.fa-dribbble:before{content:""}.fa-skype:before{content:""}.fa-foursquare:before{content:""}.fa-trello:before{content:""}.fa-female:before{content:""}.fa-male:before{content:""}.fa-gittip:before,.fa-gratipay:before{content:""}.fa-sun-o:before{content:""}.fa-moon-o:before{content:""}.fa-archive:before{content:""}.fa-bug:before{content:""}.fa-vk:before{content:""}.fa-weibo:before{content:""}.fa-renren:before{content:""}.fa-pagelines:before{content:""}.fa-stack-exchange:before{content:""}.fa-arrow-circle-o-right:before{content:""}.fa-arrow-circle-o-left:before{content:""}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:""}.fa-dot-circle-o:before{content:""}.fa-wheelchair:before{content:""}.fa-vimeo-square:before{content:""}.fa-try:before,.fa-turkish-lira:before{content:""}.fa-plus-square-o:before,.wy-menu-vertical li button.toctree-expand:before{content:""}.fa-space-shuttle:before{content:""}.fa-slack:before{content:""}.fa-envelope-square:before{content:""}.fa-wordpress:before{content:""}.fa-openid:before{content:""}.fa-bank:before,.fa-institution:before,.fa-university:before{content:""}.fa-graduation-cap:before,.fa-mortar-board:before{content:""}.fa-yahoo:before{content:""}.fa-google:before{content:""}.fa-reddit:before{content:""}.fa-reddit-square:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-stumbleupon:before{content:""}.fa-delicious:before{content:""}.fa-digg:before{content:""}.fa-pied-piper-pp:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-drupal:before{content:""}.fa-joomla:before{content:""}.fa-language:before{content:""}.fa-fax:before{content:""}.fa-building:before{content:""}.fa-child:before{content:""}.fa-paw:before{content:""}.fa-spoon:before{content:""}.fa-cube:before{content:""}.fa-cubes:before{content:""}.fa-behance:before{content:""}.fa-behance-square:before{content:""}.fa-steam:before{content:""}.fa-steam-square:before{content:""}.fa-recycle:before{content:""}.fa-automobile:before,.fa-car:before{content:""}.fa-cab:before,.fa-taxi:before{content:""}.fa-tree:before{content:""}.fa-spotify:before{content:""}.fa-deviantart:before{content:""}.fa-soundcloud:before{content:""}.fa-database:before{content:""}.fa-file-pdf-o:before{content:""}.fa-file-word-o:before{content:""}.fa-file-excel-o:before{content:""}.fa-file-powerpoint-o:before{content:""}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:""}.fa-file-archive-o:before,.fa-file-zip-o:before{content:""}.fa-file-audio-o:before,.fa-file-sound-o:before{content:""}.fa-file-movie-o:before,.fa-file-video-o:before{content:""}.fa-file-code-o:before{content:""}.fa-vine:before{content:""}.fa-codepen:before{content:""}.fa-jsfiddle:before{content:""}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:""}.fa-circle-o-notch:before{content:""}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:""}.fa-empire:before,.fa-ge:before{content:""}.fa-git-square:before{content:""}.fa-git:before{content:""}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:""}.fa-tencent-weibo:before{content:""}.fa-qq:before{content:""}.fa-wechat:before,.fa-weixin:before{content:""}.fa-paper-plane:before,.fa-send:before{content:""}.fa-paper-plane-o:before,.fa-send-o:before{content:""}.fa-history:before{content:""}.fa-circle-thin:before{content:""}.fa-header:before{content:""}.fa-paragraph:before{content:""}.fa-sliders:before{content:""}.fa-share-alt:before{content:""}.fa-share-alt-square:before{content:""}.fa-bomb:before{content:""}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:""}.fa-tty:before{content:""}.fa-binoculars:before{content:""}.fa-plug:before{content:""}.fa-slideshare:before{content:""}.fa-twitch:before{content:""}.fa-yelp:before{content:""}.fa-newspaper-o:before{content:""}.fa-wifi:before{content:""}.fa-calculator:before{content:""}.fa-paypal:before{content:""}.fa-google-wallet:before{content:""}.fa-cc-visa:before{content:""}.fa-cc-mastercard:before{content:""}.fa-cc-discover:before{content:""}.fa-cc-amex:before{content:""}.fa-cc-paypal:before{content:""}.fa-cc-stripe:before{content:""}.fa-bell-slash:before{content:""}.fa-bell-slash-o:before{content:""}.fa-trash:before{content:""}.fa-copyright:before{content:""}.fa-at:before{content:""}.fa-eyedropper:before{content:""}.fa-paint-brush:before{content:""}.fa-birthday-cake:before{content:""}.fa-area-chart:before{content:""}.fa-pie-chart:before{content:""}.fa-line-chart:before{content:""}.fa-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-toggle-off:before{content:""}.fa-toggle-on:before{content:""}.fa-bicycle:before{content:""}.fa-bus:before{content:""}.fa-ioxhost:before{content:""}.fa-angellist:before{content:""}.fa-cc:before{content:""}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:""}.fa-meanpath:before{content:""}.fa-buysellads:before{content:""}.fa-connectdevelop:before{content:""}.fa-dashcube:before{content:""}.fa-forumbee:before{content:""}.fa-leanpub:before{content:""}.fa-sellsy:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-simplybuilt:before{content:""}.fa-skyatlas:before{content:""}.fa-cart-plus:before{content:""}.fa-cart-arrow-down:before{content:""}.fa-diamond:before{content:""}.fa-ship:before{content:""}.fa-user-secret:before{content:""}.fa-motorcycle:before{content:""}.fa-street-view:before{content:""}.fa-heartbeat:before{content:""}.fa-venus:before{content:""}.fa-mars:before{content:""}.fa-mercury:before{content:""}.fa-intersex:before,.fa-transgender:before{content:""}.fa-transgender-alt:before{content:""}.fa-venus-double:before{content:""}.fa-mars-double:before{content:""}.fa-venus-mars:before{content:""}.fa-mars-stroke:before{content:""}.fa-mars-stroke-v:before{content:""}.fa-mars-stroke-h:before{content:""}.fa-neuter:before{content:""}.fa-genderless:before{content:""}.fa-facebook-official:before{content:""}.fa-pinterest-p:before{content:""}.fa-whatsapp:before{content:""}.fa-server:before{content:""}.fa-user-plus:before{content:""}.fa-user-times:before{content:""}.fa-bed:before,.fa-hotel:before{content:""}.fa-viacoin:before{content:""}.fa-train:before{content:""}.fa-subway:before{content:""}.fa-medium:before{content:""}.fa-y-combinator:before,.fa-yc:before{content:""}.fa-optin-monster:before{content:""}.fa-opencart:before{content:""}.fa-expeditedssl:before{content:""}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:""}.fa-battery-3:before,.fa-battery-three-quarters:before{content:""}.fa-battery-2:before,.fa-battery-half:before{content:""}.fa-battery-1:before,.fa-battery-quarter:before{content:""}.fa-battery-0:before,.fa-battery-empty:before{content:""}.fa-mouse-pointer:before{content:""}.fa-i-cursor:before{content:""}.fa-object-group:before{content:""}.fa-object-ungroup:before{content:""}.fa-sticky-note:before{content:""}.fa-sticky-note-o:before{content:""}.fa-cc-jcb:before{content:""}.fa-cc-diners-club:before{content:""}.fa-clone:before{content:""}.fa-balance-scale:before{content:""}.fa-hourglass-o:before{content:""}.fa-hourglass-1:before,.fa-hourglass-start:before{content:""}.fa-hourglass-2:before,.fa-hourglass-half:before{content:""}.fa-hourglass-3:before,.fa-hourglass-end:before{content:""}.fa-hourglass:before{content:""}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:""}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:""}.fa-hand-scissors-o:before{content:""}.fa-hand-lizard-o:before{content:""}.fa-hand-spock-o:before{content:""}.fa-hand-pointer-o:before{content:""}.fa-hand-peace-o:before{content:""}.fa-trademark:before{content:""}.fa-registered:before{content:""}.fa-creative-commons:before{content:""}.fa-gg:before{content:""}.fa-gg-circle:before{content:""}.fa-tripadvisor:before{content:""}.fa-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-get-pocket:before{content:""}.fa-wikipedia-w:before{content:""}.fa-safari:before{content:""}.fa-chrome:before{content:""}.fa-firefox:before{content:""}.fa-opera:before{content:""}.fa-internet-explorer:before{content:""}.fa-television:before,.fa-tv:before{content:""}.fa-contao:before{content:""}.fa-500px:before{content:""}.fa-amazon:before{content:""}.fa-calendar-plus-o:before{content:""}.fa-calendar-minus-o:before{content:""}.fa-calendar-times-o:before{content:""}.fa-calendar-check-o:before{content:""}.fa-industry:before{content:""}.fa-map-pin:before{content:""}.fa-map-signs:before{content:""}.fa-map-o:before{content:""}.fa-map:before{content:""}.fa-commenting:before{content:""}.fa-commenting-o:before{content:""}.fa-houzz:before{content:""}.fa-vimeo:before{content:""}.fa-black-tie:before{content:""}.fa-fonticons:before{content:""}.fa-reddit-alien:before{content:""}.fa-edge:before{content:""}.fa-credit-card-alt:before{content:""}.fa-codiepie:before{content:""}.fa-modx:before{content:""}.fa-fort-awesome:before{content:""}.fa-usb:before{content:""}.fa-product-hunt:before{content:""}.fa-mixcloud:before{content:""}.fa-scribd:before{content:""}.fa-pause-circle:before{content:""}.fa-pause-circle-o:before{content:""}.fa-stop-circle:before{content:""}.fa-stop-circle-o:before{content:""}.fa-shopping-bag:before{content:""}.fa-shopping-basket:before{content:""}.fa-hashtag:before{content:""}.fa-bluetooth:before{content:""}.fa-bluetooth-b:before{content:""}.fa-percent:before{content:""}.fa-gitlab:before,.icon-gitlab:before{content:""}.fa-wpbeginner:before{content:""}.fa-wpforms:before{content:""}.fa-envira:before{content:""}.fa-universal-access:before{content:""}.fa-wheelchair-alt:before{content:""}.fa-question-circle-o:before{content:""}.fa-blind:before{content:""}.fa-audio-description:before{content:""}.fa-volume-control-phone:before{content:""}.fa-braille:before{content:""}.fa-assistive-listening-systems:before{content:""}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:""}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:""}.fa-glide:before{content:""}.fa-glide-g:before{content:""}.fa-sign-language:before,.fa-signing:before{content:""}.fa-low-vision:before{content:""}.fa-viadeo:before{content:""}.fa-viadeo-square:before{content:""}.fa-snapchat:before{content:""}.fa-snapchat-ghost:before{content:""}.fa-snapchat-square:before{content:""}.fa-pied-piper:before{content:""}.fa-first-order:before{content:""}.fa-yoast:before{content:""}.fa-themeisle:before{content:""}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:""}.fa-fa:before,.fa-font-awesome:before{content:""}.fa-handshake-o:before{content:""}.fa-envelope-open:before{content:""}.fa-envelope-open-o:before{content:""}.fa-linode:before{content:""}.fa-address-book:before{content:""}.fa-address-book-o:before{content:""}.fa-address-card:before,.fa-vcard:before{content:""}.fa-address-card-o:before,.fa-vcard-o:before{content:""}.fa-user-circle:before{content:""}.fa-user-circle-o:before{content:""}.fa-user-o:before{content:""}.fa-id-badge:before{content:""}.fa-drivers-license:before,.fa-id-card:before{content:""}.fa-drivers-license-o:before,.fa-id-card-o:before{content:""}.fa-quora:before{content:""}.fa-free-code-camp:before{content:""}.fa-telegram:before{content:""}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:""}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:""}.fa-thermometer-2:before,.fa-thermometer-half:before{content:""}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:""}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:""}.fa-shower:before{content:""}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:""}.fa-podcast:before{content:""}.fa-window-maximize:before{content:""}.fa-window-minimize:before{content:""}.fa-window-restore:before{content:""}.fa-times-rectangle:before,.fa-window-close:before{content:""}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:""}.fa-bandcamp:before{content:""}.fa-grav:before{content:""}.fa-etsy:before{content:""}.fa-imdb:before{content:""}.fa-ravelry:before{content:""}.fa-eercast:before{content:""}.fa-microchip:before{content:""}.fa-snowflake-o:before{content:""}.fa-superpowers:before{content:""}.fa-wpexplorer:before{content:""}.fa-meetup:before{content:""}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.fa,.icon,.rst-content .admonition-title,.rst-content .code-block-caption .headerlink,.rst-content .eqno .headerlink,.rst-content code.download span:first-child,.rst-content dl dt .headerlink,.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content p.caption .headerlink,.rst-content p .headerlink,.rst-content table>caption .headerlink,.rst-content tt.download span:first-child,.wy-dropdown .caret,.wy-inline-validate.wy-inline-validate-danger .wy-input-context,.wy-inline-validate.wy-inline-validate-info .wy-input-context,.wy-inline-validate.wy-inline-validate-success .wy-input-context,.wy-inline-validate.wy-inline-validate-warning .wy-input-context,.wy-menu-vertical li.current>a button.toctree-expand,.wy-menu-vertical li.on a button.toctree-expand,.wy-menu-vertical li button.toctree-expand{font-family:inherit}.fa:before,.icon:before,.rst-content .admonition-title:before,.rst-content .code-block-caption .headerlink:before,.rst-content .eqno .headerlink:before,.rst-content code.download span:first-child:before,.rst-content dl dt .headerlink:before,.rst-content h1 .headerlink:before,.rst-content h2 .headerlink:before,.rst-content h3 .headerlink:before,.rst-content h4 .headerlink:before,.rst-content h5 .headerlink:before,.rst-content h6 .headerlink:before,.rst-content p.caption .headerlink:before,.rst-content p .headerlink:before,.rst-content table>caption .headerlink:before,.rst-content tt.download span:first-child:before,.wy-dropdown .caret:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before,.wy-menu-vertical li.current>a button.toctree-expand:before,.wy-menu-vertical li.on a button.toctree-expand:before,.wy-menu-vertical li button.toctree-expand:before{font-family:FontAwesome;display:inline-block;font-style:normal;font-weight:400;line-height:1;text-decoration:inherit}.rst-content .code-block-caption a .headerlink,.rst-content .eqno a .headerlink,.rst-content a .admonition-title,.rst-content code.download a span:first-child,.rst-content dl dt a .headerlink,.rst-content h1 a .headerlink,.rst-content h2 a .headerlink,.rst-content h3 a .headerlink,.rst-content h4 a .headerlink,.rst-content h5 a .headerlink,.rst-content h6 a .headerlink,.rst-content p.caption a .headerlink,.rst-content p a .headerlink,.rst-content table>caption a .headerlink,.rst-content tt.download a span:first-child,.wy-menu-vertical li.current>a button.toctree-expand,.wy-menu-vertical li.on a button.toctree-expand,.wy-menu-vertical li a button.toctree-expand,a .fa,a .icon,a .rst-content .admonition-title,a .rst-content .code-block-caption .headerlink,a .rst-content .eqno .headerlink,a .rst-content code.download span:first-child,a .rst-content dl dt .headerlink,a .rst-content h1 .headerlink,a .rst-content h2 .headerlink,a .rst-content h3 .headerlink,a .rst-content h4 .headerlink,a .rst-content h5 .headerlink,a .rst-content h6 .headerlink,a .rst-content p.caption .headerlink,a .rst-content p .headerlink,a .rst-content table>caption .headerlink,a .rst-content tt.download span:first-child,a .wy-menu-vertical li button.toctree-expand{display:inline-block;text-decoration:inherit}.btn .fa,.btn .icon,.btn .rst-content .admonition-title,.btn .rst-content .code-block-caption .headerlink,.btn .rst-content .eqno .headerlink,.btn .rst-content code.download span:first-child,.btn .rst-content dl dt .headerlink,.btn .rst-content h1 .headerlink,.btn .rst-content h2 .headerlink,.btn .rst-content h3 .headerlink,.btn .rst-content h4 .headerlink,.btn .rst-content h5 .headerlink,.btn .rst-content h6 .headerlink,.btn .rst-content p .headerlink,.btn .rst-content table>caption .headerlink,.btn .rst-content tt.download span:first-child,.btn .wy-menu-vertical li.current>a button.toctree-expand,.btn .wy-menu-vertical li.on a button.toctree-expand,.btn .wy-menu-vertical li button.toctree-expand,.nav .fa,.nav .icon,.nav .rst-content .admonition-title,.nav .rst-content .code-block-caption .headerlink,.nav .rst-content .eqno .headerlink,.nav .rst-content code.download span:first-child,.nav .rst-content dl dt .headerlink,.nav .rst-content h1 .headerlink,.nav .rst-content h2 .headerlink,.nav .rst-content h3 .headerlink,.nav .rst-content h4 .headerlink,.nav .rst-content h5 .headerlink,.nav .rst-content h6 .headerlink,.nav .rst-content p .headerlink,.nav .rst-content table>caption .headerlink,.nav .rst-content tt.download span:first-child,.nav .wy-menu-vertical li.current>a button.toctree-expand,.nav .wy-menu-vertical li.on a button.toctree-expand,.nav .wy-menu-vertical li button.toctree-expand,.rst-content .btn .admonition-title,.rst-content .code-block-caption .btn .headerlink,.rst-content .code-block-caption .nav .headerlink,.rst-content .eqno .btn .headerlink,.rst-content .eqno .nav .headerlink,.rst-content .nav .admonition-title,.rst-content code.download .btn span:first-child,.rst-content code.download .nav span:first-child,.rst-content dl dt .btn .headerlink,.rst-content dl dt .nav .headerlink,.rst-content h1 .btn .headerlink,.rst-content h1 .nav .headerlink,.rst-content h2 .btn .headerlink,.rst-content h2 .nav .headerlink,.rst-content h3 .btn .headerlink,.rst-content h3 .nav .headerlink,.rst-content h4 .btn .headerlink,.rst-content h4 .nav .headerlink,.rst-content h5 .btn .headerlink,.rst-content h5 .nav .headerlink,.rst-content h6 .btn .headerlink,.rst-content h6 .nav .headerlink,.rst-content p .btn .headerlink,.rst-content p .nav .headerlink,.rst-content table>caption .btn .headerlink,.rst-content table>caption .nav .headerlink,.rst-content tt.download .btn span:first-child,.rst-content tt.download .nav span:first-child,.wy-menu-vertical li .btn button.toctree-expand,.wy-menu-vertical li.current>a .btn button.toctree-expand,.wy-menu-vertical li.current>a .nav button.toctree-expand,.wy-menu-vertical li .nav button.toctree-expand,.wy-menu-vertical li.on a .btn button.toctree-expand,.wy-menu-vertical li.on a .nav button.toctree-expand{display:inline}.btn .fa-large.icon,.btn .fa.fa-large,.btn .rst-content .code-block-caption .fa-large.headerlink,.btn .rst-content .eqno .fa-large.headerlink,.btn .rst-content .fa-large.admonition-title,.btn .rst-content code.download span.fa-large:first-child,.btn .rst-content dl dt .fa-large.headerlink,.btn .rst-content h1 .fa-large.headerlink,.btn .rst-content h2 .fa-large.headerlink,.btn .rst-content h3 .fa-large.headerlink,.btn .rst-content h4 .fa-large.headerlink,.btn .rst-content h5 .fa-large.headerlink,.btn .rst-content h6 .fa-large.headerlink,.btn .rst-content p .fa-large.headerlink,.btn .rst-content table>caption .fa-large.headerlink,.btn .rst-content tt.download span.fa-large:first-child,.btn .wy-menu-vertical li button.fa-large.toctree-expand,.nav .fa-large.icon,.nav .fa.fa-large,.nav .rst-content .code-block-caption .fa-large.headerlink,.nav .rst-content .eqno .fa-large.headerlink,.nav .rst-content .fa-large.admonition-title,.nav .rst-content code.download span.fa-large:first-child,.nav .rst-content dl dt .fa-large.headerlink,.nav .rst-content h1 .fa-large.headerlink,.nav .rst-content h2 .fa-large.headerlink,.nav .rst-content h3 .fa-large.headerlink,.nav .rst-content h4 .fa-large.headerlink,.nav .rst-content h5 .fa-large.headerlink,.nav .rst-content h6 .fa-large.headerlink,.nav .rst-content p .fa-large.headerlink,.nav .rst-content table>caption .fa-large.headerlink,.nav .rst-content tt.download span.fa-large:first-child,.nav .wy-menu-vertical li button.fa-large.toctree-expand,.rst-content .btn .fa-large.admonition-title,.rst-content .code-block-caption .btn .fa-large.headerlink,.rst-content .code-block-caption .nav .fa-large.headerlink,.rst-content .eqno .btn .fa-large.headerlink,.rst-content .eqno .nav .fa-large.headerlink,.rst-content .nav .fa-large.admonition-title,.rst-content code.download .btn span.fa-large:first-child,.rst-content code.download .nav span.fa-large:first-child,.rst-content dl dt .btn .fa-large.headerlink,.rst-content dl dt .nav .fa-large.headerlink,.rst-content h1 .btn .fa-large.headerlink,.rst-content h1 .nav .fa-large.headerlink,.rst-content h2 .btn .fa-large.headerlink,.rst-content h2 .nav .fa-large.headerlink,.rst-content h3 .btn .fa-large.headerlink,.rst-content h3 .nav .fa-large.headerlink,.rst-content h4 .btn .fa-large.headerlink,.rst-content h4 .nav .fa-large.headerlink,.rst-content h5 .btn .fa-large.headerlink,.rst-content h5 .nav .fa-large.headerlink,.rst-content h6 .btn .fa-large.headerlink,.rst-content h6 .nav .fa-large.headerlink,.rst-content p .btn .fa-large.headerlink,.rst-content p .nav .fa-large.headerlink,.rst-content table>caption .btn .fa-large.headerlink,.rst-content table>caption .nav .fa-large.headerlink,.rst-content tt.download .btn span.fa-large:first-child,.rst-content tt.download .nav span.fa-large:first-child,.wy-menu-vertical li .btn button.fa-large.toctree-expand,.wy-menu-vertical li .nav button.fa-large.toctree-expand{line-height:.9em}.btn .fa-spin.icon,.btn .fa.fa-spin,.btn .rst-content .code-block-caption .fa-spin.headerlink,.btn .rst-content .eqno .fa-spin.headerlink,.btn .rst-content .fa-spin.admonition-title,.btn .rst-content code.download span.fa-spin:first-child,.btn .rst-content dl dt .fa-spin.headerlink,.btn .rst-content h1 .fa-spin.headerlink,.btn .rst-content h2 .fa-spin.headerlink,.btn .rst-content h3 .fa-spin.headerlink,.btn .rst-content h4 .fa-spin.headerlink,.btn .rst-content h5 .fa-spin.headerlink,.btn .rst-content h6 .fa-spin.headerlink,.btn .rst-content p .fa-spin.headerlink,.btn .rst-content table>caption .fa-spin.headerlink,.btn .rst-content tt.download span.fa-spin:first-child,.btn .wy-menu-vertical li button.fa-spin.toctree-expand,.nav .fa-spin.icon,.nav .fa.fa-spin,.nav .rst-content .code-block-caption .fa-spin.headerlink,.nav .rst-content .eqno .fa-spin.headerlink,.nav .rst-content .fa-spin.admonition-title,.nav .rst-content code.download span.fa-spin:first-child,.nav .rst-content dl dt .fa-spin.headerlink,.nav .rst-content h1 .fa-spin.headerlink,.nav .rst-content h2 .fa-spin.headerlink,.nav .rst-content h3 .fa-spin.headerlink,.nav .rst-content h4 .fa-spin.headerlink,.nav .rst-content h5 .fa-spin.headerlink,.nav .rst-content h6 .fa-spin.headerlink,.nav .rst-content p .fa-spin.headerlink,.nav .rst-content table>caption .fa-spin.headerlink,.nav .rst-content tt.download span.fa-spin:first-child,.nav .wy-menu-vertical li button.fa-spin.toctree-expand,.rst-content .btn .fa-spin.admonition-title,.rst-content .code-block-caption .btn .fa-spin.headerlink,.rst-content .code-block-caption .nav .fa-spin.headerlink,.rst-content .eqno .btn .fa-spin.headerlink,.rst-content .eqno .nav .fa-spin.headerlink,.rst-content .nav .fa-spin.admonition-title,.rst-content code.download .btn span.fa-spin:first-child,.rst-content code.download .nav span.fa-spin:first-child,.rst-content dl dt .btn .fa-spin.headerlink,.rst-content dl dt .nav .fa-spin.headerlink,.rst-content h1 .btn .fa-spin.headerlink,.rst-content h1 .nav .fa-spin.headerlink,.rst-content h2 .btn .fa-spin.headerlink,.rst-content h2 .nav .fa-spin.headerlink,.rst-content h3 .btn .fa-spin.headerlink,.rst-content h3 .nav .fa-spin.headerlink,.rst-content h4 .btn .fa-spin.headerlink,.rst-content h4 .nav .fa-spin.headerlink,.rst-content h5 .btn .fa-spin.headerlink,.rst-content h5 .nav .fa-spin.headerlink,.rst-content h6 .btn .fa-spin.headerlink,.rst-content h6 .nav .fa-spin.headerlink,.rst-content p .btn .fa-spin.headerlink,.rst-content p .nav .fa-spin.headerlink,.rst-content table>caption .btn .fa-spin.headerlink,.rst-content table>caption .nav .fa-spin.headerlink,.rst-content tt.download .btn span.fa-spin:first-child,.rst-content tt.download .nav span.fa-spin:first-child,.wy-menu-vertical li .btn button.fa-spin.toctree-expand,.wy-menu-vertical li .nav button.fa-spin.toctree-expand{display:inline-block}.btn.fa:before,.btn.icon:before,.rst-content .btn.admonition-title:before,.rst-content .code-block-caption .btn.headerlink:before,.rst-content .eqno .btn.headerlink:before,.rst-content code.download span.btn:first-child:before,.rst-content dl dt .btn.headerlink:before,.rst-content h1 .btn.headerlink:before,.rst-content h2 .btn.headerlink:before,.rst-content h3 .btn.headerlink:before,.rst-content h4 .btn.headerlink:before,.rst-content h5 .btn.headerlink:before,.rst-content h6 .btn.headerlink:before,.rst-content p .btn.headerlink:before,.rst-content table>caption .btn.headerlink:before,.rst-content tt.download span.btn:first-child:before,.wy-menu-vertical li button.btn.toctree-expand:before{opacity:.5;-webkit-transition:opacity .05s ease-in;-moz-transition:opacity .05s ease-in;transition:opacity .05s ease-in}.btn.fa:hover:before,.btn.icon:hover:before,.rst-content .btn.admonition-title:hover:before,.rst-content .code-block-caption .btn.headerlink:hover:before,.rst-content .eqno .btn.headerlink:hover:before,.rst-content code.download span.btn:first-child:hover:before,.rst-content dl dt .btn.headerlink:hover:before,.rst-content h1 .btn.headerlink:hover:before,.rst-content h2 .btn.headerlink:hover:before,.rst-content h3 .btn.headerlink:hover:before,.rst-content h4 .btn.headerlink:hover:before,.rst-content h5 .btn.headerlink:hover:before,.rst-content h6 .btn.headerlink:hover:before,.rst-content p .btn.headerlink:hover:before,.rst-content table>caption .btn.headerlink:hover:before,.rst-content tt.download span.btn:first-child:hover:before,.wy-menu-vertical li button.btn.toctree-expand:hover:before{opacity:1}.btn-mini .fa:before,.btn-mini .icon:before,.btn-mini .rst-content .admonition-title:before,.btn-mini .rst-content .code-block-caption .headerlink:before,.btn-mini .rst-content .eqno .headerlink:before,.btn-mini .rst-content code.download span:first-child:before,.btn-mini .rst-content dl dt .headerlink:before,.btn-mini .rst-content h1 .headerlink:before,.btn-mini .rst-content h2 .headerlink:before,.btn-mini .rst-content h3 .headerlink:before,.btn-mini .rst-content h4 .headerlink:before,.btn-mini .rst-content h5 .headerlink:before,.btn-mini .rst-content h6 .headerlink:before,.btn-mini .rst-content p .headerlink:before,.btn-mini .rst-content table>caption .headerlink:before,.btn-mini .rst-content tt.download span:first-child:before,.btn-mini .wy-menu-vertical li button.toctree-expand:before,.rst-content .btn-mini .admonition-title:before,.rst-content .code-block-caption .btn-mini .headerlink:before,.rst-content .eqno .btn-mini .headerlink:before,.rst-content code.download .btn-mini span:first-child:before,.rst-content dl dt .btn-mini .headerlink:before,.rst-content h1 .btn-mini .headerlink:before,.rst-content h2 .btn-mini .headerlink:before,.rst-content h3 .btn-mini .headerlink:before,.rst-content h4 .btn-mini .headerlink:before,.rst-content h5 .btn-mini .headerlink:before,.rst-content h6 .btn-mini .headerlink:before,.rst-content p .btn-mini .headerlink:before,.rst-content table>caption .btn-mini .headerlink:before,.rst-content tt.download .btn-mini span:first-child:before,.wy-menu-vertical li .btn-mini button.toctree-expand:before{font-size:14px;vertical-align:-15%}.rst-content .admonition,.rst-content .admonition-todo,.rst-content .attention,.rst-content .caution,.rst-content .danger,.rst-content .error,.rst-content .hint,.rst-content .important,.rst-content .note,.rst-content .seealso,.rst-content .tip,.rst-content .warning,.wy-alert{padding:12px;line-height:24px;margin-bottom:24px;background:#e7f2fa}.rst-content .admonition-title,.wy-alert-title{font-weight:700;display:block;color:#fff;background:#6ab0de;padding:6px 12px;margin:-12px -12px 12px}.rst-content .danger,.rst-content .error,.rst-content .wy-alert-danger.admonition,.rst-content .wy-alert-danger.admonition-todo,.rst-content .wy-alert-danger.attention,.rst-content .wy-alert-danger.caution,.rst-content .wy-alert-danger.hint,.rst-content .wy-alert-danger.important,.rst-content .wy-alert-danger.note,.rst-content .wy-alert-danger.seealso,.rst-content .wy-alert-danger.tip,.rst-content .wy-alert-danger.warning,.wy-alert.wy-alert-danger{background:#fdf3f2}.rst-content .danger .admonition-title,.rst-content .danger .wy-alert-title,.rst-content .error .admonition-title,.rst-content .error .wy-alert-title,.rst-content .wy-alert-danger.admonition-todo .admonition-title,.rst-content .wy-alert-danger.admonition-todo .wy-alert-title,.rst-content .wy-alert-danger.admonition .admonition-title,.rst-content .wy-alert-danger.admonition .wy-alert-title,.rst-content .wy-alert-danger.attention .admonition-title,.rst-content .wy-alert-danger.attention .wy-alert-title,.rst-content .wy-alert-danger.caution .admonition-title,.rst-content .wy-alert-danger.caution .wy-alert-title,.rst-content .wy-alert-danger.hint .admonition-title,.rst-content .wy-alert-danger.hint .wy-alert-title,.rst-content .wy-alert-danger.important .admonition-title,.rst-content .wy-alert-danger.important .wy-alert-title,.rst-content .wy-alert-danger.note .admonition-title,.rst-content .wy-alert-danger.note .wy-alert-title,.rst-content .wy-alert-danger.seealso .admonition-title,.rst-content .wy-alert-danger.seealso .wy-alert-title,.rst-content .wy-alert-danger.tip .admonition-title,.rst-content .wy-alert-danger.tip .wy-alert-title,.rst-content .wy-alert-danger.warning .admonition-title,.rst-content .wy-alert-danger.warning .wy-alert-title,.rst-content .wy-alert.wy-alert-danger .admonition-title,.wy-alert.wy-alert-danger .rst-content .admonition-title,.wy-alert.wy-alert-danger .wy-alert-title{background:#f29f97}.rst-content .admonition-todo,.rst-content .attention,.rst-content .caution,.rst-content .warning,.rst-content .wy-alert-warning.admonition,.rst-content .wy-alert-warning.danger,.rst-content .wy-alert-warning.error,.rst-content .wy-alert-warning.hint,.rst-content .wy-alert-warning.important,.rst-content .wy-alert-warning.note,.rst-content .wy-alert-warning.seealso,.rst-content .wy-alert-warning.tip,.wy-alert.wy-alert-warning{background:#ffedcc}.rst-content .admonition-todo .admonition-title,.rst-content .admonition-todo .wy-alert-title,.rst-content .attention .admonition-title,.rst-content .attention .wy-alert-title,.rst-content .caution .admonition-title,.rst-content .caution .wy-alert-title,.rst-content .warning .admonition-title,.rst-content .warning .wy-alert-title,.rst-content .wy-alert-warning.admonition .admonition-title,.rst-content .wy-alert-warning.admonition .wy-alert-title,.rst-content .wy-alert-warning.danger .admonition-title,.rst-content .wy-alert-warning.danger .wy-alert-title,.rst-content .wy-alert-warning.error .admonition-title,.rst-content .wy-alert-warning.error .wy-alert-title,.rst-content .wy-alert-warning.hint .admonition-title,.rst-content .wy-alert-warning.hint .wy-alert-title,.rst-content .wy-alert-warning.important .admonition-title,.rst-content .wy-alert-warning.important .wy-alert-title,.rst-content .wy-alert-warning.note .admonition-title,.rst-content .wy-alert-warning.note .wy-alert-title,.rst-content .wy-alert-warning.seealso .admonition-title,.rst-content .wy-alert-warning.seealso .wy-alert-title,.rst-content .wy-alert-warning.tip .admonition-title,.rst-content .wy-alert-warning.tip .wy-alert-title,.rst-content .wy-alert.wy-alert-warning .admonition-title,.wy-alert.wy-alert-warning .rst-content .admonition-title,.wy-alert.wy-alert-warning .wy-alert-title{background:#f0b37e}.rst-content .note,.rst-content .seealso,.rst-content .wy-alert-info.admonition,.rst-content .wy-alert-info.admonition-todo,.rst-content .wy-alert-info.attention,.rst-content .wy-alert-info.caution,.rst-content .wy-alert-info.danger,.rst-content .wy-alert-info.error,.rst-content .wy-alert-info.hint,.rst-content .wy-alert-info.important,.rst-content .wy-alert-info.tip,.rst-content .wy-alert-info.warning,.wy-alert.wy-alert-info{background:#e7f2fa}.rst-content .note .admonition-title,.rst-content .note .wy-alert-title,.rst-content .seealso .admonition-title,.rst-content .seealso .wy-alert-title,.rst-content .wy-alert-info.admonition-todo .admonition-title,.rst-content .wy-alert-info.admonition-todo .wy-alert-title,.rst-content .wy-alert-info.admonition .admonition-title,.rst-content .wy-alert-info.admonition .wy-alert-title,.rst-content .wy-alert-info.attention .admonition-title,.rst-content .wy-alert-info.attention .wy-alert-title,.rst-content .wy-alert-info.caution .admonition-title,.rst-content .wy-alert-info.caution .wy-alert-title,.rst-content .wy-alert-info.danger .admonition-title,.rst-content .wy-alert-info.danger .wy-alert-title,.rst-content .wy-alert-info.error .admonition-title,.rst-content .wy-alert-info.error .wy-alert-title,.rst-content .wy-alert-info.hint .admonition-title,.rst-content .wy-alert-info.hint .wy-alert-title,.rst-content .wy-alert-info.important .admonition-title,.rst-content .wy-alert-info.important .wy-alert-title,.rst-content .wy-alert-info.tip .admonition-title,.rst-content .wy-alert-info.tip .wy-alert-title,.rst-content .wy-alert-info.warning .admonition-title,.rst-content .wy-alert-info.warning .wy-alert-title,.rst-content .wy-alert.wy-alert-info .admonition-title,.wy-alert.wy-alert-info .rst-content .admonition-title,.wy-alert.wy-alert-info .wy-alert-title{background:#6ab0de}.rst-content .hint,.rst-content .important,.rst-content .tip,.rst-content .wy-alert-success.admonition,.rst-content .wy-alert-success.admonition-todo,.rst-content .wy-alert-success.attention,.rst-content .wy-alert-success.caution,.rst-content .wy-alert-success.danger,.rst-content .wy-alert-success.error,.rst-content .wy-alert-success.note,.rst-content .wy-alert-success.seealso,.rst-content .wy-alert-success.warning,.wy-alert.wy-alert-success{background:#dbfaf4}.rst-content .hint .admonition-title,.rst-content .hint .wy-alert-title,.rst-content .important .admonition-title,.rst-content .important .wy-alert-title,.rst-content .tip .admonition-title,.rst-content .tip .wy-alert-title,.rst-content .wy-alert-success.admonition-todo .admonition-title,.rst-content .wy-alert-success.admonition-todo .wy-alert-title,.rst-content .wy-alert-success.admonition .admonition-title,.rst-content .wy-alert-success.admonition .wy-alert-title,.rst-content .wy-alert-success.attention .admonition-title,.rst-content .wy-alert-success.attention .wy-alert-title,.rst-content .wy-alert-success.caution .admonition-title,.rst-content .wy-alert-success.caution .wy-alert-title,.rst-content .wy-alert-success.danger .admonition-title,.rst-content .wy-alert-success.danger .wy-alert-title,.rst-content .wy-alert-success.error .admonition-title,.rst-content .wy-alert-success.error .wy-alert-title,.rst-content .wy-alert-success.note .admonition-title,.rst-content .wy-alert-success.note .wy-alert-title,.rst-content .wy-alert-success.seealso .admonition-title,.rst-content .wy-alert-success.seealso .wy-alert-title,.rst-content .wy-alert-success.warning .admonition-title,.rst-content .wy-alert-success.warning .wy-alert-title,.rst-content .wy-alert.wy-alert-success .admonition-title,.wy-alert.wy-alert-success .rst-content .admonition-title,.wy-alert.wy-alert-success .wy-alert-title{background:#1abc9c}.rst-content .wy-alert-neutral.admonition,.rst-content .wy-alert-neutral.admonition-todo,.rst-content .wy-alert-neutral.attention,.rst-content .wy-alert-neutral.caution,.rst-content .wy-alert-neutral.danger,.rst-content .wy-alert-neutral.error,.rst-content .wy-alert-neutral.hint,.rst-content .wy-alert-neutral.important,.rst-content .wy-alert-neutral.note,.rst-content .wy-alert-neutral.seealso,.rst-content .wy-alert-neutral.tip,.rst-content .wy-alert-neutral.warning,.wy-alert.wy-alert-neutral{background:#f3f6f6}.rst-content .wy-alert-neutral.admonition-todo .admonition-title,.rst-content .wy-alert-neutral.admonition-todo .wy-alert-title,.rst-content .wy-alert-neutral.admonition .admonition-title,.rst-content .wy-alert-neutral.admonition .wy-alert-title,.rst-content .wy-alert-neutral.attention .admonition-title,.rst-content .wy-alert-neutral.attention .wy-alert-title,.rst-content .wy-alert-neutral.caution .admonition-title,.rst-content .wy-alert-neutral.caution .wy-alert-title,.rst-content .wy-alert-neutral.danger .admonition-title,.rst-content .wy-alert-neutral.danger .wy-alert-title,.rst-content .wy-alert-neutral.error .admonition-title,.rst-content .wy-alert-neutral.error .wy-alert-title,.rst-content .wy-alert-neutral.hint .admonition-title,.rst-content .wy-alert-neutral.hint .wy-alert-title,.rst-content .wy-alert-neutral.important .admonition-title,.rst-content .wy-alert-neutral.important .wy-alert-title,.rst-content .wy-alert-neutral.note .admonition-title,.rst-content .wy-alert-neutral.note .wy-alert-title,.rst-content .wy-alert-neutral.seealso .admonition-title,.rst-content .wy-alert-neutral.seealso .wy-alert-title,.rst-content .wy-alert-neutral.tip .admonition-title,.rst-content .wy-alert-neutral.tip .wy-alert-title,.rst-content .wy-alert-neutral.warning .admonition-title,.rst-content .wy-alert-neutral.warning .wy-alert-title,.rst-content .wy-alert.wy-alert-neutral .admonition-title,.wy-alert.wy-alert-neutral .rst-content .admonition-title,.wy-alert.wy-alert-neutral .wy-alert-title{color:#404040;background:#e1e4e5}.rst-content .wy-alert-neutral.admonition-todo a,.rst-content .wy-alert-neutral.admonition a,.rst-content .wy-alert-neutral.attention a,.rst-content .wy-alert-neutral.caution a,.rst-content .wy-alert-neutral.danger a,.rst-content .wy-alert-neutral.error a,.rst-content .wy-alert-neutral.hint a,.rst-content .wy-alert-neutral.important a,.rst-content .wy-alert-neutral.note a,.rst-content .wy-alert-neutral.seealso a,.rst-content .wy-alert-neutral.tip a,.rst-content .wy-alert-neutral.warning a,.wy-alert.wy-alert-neutral a{color:#2980b9}.rst-content .admonition-todo p:last-child,.rst-content .admonition p:last-child,.rst-content .attention p:last-child,.rst-content .caution p:last-child,.rst-content .danger p:last-child,.rst-content .error p:last-child,.rst-content .hint p:last-child,.rst-content .important p:last-child,.rst-content .note p:last-child,.rst-content .seealso p:last-child,.rst-content .tip p:last-child,.rst-content .warning p:last-child,.wy-alert p:last-child{margin-bottom:0}.wy-tray-container{position:fixed;bottom:0;left:0;z-index:600}.wy-tray-container li{display:block;width:300px;background:transparent;color:#fff;text-align:center;box-shadow:0 5px 5px 0 rgba(0,0,0,.1);padding:0 24px;min-width:20%;opacity:0;height:0;line-height:56px;overflow:hidden;-webkit-transition:all .3s ease-in;-moz-transition:all .3s ease-in;transition:all .3s ease-in}.wy-tray-container li.wy-tray-item-success{background:#27ae60}.wy-tray-container li.wy-tray-item-info{background:#2980b9}.wy-tray-container li.wy-tray-item-warning{background:#e67e22}.wy-tray-container li.wy-tray-item-danger{background:#e74c3c}.wy-tray-container li.on{opacity:1;height:56px}@media screen and (max-width:768px){.wy-tray-container{bottom:auto;top:0;width:100%}.wy-tray-container li{width:100%}}button{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle;cursor:pointer;line-height:normal;-webkit-appearance:button;*overflow:visible}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}button[disabled]{cursor:default}.btn{display:inline-block;border-radius:2px;line-height:normal;white-space:nowrap;text-align:center;cursor:pointer;font-size:100%;padding:6px 12px 8px;color:#fff;border:1px solid rgba(0,0,0,.1);background-color:#27ae60;text-decoration:none;font-weight:400;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;box-shadow:inset 0 1px 2px -1px hsla(0,0%,100%,.5),inset 0 -2px 0 0 rgba(0,0,0,.1);outline-none:false;vertical-align:middle;*display:inline;zoom:1;-webkit-user-drag:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-transition:all .1s linear;-moz-transition:all .1s linear;transition:all .1s linear}.btn-hover{background:#2e8ece;color:#fff}.btn:hover{background:#2cc36b;color:#fff}.btn:focus{background:#2cc36b;outline:0}.btn:active{box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.05),inset 0 2px 0 0 rgba(0,0,0,.1);padding:8px 12px 6px}.btn:visited{color:#fff}.btn-disabled,.btn-disabled:active,.btn-disabled:focus,.btn-disabled:hover,.btn:disabled{background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);filter:alpha(opacity=40);opacity:.4;cursor:not-allowed;box-shadow:none}.btn::-moz-focus-inner{padding:0;border:0}.btn-small{font-size:80%}.btn-info{background-color:#2980b9!important}.btn-info:hover{background-color:#2e8ece!important}.btn-neutral{background-color:#f3f6f6!important;color:#404040!important}.btn-neutral:hover{background-color:#e5ebeb!important;color:#404040}.btn-neutral:visited{color:#404040!important}.btn-success{background-color:#27ae60!important}.btn-success:hover{background-color:#295!important}.btn-danger{background-color:#e74c3c!important}.btn-danger:hover{background-color:#ea6153!important}.btn-warning{background-color:#e67e22!important}.btn-warning:hover{background-color:#e98b39!important}.btn-invert{background-color:#222}.btn-invert:hover{background-color:#2f2f2f!important}.btn-link{background-color:transparent!important;color:#2980b9;box-shadow:none;border-color:transparent!important}.btn-link:active,.btn-link:hover{background-color:transparent!important;color:#409ad5!important;box-shadow:none}.btn-link:visited{color:#9b59b6}.wy-btn-group .btn,.wy-control .btn{vertical-align:middle}.wy-btn-group{margin-bottom:24px;*zoom:1}.wy-btn-group:after,.wy-btn-group:before{display:table;content:""}.wy-btn-group:after{clear:both}.wy-dropdown{position:relative;display:inline-block}.wy-dropdown-active .wy-dropdown-menu{display:block}.wy-dropdown-menu{position:absolute;left:0;display:none;float:left;top:100%;min-width:100%;background:#fcfcfc;z-index:100;border:1px solid #cfd7dd;box-shadow:0 2px 2px 0 rgba(0,0,0,.1);padding:12px}.wy-dropdown-menu>dd>a{display:block;clear:both;color:#404040;white-space:nowrap;font-size:90%;padding:0 12px;cursor:pointer}.wy-dropdown-menu>dd>a:hover{background:#2980b9;color:#fff}.wy-dropdown-menu>dd.divider{border-top:1px solid #cfd7dd;margin:6px 0}.wy-dropdown-menu>dd.search{padding-bottom:12px}.wy-dropdown-menu>dd.search input[type=search]{width:100%}.wy-dropdown-menu>dd.call-to-action{background:#e3e3e3;text-transform:uppercase;font-weight:500;font-size:80%}.wy-dropdown-menu>dd.call-to-action:hover{background:#e3e3e3}.wy-dropdown-menu>dd.call-to-action .btn{color:#fff}.wy-dropdown.wy-dropdown-up .wy-dropdown-menu{bottom:100%;top:auto;left:auto;right:0}.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu{background:#fcfcfc;margin-top:2px}.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu a{padding:6px 12px}.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu a:hover{background:#2980b9;color:#fff}.wy-dropdown.wy-dropdown-left .wy-dropdown-menu{right:0;left:auto;text-align:right}.wy-dropdown-arrow:before{content:" ";border-bottom:5px solid #f5f5f5;border-left:5px solid transparent;border-right:5px solid transparent;position:absolute;display:block;top:-4px;left:50%;margin-left:-3px}.wy-dropdown-arrow.wy-dropdown-arrow-left:before{left:11px}.wy-form-stacked select{display:block}.wy-form-aligned .wy-help-inline,.wy-form-aligned input,.wy-form-aligned label,.wy-form-aligned select,.wy-form-aligned textarea{display:inline-block;*display:inline;*zoom:1;vertical-align:middle}.wy-form-aligned .wy-control-group>label{display:inline-block;vertical-align:middle;width:10em;margin:6px 12px 0 0;float:left}.wy-form-aligned .wy-control{float:left}.wy-form-aligned .wy-control label{display:block}.wy-form-aligned .wy-control select{margin-top:6px}fieldset{margin:0}fieldset,legend{border:0;padding:0}legend{width:100%;white-space:normal;margin-bottom:24px;font-size:150%;*margin-left:-7px}label,legend{display:block}label{margin:0 0 .3125em;color:#333;font-size:90%}input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}.wy-control-group{margin-bottom:24px;max-width:1200px;margin-left:auto;margin-right:auto;*zoom:1}.wy-control-group:after,.wy-control-group:before{display:table;content:""}.wy-control-group:after{clear:both}.wy-control-group.wy-control-group-required>label:after{content:" *";color:#e74c3c}.wy-control-group .wy-form-full,.wy-control-group .wy-form-halves,.wy-control-group .wy-form-thirds{padding-bottom:12px}.wy-control-group .wy-form-full input[type=color],.wy-control-group .wy-form-full input[type=date],.wy-control-group .wy-form-full input[type=datetime-local],.wy-control-group .wy-form-full input[type=datetime],.wy-control-group .wy-form-full input[type=email],.wy-control-group .wy-form-full input[type=month],.wy-control-group .wy-form-full input[type=number],.wy-control-group .wy-form-full input[type=password],.wy-control-group .wy-form-full input[type=search],.wy-control-group .wy-form-full input[type=tel],.wy-control-group .wy-form-full input[type=text],.wy-control-group .wy-form-full input[type=time],.wy-control-group .wy-form-full input[type=url],.wy-control-group .wy-form-full input[type=week],.wy-control-group .wy-form-full select,.wy-control-group .wy-form-halves input[type=color],.wy-control-group .wy-form-halves input[type=date],.wy-control-group .wy-form-halves input[type=datetime-local],.wy-control-group .wy-form-halves input[type=datetime],.wy-control-group .wy-form-halves input[type=email],.wy-control-group .wy-form-halves input[type=month],.wy-control-group .wy-form-halves input[type=number],.wy-control-group .wy-form-halves input[type=password],.wy-control-group .wy-form-halves input[type=search],.wy-control-group .wy-form-halves input[type=tel],.wy-control-group .wy-form-halves input[type=text],.wy-control-group .wy-form-halves input[type=time],.wy-control-group .wy-form-halves input[type=url],.wy-control-group .wy-form-halves input[type=week],.wy-control-group .wy-form-halves select,.wy-control-group .wy-form-thirds input[type=color],.wy-control-group .wy-form-thirds input[type=date],.wy-control-group .wy-form-thirds input[type=datetime-local],.wy-control-group .wy-form-thirds input[type=datetime],.wy-control-group .wy-form-thirds input[type=email],.wy-control-group .wy-form-thirds input[type=month],.wy-control-group .wy-form-thirds input[type=number],.wy-control-group .wy-form-thirds input[type=password],.wy-control-group .wy-form-thirds input[type=search],.wy-control-group .wy-form-thirds input[type=tel],.wy-control-group .wy-form-thirds input[type=text],.wy-control-group .wy-form-thirds input[type=time],.wy-control-group .wy-form-thirds input[type=url],.wy-control-group .wy-form-thirds input[type=week],.wy-control-group .wy-form-thirds select{width:100%}.wy-control-group .wy-form-full{float:left;display:block;width:100%;margin-right:0}.wy-control-group .wy-form-full:last-child{margin-right:0}.wy-control-group .wy-form-halves{float:left;display:block;margin-right:2.35765%;width:48.82117%}.wy-control-group .wy-form-halves:last-child,.wy-control-group .wy-form-halves:nth-of-type(2n){margin-right:0}.wy-control-group .wy-form-halves:nth-of-type(odd){clear:left}.wy-control-group .wy-form-thirds{float:left;display:block;margin-right:2.35765%;width:31.76157%}.wy-control-group .wy-form-thirds:last-child,.wy-control-group .wy-form-thirds:nth-of-type(3n){margin-right:0}.wy-control-group .wy-form-thirds:nth-of-type(3n+1){clear:left}.wy-control-group.wy-control-group-no-input .wy-control,.wy-control-no-input{margin:6px 0 0;font-size:90%}.wy-control-no-input{display:inline-block}.wy-control-group.fluid-input input[type=color],.wy-control-group.fluid-input input[type=date],.wy-control-group.fluid-input input[type=datetime-local],.wy-control-group.fluid-input input[type=datetime],.wy-control-group.fluid-input input[type=email],.wy-control-group.fluid-input input[type=month],.wy-control-group.fluid-input input[type=number],.wy-control-group.fluid-input input[type=password],.wy-control-group.fluid-input input[type=search],.wy-control-group.fluid-input input[type=tel],.wy-control-group.fluid-input input[type=text],.wy-control-group.fluid-input input[type=time],.wy-control-group.fluid-input input[type=url],.wy-control-group.fluid-input input[type=week]{width:100%}.wy-form-message-inline{padding-left:.3em;color:#666;font-size:90%}.wy-form-message{display:block;color:#999;font-size:70%;margin-top:.3125em;font-style:italic}.wy-form-message p{font-size:inherit;font-style:italic;margin-bottom:6px}.wy-form-message p:last-child{margin-bottom:0}input{line-height:normal}input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;*overflow:visible}input[type=color],input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week]{-webkit-appearance:none;padding:6px;display:inline-block;border:1px solid #ccc;font-size:80%;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;box-shadow:inset 0 1px 3px #ddd;border-radius:0;-webkit-transition:border .3s linear;-moz-transition:border .3s linear;transition:border .3s linear}input[type=datetime-local]{padding:.34375em .625em}input[disabled]{cursor:default}input[type=checkbox],input[type=radio]{padding:0;margin-right:.3125em;*height:13px;*width:13px}input[type=checkbox],input[type=radio],input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus{outline:0;outline:thin dotted\9;border-color:#333}input.no-focus:focus{border-color:#ccc!important}input[type=checkbox]:focus,input[type=file]:focus,input[type=radio]:focus{outline:thin dotted #333;outline:1px auto #129fea}input[type=color][disabled],input[type=date][disabled],input[type=datetime-local][disabled],input[type=datetime][disabled],input[type=email][disabled],input[type=month][disabled],input[type=number][disabled],input[type=password][disabled],input[type=search][disabled],input[type=tel][disabled],input[type=text][disabled],input[type=time][disabled],input[type=url][disabled],input[type=week][disabled]{cursor:not-allowed;background-color:#fafafa}input:focus:invalid,select:focus:invalid,textarea:focus:invalid{color:#e74c3c;border:1px solid #e74c3c}input:focus:invalid:focus,select:focus:invalid:focus,textarea:focus:invalid:focus{border-color:#e74c3c}input[type=checkbox]:focus:invalid:focus,input[type=file]:focus:invalid:focus,input[type=radio]:focus:invalid:focus{outline-color:#e74c3c}input.wy-input-large{padding:12px;font-size:100%}textarea{overflow:auto;vertical-align:top;width:100%;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif}select,textarea{padding:.5em .625em;display:inline-block;border:1px solid #ccc;font-size:80%;box-shadow:inset 0 1px 3px #ddd;-webkit-transition:border .3s linear;-moz-transition:border .3s linear;transition:border .3s linear}select{border:1px solid #ccc;background-color:#fff}select[multiple]{height:auto}select:focus,textarea:focus{outline:0}input[readonly],select[disabled],select[readonly],textarea[disabled],textarea[readonly]{cursor:not-allowed;background-color:#fafafa}input[type=checkbox][disabled],input[type=radio][disabled]{cursor:not-allowed}.wy-checkbox,.wy-radio{margin:6px 0;color:#404040;display:block}.wy-checkbox input,.wy-radio input{vertical-align:baseline}.wy-form-message-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle}.wy-input-prefix,.wy-input-suffix{white-space:nowrap;padding:6px}.wy-input-prefix .wy-input-context,.wy-input-suffix .wy-input-context{line-height:27px;padding:0 8px;display:inline-block;font-size:80%;background-color:#f3f6f6;border:1px solid #ccc;color:#999}.wy-input-suffix .wy-input-context{border-left:0}.wy-input-prefix .wy-input-context{border-right:0}.wy-switch{position:relative;display:block;height:24px;margin-top:12px;cursor:pointer}.wy-switch:before{left:0;top:0;width:36px;height:12px;background:#ccc}.wy-switch:after,.wy-switch:before{position:absolute;content:"";display:block;border-radius:4px;-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.wy-switch:after{width:18px;height:18px;background:#999;left:-3px;top:-3px}.wy-switch span{position:absolute;left:48px;display:block;font-size:12px;color:#ccc;line-height:1}.wy-switch.active:before{background:#1e8449}.wy-switch.active:after{left:24px;background:#27ae60}.wy-switch.disabled{cursor:not-allowed;opacity:.8}.wy-control-group.wy-control-group-error .wy-form-message,.wy-control-group.wy-control-group-error>label{color:#e74c3c}.wy-control-group.wy-control-group-error input[type=color],.wy-control-group.wy-control-group-error input[type=date],.wy-control-group.wy-control-group-error input[type=datetime-local],.wy-control-group.wy-control-group-error input[type=datetime],.wy-control-group.wy-control-group-error input[type=email],.wy-control-group.wy-control-group-error input[type=month],.wy-control-group.wy-control-group-error input[type=number],.wy-control-group.wy-control-group-error input[type=password],.wy-control-group.wy-control-group-error input[type=search],.wy-control-group.wy-control-group-error input[type=tel],.wy-control-group.wy-control-group-error input[type=text],.wy-control-group.wy-control-group-error input[type=time],.wy-control-group.wy-control-group-error input[type=url],.wy-control-group.wy-control-group-error input[type=week],.wy-control-group.wy-control-group-error textarea{border:1px solid #e74c3c}.wy-inline-validate{white-space:nowrap}.wy-inline-validate .wy-input-context{padding:.5em .625em;display:inline-block;font-size:80%}.wy-inline-validate.wy-inline-validate-success .wy-input-context{color:#27ae60}.wy-inline-validate.wy-inline-validate-danger .wy-input-context{color:#e74c3c}.wy-inline-validate.wy-inline-validate-warning .wy-input-context{color:#e67e22}.wy-inline-validate.wy-inline-validate-info .wy-input-context{color:#2980b9}.rotate-90{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.rotate-180{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.rotate-270{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.mirror{-webkit-transform:scaleX(-1);-moz-transform:scaleX(-1);-ms-transform:scaleX(-1);-o-transform:scaleX(-1);transform:scaleX(-1)}.mirror.rotate-90{-webkit-transform:scaleX(-1) rotate(90deg);-moz-transform:scaleX(-1) rotate(90deg);-ms-transform:scaleX(-1) rotate(90deg);-o-transform:scaleX(-1) rotate(90deg);transform:scaleX(-1) rotate(90deg)}.mirror.rotate-180{-webkit-transform:scaleX(-1) rotate(180deg);-moz-transform:scaleX(-1) rotate(180deg);-ms-transform:scaleX(-1) rotate(180deg);-o-transform:scaleX(-1) rotate(180deg);transform:scaleX(-1) rotate(180deg)}.mirror.rotate-270{-webkit-transform:scaleX(-1) rotate(270deg);-moz-transform:scaleX(-1) rotate(270deg);-ms-transform:scaleX(-1) rotate(270deg);-o-transform:scaleX(-1) rotate(270deg);transform:scaleX(-1) rotate(270deg)}@media only screen and (max-width:480px){.wy-form button[type=submit]{margin:.7em 0 0}.wy-form input[type=color],.wy-form input[type=date],.wy-form input[type=datetime-local],.wy-form input[type=datetime],.wy-form input[type=email],.wy-form input[type=month],.wy-form input[type=number],.wy-form input[type=password],.wy-form input[type=search],.wy-form input[type=tel],.wy-form input[type=text],.wy-form input[type=time],.wy-form input[type=url],.wy-form input[type=week],.wy-form label{margin-bottom:.3em;display:block}.wy-form input[type=color],.wy-form input[type=date],.wy-form input[type=datetime-local],.wy-form input[type=datetime],.wy-form input[type=email],.wy-form input[type=month],.wy-form input[type=number],.wy-form input[type=password],.wy-form input[type=search],.wy-form input[type=tel],.wy-form input[type=time],.wy-form input[type=url],.wy-form input[type=week]{margin-bottom:0}.wy-form-aligned .wy-control-group label{margin-bottom:.3em;text-align:left;display:block;width:100%}.wy-form-aligned .wy-control{margin:1.5em 0 0}.wy-form-message,.wy-form-message-inline,.wy-form .wy-help-inline{display:block;font-size:80%;padding:6px 0}}@media screen and (max-width:768px){.tablet-hide{display:none}}@media screen and (max-width:480px){.mobile-hide{display:none}}.float-left{float:left}.float-right{float:right}.full-width{width:100%}.rst-content table.docutils,.rst-content table.field-list,.wy-table{border-collapse:collapse;border-spacing:0;empty-cells:show;margin-bottom:24px}.rst-content table.docutils caption,.rst-content table.field-list caption,.wy-table caption{color:#000;font:italic 85%/1 arial,sans-serif;padding:1em 0;text-align:center}.rst-content table.docutils td,.rst-content table.docutils th,.rst-content table.field-list td,.rst-content table.field-list th,.wy-table td,.wy-table th{font-size:90%;margin:0;overflow:visible;padding:8px 16px}.rst-content table.docutils td:first-child,.rst-content table.docutils th:first-child,.rst-content table.field-list td:first-child,.rst-content table.field-list th:first-child,.wy-table td:first-child,.wy-table th:first-child{border-left-width:0}.rst-content table.docutils thead,.rst-content table.field-list thead,.wy-table thead{color:#000;text-align:left;vertical-align:bottom;white-space:nowrap}.rst-content table.docutils thead th,.rst-content table.field-list thead th,.wy-table thead th{font-weight:700;border-bottom:2px solid #e1e4e5}.rst-content table.docutils td,.rst-content table.field-list td,.wy-table td{background-color:transparent;vertical-align:middle}.rst-content table.docutils td p,.rst-content table.field-list td p,.wy-table td p{line-height:18px}.rst-content table.docutils td p:last-child,.rst-content table.field-list td p:last-child,.wy-table td p:last-child{margin-bottom:0}.rst-content table.docutils .wy-table-cell-min,.rst-content table.field-list .wy-table-cell-min,.wy-table .wy-table-cell-min{width:1%;padding-right:0}.rst-content table.docutils .wy-table-cell-min input[type=checkbox],.rst-content table.field-list .wy-table-cell-min input[type=checkbox],.wy-table .wy-table-cell-min input[type=checkbox]{margin:0}.wy-table-secondary{color:grey;font-size:90%}.wy-table-tertiary{color:grey;font-size:80%}.rst-content table.docutils:not(.field-list) tr:nth-child(2n-1) td,.wy-table-backed,.wy-table-odd td,.wy-table-striped tr:nth-child(2n-1) td{background-color:#f3f6f6}.rst-content table.docutils,.wy-table-bordered-all{border:1px solid #e1e4e5}.rst-content table.docutils td,.wy-table-bordered-all td{border-bottom:1px solid #e1e4e5;border-left:1px solid #e1e4e5}.rst-content table.docutils tbody>tr:last-child td,.wy-table-bordered-all tbody>tr:last-child td{border-bottom-width:0}.wy-table-bordered{border:1px solid #e1e4e5}.wy-table-bordered-rows td{border-bottom:1px solid #e1e4e5}.wy-table-bordered-rows tbody>tr:last-child td{border-bottom-width:0}.wy-table-horizontal td,.wy-table-horizontal th{border-width:0 0 1px;border-bottom:1px solid #e1e4e5}.wy-table-horizontal tbody>tr:last-child td{border-bottom-width:0}.wy-table-responsive{margin-bottom:24px;max-width:100%;overflow:auto}.wy-table-responsive table{margin-bottom:0!important}.wy-table-responsive table td,.wy-table-responsive table th{white-space:nowrap}a{color:#2980b9;text-decoration:none;cursor:pointer}a:hover{color:#3091d1}a:visited{color:#9b59b6}html{height:100%}body,html{overflow-x:hidden}body{font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;font-weight:400;color:#404040;min-height:100%;background:#edf0f2}.wy-text-left{text-align:left}.wy-text-center{text-align:center}.wy-text-right{text-align:right}.wy-text-large{font-size:120%}.wy-text-normal{font-size:100%}.wy-text-small,small{font-size:80%}.wy-text-strike{text-decoration:line-through}.wy-text-warning{color:#e67e22!important}a.wy-text-warning:hover{color:#eb9950!important}.wy-text-info{color:#2980b9!important}a.wy-text-info:hover{color:#409ad5!important}.wy-text-success{color:#27ae60!important}a.wy-text-success:hover{color:#36d278!important}.wy-text-danger{color:#e74c3c!important}a.wy-text-danger:hover{color:#ed7669!important}.wy-text-neutral{color:#404040!important}a.wy-text-neutral:hover{color:#595959!important}.rst-content .toctree-wrapper>p.caption,h1,h2,h3,h4,h5,h6,legend{margin-top:0;font-weight:700;font-family:Roboto Slab,ff-tisa-web-pro,Georgia,Arial,sans-serif}p{line-height:24px;font-size:16px;margin:0 0 24px}h1{font-size:175%}.rst-content .toctree-wrapper>p.caption,h2{font-size:150%}h3{font-size:125%}h4{font-size:115%}h5{font-size:110%}h6{font-size:100%}hr{display:block;height:1px;border:0;border-top:1px solid #e1e4e5;margin:24px 0;padding:0}.rst-content code,.rst-content tt,code{white-space:nowrap;max-width:100%;background:#fff;border:1px solid #e1e4e5;font-size:75%;padding:0 5px;font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;color:#e74c3c;overflow-x:auto}.rst-content tt.code-large,code.code-large{font-size:90%}.rst-content .section ul,.rst-content .toctree-wrapper ul,.rst-content section ul,.wy-plain-list-disc,article ul{list-style:disc;line-height:24px;margin-bottom:24px}.rst-content .section ul li,.rst-content .toctree-wrapper ul li,.rst-content section ul li,.wy-plain-list-disc li,article ul li{list-style:disc;margin-left:24px}.rst-content .section ul li p:last-child,.rst-content .section ul li ul,.rst-content .toctree-wrapper ul li p:last-child,.rst-content .toctree-wrapper ul li ul,.rst-content section ul li p:last-child,.rst-content section ul li ul,.wy-plain-list-disc li p:last-child,.wy-plain-list-disc li ul,article ul li p:last-child,article ul li ul{margin-bottom:0}.rst-content .section ul li li,.rst-content .toctree-wrapper ul li li,.rst-content section ul li li,.wy-plain-list-disc li li,article ul li li{list-style:circle}.rst-content .section ul li li li,.rst-content .toctree-wrapper ul li li li,.rst-content section ul li li li,.wy-plain-list-disc li li li,article ul li li li{list-style:square}.rst-content .section ul li ol li,.rst-content .toctree-wrapper ul li ol li,.rst-content section ul li ol li,.wy-plain-list-disc li ol li,article ul li ol li{list-style:decimal}.rst-content .section ol,.rst-content .section ol.arabic,.rst-content .toctree-wrapper ol,.rst-content .toctree-wrapper ol.arabic,.rst-content section ol,.rst-content section ol.arabic,.wy-plain-list-decimal,article ol{list-style:decimal;line-height:24px;margin-bottom:24px}.rst-content .section ol.arabic li,.rst-content .section ol li,.rst-content .toctree-wrapper ol.arabic li,.rst-content .toctree-wrapper ol li,.rst-content section ol.arabic li,.rst-content section ol li,.wy-plain-list-decimal li,article ol li{list-style:decimal;margin-left:24px}.rst-content .section ol.arabic li ul,.rst-content .section ol li p:last-child,.rst-content .section ol li ul,.rst-content .toctree-wrapper ol.arabic li ul,.rst-content .toctree-wrapper ol li p:last-child,.rst-content .toctree-wrapper ol li ul,.rst-content section ol.arabic li ul,.rst-content section ol li p:last-child,.rst-content section ol li ul,.wy-plain-list-decimal li p:last-child,.wy-plain-list-decimal li ul,article ol li p:last-child,article ol li ul{margin-bottom:0}.rst-content .section ol.arabic li ul li,.rst-content .section ol li ul li,.rst-content .toctree-wrapper ol.arabic li ul li,.rst-content .toctree-wrapper ol li ul li,.rst-content section ol.arabic li ul li,.rst-content section ol li ul li,.wy-plain-list-decimal li ul li,article ol li ul li{list-style:disc}.wy-breadcrumbs{*zoom:1}.wy-breadcrumbs:after,.wy-breadcrumbs:before{display:table;content:""}.wy-breadcrumbs:after{clear:both}.wy-breadcrumbs>li{display:inline-block;padding-top:5px}.wy-breadcrumbs>li.wy-breadcrumbs-aside{float:right}.rst-content .wy-breadcrumbs>li code,.rst-content .wy-breadcrumbs>li tt,.wy-breadcrumbs>li .rst-content tt,.wy-breadcrumbs>li code{all:inherit;color:inherit}.breadcrumb-item:before{content:"/";color:#bbb;font-size:13px;padding:0 6px 0 3px}.wy-breadcrumbs-extra{margin-bottom:0;color:#b3b3b3;font-size:80%;display:inline-block}@media screen and (max-width:480px){.wy-breadcrumbs-extra,.wy-breadcrumbs li.wy-breadcrumbs-aside{display:none}}@media print{.wy-breadcrumbs li.wy-breadcrumbs-aside{display:none}}html{font-size:16px}.wy-affix{position:fixed;top:1.618em}.wy-menu a:hover{text-decoration:none}.wy-menu-horiz{*zoom:1}.wy-menu-horiz:after,.wy-menu-horiz:before{display:table;content:""}.wy-menu-horiz:after{clear:both}.wy-menu-horiz li,.wy-menu-horiz ul{display:inline-block}.wy-menu-horiz li:hover{background:hsla(0,0%,100%,.1)}.wy-menu-horiz li.divide-left{border-left:1px solid #404040}.wy-menu-horiz li.divide-right{border-right:1px solid #404040}.wy-menu-horiz a{height:32px;display:inline-block;line-height:32px;padding:0 16px}.wy-menu-vertical{width:300px}.wy-menu-vertical header,.wy-menu-vertical p.caption{color:#55a5d9;height:32px;line-height:32px;padding:0 1.618em;margin:12px 0 0;display:block;font-weight:700;text-transform:uppercase;font-size:85%;white-space:nowrap}.wy-menu-vertical ul{margin-bottom:0}.wy-menu-vertical li.divide-top{border-top:1px solid #404040}.wy-menu-vertical li.divide-bottom{border-bottom:1px solid #404040}.wy-menu-vertical li.current{background:#e3e3e3}.wy-menu-vertical li.current a{color:grey;border-right:1px solid #c9c9c9;padding:.4045em 2.427em}.wy-menu-vertical li.current a:hover{background:#d6d6d6}.rst-content .wy-menu-vertical li tt,.wy-menu-vertical li .rst-content tt,.wy-menu-vertical li code{border:none;background:inherit;color:inherit;padding-left:0;padding-right:0}.wy-menu-vertical li button.toctree-expand{display:block;float:left;margin-left:-1.2em;line-height:18px;color:#4d4d4d;border:none;background:none;padding:0}.wy-menu-vertical li.current>a,.wy-menu-vertical li.on a{color:#404040;font-weight:700;position:relative;background:#fcfcfc;border:none;padding:.4045em 1.618em}.wy-menu-vertical li.current>a:hover,.wy-menu-vertical li.on a:hover{background:#fcfcfc}.wy-menu-vertical li.current>a:hover button.toctree-expand,.wy-menu-vertical li.on a:hover button.toctree-expand{color:grey}.wy-menu-vertical li.current>a button.toctree-expand,.wy-menu-vertical li.on a button.toctree-expand{display:block;line-height:18px;color:#333}.wy-menu-vertical li.toctree-l1.current>a{border-bottom:1px solid #c9c9c9;border-top:1px solid #c9c9c9}.wy-menu-vertical .toctree-l1.current .toctree-l2>ul,.wy-menu-vertical .toctree-l2.current .toctree-l3>ul,.wy-menu-vertical .toctree-l3.current .toctree-l4>ul,.wy-menu-vertical .toctree-l4.current .toctree-l5>ul,.wy-menu-vertical .toctree-l5.current .toctree-l6>ul,.wy-menu-vertical .toctree-l6.current .toctree-l7>ul,.wy-menu-vertical .toctree-l7.current .toctree-l8>ul,.wy-menu-vertical .toctree-l8.current .toctree-l9>ul,.wy-menu-vertical .toctree-l9.current .toctree-l10>ul,.wy-menu-vertical .toctree-l10.current .toctree-l11>ul{display:none}.wy-menu-vertical .toctree-l1.current .current.toctree-l2>ul,.wy-menu-vertical .toctree-l2.current .current.toctree-l3>ul,.wy-menu-vertical .toctree-l3.current .current.toctree-l4>ul,.wy-menu-vertical .toctree-l4.current .current.toctree-l5>ul,.wy-menu-vertical .toctree-l5.current .current.toctree-l6>ul,.wy-menu-vertical .toctree-l6.current .current.toctree-l7>ul,.wy-menu-vertical .toctree-l7.current .current.toctree-l8>ul,.wy-menu-vertical .toctree-l8.current .current.toctree-l9>ul,.wy-menu-vertical .toctree-l9.current .current.toctree-l10>ul,.wy-menu-vertical .toctree-l10.current .current.toctree-l11>ul{display:block}.wy-menu-vertical li.toctree-l3,.wy-menu-vertical li.toctree-l4{font-size:.9em}.wy-menu-vertical li.toctree-l2 a,.wy-menu-vertical li.toctree-l3 a,.wy-menu-vertical li.toctree-l4 a,.wy-menu-vertical li.toctree-l5 a,.wy-menu-vertical li.toctree-l6 a,.wy-menu-vertical li.toctree-l7 a,.wy-menu-vertical li.toctree-l8 a,.wy-menu-vertical li.toctree-l9 a,.wy-menu-vertical li.toctree-l10 a{color:#404040}.wy-menu-vertical li.toctree-l2 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l3 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l4 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l5 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l6 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l7 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l8 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l9 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l10 a:hover button.toctree-expand{color:grey}.wy-menu-vertical li.toctree-l2.current li.toctree-l3>a,.wy-menu-vertical li.toctree-l3.current li.toctree-l4>a,.wy-menu-vertical li.toctree-l4.current li.toctree-l5>a,.wy-menu-vertical li.toctree-l5.current li.toctree-l6>a,.wy-menu-vertical li.toctree-l6.current li.toctree-l7>a,.wy-menu-vertical li.toctree-l7.current li.toctree-l8>a,.wy-menu-vertical li.toctree-l8.current li.toctree-l9>a,.wy-menu-vertical li.toctree-l9.current li.toctree-l10>a,.wy-menu-vertical li.toctree-l10.current li.toctree-l11>a{display:block}.wy-menu-vertical li.toctree-l2.current>a{padding:.4045em 2.427em}.wy-menu-vertical li.toctree-l2.current li.toctree-l3>a{padding:.4045em 1.618em .4045em 4.045em}.wy-menu-vertical li.toctree-l3.current>a{padding:.4045em 4.045em}.wy-menu-vertical li.toctree-l3.current li.toctree-l4>a{padding:.4045em 1.618em .4045em 5.663em}.wy-menu-vertical li.toctree-l4.current>a{padding:.4045em 5.663em}.wy-menu-vertical li.toctree-l4.current li.toctree-l5>a{padding:.4045em 1.618em .4045em 7.281em}.wy-menu-vertical li.toctree-l5.current>a{padding:.4045em 7.281em}.wy-menu-vertical li.toctree-l5.current li.toctree-l6>a{padding:.4045em 1.618em .4045em 8.899em}.wy-menu-vertical li.toctree-l6.current>a{padding:.4045em 8.899em}.wy-menu-vertical li.toctree-l6.current li.toctree-l7>a{padding:.4045em 1.618em .4045em 10.517em}.wy-menu-vertical li.toctree-l7.current>a{padding:.4045em 10.517em}.wy-menu-vertical li.toctree-l7.current li.toctree-l8>a{padding:.4045em 1.618em .4045em 12.135em}.wy-menu-vertical li.toctree-l8.current>a{padding:.4045em 12.135em}.wy-menu-vertical li.toctree-l8.current li.toctree-l9>a{padding:.4045em 1.618em .4045em 13.753em}.wy-menu-vertical li.toctree-l9.current>a{padding:.4045em 13.753em}.wy-menu-vertical li.toctree-l9.current li.toctree-l10>a{padding:.4045em 1.618em .4045em 15.371em}.wy-menu-vertical li.toctree-l10.current>a{padding:.4045em 15.371em}.wy-menu-vertical li.toctree-l10.current li.toctree-l11>a{padding:.4045em 1.618em .4045em 16.989em}.wy-menu-vertical li.toctree-l2.current>a,.wy-menu-vertical li.toctree-l2.current li.toctree-l3>a{background:#c9c9c9}.wy-menu-vertical li.toctree-l2 button.toctree-expand{color:#a3a3a3}.wy-menu-vertical li.toctree-l3.current>a,.wy-menu-vertical li.toctree-l3.current li.toctree-l4>a{background:#bdbdbd}.wy-menu-vertical li.toctree-l3 button.toctree-expand{color:#969696}.wy-menu-vertical li.current ul{display:block}.wy-menu-vertical li ul{margin-bottom:0;display:none}.wy-menu-vertical li ul li a{margin-bottom:0;color:#d9d9d9;font-weight:400}.wy-menu-vertical a{line-height:18px;padding:.4045em 1.618em;display:block;position:relative;font-size:90%;color:#d9d9d9}.wy-menu-vertical a:hover{background-color:#4e4a4a;cursor:pointer}.wy-menu-vertical a:hover button.toctree-expand{color:#d9d9d9}.wy-menu-vertical a:active{background-color:#2980b9;cursor:pointer;color:#fff}.wy-menu-vertical a:active button.toctree-expand{color:#fff}.wy-side-nav-search{display:block;width:300px;padding:.809em;margin-bottom:.809em;z-index:200;background-color:#2980b9;text-align:center;color:#fcfcfc}.wy-side-nav-search input[type=text]{width:100%;border-radius:50px;padding:6px 12px;border-color:#2472a4}.wy-side-nav-search img{display:block;margin:auto auto .809em;height:45px;width:45px;background-color:#2980b9;padding:5px;border-radius:100%}.wy-side-nav-search .wy-dropdown>a,.wy-side-nav-search>a{color:#fcfcfc;font-size:100%;font-weight:700;display:inline-block;padding:4px 6px;margin-bottom:.809em;max-width:100%}.wy-side-nav-search .wy-dropdown>a:hover,.wy-side-nav-search>a:hover{background:hsla(0,0%,100%,.1)}.wy-side-nav-search .wy-dropdown>a img.logo,.wy-side-nav-search>a img.logo{display:block;margin:0 auto;height:auto;width:auto;border-radius:0;max-width:100%;background:transparent}.wy-side-nav-search .wy-dropdown>a.icon img.logo,.wy-side-nav-search>a.icon img.logo{margin-top:.85em}.wy-side-nav-search>div.version{margin-top:-.4045em;margin-bottom:.809em;font-weight:400;color:hsla(0,0%,100%,.3)}.wy-nav .wy-menu-vertical header{color:#2980b9}.wy-nav .wy-menu-vertical a{color:#b3b3b3}.wy-nav .wy-menu-vertical a:hover{background-color:#2980b9;color:#fff}[data-menu-wrap]{-webkit-transition:all .2s ease-in;-moz-transition:all .2s ease-in;transition:all .2s ease-in;position:absolute;opacity:1;width:100%;opacity:0}[data-menu-wrap].move-center{left:0;right:auto;opacity:1}[data-menu-wrap].move-left{right:auto;left:-100%;opacity:0}[data-menu-wrap].move-right{right:-100%;left:auto;opacity:0}.wy-body-for-nav{background:#fcfcfc}.wy-grid-for-nav{position:absolute;width:100%;height:100%}.wy-nav-side{position:fixed;top:0;bottom:0;left:0;padding-bottom:2em;width:300px;overflow-x:hidden;overflow-y:hidden;min-height:100%;color:#9b9b9b;background:#343131;z-index:200}.wy-side-scroll{width:320px;position:relative;overflow-x:hidden;overflow-y:scroll;height:100%}.wy-nav-top{display:none;background:#2980b9;color:#fff;padding:.4045em .809em;position:relative;line-height:50px;text-align:center;font-size:100%;*zoom:1}.wy-nav-top:after,.wy-nav-top:before{display:table;content:""}.wy-nav-top:after{clear:both}.wy-nav-top a{color:#fff;font-weight:700}.wy-nav-top img{margin-right:12px;height:45px;width:45px;background-color:#2980b9;padding:5px;border-radius:100%}.wy-nav-top i{font-size:30px;float:left;cursor:pointer;padding-top:inherit}.wy-nav-content-wrap{margin-left:300px;background:#fcfcfc;min-height:100%}.wy-nav-content{padding:1.618em 3.236em;height:100%;max-width:800px;margin:auto}.wy-body-mask{position:fixed;width:100%;height:100%;background:rgba(0,0,0,.2);display:none;z-index:499}.wy-body-mask.on{display:block}footer{color:grey}footer p{margin-bottom:12px}.rst-content footer span.commit tt,footer span.commit .rst-content tt,footer span.commit code{padding:0;font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;font-size:1em;background:none;border:none;color:grey}.rst-footer-buttons{*zoom:1}.rst-footer-buttons:after,.rst-footer-buttons:before{width:100%;display:table;content:""}.rst-footer-buttons:after{clear:both}.rst-breadcrumbs-buttons{margin-top:12px;*zoom:1}.rst-breadcrumbs-buttons:after,.rst-breadcrumbs-buttons:before{display:table;content:""}.rst-breadcrumbs-buttons:after{clear:both}#search-results .search li{margin-bottom:24px;border-bottom:1px solid #e1e4e5;padding-bottom:24px}#search-results .search li:first-child{border-top:1px solid #e1e4e5;padding-top:24px}#search-results .search li a{font-size:120%;margin-bottom:12px;display:inline-block}#search-results .context{color:grey;font-size:90%}.genindextable li>ul{margin-left:24px}@media screen and (max-width:768px){.wy-body-for-nav{background:#fcfcfc}.wy-nav-top{display:block}.wy-nav-side{left:-300px}.wy-nav-side.shift{width:85%;left:0}.wy-menu.wy-menu-vertical,.wy-side-nav-search,.wy-side-scroll{width:auto}.wy-nav-content-wrap{margin-left:0}.wy-nav-content-wrap .wy-nav-content{padding:1.618em}.wy-nav-content-wrap.shift{position:fixed;min-width:100%;left:85%;top:0;height:100%;overflow:hidden}}@media screen and (min-width:1100px){.wy-nav-content-wrap{background:rgba(0,0,0,.05)}.wy-nav-content{margin:0;background:#fcfcfc}}@media print{.rst-versions,.wy-nav-side,footer{display:none}.wy-nav-content-wrap{margin-left:0}}.rst-versions{position:fixed;bottom:0;left:0;width:300px;color:#fcfcfc;background:#1f1d1d;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;z-index:400}.rst-versions a{color:#2980b9;text-decoration:none}.rst-versions .rst-badge-small{display:none}.rst-versions .rst-current-version{padding:12px;background-color:#272525;display:block;text-align:right;font-size:90%;cursor:pointer;color:#27ae60;*zoom:1}.rst-versions .rst-current-version:after,.rst-versions .rst-current-version:before{display:table;content:""}.rst-versions .rst-current-version:after{clear:both}.rst-content .code-block-caption .rst-versions .rst-current-version .headerlink,.rst-content .eqno .rst-versions .rst-current-version .headerlink,.rst-content .rst-versions .rst-current-version .admonition-title,.rst-content code.download .rst-versions .rst-current-version span:first-child,.rst-content dl dt .rst-versions .rst-current-version .headerlink,.rst-content h1 .rst-versions .rst-current-version .headerlink,.rst-content h2 .rst-versions .rst-current-version .headerlink,.rst-content h3 .rst-versions .rst-current-version .headerlink,.rst-content h4 .rst-versions .rst-current-version .headerlink,.rst-content h5 .rst-versions .rst-current-version .headerlink,.rst-content h6 .rst-versions .rst-current-version .headerlink,.rst-content p .rst-versions .rst-current-version .headerlink,.rst-content table>caption .rst-versions .rst-current-version .headerlink,.rst-content tt.download .rst-versions .rst-current-version span:first-child,.rst-versions .rst-current-version .fa,.rst-versions .rst-current-version .icon,.rst-versions .rst-current-version .rst-content .admonition-title,.rst-versions .rst-current-version .rst-content .code-block-caption .headerlink,.rst-versions .rst-current-version .rst-content .eqno .headerlink,.rst-versions .rst-current-version .rst-content code.download span:first-child,.rst-versions .rst-current-version .rst-content dl dt .headerlink,.rst-versions .rst-current-version .rst-content h1 .headerlink,.rst-versions .rst-current-version .rst-content h2 .headerlink,.rst-versions .rst-current-version .rst-content h3 .headerlink,.rst-versions .rst-current-version .rst-content h4 .headerlink,.rst-versions .rst-current-version .rst-content h5 .headerlink,.rst-versions .rst-current-version .rst-content h6 .headerlink,.rst-versions .rst-current-version .rst-content p .headerlink,.rst-versions .rst-current-version .rst-content table>caption .headerlink,.rst-versions .rst-current-version .rst-content tt.download span:first-child,.rst-versions .rst-current-version .wy-menu-vertical li button.toctree-expand,.wy-menu-vertical li .rst-versions .rst-current-version button.toctree-expand{color:#fcfcfc}.rst-versions .rst-current-version .fa-book,.rst-versions .rst-current-version .icon-book{float:left}.rst-versions .rst-current-version.rst-out-of-date{background-color:#e74c3c;color:#fff}.rst-versions .rst-current-version.rst-active-old-version{background-color:#f1c40f;color:#000}.rst-versions.shift-up{height:auto;max-height:100%;overflow-y:scroll}.rst-versions.shift-up .rst-other-versions{display:block}.rst-versions .rst-other-versions{font-size:90%;padding:12px;color:grey;display:none}.rst-versions .rst-other-versions hr{display:block;height:1px;border:0;margin:20px 0;padding:0;border-top:1px solid #413d3d}.rst-versions .rst-other-versions dd{display:inline-block;margin:0}.rst-versions .rst-other-versions dd a{display:inline-block;padding:6px;color:#fcfcfc}.rst-versions.rst-badge{width:auto;bottom:20px;right:20px;left:auto;border:none;max-width:300px;max-height:90%}.rst-versions.rst-badge .fa-book,.rst-versions.rst-badge .icon-book{float:none;line-height:30px}.rst-versions.rst-badge.shift-up .rst-current-version{text-align:right}.rst-versions.rst-badge.shift-up .rst-current-version .fa-book,.rst-versions.rst-badge.shift-up .rst-current-version .icon-book{float:left}.rst-versions.rst-badge>.rst-current-version{width:auto;height:30px;line-height:30px;padding:0 6px;display:block;text-align:center}@media screen and (max-width:768px){.rst-versions{width:85%;display:none}.rst-versions.shift{display:block}}.rst-content .toctree-wrapper>p.caption,.rst-content h1,.rst-content h2,.rst-content h3,.rst-content h4,.rst-content h5,.rst-content h6{margin-bottom:24px}.rst-content img{max-width:100%;height:auto}.rst-content div.figure,.rst-content figure{margin-bottom:24px}.rst-content div.figure .caption-text,.rst-content figure .caption-text{font-style:italic}.rst-content div.figure p:last-child.caption,.rst-content figure p:last-child.caption{margin-bottom:0}.rst-content div.figure.align-center,.rst-content figure.align-center{text-align:center}.rst-content .section>a>img,.rst-content .section>img,.rst-content section>a>img,.rst-content section>img{margin-bottom:24px}.rst-content abbr[title]{text-decoration:none}.rst-content.style-external-links a.reference.external:after{font-family:FontAwesome;content:"\f08e";color:#b3b3b3;vertical-align:super;font-size:60%;margin:0 .2em}.rst-content blockquote{margin-left:24px;line-height:24px;margin-bottom:24px}.rst-content pre.literal-block{white-space:pre;margin:0;padding:12px;font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;display:block;overflow:auto}.rst-content div[class^=highlight],.rst-content pre.literal-block{border:1px solid #e1e4e5;overflow-x:auto;margin:1px 0 24px}.rst-content div[class^=highlight] div[class^=highlight],.rst-content pre.literal-block div[class^=highlight]{padding:0;border:none;margin:0}.rst-content div[class^=highlight] td.code{width:100%}.rst-content .linenodiv pre{border-right:1px solid #e6e9ea;margin:0;padding:12px;font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;user-select:none;pointer-events:none}.rst-content div[class^=highlight] pre{white-space:pre;margin:0;padding:12px;display:block;overflow:auto}.rst-content div[class^=highlight] pre .hll{display:block;margin:0 -12px;padding:0 12px}.rst-content .linenodiv pre,.rst-content div[class^=highlight] pre,.rst-content pre.literal-block{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;font-size:12px;line-height:1.4}.rst-content div.highlight .gp,.rst-content div.highlight span.linenos{user-select:none;pointer-events:none}.rst-content div.highlight span.linenos{display:inline-block;padding-left:0;padding-right:12px;margin-right:12px;border-right:1px solid #e6e9ea}.rst-content .code-block-caption{font-style:italic;font-size:85%;line-height:1;padding:1em 0;text-align:center}@media print{.rst-content .codeblock,.rst-content div[class^=highlight],.rst-content div[class^=highlight] pre{white-space:pre-wrap}}.rst-content .admonition,.rst-content .admonition-todo,.rst-content .attention,.rst-content .caution,.rst-content .danger,.rst-content .error,.rst-content .hint,.rst-content .important,.rst-content .note,.rst-content .seealso,.rst-content .tip,.rst-content .warning{clear:both}.rst-content .admonition-todo .last,.rst-content .admonition-todo>:last-child,.rst-content .admonition .last,.rst-content .admonition>:last-child,.rst-content .attention .last,.rst-content .attention>:last-child,.rst-content .caution .last,.rst-content .caution>:last-child,.rst-content .danger .last,.rst-content .danger>:last-child,.rst-content .error .last,.rst-content .error>:last-child,.rst-content .hint .last,.rst-content .hint>:last-child,.rst-content .important .last,.rst-content .important>:last-child,.rst-content .note .last,.rst-content .note>:last-child,.rst-content .seealso .last,.rst-content .seealso>:last-child,.rst-content .tip .last,.rst-content .tip>:last-child,.rst-content .warning .last,.rst-content .warning>:last-child{margin-bottom:0}.rst-content .admonition-title:before{margin-right:4px}.rst-content .admonition table{border-color:rgba(0,0,0,.1)}.rst-content .admonition table td,.rst-content .admonition table th{background:transparent!important;border-color:rgba(0,0,0,.1)!important}.rst-content .section ol.loweralpha,.rst-content .section ol.loweralpha>li,.rst-content .toctree-wrapper ol.loweralpha,.rst-content .toctree-wrapper ol.loweralpha>li,.rst-content section ol.loweralpha,.rst-content section ol.loweralpha>li{list-style:lower-alpha}.rst-content .section ol.upperalpha,.rst-content .section ol.upperalpha>li,.rst-content .toctree-wrapper ol.upperalpha,.rst-content .toctree-wrapper ol.upperalpha>li,.rst-content section ol.upperalpha,.rst-content section ol.upperalpha>li{list-style:upper-alpha}.rst-content .section ol li>*,.rst-content .section ul li>*,.rst-content .toctree-wrapper ol li>*,.rst-content .toctree-wrapper ul li>*,.rst-content section ol li>*,.rst-content section ul li>*{margin-top:12px;margin-bottom:12px}.rst-content .section ol li>:first-child,.rst-content .section ul li>:first-child,.rst-content .toctree-wrapper ol li>:first-child,.rst-content .toctree-wrapper ul li>:first-child,.rst-content section ol li>:first-child,.rst-content section ul li>:first-child{margin-top:0}.rst-content .section ol li>p,.rst-content .section ol li>p:last-child,.rst-content .section ul li>p,.rst-content .section ul li>p:last-child,.rst-content .toctree-wrapper ol li>p,.rst-content .toctree-wrapper ol li>p:last-child,.rst-content .toctree-wrapper ul li>p,.rst-content .toctree-wrapper ul li>p:last-child,.rst-content section ol li>p,.rst-content section ol li>p:last-child,.rst-content section ul li>p,.rst-content section ul li>p:last-child{margin-bottom:12px}.rst-content .section ol li>p:only-child,.rst-content .section ol li>p:only-child:last-child,.rst-content .section ul li>p:only-child,.rst-content .section ul li>p:only-child:last-child,.rst-content .toctree-wrapper ol li>p:only-child,.rst-content .toctree-wrapper ol li>p:only-child:last-child,.rst-content .toctree-wrapper ul li>p:only-child,.rst-content .toctree-wrapper ul li>p:only-child:last-child,.rst-content section ol li>p:only-child,.rst-content section ol li>p:only-child:last-child,.rst-content section ul li>p:only-child,.rst-content section ul li>p:only-child:last-child{margin-bottom:0}.rst-content .section ol li>ol,.rst-content .section ol li>ul,.rst-content .section ul li>ol,.rst-content .section ul li>ul,.rst-content .toctree-wrapper ol li>ol,.rst-content .toctree-wrapper ol li>ul,.rst-content .toctree-wrapper ul li>ol,.rst-content .toctree-wrapper ul li>ul,.rst-content section ol li>ol,.rst-content section ol li>ul,.rst-content section ul li>ol,.rst-content section ul li>ul{margin-bottom:12px}.rst-content .section ol.simple li>*,.rst-content .section ol.simple li ol,.rst-content .section ol.simple li ul,.rst-content .section ul.simple li>*,.rst-content .section ul.simple li ol,.rst-content .section ul.simple li ul,.rst-content .toctree-wrapper ol.simple li>*,.rst-content .toctree-wrapper ol.simple li ol,.rst-content .toctree-wrapper ol.simple li ul,.rst-content .toctree-wrapper ul.simple li>*,.rst-content .toctree-wrapper ul.simple li ol,.rst-content .toctree-wrapper ul.simple li ul,.rst-content section ol.simple li>*,.rst-content section ol.simple li ol,.rst-content section ol.simple li ul,.rst-content section ul.simple li>*,.rst-content section ul.simple li ol,.rst-content section ul.simple li ul{margin-top:0;margin-bottom:0}.rst-content .line-block{margin-left:0;margin-bottom:24px;line-height:24px}.rst-content .line-block .line-block{margin-left:24px;margin-bottom:0}.rst-content .topic-title{font-weight:700;margin-bottom:12px}.rst-content .toc-backref{color:#404040}.rst-content .align-right{float:right;margin:0 0 24px 24px}.rst-content .align-left{float:left;margin:0 24px 24px 0}.rst-content .align-center{margin:auto}.rst-content .align-center:not(table){display:block}.rst-content .code-block-caption .headerlink,.rst-content .eqno .headerlink,.rst-content .toctree-wrapper>p.caption .headerlink,.rst-content dl dt .headerlink,.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content p.caption .headerlink,.rst-content p .headerlink,.rst-content table>caption .headerlink{opacity:0;font-size:14px;font-family:FontAwesome;margin-left:.5em}.rst-content .code-block-caption .headerlink:focus,.rst-content .code-block-caption:hover .headerlink,.rst-content .eqno .headerlink:focus,.rst-content .eqno:hover .headerlink,.rst-content .toctree-wrapper>p.caption .headerlink:focus,.rst-content .toctree-wrapper>p.caption:hover .headerlink,.rst-content dl dt .headerlink:focus,.rst-content dl dt:hover .headerlink,.rst-content h1 .headerlink:focus,.rst-content h1:hover .headerlink,.rst-content h2 .headerlink:focus,.rst-content h2:hover .headerlink,.rst-content h3 .headerlink:focus,.rst-content h3:hover .headerlink,.rst-content h4 .headerlink:focus,.rst-content h4:hover .headerlink,.rst-content h5 .headerlink:focus,.rst-content h5:hover .headerlink,.rst-content h6 .headerlink:focus,.rst-content h6:hover .headerlink,.rst-content p.caption .headerlink:focus,.rst-content p.caption:hover .headerlink,.rst-content p .headerlink:focus,.rst-content p:hover .headerlink,.rst-content table>caption .headerlink:focus,.rst-content table>caption:hover .headerlink{opacity:1}.rst-content p a{overflow-wrap:anywhere}.rst-content .wy-table td p,.rst-content .wy-table td ul,.rst-content .wy-table th p,.rst-content .wy-table th ul,.rst-content table.docutils td p,.rst-content table.docutils td ul,.rst-content table.docutils th p,.rst-content table.docutils th ul,.rst-content table.field-list td p,.rst-content table.field-list td ul,.rst-content table.field-list th p,.rst-content table.field-list th ul{font-size:inherit}.rst-content .btn:focus{outline:2px solid}.rst-content table>caption .headerlink:after{font-size:12px}.rst-content .centered{text-align:center}.rst-content .sidebar{float:right;width:40%;display:block;margin:0 0 24px 24px;padding:24px;background:#f3f6f6;border:1px solid #e1e4e5}.rst-content .sidebar dl,.rst-content .sidebar p,.rst-content .sidebar ul{font-size:90%}.rst-content .sidebar .last,.rst-content .sidebar>:last-child{margin-bottom:0}.rst-content .sidebar .sidebar-title{display:block;font-family:Roboto Slab,ff-tisa-web-pro,Georgia,Arial,sans-serif;font-weight:700;background:#e1e4e5;padding:6px 12px;margin:-24px -24px 24px;font-size:100%}.rst-content .highlighted{background:#f1c40f;box-shadow:0 0 0 2px #f1c40f;display:inline;font-weight:700}.rst-content .citation-reference,.rst-content .footnote-reference{vertical-align:baseline;position:relative;top:-.4em;line-height:0;font-size:90%}.rst-content .citation-reference>span.fn-bracket,.rst-content .footnote-reference>span.fn-bracket{display:none}.rst-content .hlist{width:100%}.rst-content dl dt span.classifier:before{content:" : "}.rst-content dl dt span.classifier-delimiter{display:none!important}html.writer-html4 .rst-content table.docutils.citation,html.writer-html4 .rst-content table.docutils.footnote{background:none;border:none}html.writer-html4 .rst-content table.docutils.citation td,html.writer-html4 .rst-content table.docutils.citation tr,html.writer-html4 .rst-content table.docutils.footnote td,html.writer-html4 .rst-content table.docutils.footnote tr{border:none;background-color:transparent!important;white-space:normal}html.writer-html4 .rst-content table.docutils.citation td.label,html.writer-html4 .rst-content table.docutils.footnote td.label{padding-left:0;padding-right:0;vertical-align:top}html.writer-html5 .rst-content dl.citation,html.writer-html5 .rst-content dl.field-list,html.writer-html5 .rst-content dl.footnote{display:grid;grid-template-columns:auto minmax(80%,95%)}html.writer-html5 .rst-content dl.citation>dt,html.writer-html5 .rst-content dl.field-list>dt,html.writer-html5 .rst-content dl.footnote>dt{display:inline-grid;grid-template-columns:max-content auto}html.writer-html5 .rst-content aside.citation,html.writer-html5 .rst-content aside.footnote,html.writer-html5 .rst-content div.citation{display:grid;grid-template-columns:auto auto minmax(.65rem,auto) minmax(40%,95%)}html.writer-html5 .rst-content aside.citation>span.label,html.writer-html5 .rst-content aside.footnote>span.label,html.writer-html5 .rst-content div.citation>span.label{grid-column-start:1;grid-column-end:2}html.writer-html5 .rst-content aside.citation>span.backrefs,html.writer-html5 .rst-content aside.footnote>span.backrefs,html.writer-html5 .rst-content div.citation>span.backrefs{grid-column-start:2;grid-column-end:3;grid-row-start:1;grid-row-end:3}html.writer-html5 .rst-content aside.citation>p,html.writer-html5 .rst-content aside.footnote>p,html.writer-html5 .rst-content div.citation>p{grid-column-start:4;grid-column-end:5}html.writer-html5 .rst-content dl.citation,html.writer-html5 .rst-content dl.field-list,html.writer-html5 .rst-content dl.footnote{margin-bottom:24px}html.writer-html5 .rst-content dl.citation>dt,html.writer-html5 .rst-content dl.field-list>dt,html.writer-html5 .rst-content dl.footnote>dt{padding-left:1rem}html.writer-html5 .rst-content dl.citation>dd,html.writer-html5 .rst-content dl.citation>dt,html.writer-html5 .rst-content dl.field-list>dd,html.writer-html5 .rst-content dl.field-list>dt,html.writer-html5 .rst-content dl.footnote>dd,html.writer-html5 .rst-content dl.footnote>dt{margin-bottom:0}html.writer-html5 .rst-content dl.citation,html.writer-html5 .rst-content dl.footnote{font-size:.9rem}html.writer-html5 .rst-content dl.citation>dt,html.writer-html5 .rst-content dl.footnote>dt{margin:0 .5rem .5rem 0;line-height:1.2rem;word-break:break-all;font-weight:400}html.writer-html5 .rst-content dl.citation>dt>span.brackets:before,html.writer-html5 .rst-content dl.footnote>dt>span.brackets:before{content:"["}html.writer-html5 .rst-content dl.citation>dt>span.brackets:after,html.writer-html5 .rst-content dl.footnote>dt>span.brackets:after{content:"]"}html.writer-html5 .rst-content dl.citation>dt>span.fn-backref,html.writer-html5 .rst-content dl.footnote>dt>span.fn-backref{text-align:left;font-style:italic;margin-left:.65rem;word-break:break-word;word-spacing:-.1rem;max-width:5rem}html.writer-html5 .rst-content dl.citation>dt>span.fn-backref>a,html.writer-html5 .rst-content dl.footnote>dt>span.fn-backref>a{word-break:keep-all}html.writer-html5 .rst-content dl.citation>dt>span.fn-backref>a:not(:first-child):before,html.writer-html5 .rst-content dl.footnote>dt>span.fn-backref>a:not(:first-child):before{content:" "}html.writer-html5 .rst-content dl.citation>dd,html.writer-html5 .rst-content dl.footnote>dd{margin:0 0 .5rem;line-height:1.2rem}html.writer-html5 .rst-content dl.citation>dd p,html.writer-html5 .rst-content dl.footnote>dd p{font-size:.9rem}html.writer-html5 .rst-content aside.citation,html.writer-html5 .rst-content aside.footnote,html.writer-html5 .rst-content div.citation{padding-left:1rem;padding-right:1rem;font-size:.9rem;line-height:1.2rem}html.writer-html5 .rst-content aside.citation p,html.writer-html5 .rst-content aside.footnote p,html.writer-html5 .rst-content div.citation p{font-size:.9rem;line-height:1.2rem;margin-bottom:12px}html.writer-html5 .rst-content aside.citation span.backrefs,html.writer-html5 .rst-content aside.footnote span.backrefs,html.writer-html5 .rst-content div.citation span.backrefs{text-align:left;font-style:italic;margin-left:.65rem;word-break:break-word;word-spacing:-.1rem;max-width:5rem}html.writer-html5 .rst-content aside.citation span.backrefs>a,html.writer-html5 .rst-content aside.footnote span.backrefs>a,html.writer-html5 .rst-content div.citation span.backrefs>a{word-break:keep-all}html.writer-html5 .rst-content aside.citation span.backrefs>a:not(:first-child):before,html.writer-html5 .rst-content aside.footnote span.backrefs>a:not(:first-child):before,html.writer-html5 .rst-content div.citation span.backrefs>a:not(:first-child):before{content:" "}html.writer-html5 .rst-content aside.citation span.label,html.writer-html5 .rst-content aside.footnote span.label,html.writer-html5 .rst-content div.citation span.label{line-height:1.2rem}html.writer-html5 .rst-content aside.citation-list,html.writer-html5 .rst-content aside.footnote-list,html.writer-html5 .rst-content div.citation-list{margin-bottom:24px}html.writer-html5 .rst-content dl.option-list kbd{font-size:.9rem}.rst-content table.docutils.footnote,html.writer-html4 .rst-content table.docutils.citation,html.writer-html5 .rst-content aside.footnote,html.writer-html5 .rst-content aside.footnote-list aside.footnote,html.writer-html5 .rst-content div.citation-list>div.citation,html.writer-html5 .rst-content dl.citation,html.writer-html5 .rst-content dl.footnote{color:grey}.rst-content table.docutils.footnote code,.rst-content table.docutils.footnote tt,html.writer-html4 .rst-content table.docutils.citation code,html.writer-html4 .rst-content table.docutils.citation tt,html.writer-html5 .rst-content aside.footnote-list aside.footnote code,html.writer-html5 .rst-content aside.footnote-list aside.footnote tt,html.writer-html5 .rst-content aside.footnote code,html.writer-html5 .rst-content aside.footnote tt,html.writer-html5 .rst-content div.citation-list>div.citation code,html.writer-html5 .rst-content div.citation-list>div.citation tt,html.writer-html5 .rst-content dl.citation code,html.writer-html5 .rst-content dl.citation tt,html.writer-html5 .rst-content dl.footnote code,html.writer-html5 .rst-content dl.footnote tt{color:#555}.rst-content .wy-table-responsive.citation,.rst-content .wy-table-responsive.footnote{margin-bottom:0}.rst-content .wy-table-responsive.citation+:not(.citation),.rst-content .wy-table-responsive.footnote+:not(.footnote){margin-top:24px}.rst-content .wy-table-responsive.citation:last-child,.rst-content .wy-table-responsive.footnote:last-child{margin-bottom:24px}.rst-content table.docutils th{border-color:#e1e4e5}html.writer-html5 .rst-content table.docutils th{border:1px solid #e1e4e5}html.writer-html5 .rst-content table.docutils td>p,html.writer-html5 .rst-content table.docutils th>p{line-height:1rem;margin-bottom:0;font-size:.9rem}.rst-content table.docutils td .last,.rst-content table.docutils td .last>:last-child{margin-bottom:0}.rst-content table.field-list,.rst-content table.field-list td{border:none}.rst-content table.field-list td p{line-height:inherit}.rst-content table.field-list td>strong{display:inline-block}.rst-content table.field-list .field-name{padding-right:10px;text-align:left;white-space:nowrap}.rst-content table.field-list .field-body{text-align:left}.rst-content code,.rst-content tt{color:#000;font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;padding:2px 5px}.rst-content code big,.rst-content code em,.rst-content tt big,.rst-content tt em{font-size:100%!important;line-height:normal}.rst-content code.literal,.rst-content tt.literal{color:#e74c3c;white-space:normal}.rst-content code.xref,.rst-content tt.xref,a .rst-content code,a .rst-content tt{font-weight:700;color:#404040;overflow-wrap:normal}.rst-content kbd,.rst-content pre,.rst-content samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace}.rst-content a code,.rst-content a tt{color:#2980b9}.rst-content dl{margin-bottom:24px}.rst-content dl dt{font-weight:700;margin-bottom:12px}.rst-content dl ol,.rst-content dl p,.rst-content dl table,.rst-content dl ul{margin-bottom:12px}.rst-content dl dd{margin:0 0 12px 24px;line-height:24px}.rst-content dl dd>ol:last-child,.rst-content dl dd>p:last-child,.rst-content dl dd>table:last-child,.rst-content dl dd>ul:last-child{margin-bottom:0}html.writer-html4 .rst-content dl:not(.docutils),html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple){margin-bottom:24px}html.writer-html4 .rst-content dl:not(.docutils)>dt,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt{display:table;margin:6px 0;font-size:90%;line-height:normal;background:#e7f2fa;color:#2980b9;border-top:3px solid #6ab0de;padding:6px;position:relative}html.writer-html4 .rst-content dl:not(.docutils)>dt:before,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt:before{color:#6ab0de}html.writer-html4 .rst-content dl:not(.docutils)>dt .headerlink,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt .headerlink{color:#404040;font-size:100%!important}html.writer-html4 .rst-content dl:not(.docutils) dl:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) dl:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt{margin-bottom:6px;border:none;border-left:3px solid #ccc;background:#f0f0f0;color:#555}html.writer-html4 .rst-content dl:not(.docutils) dl:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt .headerlink,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) dl:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt .headerlink{color:#404040;font-size:100%!important}html.writer-html4 .rst-content dl:not(.docutils)>dt:first-child,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt:first-child{margin-top:0}html.writer-html4 .rst-content dl:not(.docutils) code.descclassname,html.writer-html4 .rst-content dl:not(.docutils) code.descname,html.writer-html4 .rst-content dl:not(.docutils) tt.descclassname,html.writer-html4 .rst-content dl:not(.docutils) tt.descname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) code.descclassname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) code.descname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) tt.descclassname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) tt.descname{background-color:transparent;border:none;padding:0;font-size:100%!important}html.writer-html4 .rst-content dl:not(.docutils) code.descname,html.writer-html4 .rst-content dl:not(.docutils) tt.descname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) code.descname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) tt.descname{font-weight:700}html.writer-html4 .rst-content dl:not(.docutils) .optional,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) .optional{display:inline-block;padding:0 4px;color:#000;font-weight:700}html.writer-html4 .rst-content dl:not(.docutils) .property,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) .property{display:inline-block;padding-right:8px;max-width:100%}html.writer-html4 .rst-content dl:not(.docutils) .k,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) .k{font-style:italic}html.writer-html4 .rst-content dl:not(.docutils) .descclassname,html.writer-html4 .rst-content dl:not(.docutils) .descname,html.writer-html4 .rst-content dl:not(.docutils) .sig-name,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) .descclassname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) .descname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) .sig-name{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;color:#000}.rst-content .viewcode-back,.rst-content .viewcode-link{display:inline-block;color:#27ae60;font-size:80%;padding-left:24px}.rst-content .viewcode-back{display:block;float:right}.rst-content p.rubric{margin-bottom:12px;font-weight:700}.rst-content code.download,.rst-content tt.download{background:inherit;padding:inherit;font-weight:400;font-family:inherit;font-size:inherit;color:inherit;border:inherit;white-space:inherit}.rst-content code.download span:first-child,.rst-content tt.download span:first-child{-webkit-font-smoothing:subpixel-antialiased}.rst-content code.download span:first-child:before,.rst-content tt.download span:first-child:before{margin-right:4px}.rst-content .guilabel{border:1px solid #7fbbe3;background:#e7f2fa;font-size:80%;font-weight:700;border-radius:4px;padding:2.4px 6px;margin:auto 2px}.rst-content :not(dl.option-list)>:not(dt):not(kbd):not(.kbd)>.kbd,.rst-content :not(dl.option-list)>:not(dt):not(kbd):not(.kbd)>kbd{color:inherit;font-size:80%;background-color:#fff;border:1px solid #a6a6a6;border-radius:4px;box-shadow:0 2px grey;padding:2.4px 6px;margin:auto 0}.rst-content .versionmodified{font-style:italic}@media screen and (max-width:480px){.rst-content .sidebar{width:100%}}span[id*=MathJax-Span]{color:#404040}.math{text-align:center}@font-face{font-family:Lato;src:url(fonts/lato-normal.woff2?bd03a2cc277bbbc338d464e679fe9942) format("woff2"),url(fonts/lato-normal.woff?27bd77b9162d388cb8d4c4217c7c5e2a) format("woff");font-weight:400;font-style:normal;font-display:block}@font-face{font-family:Lato;src:url(fonts/lato-bold.woff2?cccb897485813c7c256901dbca54ecf2) format("woff2"),url(fonts/lato-bold.woff?d878b6c29b10beca227e9eef4246111b) format("woff");font-weight:700;font-style:normal;font-display:block}@font-face{font-family:Lato;src:url(fonts/lato-bold-italic.woff2?0b6bb6725576b072c5d0b02ecdd1900d) format("woff2"),url(fonts/lato-bold-italic.woff?9c7e4e9eb485b4a121c760e61bc3707c) format("woff");font-weight:700;font-style:italic;font-display:block}@font-face{font-family:Lato;src:url(fonts/lato-normal-italic.woff2?4eb103b4d12be57cb1d040ed5e162e9d) format("woff2"),url(fonts/lato-normal-italic.woff?f28f2d6482446544ef1ea1ccc6dd5892) format("woff");font-weight:400;font-style:italic;font-display:block}@font-face{font-family:Roboto Slab;font-style:normal;font-weight:400;src:url(fonts/Roboto-Slab-Regular.woff2?7abf5b8d04d26a2cafea937019bca958) format("woff2"),url(fonts/Roboto-Slab-Regular.woff?c1be9284088d487c5e3ff0a10a92e58c) format("woff");font-display:block}@font-face{font-family:Roboto Slab;font-style:normal;font-weight:700;src:url(fonts/Roboto-Slab-Bold.woff2?9984f4a9bda09be08e83f2506954adbe) format("woff2"),url(fonts/Roboto-Slab-Bold.woff?bed5564a116b05148e3b3bea6fb1162a) format("woff");font-display:block} diff --git a/docs/css/theme_extra.css b/docs/css/theme_extra.css index 190b734..ab0631a 100644 --- a/docs/css/theme_extra.css +++ b/docs/css/theme_extra.css @@ -1,194 +1,197 @@ -/* - * Sphinx doesn't have support for section dividers like we do in - * MkDocs, this styles the section titles in the nav - * - * https://github.com/mkdocs/mkdocs/issues/175 - */ -.wy-menu-vertical span { - line-height: 18px; - padding: 0.4045em 1.618em; - display: block; - position: relative; - font-size: 90%; - color: #838383; -} - -.wy-menu-vertical .subnav a { - padding: 0.4045em 2.427em; -} - -/* - * Long navigations run off the bottom of the screen as the nav - * area doesn't scroll. - * - * https://github.com/mkdocs/mkdocs/pull/202 - * - * Builds upon pull 202 https://github.com/mkdocs/mkdocs/pull/202 - * to make toc scrollbar end before navigations buttons to not be overlapping. - */ -.wy-nav-side { - height: calc(100% - 45px); - overflow-y: auto; - min-height: 0; -} - -.rst-versions{ - border-top: 0; - height: 45px; -} - -@media screen and (max-width: 768px) { - .wy-nav-side { - height: 100%; - } -} - -/* - * readthedocs theme hides nav items when the window height is - * too small to contain them. - * - * https://github.com/mkdocs/mkdocs/issues/#348 - */ -.wy-menu-vertical ul { - margin-bottom: 2em; -} - -/* - * Wrap inline code samples otherwise they shoot of the side and - * can't be read at all. - * - * https://github.com/mkdocs/mkdocs/issues/313 - * https://github.com/mkdocs/mkdocs/issues/233 - * https://github.com/mkdocs/mkdocs/issues/834 - */ -code { - white-space: pre-wrap; - word-wrap: break-word; - padding: 2px 5px; -} - -/** - * Make code blocks display as blocks and give them the appropriate - * font size and padding. - * - * https://github.com/mkdocs/mkdocs/issues/855 - * https://github.com/mkdocs/mkdocs/issues/834 - * https://github.com/mkdocs/mkdocs/issues/233 - */ -pre code { - white-space: pre; - word-wrap: normal; - display: block; - padding: 12px; - font-size: 12px; -} - -/* - * Fix link colors when the link text is inline code. - * - * https://github.com/mkdocs/mkdocs/issues/718 - */ -a code { - color: #2980B9; -} -a:hover code { - color: #3091d1; -} -a:visited code { - color: #9B59B6; -} - -/* - * The CSS classes from highlight.js seem to clash with the - * ReadTheDocs theme causing some code to be incorrectly made - * bold and italic. - * - * https://github.com/mkdocs/mkdocs/issues/411 - */ -pre .cs, pre .c { - font-weight: inherit; - font-style: inherit; -} - -/* - * Fix some issues with the theme and non-highlighted code - * samples. Without and highlighting styles attached the - * formatting is broken. - * - * https://github.com/mkdocs/mkdocs/issues/319 - */ -.no-highlight { - display: block; - padding: 0.5em; - color: #333; -} - - -/* - * Additions specific to the search functionality provided by MkDocs - */ - -.search-results article { - margin-top: 23px; - border-top: 1px solid #E1E4E5; - padding-top: 24px; -} - -.search-results article:first-child { - border-top: none; -} - -form .search-query { - width: 100%; - border-radius: 50px; - padding: 6px 12px; /* csslint allow: box-model */ - border-color: #D1D4D5; -} - -.wy-menu-vertical li ul { - display: inherit; -} - -.wy-menu-vertical li ul.subnav ul.subnav{ - padding-left: 1em; -} - -.wy-menu-vertical .subnav li.current > a { - padding-left: 2.42em; -} -.wy-menu-vertical .subnav li.current > ul li a { - padding-left: 3.23em; -} - -/* - * Improve inline code blocks within admonitions. - * - * https://github.com/mkdocs/mkdocs/issues/656 - */ - .admonition code { - color: #404040; - border: 1px solid #c7c9cb; - border: 1px solid rgba(0, 0, 0, 0.2); - background: #f8fbfd; - background: rgba(255, 255, 255, 0.7); -} - -/* - * Account for wide tables which go off the side. - * Override borders to avoid wierdness on narrow tables. - * - * https://github.com/mkdocs/mkdocs/issues/834 - * https://github.com/mkdocs/mkdocs/pull/1034 - */ -.rst-content .section .docutils { - width: 100%; - overflow: auto; - display: block; - border: none; -} - -td, th { - border: 1px solid #e1e4e5 !important; /* csslint allow: important */ - border-collapse: collapse; -} - +/* + * Wrap inline code samples otherwise they shoot of the side and + * can't be read at all. + * + * https://github.com/mkdocs/mkdocs/issues/313 + * https://github.com/mkdocs/mkdocs/issues/233 + * https://github.com/mkdocs/mkdocs/issues/834 + */ +.rst-content code { + white-space: pre-wrap; + word-wrap: break-word; + padding: 2px 5px; +} + +/** + * Make code blocks display as blocks and give them the appropriate + * font size and padding. + * + * https://github.com/mkdocs/mkdocs/issues/855 + * https://github.com/mkdocs/mkdocs/issues/834 + * https://github.com/mkdocs/mkdocs/issues/233 + */ +.rst-content pre code { + white-space: pre; + word-wrap: normal; + display: block; + padding: 12px; + font-size: 12px; +} + +/** + * Fix code colors + * + * https://github.com/mkdocs/mkdocs/issues/2027 + */ +.rst-content code { + color: #E74C3C; +} + +.rst-content pre code { + color: #000; + background: #f8f8f8; +} + +/* + * Fix link colors when the link text is inline code. + * + * https://github.com/mkdocs/mkdocs/issues/718 + */ +a code { + color: #2980B9; +} +a:hover code { + color: #3091d1; +} +a:visited code { + color: #9B59B6; +} + +/* + * The CSS classes from highlight.js seem to clash with the + * ReadTheDocs theme causing some code to be incorrectly made + * bold and italic. + * + * https://github.com/mkdocs/mkdocs/issues/411 + */ +pre .cs, pre .c { + font-weight: inherit; + font-style: inherit; +} + +/* + * Fix some issues with the theme and non-highlighted code + * samples. Without and highlighting styles attached the + * formatting is broken. + * + * https://github.com/mkdocs/mkdocs/issues/319 + */ +.rst-content .no-highlight { + display: block; + padding: 0.5em; + color: #333; +} + + +/* + * Additions specific to the search functionality provided by MkDocs + */ + +.search-results { + margin-top: 23px; +} + +.search-results article { + border-top: 1px solid #E1E4E5; + padding-top: 24px; +} + +.search-results article:first-child { + border-top: none; +} + +form .search-query { + width: 100%; + border-radius: 50px; + padding: 6px 12px; + border-color: #D1D4D5; +} + +/* + * Improve inline code blocks within admonitions. + * + * https://github.com/mkdocs/mkdocs/issues/656 + */ + .rst-content .admonition code { + color: #404040; + border: 1px solid #c7c9cb; + border: 1px solid rgba(0, 0, 0, 0.2); + background: #f8fbfd; + background: rgba(255, 255, 255, 0.7); +} + +/* + * Account for wide tables which go off the side. + * Override borders to avoid weirdness on narrow tables. + * + * https://github.com/mkdocs/mkdocs/issues/834 + * https://github.com/mkdocs/mkdocs/pull/1034 + */ +.rst-content .section .docutils { + width: 100%; + overflow: auto; + display: block; + border: none; +} + +td, th { + border: 1px solid #e1e4e5 !important; + border-collapse: collapse; +} + +/* + * Without the following amendments, the navigation in the theme will be + * slightly cut off. This is due to the fact that the .wy-nav-side has a + * padding-bottom of 2em, which must not necessarily align with the font-size of + * 90 % on the .rst-current-version container, combined with the padding of 12px + * above and below. These amendments fix this in two steps: First, make sure the + * .rst-current-version container has a fixed height of 40px, achieved using + * line-height, and then applying a padding-bottom of 40px to this container. In + * a second step, the items within that container are re-aligned using flexbox. + * + * https://github.com/mkdocs/mkdocs/issues/2012 + */ + .wy-nav-side { + padding-bottom: 40px; +} + +/* For section-index only */ +.wy-menu-vertical .current-section p { + background-color: #e3e3e3; + color: #404040; +} + +/* + * The second step of above amendment: Here we make sure the items are aligned + * correctly within the .rst-current-version container. Using flexbox, we + * achieve it in such a way that it will look like the following: + * + * [No repo_name] + * Next >> // On the first page + * << Previous Next >> // On all subsequent pages + * + * [With repo_name] + * Next >> // On the first page + * << Previous Next >> // On all subsequent pages + * + * https://github.com/mkdocs/mkdocs/issues/2012 + */ +.rst-versions .rst-current-version { + padding: 0 12px; + display: flex; + font-size: initial; + justify-content: space-between; + align-items: center; + line-height: 40px; +} + +/* + * Please note that this amendment also involves removing certain inline-styles + * from the file ./mkdocs/themes/readthedocs/versions.html. + * + * https://github.com/mkdocs/mkdocs/issues/2012 + */ +.rst-current-version span { + flex: 1; + text-align: center; +} diff --git a/docs/fonts/fontawesome-webfont.eot b/docs/fonts/fontawesome-webfont.eot deleted file mode 100644 index 0662cb9..0000000 Binary files a/docs/fonts/fontawesome-webfont.eot and /dev/null differ diff --git a/docs/fonts/fontawesome-webfont.svg b/docs/fonts/fontawesome-webfont.svg deleted file mode 100644 index a4ba52c..0000000 --- a/docs/fonts/fontawesome-webfont.svg +++ /dev/null @@ -1,399 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/fonts/fontawesome-webfont.ttf b/docs/fonts/fontawesome-webfont.ttf deleted file mode 100644 index d365924..0000000 Binary files a/docs/fonts/fontawesome-webfont.ttf and /dev/null differ diff --git a/docs/fonts/fontawesome-webfont.woff b/docs/fonts/fontawesome-webfont.woff deleted file mode 100644 index b9bd17e..0000000 Binary files a/docs/fonts/fontawesome-webfont.woff and /dev/null differ diff --git a/docs/index.html b/docs/index.html index b5bbd17..1a79f8c 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1,198 +1,172 @@ - - - - - - - - - - - Home - scikit-rebate - - - - - - - - - - - - - - - - -
- - - - -
- - - - - -
-
-
- -
-
-
-
- -

scikit-rebate is a scikit-learn-compatible Python implementation of ReBATE, a suite of Relief-based feature selection algorithms for Machine Learning. As of 5/7/18, this project is still under active development and we encourage you to check back on this repository regularly for updates.

-

These algorithms excel at identifying features that are predictive of the outcome in supervised learning problems, and are especially good at identifying feature interactions that are normally overlooked by standard feature selection methods.

-

The main benefit of Relief-based algorithms is that they identify feature interactions without having to exhaustively check every pairwise interaction, thus taking significantly less time than exhaustive pairwise search.

-

Relief-based algorithms are commonly applied to genetic analyses, where epistasis (i.e., feature interactions) is common. However, the algorithms implemented in this package can be applied to almost any supervised classification data set and supports:

-
    -
  • -

    A mix of categorical and/or continuous features

    -
  • -
  • -

    Data with missing values

    -
  • -
  • -

    Binary endpoints (i.e., classification)

    -
  • -
  • -

    Multi-class endpoints (i.e., classification)

    -
  • -
  • -

    Continuous endpoints (i.e., regression)

    -
  • -
- -
-
- - -
-
- -
- -
- -
- - - GitHub - - - - Next » - - -
- - - - - - - - - + + + + + + + + scikit-rebate + + + + + + + + + + + + + + +
+ + +
+ +
+
+ +
+
+
+
+ +

scikit-rebate is a scikit-learn-compatible Python implementation of ReBATE, a suite of Relief-based feature selection algorithms for Machine Learning.

+ + +

These algorithms excel at identifying features that are predictive of the outcome in supervised learning problems, and are especially good at identifying feature interactions that are normally overlooked by standard feature selection methods.

+

The main benefit of Relief-based algorithms is that they identify feature interactions without having to exhaustively check every pairwise interaction, thus taking significantly less time than exhaustive pairwise search.

+

Relief-based algorithms are commonly applied to genetic analyses, where epistasis (i.e., feature interactions) is common. However, the algorithms implemented in this package can be applied to almost any supervised, structured data set and support:

+
    +
  • +

    A mix of categorical and/or continuous features

    +
  • +
  • +

    Data with missing values

    +
  • +
  • +

    Binary endpoints (i.e., classification)

    +
  • +
  • +

    Multi-class endpoints (i.e., classification)

    +
  • +
  • +

    Continuous endpoints (i.e., regression)

    +
  • +
+ +
+
+ +
+
+ +
+ +
+ +
+ + + + GitHub + + + + + Next » + + +
+ + + + + + + + + + + diff --git a/docs/installing/index.html b/docs/installing/index.html index 2b18317..67a301a 100644 --- a/docs/installing/index.html +++ b/docs/installing/index.html @@ -1,206 +1,173 @@ - - - - - - - - - - - Installation - scikit-rebate - - - - - - - - - - - - - - - - -
- - - - -
- - - - - -
-
-
- -
-
-
-
- -

scikit-rebate is built on top of the following existing Python packages:

-
    -
  • -

    NumPy

    -
  • -
  • -

    SciPy

    -
  • -
  • -

    scikit-learn

    -
  • -
-

All of the necessary Python packages can be installed via the Anaconda Python distribution, which we strongly recommend that you use. We also strongly recommend that you use Python 3 over Python 2 if you're given the choice.

-

NumPy, SciPy, and scikit-learn can be installed in Anaconda via the command:

-
conda install numpy scipy scikit-learn
-
- -

Once the prerequisites are installed, you should be able to install scikit-rebate with a pip command:

-
pip install skrebate
-
- -

You can retrieve basic information about your installed version of skrebate with the following pip command:

-
pip show skrebate
-
- -

You can check that you have the most up to date pypi release of skrebate with the following pip command:

-
pip install skrebate -U
-
- -

Please file a new issue if you run into installation problems.

- -
-
- - -
-
- -
- -
- -
- - - GitHub - - - « Previous - - - Next » - - -
- - - - - - - + + + + + + + + Installation - scikit-rebate + + + + + + + + + + + + + + +
+ + +
+ +
+
+ +
+
+
+
+ +

scikit-rebate is built on top of the following existing Python packages:

+
    +
  • +

    NumPy

    +
  • +
  • +

    SciPy

    +
  • +
  • +

    scikit-learn

    +
  • +
+

All of the necessary Python packages can be installed via the Anaconda Python distribution, which we strongly recommend that you use. We also strongly recommend that you use Python 3 over Python 2 if you're given the choice.

+

NumPy, SciPy, and scikit-learn can be installed in Anaconda via the command:

+
conda install numpy scipy scikit-learn
+
+

Once the prerequisites are installed, you should be able to install scikit-rebate with a pip command:

+
pip install skrebate
+
+

You can retrieve basic information about your installed version of skrebate with the following pip command:

+
pip show skrebate
+
+

You can check that you have the most up-to-date pypi release of skrebate with the following pip command:

+
pip install skrebate -U
+
+

Please file a new issue if you run into installation problems.

+ +
+
+ +
+
+ +
+ +
+ +
+ + + + GitHub + + + + « Previous + + + Next » + + +
+ + + + + + + + + diff --git a/docs/js/highlight.pack.js b/docs/js/highlight.pack.js deleted file mode 100644 index e88fabb..0000000 --- a/docs/js/highlight.pack.js +++ /dev/null @@ -1,2 +0,0 @@ -!function(e){"undefined"!=typeof exports?e(exports):(window.hljs=e({}),"function"==typeof define&&define.amd&&define([],function(){return window.hljs}))}(function(e){function n(e){return e.replace(/&/gm,"&").replace(//gm,">")}function t(e){return e.nodeName.toLowerCase()}function r(e,n){var t=e&&e.exec(n);return t&&0==t.index}function a(e){var n=(e.className+" "+(e.parentNode?e.parentNode.className:"")).split(/\s+/);return n=n.map(function(e){return e.replace(/^lang(uage)?-/,"")}),n.filter(function(e){return N(e)||/no(-?)highlight|plain|text/.test(e)})[0]}function i(e,n){var t,r={};for(t in e)r[t]=e[t];if(n)for(t in n)r[t]=n[t];return r}function o(e){var n=[];return function r(e,a){for(var i=e.firstChild;i;i=i.nextSibling)3==i.nodeType?a+=i.nodeValue.length:1==i.nodeType&&(n.push({event:"start",offset:a,node:i}),a=r(i,a),t(i).match(/br|hr|img|input/)||n.push({event:"stop",offset:a,node:i}));return a}(e,0),n}function u(e,r,a){function i(){return e.length&&r.length?e[0].offset!=r[0].offset?e[0].offset"}function u(e){l+=""}function c(e){("start"==e.event?o:u)(e.node)}for(var s=0,l="",f=[];e.length||r.length;){var g=i();if(l+=n(a.substr(s,g[0].offset-s)),s=g[0].offset,g==e){f.reverse().forEach(u);do c(g.splice(0,1)[0]),g=i();while(g==e&&g.length&&g[0].offset==s);f.reverse().forEach(o)}else"start"==g[0].event?f.push(g[0].node):f.pop(),c(g.splice(0,1)[0])}return l+n(a.substr(s))}function c(e){function n(e){return e&&e.source||e}function t(t,r){return new RegExp(n(t),"m"+(e.cI?"i":"")+(r?"g":""))}function r(a,o){if(!a.compiled){if(a.compiled=!0,a.k=a.k||a.bK,a.k){var u={},c=function(n,t){e.cI&&(t=t.toLowerCase()),t.split(" ").forEach(function(e){var t=e.split("|");u[t[0]]=[n,t[1]?Number(t[1]):1]})};"string"==typeof a.k?c("keyword",a.k):Object.keys(a.k).forEach(function(e){c(e,a.k[e])}),a.k=u}a.lR=t(a.l||/\b\w+\b/,!0),o&&(a.bK&&(a.b="\\b("+a.bK.split(" ").join("|")+")\\b"),a.b||(a.b=/\B|\b/),a.bR=t(a.b),a.e||a.eW||(a.e=/\B|\b/),a.e&&(a.eR=t(a.e)),a.tE=n(a.e)||"",a.eW&&o.tE&&(a.tE+=(a.e?"|":"")+o.tE)),a.i&&(a.iR=t(a.i)),void 0===a.r&&(a.r=1),a.c||(a.c=[]);var s=[];a.c.forEach(function(e){e.v?e.v.forEach(function(n){s.push(i(e,n))}):s.push("self"==e?a:e)}),a.c=s,a.c.forEach(function(e){r(e,a)}),a.starts&&r(a.starts,o);var l=a.c.map(function(e){return e.bK?"\\.?("+e.b+")\\.?":e.b}).concat([a.tE,a.i]).map(n).filter(Boolean);a.t=l.length?t(l.join("|"),!0):{exec:function(){return null}}}}r(e)}function s(e,t,a,i){function o(e,n){for(var t=0;t";return i+=e+'">',i+n+o}function d(){if(!L.k)return n(y);var e="",t=0;L.lR.lastIndex=0;for(var r=L.lR.exec(y);r;){e+=n(y.substr(t,r.index-t));var a=g(L,r);a?(B+=a[1],e+=p(a[0],n(r[0]))):e+=n(r[0]),t=L.lR.lastIndex,r=L.lR.exec(y)}return e+n(y.substr(t))}function h(){if(L.sL&&!w[L.sL])return n(y);var e=L.sL?s(L.sL,y,!0,M[L.sL]):l(y);return L.r>0&&(B+=e.r),"continuous"==L.subLanguageMode&&(M[L.sL]=e.top),p(e.language,e.value,!1,!0)}function b(){return void 0!==L.sL?h():d()}function v(e,t){var r=e.cN?p(e.cN,"",!0):"";e.rB?(k+=r,y=""):e.eB?(k+=n(t)+r,y=""):(k+=r,y=t),L=Object.create(e,{parent:{value:L}})}function m(e,t){if(y+=e,void 0===t)return k+=b(),0;var r=o(t,L);if(r)return k+=b(),v(r,t),r.rB?0:t.length;var a=u(L,t);if(a){var i=L;i.rE||i.eE||(y+=t),k+=b();do L.cN&&(k+=""),B+=L.r,L=L.parent;while(L!=a.parent);return i.eE&&(k+=n(t)),y="",a.starts&&v(a.starts,""),i.rE?0:t.length}if(f(t,L))throw new Error('Illegal lexeme "'+t+'" for mode "'+(L.cN||"")+'"');return y+=t,t.length||1}var E=N(e);if(!E)throw new Error('Unknown language: "'+e+'"');c(E);var R,L=i||E,M={},k="";for(R=L;R!=E;R=R.parent)R.cN&&(k=p(R.cN,"",!0)+k);var y="",B=0;try{for(var C,j,I=0;;){if(L.t.lastIndex=I,C=L.t.exec(t),!C)break;j=m(t.substr(I,C.index-I),C[0]),I=C.index+j}for(m(t.substr(I)),R=L;R.parent;R=R.parent)R.cN&&(k+="");return{r:B,value:k,language:e,top:L}}catch(S){if(-1!=S.message.indexOf("Illegal"))return{r:0,value:n(t)};throw S}}function l(e,t){t=t||x.languages||Object.keys(w);var r={r:0,value:n(e)},a=r;return t.forEach(function(n){if(N(n)){var t=s(n,e,!1);t.language=n,t.r>a.r&&(a=t),t.r>r.r&&(a=r,r=t)}}),a.language&&(r.second_best=a),r}function f(e){return x.tabReplace&&(e=e.replace(/^((<[^>]+>|\t)+)/gm,function(e,n){return n.replace(/\t/g,x.tabReplace)})),x.useBR&&(e=e.replace(/\n/g,"
")),e}function g(e,n,t){var r=n?E[n]:t,a=[e.trim()];return e.match(/\bhljs\b/)||a.push("hljs"),-1===e.indexOf(r)&&a.push(r),a.join(" ").trim()}function p(e){var n=a(e);if(!/no(-?)highlight|plain|text/.test(n)){var t;x.useBR?(t=document.createElementNS("http://www.w3.org/1999/xhtml","div"),t.innerHTML=e.innerHTML.replace(/\n/g,"").replace(//g,"\n")):t=e;var r=t.textContent,i=n?s(n,r,!0):l(r),c=o(t);if(c.length){var p=document.createElementNS("http://www.w3.org/1999/xhtml","div");p.innerHTML=i.value,i.value=u(c,o(p),r)}i.value=f(i.value),e.innerHTML=i.value,e.className=g(e.className,n,i.language),e.result={language:i.language,re:i.r},i.second_best&&(e.second_best={language:i.second_best.language,re:i.second_best.r})}}function d(e){x=i(x,e)}function h(){if(!h.called){h.called=!0;var e=document.querySelectorAll("pre code");Array.prototype.forEach.call(e,p)}}function b(){addEventListener("DOMContentLoaded",h,!1),addEventListener("load",h,!1)}function v(n,t){var r=w[n]=t(e);r.aliases&&r.aliases.forEach(function(e){E[e]=n})}function m(){return Object.keys(w)}function N(e){return w[e]||w[E[e]]}var x={classPrefix:"hljs-",tabReplace:null,useBR:!1,languages:void 0},w={},E={};return e.highlight=s,e.highlightAuto=l,e.fixMarkup=f,e.highlightBlock=p,e.configure=d,e.initHighlighting=h,e.initHighlightingOnLoad=b,e.registerLanguage=v,e.listLanguages=m,e.getLanguage=N,e.inherit=i,e.IR="[a-zA-Z]\\w*",e.UIR="[a-zA-Z_]\\w*",e.NR="\\b\\d+(\\.\\d+)?",e.CNR="\\b(0[xX][a-fA-F0-9]+|(\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",e.BNR="\\b(0b[01]+)",e.RSR="!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~",e.BE={b:"\\\\[\\s\\S]",r:0},e.ASM={cN:"string",b:"'",e:"'",i:"\\n",c:[e.BE]},e.QSM={cN:"string",b:'"',e:'"',i:"\\n",c:[e.BE]},e.PWM={b:/\b(a|an|the|are|I|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such)\b/},e.C=function(n,t,r){var a=e.inherit({cN:"comment",b:n,e:t,c:[]},r||{});return a.c.push(e.PWM),a},e.CLCM=e.C("//","$"),e.CBCM=e.C("/\\*","\\*/"),e.HCM=e.C("#","$"),e.NM={cN:"number",b:e.NR,r:0},e.CNM={cN:"number",b:e.CNR,r:0},e.BNM={cN:"number",b:e.BNR,r:0},e.CSSNM={cN:"number",b:e.NR+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",r:0},e.RM={cN:"regexp",b:/\//,e:/\/[gimuy]*/,i:/\n/,c:[e.BE,{b:/\[/,e:/\]/,r:0,c:[e.BE]}]},e.TM={cN:"title",b:e.IR,r:0},e.UTM={cN:"title",b:e.UIR,r:0},e});hljs.registerLanguage("objectivec",function(e){var t={cN:"built_in",b:"(AV|CA|CF|CG|CI|MK|MP|NS|UI)\\w+"},i={keyword:"int float while char export sizeof typedef const struct for union unsigned long volatile static bool mutable if do return goto void enum else break extern asm case short default double register explicit signed typename this switch continue wchar_t inline readonly assign readwrite self @synchronized id typeof nonatomic super unichar IBOutlet IBAction strong weak copy in out inout bycopy byref oneway __strong __weak __block __autoreleasing @private @protected @public @try @property @end @throw @catch @finally @autoreleasepool @synthesize @dynamic @selector @optional @required",literal:"false true FALSE TRUE nil YES NO NULL",built_in:"BOOL dispatch_once_t dispatch_queue_t dispatch_sync dispatch_async dispatch_once"},o=/[a-zA-Z@][a-zA-Z0-9_]*/,n="@interface @class @protocol @implementation";return{aliases:["m","mm","objc","obj-c"],k:i,l:o,i:""}]}]},{cN:"class",b:"("+n.split(" ").join("|")+")\\b",e:"({|$)",eE:!0,k:n,l:o,c:[e.UTM]},{cN:"variable",b:"\\."+e.UIR,r:0}]}});hljs.registerLanguage("sql",function(e){var t=e.C("--","$");return{cI:!0,i:/[<>]/,c:[{cN:"operator",bK:"begin end start commit rollback savepoint lock alter create drop rename call delete do handler insert load replace select truncate update set show pragma grant merge describe use explain help declare prepare execute deallocate savepoint release unlock purge reset change stop analyze cache flush optimize repair kill install uninstall checksum restore check backup revoke",e:/;/,eW:!0,k:{keyword:"abs absolute acos action add adddate addtime aes_decrypt aes_encrypt after aggregate all allocate alter analyze and any are as asc ascii asin assertion at atan atan2 atn2 authorization authors avg backup before begin benchmark between bin binlog bit_and bit_count bit_length bit_or bit_xor both by cache call cascade cascaded case cast catalog ceil ceiling chain change changed char_length character_length charindex charset check checksum checksum_agg choose close coalesce coercibility collate collation collationproperty column columns columns_updated commit compress concat concat_ws concurrent connect connection connection_id consistent constraint constraints continue contributors conv convert convert_tz corresponding cos cot count count_big crc32 create cross cume_dist curdate current current_date current_time current_timestamp current_user cursor curtime data database databases datalength date_add date_format date_sub dateadd datediff datefromparts datename datepart datetime2fromparts datetimeoffsetfromparts day dayname dayofmonth dayofweek dayofyear deallocate declare decode default deferrable deferred degrees delayed delete des_decrypt des_encrypt des_key_file desc describe descriptor diagnostics difference disconnect distinct distinctrow div do domain double drop dumpfile each else elt enclosed encode encrypt end end-exec engine engines eomonth errors escape escaped event eventdata events except exception exec execute exists exp explain export_set extended external extract fast fetch field fields find_in_set first first_value floor flush for force foreign format found found_rows from from_base64 from_days from_unixtime full function get get_format get_lock getdate getutcdate global go goto grant grants greatest group group_concat grouping grouping_id gtid_subset gtid_subtract handler having help hex high_priority hosts hour ident_current ident_incr ident_seed identified identity if ifnull ignore iif ilike immediate in index indicator inet6_aton inet6_ntoa inet_aton inet_ntoa infile initially inner innodb input insert install instr intersect into is is_free_lock is_ipv4 is_ipv4_compat is_ipv4_mapped is_not is_not_null is_used_lock isdate isnull isolation join key kill language last last_day last_insert_id last_value lcase lead leading least leaves left len lenght level like limit lines ln load load_file local localtime localtimestamp locate lock log log10 log2 logfile logs low_priority lower lpad ltrim make_set makedate maketime master master_pos_wait match matched max md5 medium merge microsecond mid min minute mod mode module month monthname mutex name_const names national natural nchar next no no_write_to_binlog not now nullif nvarchar oct octet_length of old_password on only open optimize option optionally or ord order outer outfile output pad parse partial partition password patindex percent_rank percentile_cont percentile_disc period_add period_diff pi plugin position pow power pragma precision prepare preserve primary prior privileges procedure procedure_analyze processlist profile profiles public publishingservername purge quarter query quick quote quotename radians rand read references regexp relative relaylog release release_lock rename repair repeat replace replicate reset restore restrict return returns reverse revoke right rlike rollback rollup round row row_count rows rpad rtrim savepoint schema scroll sec_to_time second section select serializable server session session_user set sha sha1 sha2 share show sign sin size slave sleep smalldatetimefromparts snapshot some soname soundex sounds_like space sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_no_cache sql_small_result sql_variant_property sqlstate sqrt square start starting status std stddev stddev_pop stddev_samp stdev stdevp stop str str_to_date straight_join strcmp string stuff subdate substr substring subtime subtring_index sum switchoffset sysdate sysdatetime sysdatetimeoffset system_user sysutcdatetime table tables tablespace tan temporary terminated tertiary_weights then time time_format time_to_sec timediff timefromparts timestamp timestampadd timestampdiff timezone_hour timezone_minute to to_base64 to_days to_seconds todatetimeoffset trailing transaction translation trigger trigger_nestlevel triggers trim truncate try_cast try_convert try_parse ucase uncompress uncompressed_length unhex unicode uninstall union unique unix_timestamp unknown unlock update upgrade upped upper usage use user user_resources using utc_date utc_time utc_timestamp uuid uuid_short validate_password_strength value values var var_pop var_samp variables variance varp version view warnings week weekday weekofyear weight_string when whenever where with work write xml xor year yearweek zon",literal:"true false null",built_in:"array bigint binary bit blob boolean char character date dec decimal float int integer interval number numeric real serial smallint varchar varying int8 serial8 text"},c:[{cN:"string",b:"'",e:"'",c:[e.BE,{b:"''"}]},{cN:"string",b:'"',e:'"',c:[e.BE,{b:'""'}]},{cN:"string",b:"`",e:"`",c:[e.BE]},e.CNM,e.CBCM,t]},e.CBCM,t]}});hljs.registerLanguage("javascript",function(e){return{aliases:["js"],k:{keyword:"in of if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const export super debugger as await",literal:"true false null undefined NaN Infinity",built_in:"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document Symbol Set Map WeakSet WeakMap Proxy Reflect Promise"},c:[{cN:"pi",r:10,v:[{b:/^\s*('|")use strict('|")/},{b:/^\s*('|")use asm('|")/}]},e.ASM,e.QSM,{cN:"string",b:"`",e:"`",c:[e.BE,{cN:"subst",b:"\\$\\{",e:"\\}"}]},e.CLCM,e.CBCM,{cN:"number",b:"\\b(0[xXbBoO][a-fA-F0-9]+|(\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",r:0},{b:"("+e.RSR+"|\\b(case|return|throw)\\b)\\s*",k:"return throw case",c:[e.CLCM,e.CBCM,e.RM,{b:/\s*[);\]]/,r:0,sL:"xml"}],r:0},{cN:"function",bK:"function",e:/\{/,eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/}),{cN:"params",b:/\(/,e:/\)/,c:[e.CLCM,e.CBCM],i:/["'\(]/}],i:/\[|%/},{b:/\$[(.]/},{b:"\\."+e.IR,r:0},{bK:"import",e:"[;$]",k:"import from as",c:[e.ASM,e.QSM]},{cN:"class",bK:"class",e:/[{;=]/,eE:!0,i:/[:"\[\]]/,c:[{bK:"extends"},e.UTM]}]}});hljs.registerLanguage("scss",function(e){{var t="[a-zA-Z-][a-zA-Z0-9_-]*",i={cN:"variable",b:"(\\$"+t+")\\b"},r={cN:"function",b:t+"\\(",rB:!0,eE:!0,e:"\\("},o={cN:"hexcolor",b:"#[0-9A-Fa-f]+"};({cN:"attribute",b:"[A-Z\\_\\.\\-]+",e:":",eE:!0,i:"[^\\s]",starts:{cN:"value",eW:!0,eE:!0,c:[r,o,e.CSSNM,e.QSM,e.ASM,e.CBCM,{cN:"important",b:"!important"}]}})}return{cI:!0,i:"[=/|']",c:[e.CLCM,e.CBCM,r,{cN:"id",b:"\\#[A-Za-z0-9_-]+",r:0},{cN:"class",b:"\\.[A-Za-z0-9_-]+",r:0},{cN:"attr_selector",b:"\\[",e:"\\]",i:"$"},{cN:"tag",b:"\\b(a|abbr|acronym|address|area|article|aside|audio|b|base|big|blockquote|body|br|button|canvas|caption|cite|code|col|colgroup|command|datalist|dd|del|details|dfn|div|dl|dt|em|embed|fieldset|figcaption|figure|footer|form|frame|frameset|(h[1-6])|head|header|hgroup|hr|html|i|iframe|img|input|ins|kbd|keygen|label|legend|li|link|map|mark|meta|meter|nav|noframes|noscript|object|ol|optgroup|option|output|p|param|pre|progress|q|rp|rt|ruby|samp|script|section|select|small|span|strike|strong|style|sub|sup|table|tbody|td|textarea|tfoot|th|thead|time|title|tr|tt|ul|var|video)\\b",r:0},{cN:"pseudo",b:":(visited|valid|root|right|required|read-write|read-only|out-range|optional|only-of-type|only-child|nth-of-type|nth-last-of-type|nth-last-child|nth-child|not|link|left|last-of-type|last-child|lang|invalid|indeterminate|in-range|hover|focus|first-of-type|first-line|first-letter|first-child|first|enabled|empty|disabled|default|checked|before|after|active)"},{cN:"pseudo",b:"::(after|before|choices|first-letter|first-line|repeat-index|repeat-item|selection|value)"},i,{cN:"attribute",b:"\\b(z-index|word-wrap|word-spacing|word-break|width|widows|white-space|visibility|vertical-align|unicode-bidi|transition-timing-function|transition-property|transition-duration|transition-delay|transition|transform-style|transform-origin|transform|top|text-underline-position|text-transform|text-shadow|text-rendering|text-overflow|text-indent|text-decoration-style|text-decoration-line|text-decoration-color|text-decoration|text-align-last|text-align|tab-size|table-layout|right|resize|quotes|position|pointer-events|perspective-origin|perspective|page-break-inside|page-break-before|page-break-after|padding-top|padding-right|padding-left|padding-bottom|padding|overflow-y|overflow-x|overflow-wrap|overflow|outline-width|outline-style|outline-offset|outline-color|outline|orphans|order|opacity|object-position|object-fit|normal|none|nav-up|nav-right|nav-left|nav-index|nav-down|min-width|min-height|max-width|max-height|mask|marks|margin-top|margin-right|margin-left|margin-bottom|margin|list-style-type|list-style-position|list-style-image|list-style|line-height|letter-spacing|left|justify-content|initial|inherit|ime-mode|image-orientation|image-resolution|image-rendering|icon|hyphens|height|font-weight|font-variant-ligatures|font-variant|font-style|font-stretch|font-size-adjust|font-size|font-language-override|font-kerning|font-feature-settings|font-family|font|float|flex-wrap|flex-shrink|flex-grow|flex-flow|flex-direction|flex-basis|flex|filter|empty-cells|display|direction|cursor|counter-reset|counter-increment|content|column-width|column-span|column-rule-width|column-rule-style|column-rule-color|column-rule|column-gap|column-fill|column-count|columns|color|clip-path|clip|clear|caption-side|break-inside|break-before|break-after|box-sizing|box-shadow|box-decoration-break|bottom|border-width|border-top-width|border-top-style|border-top-right-radius|border-top-left-radius|border-top-color|border-top|border-style|border-spacing|border-right-width|border-right-style|border-right-color|border-right|border-radius|border-left-width|border-left-style|border-left-color|border-left|border-image-width|border-image-source|border-image-slice|border-image-repeat|border-image-outset|border-image|border-color|border-collapse|border-bottom-width|border-bottom-style|border-bottom-right-radius|border-bottom-left-radius|border-bottom-color|border-bottom|border|background-size|background-repeat|background-position|background-origin|background-image|background-color|background-clip|background-attachment|background-blend-mode|background|backface-visibility|auto|animation-timing-function|animation-play-state|animation-name|animation-iteration-count|animation-fill-mode|animation-duration|animation-direction|animation-delay|animation|align-self|align-items|align-content)\\b",i:"[^\\s]"},{cN:"value",b:"\\b(whitespace|wait|w-resize|visible|vertical-text|vertical-ideographic|uppercase|upper-roman|upper-alpha|underline|transparent|top|thin|thick|text|text-top|text-bottom|tb-rl|table-header-group|table-footer-group|sw-resize|super|strict|static|square|solid|small-caps|separate|se-resize|scroll|s-resize|rtl|row-resize|ridge|right|repeat|repeat-y|repeat-x|relative|progress|pointer|overline|outside|outset|oblique|nowrap|not-allowed|normal|none|nw-resize|no-repeat|no-drop|newspaper|ne-resize|n-resize|move|middle|medium|ltr|lr-tb|lowercase|lower-roman|lower-alpha|loose|list-item|line|line-through|line-edge|lighter|left|keep-all|justify|italic|inter-word|inter-ideograph|inside|inset|inline|inline-block|inherit|inactive|ideograph-space|ideograph-parenthesis|ideograph-numeric|ideograph-alpha|horizontal|hidden|help|hand|groove|fixed|ellipsis|e-resize|double|dotted|distribute|distribute-space|distribute-letter|distribute-all-lines|disc|disabled|default|decimal|dashed|crosshair|collapse|col-resize|circle|char|center|capitalize|break-word|break-all|bottom|both|bolder|bold|block|bidi-override|below|baseline|auto|always|all-scroll|absolute|table|table-cell)\\b"},{cN:"value",b:":",e:";",c:[r,i,o,e.CSSNM,e.QSM,e.ASM,{cN:"important",b:"!important"}]},{cN:"at_rule",b:"@",e:"[{;]",k:"mixin include extend for if else each while charset import debug media page content font-face namespace warn",c:[r,i,e.QSM,e.ASM,o,e.CSSNM,{cN:"preprocessor",b:"\\s[A-Za-z0-9_.-]+",r:0}]}]}});hljs.registerLanguage("mel",function(e){return{k:"int float string vector matrix if else switch case default while do for in break continue global proc return about abs addAttr addAttributeEditorNodeHelp addDynamic addNewShelfTab addPP addPanelCategory addPrefixToName advanceToNextDrivenKey affectedNet affects aimConstraint air alias aliasAttr align alignCtx alignCurve alignSurface allViewFit ambientLight angle angleBetween animCone animCurveEditor animDisplay animView annotate appendStringArray applicationName applyAttrPreset applyTake arcLenDimContext arcLengthDimension arclen arrayMapper art3dPaintCtx artAttrCtx artAttrPaintVertexCtx artAttrSkinPaintCtx artAttrTool artBuildPaintMenu artFluidAttrCtx artPuttyCtx artSelectCtx artSetPaintCtx artUserPaintCtx assignCommand assignInputDevice assignViewportFactories attachCurve attachDeviceAttr attachSurface attrColorSliderGrp attrCompatibility attrControlGrp attrEnumOptionMenu attrEnumOptionMenuGrp attrFieldGrp attrFieldSliderGrp attrNavigationControlGrp attrPresetEditWin attributeExists attributeInfo attributeMenu attributeQuery autoKeyframe autoPlace bakeClip bakeFluidShading bakePartialHistory bakeResults bakeSimulation basename basenameEx batchRender bessel bevel bevelPlus binMembership bindSkin blend2 blendShape blendShapeEditor blendShapePanel blendTwoAttr blindDataType boneLattice boundary boxDollyCtx boxZoomCtx bufferCurve buildBookmarkMenu buildKeyframeMenu button buttonManip CBG cacheFile cacheFileCombine cacheFileMerge cacheFileTrack camera cameraView canCreateManip canvas capitalizeString catch catchQuiet ceil changeSubdivComponentDisplayLevel changeSubdivRegion channelBox character characterMap characterOutlineEditor characterize chdir checkBox checkBoxGrp checkDefaultRenderGlobals choice circle circularFillet clamp clear clearCache clip clipEditor clipEditorCurrentTimeCtx clipSchedule clipSchedulerOutliner clipTrimBefore closeCurve closeSurface cluster cmdFileOutput cmdScrollFieldExecuter cmdScrollFieldReporter cmdShell coarsenSubdivSelectionList collision color colorAtPoint colorEditor colorIndex colorIndexSliderGrp colorSliderButtonGrp colorSliderGrp columnLayout commandEcho commandLine commandPort compactHairSystem componentEditor compositingInterop computePolysetVolume condition cone confirmDialog connectAttr connectControl connectDynamic connectJoint connectionInfo constrain constrainValue constructionHistory container containsMultibyte contextInfo control convertFromOldLayers convertIffToPsd convertLightmap convertSolidTx convertTessellation convertUnit copyArray copyFlexor copyKey copySkinWeights cos cpButton cpCache cpClothSet cpCollision cpConstraint cpConvClothToMesh cpForces cpGetSolverAttr cpPanel cpProperty cpRigidCollisionFilter cpSeam cpSetEdit cpSetSolverAttr cpSolver cpSolverTypes cpTool cpUpdateClothUVs createDisplayLayer createDrawCtx createEditor createLayeredPsdFile createMotionField createNewShelf createNode createRenderLayer createSubdivRegion cross crossProduct ctxAbort ctxCompletion ctxEditMode ctxTraverse currentCtx currentTime currentTimeCtx currentUnit curve curveAddPtCtx curveCVCtx curveEPCtx curveEditorCtx curveIntersect curveMoveEPCtx curveOnSurface curveSketchCtx cutKey cycleCheck cylinder dagPose date defaultLightListCheckBox defaultNavigation defineDataServer defineVirtualDevice deformer deg_to_rad delete deleteAttr deleteShadingGroupsAndMaterials deleteShelfTab deleteUI deleteUnusedBrushes delrandstr detachCurve detachDeviceAttr detachSurface deviceEditor devicePanel dgInfo dgdirty dgeval dgtimer dimWhen directKeyCtx directionalLight dirmap dirname disable disconnectAttr disconnectJoint diskCache displacementToPoly displayAffected displayColor displayCull displayLevelOfDetail displayPref displayRGBColor displaySmoothness displayStats displayString displaySurface distanceDimContext distanceDimension doBlur dolly dollyCtx dopeSheetEditor dot dotProduct doubleProfileBirailSurface drag dragAttrContext draggerContext dropoffLocator duplicate duplicateCurve duplicateSurface dynCache dynControl dynExport dynExpression dynGlobals dynPaintEditor dynParticleCtx dynPref dynRelEdPanel dynRelEditor dynamicLoad editAttrLimits editDisplayLayerGlobals editDisplayLayerMembers editRenderLayerAdjustment editRenderLayerGlobals editRenderLayerMembers editor editorTemplate effector emit emitter enableDevice encodeString endString endsWith env equivalent equivalentTol erf error eval evalDeferred evalEcho event exactWorldBoundingBox exclusiveLightCheckBox exec executeForEachObject exists exp expression expressionEditorListen extendCurve extendSurface extrude fcheck fclose feof fflush fgetline fgetword file fileBrowserDialog fileDialog fileExtension fileInfo filetest filletCurve filter filterCurve filterExpand filterStudioImport findAllIntersections findAnimCurves findKeyframe findMenuItem findRelatedSkinCluster finder firstParentOf fitBspline flexor floatEq floatField floatFieldGrp floatScrollBar floatSlider floatSlider2 floatSliderButtonGrp floatSliderGrp floor flow fluidCacheInfo fluidEmitter fluidVoxelInfo flushUndo fmod fontDialog fopen formLayout format fprint frameLayout fread freeFormFillet frewind fromNativePath fwrite gamma gauss geometryConstraint getApplicationVersionAsFloat getAttr getClassification getDefaultBrush getFileList getFluidAttr getInputDeviceRange getMayaPanelTypes getModifiers getPanel getParticleAttr getPluginResource getenv getpid glRender glRenderEditor globalStitch gmatch goal gotoBindPose grabColor gradientControl gradientControlNoAttr graphDollyCtx graphSelectContext graphTrackCtx gravity grid gridLayout group groupObjectsByName HfAddAttractorToAS HfAssignAS HfBuildEqualMap HfBuildFurFiles HfBuildFurImages HfCancelAFR HfConnectASToHF HfCreateAttractor HfDeleteAS HfEditAS HfPerformCreateAS HfRemoveAttractorFromAS HfSelectAttached HfSelectAttractors HfUnAssignAS hardenPointCurve hardware hardwareRenderPanel headsUpDisplay headsUpMessage help helpLine hermite hide hilite hitTest hotBox hotkey hotkeyCheck hsv_to_rgb hudButton hudSlider hudSliderButton hwReflectionMap hwRender hwRenderLoad hyperGraph hyperPanel hyperShade hypot iconTextButton iconTextCheckBox iconTextRadioButton iconTextRadioCollection iconTextScrollList iconTextStaticLabel ikHandle ikHandleCtx ikHandleDisplayScale ikSolver ikSplineHandleCtx ikSystem ikSystemInfo ikfkDisplayMethod illustratorCurves image imfPlugins inheritTransform insertJoint insertJointCtx insertKeyCtx insertKnotCurve insertKnotSurface instance instanceable instancer intField intFieldGrp intScrollBar intSlider intSliderGrp interToUI internalVar intersect iprEngine isAnimCurve isConnected isDirty isParentOf isSameObject isTrue isValidObjectName isValidString isValidUiName isolateSelect itemFilter itemFilterAttr itemFilterRender itemFilterType joint jointCluster jointCtx jointDisplayScale jointLattice keyTangent keyframe keyframeOutliner keyframeRegionCurrentTimeCtx keyframeRegionDirectKeyCtx keyframeRegionDollyCtx keyframeRegionInsertKeyCtx keyframeRegionMoveKeyCtx keyframeRegionScaleKeyCtx keyframeRegionSelectKeyCtx keyframeRegionSetKeyCtx keyframeRegionTrackCtx keyframeStats lassoContext lattice latticeDeformKeyCtx launch launchImageEditor layerButton layeredShaderPort layeredTexturePort layout layoutDialog lightList lightListEditor lightListPanel lightlink lineIntersection linearPrecision linstep listAnimatable listAttr listCameras listConnections listDeviceAttachments listHistory listInputDeviceAxes listInputDeviceButtons listInputDevices listMenuAnnotation listNodeTypes listPanelCategories listRelatives listSets listTransforms listUnselected listerEditor loadFluid loadNewShelf loadPlugin loadPluginLanguageResources loadPrefObjects localizedPanelLabel lockNode loft log longNameOf lookThru ls lsThroughFilter lsType lsUI Mayatomr mag makeIdentity makeLive makePaintable makeRoll makeSingleSurface makeTubeOn makebot manipMoveContext manipMoveLimitsCtx manipOptions manipRotateContext manipRotateLimitsCtx manipScaleContext manipScaleLimitsCtx marker match max memory menu menuBarLayout menuEditor menuItem menuItemToShelf menuSet menuSetPref messageLine min minimizeApp mirrorJoint modelCurrentTimeCtx modelEditor modelPanel mouse movIn movOut move moveIKtoFK moveKeyCtx moveVertexAlongDirection multiProfileBirailSurface mute nParticle nameCommand nameField namespace namespaceInfo newPanelItems newton nodeCast nodeIconButton nodeOutliner nodePreset nodeType noise nonLinear normalConstraint normalize nurbsBoolean nurbsCopyUVSet nurbsCube nurbsEditUV nurbsPlane nurbsSelect nurbsSquare nurbsToPoly nurbsToPolygonsPref nurbsToSubdiv nurbsToSubdivPref nurbsUVSet nurbsViewDirectionVector objExists objectCenter objectLayer objectType objectTypeUI obsoleteProc oceanNurbsPreviewPlane offsetCurve offsetCurveOnSurface offsetSurface openGLExtension openMayaPref optionMenu optionMenuGrp optionVar orbit orbitCtx orientConstraint outlinerEditor outlinerPanel overrideModifier paintEffectsDisplay pairBlend palettePort paneLayout panel panelConfiguration panelHistory paramDimContext paramDimension paramLocator parent parentConstraint particle particleExists particleInstancer particleRenderInfo partition pasteKey pathAnimation pause pclose percent performanceOptions pfxstrokes pickWalk picture pixelMove planarSrf plane play playbackOptions playblast plugAttr plugNode pluginInfo pluginResourceUtil pointConstraint pointCurveConstraint pointLight pointMatrixMult pointOnCurve pointOnSurface pointPosition poleVectorConstraint polyAppend polyAppendFacetCtx polyAppendVertex polyAutoProjection polyAverageNormal polyAverageVertex polyBevel polyBlendColor polyBlindData polyBoolOp polyBridgeEdge polyCacheMonitor polyCheck polyChipOff polyClipboard polyCloseBorder polyCollapseEdge polyCollapseFacet polyColorBlindData polyColorDel polyColorPerVertex polyColorSet polyCompare polyCone polyCopyUV polyCrease polyCreaseCtx polyCreateFacet polyCreateFacetCtx polyCube polyCut polyCutCtx polyCylinder polyCylindricalProjection polyDelEdge polyDelFacet polyDelVertex polyDuplicateAndConnect polyDuplicateEdge polyEditUV polyEditUVShell polyEvaluate polyExtrudeEdge polyExtrudeFacet polyExtrudeVertex polyFlipEdge polyFlipUV polyForceUV polyGeoSampler polyHelix polyInfo polyInstallAction polyLayoutUV polyListComponentConversion polyMapCut polyMapDel polyMapSew polyMapSewMove polyMergeEdge polyMergeEdgeCtx polyMergeFacet polyMergeFacetCtx polyMergeUV polyMergeVertex polyMirrorFace polyMoveEdge polyMoveFacet polyMoveFacetUV polyMoveUV polyMoveVertex polyNormal polyNormalPerVertex polyNormalizeUV polyOptUvs polyOptions polyOutput polyPipe polyPlanarProjection polyPlane polyPlatonicSolid polyPoke polyPrimitive polyPrism polyProjection polyPyramid polyQuad polyQueryBlindData polyReduce polySelect polySelectConstraint polySelectConstraintMonitor polySelectCtx polySelectEditCtx polySeparate polySetToFaceNormal polySewEdge polyShortestPathCtx polySmooth polySoftEdge polySphere polySphericalProjection polySplit polySplitCtx polySplitEdge polySplitRing polySplitVertex polyStraightenUVBorder polySubdivideEdge polySubdivideFacet polyToSubdiv polyTorus polyTransfer polyTriangulate polyUVSet polyUnite polyWedgeFace popen popupMenu pose pow preloadRefEd print progressBar progressWindow projFileViewer projectCurve projectTangent projectionContext projectionManip promptDialog propModCtx propMove psdChannelOutliner psdEditTextureFile psdExport psdTextureFile putenv pwd python querySubdiv quit rad_to_deg radial radioButton radioButtonGrp radioCollection radioMenuItemCollection rampColorPort rand randomizeFollicles randstate rangeControl readTake rebuildCurve rebuildSurface recordAttr recordDevice redo reference referenceEdit referenceQuery refineSubdivSelectionList refresh refreshAE registerPluginResource rehash reloadImage removeJoint removeMultiInstance removePanelCategory rename renameAttr renameSelectionList renameUI render renderGlobalsNode renderInfo renderLayerButton renderLayerParent renderLayerPostProcess renderLayerUnparent renderManip renderPartition renderQualityNode renderSettings renderThumbnailUpdate renderWindowEditor renderWindowSelectContext renderer reorder reorderDeformers requires reroot resampleFluid resetAE resetPfxToPolyCamera resetTool resolutionNode retarget reverseCurve reverseSurface revolve rgb_to_hsv rigidBody rigidSolver roll rollCtx rootOf rot rotate rotationInterpolation roundConstantRadius rowColumnLayout rowLayout runTimeCommand runup sampleImage saveAllShelves saveAttrPreset saveFluid saveImage saveInitialState saveMenu savePrefObjects savePrefs saveShelf saveToolSettings scale scaleBrushBrightness scaleComponents scaleConstraint scaleKey scaleKeyCtx sceneEditor sceneUIReplacement scmh scriptCtx scriptEditorInfo scriptJob scriptNode scriptTable scriptToShelf scriptedPanel scriptedPanelType scrollField scrollLayout sculpt searchPathArray seed selLoadSettings select selectContext selectCurveCV selectKey selectKeyCtx selectKeyframeRegionCtx selectMode selectPref selectPriority selectType selectedNodes selectionConnection separator setAttr setAttrEnumResource setAttrMapping setAttrNiceNameResource setConstraintRestPosition setDefaultShadingGroup setDrivenKeyframe setDynamic setEditCtx setEditor setFluidAttr setFocus setInfinity setInputDeviceMapping setKeyCtx setKeyPath setKeyframe setKeyframeBlendshapeTargetWts setMenuMode setNodeNiceNameResource setNodeTypeFlag setParent setParticleAttr setPfxToPolyCamera setPluginResource setProject setStampDensity setStartupMessage setState setToolTo setUITemplate setXformManip sets shadingConnection shadingGeometryRelCtx shadingLightRelCtx shadingNetworkCompare shadingNode shapeCompare shelfButton shelfLayout shelfTabLayout shellField shortNameOf showHelp showHidden showManipCtx showSelectionInTitle showShadingGroupAttrEditor showWindow sign simplify sin singleProfileBirailSurface size sizeBytes skinCluster skinPercent smoothCurve smoothTangentSurface smoothstep snap2to2 snapKey snapMode snapTogetherCtx snapshot soft softMod softModCtx sort sound soundControl source spaceLocator sphere sphrand spotLight spotLightPreviewPort spreadSheetEditor spring sqrt squareSurface srtContext stackTrace startString startsWith stitchAndExplodeShell stitchSurface stitchSurfacePoints strcmp stringArrayCatenate stringArrayContains stringArrayCount stringArrayInsertAtIndex stringArrayIntersector stringArrayRemove stringArrayRemoveAtIndex stringArrayRemoveDuplicates stringArrayRemoveExact stringArrayToString stringToStringArray strip stripPrefixFromName stroke subdAutoProjection subdCleanTopology subdCollapse subdDuplicateAndConnect subdEditUV subdListComponentConversion subdMapCut subdMapSewMove subdMatchTopology subdMirror subdToBlind subdToPoly subdTransferUVsToCache subdiv subdivCrease subdivDisplaySmoothness substitute substituteAllString substituteGeometry substring surface surfaceSampler surfaceShaderList swatchDisplayPort switchTable symbolButton symbolCheckBox sysFile system tabLayout tan tangentConstraint texLatticeDeformContext texManipContext texMoveContext texMoveUVShellContext texRotateContext texScaleContext texSelectContext texSelectShortestPathCtx texSmudgeUVContext texWinToolCtx text textCurves textField textFieldButtonGrp textFieldGrp textManip textScrollList textToShelf textureDisplacePlane textureHairColor texturePlacementContext textureWindow threadCount threePointArcCtx timeControl timePort timerX toNativePath toggle toggleAxis toggleWindowVisibility tokenize tokenizeList tolerance tolower toolButton toolCollection toolDropped toolHasOptions toolPropertyWindow torus toupper trace track trackCtx transferAttributes transformCompare transformLimits translator trim trunc truncateFluidCache truncateHairCache tumble tumbleCtx turbulence twoPointArcCtx uiRes uiTemplate unassignInputDevice undo undoInfo ungroup uniform unit unloadPlugin untangleUV untitledFileName untrim upAxis updateAE userCtx uvLink uvSnapshot validateShelfName vectorize view2dToolCtx viewCamera viewClipPlane viewFit viewHeadOn viewLookAt viewManip viewPlace viewSet visor volumeAxis vortex waitCursor warning webBrowser webBrowserPrefs whatIs window windowPref wire wireContext workspace wrinkle wrinkleContext writeTake xbmLangPathList xform",i:"",o={cN:"params",b:"\\([^\\(]",rB:!0,c:[{b:/\(/,e:/\)/,k:c,c:["self"].concat(r)}]};return{aliases:["coffee","cson","iced"],k:c,i:/\/\*/,c:r.concat([e.C("###","###"),e.HCM,{cN:"function",b:"^\\s*"+n+"\\s*=\\s*"+s,e:"[-=]>",rB:!0,c:[i,o]},{b:/[:\(,=]\s*/,r:0,c:[{cN:"function",b:s,e:"[-=]>",rB:!0,c:[o]}]},{cN:"class",bK:"class",e:"$",i:/[:="\[\]]/,c:[{bK:"extends",eW:!0,i:/[:="\[\]]/,c:[i]},i]},{cN:"attribute",b:n+":",e:":",rB:!0,rE:!0,r:0}])}});hljs.registerLanguage("tex",function(c){var e={cN:"command",b:"\\\\[a-zA-Zа-яА-я]+[\\*]?"},m={cN:"command",b:"\\\\[^a-zA-Zа-яА-я0-9]"},r={cN:"special",b:"[{}\\[\\]\\&#~]",r:0};return{c:[{b:"\\\\[a-zA-Zа-яА-я]+[\\*]? *= *-?\\d*\\.?\\d+(pt|pc|mm|cm|in|dd|cc|ex|em)?",rB:!0,c:[e,m,{cN:"number",b:" *=",e:"-?\\d*\\.?\\d+(pt|pc|mm|cm|in|dd|cc|ex|em)?",eB:!0}],r:10},e,m,r,{cN:"formula",b:"\\$\\$",e:"\\$\\$",c:[e,m,r],r:0},{cN:"formula",b:"\\$",e:"\\$",c:[e,m,r],r:0},c.C("%","$",{r:0})]}});hljs.registerLanguage("go",function(e){var t={keyword:"break default func interface select case map struct chan else goto package switch const fallthrough if range type continue for import return var go defer",constant:"true false iota nil",typename:"bool byte complex64 complex128 float32 float64 int8 int16 int32 int64 string uint8 uint16 uint32 uint64 int uint uintptr rune",built_in:"append cap close complex copy imag len make new panic print println real recover delete"};return{aliases:["golang"],k:t,i:"",sL:"vbscript"}]}});hljs.registerLanguage("haskell",function(e){var c=[e.C("--","$"),e.C("{-","-}",{c:["self"]})],a={cN:"pragma",b:"{-#",e:"#-}"},i={cN:"preprocessor",b:"^#",e:"$"},n={cN:"type",b:"\\b[A-Z][\\w']*",r:0},t={cN:"container",b:"\\(",e:"\\)",i:'"',c:[a,i,{cN:"type",b:"\\b[A-Z][\\w]*(\\((\\.\\.|,|\\w+)\\))?"},e.inherit(e.TM,{b:"[_a-z][\\w']*"})].concat(c)},l={cN:"container",b:"{",e:"}",c:t.c};return{aliases:["hs"],k:"let in if then else case of where do module import hiding qualified type data newtype deriving class instance as default infix infixl infixr foreign export ccall stdcall cplusplus jvm dotnet safe unsafe family forall mdo proc rec",c:[{cN:"module",b:"\\bmodule\\b",e:"where",k:"module where",c:[t].concat(c),i:"\\W\\.|;"},{cN:"import",b:"\\bimport\\b",e:"$",k:"import|0 qualified as hiding",c:[t].concat(c),i:"\\W\\.|;"},{cN:"class",b:"^(\\s*)?(class|instance)\\b",e:"where",k:"class family instance where",c:[n,t].concat(c)},{cN:"typedef",b:"\\b(data|(new)?type)\\b",e:"$",k:"data family type newtype deriving",c:[a,n,t,l].concat(c)},{cN:"default",bK:"default",e:"$",c:[n,t].concat(c)},{cN:"infix",bK:"infix infixl infixr",e:"$",c:[e.CNM].concat(c)},{cN:"foreign",b:"\\bforeign\\b",e:"$",k:"foreign import export ccall stdcall cplusplus jvm dotnet safe unsafe",c:[n,e.QSM].concat(c)},{cN:"shebang",b:"#!\\/usr\\/bin\\/env runhaskell",e:"$"},a,i,e.QSM,e.CNM,n,e.inherit(e.TM,{b:"^[_a-z][\\w']*"}),{b:"->|<-"}].concat(c)}});hljs.registerLanguage("scilab",function(e){var n=[e.CNM,{cN:"string",b:"'|\"",e:"'|\"",c:[e.BE,{b:"''"}]}];return{aliases:["sci"],k:{keyword:"abort break case clear catch continue do elseif else endfunction end for functionglobal if pause return resume select try then while%f %F %t %T %pi %eps %inf %nan %e %i %z %s",built_in:"abs and acos asin atan ceil cd chdir clearglobal cosh cos cumprod deff disp errorexec execstr exists exp eye gettext floor fprintf fread fsolve imag isdef isemptyisinfisnan isvector lasterror length load linspace list listfiles log10 log2 logmax min msprintf mclose mopen ones or pathconvert poly printf prod pwd rand realround sinh sin size gsort sprintf sqrt strcat strcmps tring sum system tanh tantype typename warning zeros matrix"},i:'("|#|/\\*|\\s+/\\w+)',c:[{cN:"function",bK:"function endfunction",e:"$",k:"function endfunction|10",c:[e.UTM,{cN:"params",b:"\\(",e:"\\)"}]},{cN:"transposed_variable",b:"[a-zA-Z_][a-zA-Z_0-9]*('+[\\.']*|[\\.']+)",e:"",r:0},{cN:"matrix",b:"\\[",e:"\\]'*[\\.']*",r:0,c:n},e.C("//","$")].concat(n)}});hljs.registerLanguage("profile",function(e){return{c:[e.CNM,{cN:"built_in",b:"{",e:"}$",eB:!0,eE:!0,c:[e.ASM,e.QSM],r:0},{cN:"filename",b:"[a-zA-Z_][\\da-zA-Z_]+\\.[\\da-zA-Z_]{1,3}",e:":",eE:!0},{cN:"header",b:"(ncalls|tottime|cumtime)",e:"$",k:"ncalls tottime|10 cumtime|10 filename",r:10},{cN:"summary",b:"function calls",e:"$",c:[e.CNM],r:10},e.ASM,e.QSM,{cN:"function",b:"\\(",e:"\\)$",c:[e.UTM],r:0}]}});hljs.registerLanguage("thrift",function(e){var t="bool byte i16 i32 i64 double string binary";return{k:{keyword:"namespace const typedef struct enum service exception void oneway set list map required optional",built_in:t,literal:"true false"},c:[e.QSM,e.NM,e.CLCM,e.CBCM,{cN:"class",bK:"struct enum service exception",e:/\{/,i:/\n/,c:[e.inherit(e.TM,{starts:{eW:!0,eE:!0}})]},{b:"\\b(set|list|map)\\s*<",e:">",k:t,c:["self"]}]}});hljs.registerLanguage("matlab",function(e){var a=[e.CNM,{cN:"string",b:"'",e:"'",c:[e.BE,{b:"''"}]}],s={r:0,c:[{cN:"operator",b:/'['\.]*/}]};return{k:{keyword:"break case catch classdef continue else elseif end enumerated events for function global if methods otherwise parfor persistent properties return spmd switch try while",built_in:"sin sind sinh asin asind asinh cos cosd cosh acos acosd acosh tan tand tanh atan atand atan2 atanh sec secd sech asec asecd asech csc cscd csch acsc acscd acsch cot cotd coth acot acotd acoth hypot exp expm1 log log1p log10 log2 pow2 realpow reallog realsqrt sqrt nthroot nextpow2 abs angle complex conj imag real unwrap isreal cplxpair fix floor ceil round mod rem sign airy besselj bessely besselh besseli besselk beta betainc betaln ellipj ellipke erf erfc erfcx erfinv expint gamma gammainc gammaln psi legendre cross dot factor isprime primes gcd lcm rat rats perms nchoosek factorial cart2sph cart2pol pol2cart sph2cart hsv2rgb rgb2hsv zeros ones eye repmat rand randn linspace logspace freqspace meshgrid accumarray size length ndims numel disp isempty isequal isequalwithequalnans cat reshape diag blkdiag tril triu fliplr flipud flipdim rot90 find sub2ind ind2sub bsxfun ndgrid permute ipermute shiftdim circshift squeeze isscalar isvector ans eps realmax realmin pi i inf nan isnan isinf isfinite j why compan gallery hadamard hankel hilb invhilb magic pascal rosser toeplitz vander wilkinson"},i:'(//|"|#|/\\*|\\s+/\\w+)',c:[{cN:"function",bK:"function",e:"$",c:[e.UTM,{cN:"params",b:"\\(",e:"\\)"},{cN:"params",b:"\\[",e:"\\]"}]},{b:/[a-zA-Z_][a-zA-Z_0-9]*'['\.]*/,rB:!0,r:0,c:[{b:/[a-zA-Z_][a-zA-Z_0-9]*/,r:0},s.c[0]]},{cN:"matrix",b:"\\[",e:"\\]",c:a,r:0,starts:s},{cN:"cell",b:"\\{",e:/}/,c:a,r:0,starts:s},{b:/\)/,r:0,starts:s},e.C("^\\s*\\%\\{\\s*$","^\\s*\\%\\}\\s*$"),e.C("\\%","$")].concat(a)}});hljs.registerLanguage("vbscript",function(e){return{aliases:["vbs"],cI:!0,k:{keyword:"call class const dim do loop erase execute executeglobal exit for each next function if then else on error option explicit new private property let get public randomize redim rem select case set stop sub while wend with end to elseif is or xor and not class_initialize class_terminate default preserve in me byval byref step resume goto",built_in:"lcase month vartype instrrev ubound setlocale getobject rgb getref string weekdayname rnd dateadd monthname now day minute isarray cbool round formatcurrency conversions csng timevalue second year space abs clng timeserial fixs len asc isempty maths dateserial atn timer isobject filter weekday datevalue ccur isdate instr datediff formatdatetime replace isnull right sgn array snumeric log cdbl hex chr lbound msgbox ucase getlocale cos cdate cbyte rtrim join hour oct typename trim strcomp int createobject loadpicture tan formatnumber mid scriptenginebuildversion scriptengine split scriptengineminorversion cint sin datepart ltrim sqr scriptenginemajorversion time derived eval date formatpercent exp inputbox left ascw chrw regexp server response request cstr err",literal:"true false null nothing empty"},i:"//",c:[e.inherit(e.QSM,{c:[{b:'""'}]}),e.C(/'/,/$/,{r:0}),e.CNM]}});hljs.registerLanguage("capnproto",function(t){return{aliases:["capnp"],k:{keyword:"struct enum interface union group import using const annotation extends in of on as with from fixed",built_in:"Void Bool Int8 Int16 Int32 Int64 UInt8 UInt16 UInt32 UInt64 Float32 Float64 Text Data AnyPointer AnyStruct Capability List",literal:"true false"},c:[t.QSM,t.NM,t.HCM,{cN:"shebang",b:/@0x[\w\d]{16};/,i:/\n/},{cN:"number",b:/@\d+\b/},{cN:"class",bK:"struct enum",e:/\{/,i:/\n/,c:[t.inherit(t.TM,{starts:{eW:!0,eE:!0}})]},{cN:"class",bK:"interface",e:/\{/,i:/\n/,c:[t.inherit(t.TM,{starts:{eW:!0,eE:!0}})]}]}});hljs.registerLanguage("xl",function(e){var t="ObjectLoader Animate MovieCredits Slides Filters Shading Materials LensFlare Mapping VLCAudioVideo StereoDecoder PointCloud NetworkAccess RemoteControl RegExp ChromaKey Snowfall NodeJS Speech Charts",o={keyword:"if then else do while until for loop import with is as where when by data constant",literal:"true false nil",type:"integer real text name boolean symbol infix prefix postfix block tree",built_in:"in mod rem and or xor not abs sign floor ceil sqrt sin cos tan asin acos atan exp expm1 log log2 log10 log1p pi at",module:t,id:"text_length text_range text_find text_replace contains page slide basic_slide title_slide title subtitle fade_in fade_out fade_at clear_color color line_color line_width texture_wrap texture_transform texture scale_?x scale_?y scale_?z? translate_?x translate_?y translate_?z? rotate_?x rotate_?y rotate_?z? rectangle circle ellipse sphere path line_to move_to quad_to curve_to theme background contents locally time mouse_?x mouse_?y mouse_buttons"},a={cN:"constant",b:"[A-Z][A-Z_0-9]+",r:0},r={cN:"variable",b:"([A-Z][a-z_0-9]+)+",r:0},i={cN:"id",b:"[a-z][a-z_0-9]+",r:0},l={cN:"string",b:'"',e:'"',i:"\\n"},n={cN:"string",b:"'",e:"'",i:"\\n"},s={cN:"string",b:"<<",e:">>"},c={cN:"number",b:"[0-9]+#[0-9A-Z_]+(\\.[0-9-A-Z_]+)?#?([Ee][+-]?[0-9]+)?",r:10},_={cN:"import",bK:"import",e:"$",k:{keyword:"import",module:t},r:0,c:[l]},d={cN:"function",b:"[a-z].*->"};return{aliases:["tao"],l:/[a-zA-Z][a-zA-Z0-9_?]*/,k:o,c:[e.CLCM,e.CBCM,l,n,s,d,_,a,r,i,c,e.NM]}});hljs.registerLanguage("scala",function(e){var t={cN:"annotation",b:"@[A-Za-z]+"},a={cN:"string",b:'u?r?"""',e:'"""',r:10},r={cN:"symbol",b:"'\\w[\\w\\d_]*(?!')"},c={cN:"type",b:"\\b[A-Z][A-Za-z0-9_]*",r:0},i={cN:"title",b:/[^0-9\n\t "'(),.`{}\[\]:;][^\n\t "'(),.`{}\[\]:;]+|[^0-9\n\t "'(),.`{}\[\]:;=]/,r:0},l={cN:"class",bK:"class object trait type",e:/[:={\[(\n;]/,c:[{cN:"keyword",bK:"extends with",r:10},i]},n={cN:"function",bK:"def val",e:/[:={\[(\n;]/,c:[i]};return{k:{literal:"true false null",keyword:"type yield lazy override def with val var sealed abstract private trait object if forSome for while throw finally protected extends import final return else break new catch super class case package default try this match continue throws implicit"},c:[e.CLCM,e.CBCM,a,e.QSM,r,c,n,l,e.CNM,t]}});hljs.registerLanguage("elixir",function(e){var n="[a-zA-Z_][a-zA-Z0-9_]*(\\!|\\?)?",r="[a-zA-Z_]\\w*[!?=]?|[-+~]\\@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?",b="and false then defined module in return redo retry end for true self when next until do begin unless nil break not case cond alias while ensure or include use alias fn quote",c={cN:"subst",b:"#\\{",e:"}",l:n,k:b},a={cN:"string",c:[e.BE,c],v:[{b:/'/,e:/'/},{b:/"/,e:/"/}]},i={cN:"function",bK:"def defp defmacro",e:/\B\b/,c:[e.inherit(e.TM,{b:n,endsParent:!0})]},s=e.inherit(i,{cN:"class",bK:"defmodule defrecord",e:/\bdo\b|$|;/}),l=[a,e.HCM,s,i,{cN:"constant",b:"(\\b[A-Z_]\\w*(.)?)+",r:0},{cN:"symbol",b:":",c:[a,{b:r}],r:0},{cN:"symbol",b:n+":",r:0},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},{cN:"variable",b:"(\\$\\W)|((\\$|\\@\\@?)(\\w+))"},{b:"->"},{b:"("+e.RSR+")\\s*",c:[e.HCM,{cN:"regexp",i:"\\n",c:[e.BE,c],v:[{b:"/",e:"/[a-z]*"},{b:"%r\\[",e:"\\][a-z]*"}]}],r:0}];return c.c=l,{l:n,k:b,c:l}});hljs.registerLanguage("sml",function(e){return{aliases:["ml"],k:{keyword:"abstype and andalso as case datatype do else end eqtype exception fn fun functor handle if in include infix infixr let local nonfix of op open orelse raise rec sharing sig signature struct structure then type val with withtype where while",built_in:"array bool char exn int list option order real ref string substring vector unit word",literal:"true false NONE SOME LESS EQUAL GREATER nil"},i:/\/\/|>>/,l:"[a-z_]\\w*!?",c:[{cN:"literal",b:"\\[(\\|\\|)?\\]|\\(\\)"},e.C("\\(\\*","\\*\\)",{c:["self"]}),{cN:"symbol",b:"'[A-Za-z_](?!')[\\w']*"},{cN:"tag",b:"`[A-Z][\\w']*"},{cN:"type",b:"\\b[A-Z][\\w']*",r:0},{b:"[a-z_]\\w*'[\\w']*"},e.inherit(e.ASM,{cN:"char",r:0}),e.inherit(e.QSM,{i:null}),{cN:"number",b:"\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)",r:0},{b:/[-=]>/}]}});hljs.registerLanguage("apache",function(e){var r={cN:"number",b:"[\\$%]\\d+"};return{aliases:["apacheconf"],cI:!0,c:[e.HCM,{cN:"tag",b:""},{cN:"keyword",b:/\w+/,r:0,k:{common:"order deny allow setenv rewriterule rewriteengine rewritecond documentroot sethandler errordocument loadmodule options header listen serverroot servername"},starts:{e:/$/,r:0,k:{literal:"on off all"},c:[{cN:"sqbracket",b:"\\s\\[",e:"\\]$"},{cN:"cbracket",b:"[\\$%]\\{",e:"\\}",c:["self",r]},r,e.QSM]}}],i:/\S/}});hljs.registerLanguage("dockerfile",function(n){return{aliases:["docker"],cI:!0,k:{built_ins:"from maintainer cmd expose add copy entrypoint volume user workdir onbuild run env"},c:[n.HCM,{k:{built_in:"run cmd entrypoint volume add copy workdir onbuild"},b:/^ *(onbuild +)?(run|cmd|entrypoint|volume|add|copy|workdir) +/,starts:{e:/[^\\]\n/,sL:"bash",subLanguageMode:"continuous"}},{k:{built_in:"from maintainer expose env user onbuild"},b:/^ *(onbuild +)?(from|maintainer|expose|env|user|onbuild) +/,e:/[^\\]\n/,c:[n.ASM,n.QSM,n.NM,n.HCM]}]}});hljs.registerLanguage("markdown",function(e){return{aliases:["md","mkdown","mkd"],c:[{cN:"header",v:[{b:"^#{1,6}",e:"$"},{b:"^.+?\\n[=-]{2,}$"}]},{b:"<",e:">",sL:"xml",r:0},{cN:"bullet",b:"^([*+-]|(\\d+\\.))\\s+"},{cN:"strong",b:"[*_]{2}.+?[*_]{2}"},{cN:"emphasis",v:[{b:"\\*.+?\\*"},{b:"_.+?_",r:0}]},{cN:"blockquote",b:"^>\\s+",e:"$"},{cN:"code",v:[{b:"`.+?`"},{b:"^( {4}| )",e:"$",r:0}]},{cN:"horizontal_rule",b:"^[-\\*]{3,}",e:"$"},{b:"\\[.+?\\][\\(\\[].*?[\\)\\]]",rB:!0,c:[{cN:"link_label",b:"\\[",e:"\\]",eB:!0,rE:!0,r:0},{cN:"link_url",b:"\\]\\(",e:"\\)",eB:!0,eE:!0},{cN:"link_reference",b:"\\]\\[",e:"\\]",eB:!0,eE:!0}],r:10},{b:"^\\[.+\\]:",rB:!0,c:[{cN:"link_reference",b:"\\[",e:"\\]:",eB:!0,eE:!0,starts:{cN:"link_url",e:"$"}}]}]}});hljs.registerLanguage("haml",function(s){return{cI:!0,c:[{cN:"doctype",b:"^!!!( (5|1\\.1|Strict|Frameset|Basic|Mobile|RDFa|XML\\b.*))?$",r:10},s.C("^\\s*(!=#|=#|-#|/).*$",!1,{r:0}),{b:"^\\s*(-|=|!=)(?!#)",starts:{e:"\\n",sL:"ruby"}},{cN:"tag",b:"^\\s*%",c:[{cN:"title",b:"\\w+"},{cN:"value",b:"[#\\.]\\w+"},{b:"{\\s*",e:"\\s*}",eE:!0,c:[{b:":\\w+\\s*=>",e:",\\s+",rB:!0,eW:!0,c:[{cN:"symbol",b:":\\w+"},{cN:"string",b:'"',e:'"'},{cN:"string",b:"'",e:"'"},{b:"\\w+",r:0}]}]},{b:"\\(\\s*",e:"\\s*\\)",eE:!0,c:[{b:"\\w+\\s*=",e:"\\s+",rB:!0,eW:!0,c:[{cN:"attribute",b:"\\w+",r:0},{cN:"string",b:'"',e:'"'},{cN:"string",b:"'",e:"'"},{b:"\\w+",r:0}]}]}]},{cN:"bullet",b:"^\\s*[=~]\\s*",r:0},{b:"#{",starts:{e:"}",sL:"ruby"}}]}});hljs.registerLanguage("fortran",function(e){var t={cN:"params",b:"\\(",e:"\\)"},n={constant:".False. .True.",type:"integer real character complex logical dimension allocatable|10 parameter external implicit|10 none double precision assign intent optional pointer target in out common equivalence data",keyword:"kind do while private call intrinsic where elsewhere type endtype endmodule endselect endinterface end enddo endif if forall endforall only contains default return stop then public subroutine|10 function program .and. .or. .not. .le. .eq. .ge. .gt. .lt. goto save else use module select case access blank direct exist file fmt form formatted iostat name named nextrec number opened rec recl sequential status unformatted unit continue format pause cycle exit c_null_char c_alert c_backspace c_form_feed flush wait decimal round iomsg synchronous nopass non_overridable pass protected volatile abstract extends import non_intrinsic value deferred generic final enumerator class associate bind enum c_int c_short c_long c_long_long c_signed_char c_size_t c_int8_t c_int16_t c_int32_t c_int64_t c_int_least8_t c_int_least16_t c_int_least32_t c_int_least64_t c_int_fast8_t c_int_fast16_t c_int_fast32_t c_int_fast64_t c_intmax_t C_intptr_t c_float c_double c_long_double c_float_complex c_double_complex c_long_double_complex c_bool c_char c_null_ptr c_null_funptr c_new_line c_carriage_return c_horizontal_tab c_vertical_tab iso_c_binding c_loc c_funloc c_associated c_f_pointer c_ptr c_funptr iso_fortran_env character_storage_size error_unit file_storage_size input_unit iostat_end iostat_eor numeric_storage_size output_unit c_f_procpointer ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode newunit contiguous pad position action delim readwrite eor advance nml interface procedure namelist include sequence elemental pure",built_in:"alog alog10 amax0 amax1 amin0 amin1 amod cabs ccos cexp clog csin csqrt dabs dacos dasin datan datan2 dcos dcosh ddim dexp dint dlog dlog10 dmax1 dmin1 dmod dnint dsign dsin dsinh dsqrt dtan dtanh float iabs idim idint idnint ifix isign max0 max1 min0 min1 sngl algama cdabs cdcos cdexp cdlog cdsin cdsqrt cqabs cqcos cqexp cqlog cqsin cqsqrt dcmplx dconjg derf derfc dfloat dgamma dimag dlgama iqint qabs qacos qasin qatan qatan2 qcmplx qconjg qcos qcosh qdim qerf qerfc qexp qgamma qimag qlgama qlog qlog10 qmax1 qmin1 qmod qnint qsign qsin qsinh qsqrt qtan qtanh abs acos aimag aint anint asin atan atan2 char cmplx conjg cos cosh exp ichar index int log log10 max min nint sign sin sinh sqrt tan tanh print write dim lge lgt lle llt mod nullify allocate deallocate adjustl adjustr all allocated any associated bit_size btest ceiling count cshift date_and_time digits dot_product eoshift epsilon exponent floor fraction huge iand ibclr ibits ibset ieor ior ishft ishftc lbound len_trim matmul maxexponent maxloc maxval merge minexponent minloc minval modulo mvbits nearest pack present product radix random_number random_seed range repeat reshape rrspacing scale scan selected_int_kind selected_real_kind set_exponent shape size spacing spread sum system_clock tiny transpose trim ubound unpack verify achar iachar transfer dble entry dprod cpu_time command_argument_count get_command get_command_argument get_environment_variable is_iostat_end ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode is_iostat_eor move_alloc new_line selected_char_kind same_type_as extends_type_ofacosh asinh atanh bessel_j0 bessel_j1 bessel_jn bessel_y0 bessel_y1 bessel_yn erf erfc erfc_scaled gamma log_gamma hypot norm2 atomic_define atomic_ref execute_command_line leadz trailz storage_size merge_bits bge bgt ble blt dshiftl dshiftr findloc iall iany iparity image_index lcobound ucobound maskl maskr num_images parity popcnt poppar shifta shiftl shiftr this_image"};return{cI:!0,aliases:["f90","f95"],k:n,c:[e.inherit(e.ASM,{cN:"string",r:0}),e.inherit(e.QSM,{cN:"string",r:0}),{cN:"function",bK:"subroutine function program",i:"[${=\\n]",c:[e.UTM,t]},e.C("!","$",{r:0}),{cN:"number",b:"(?=\\b|\\+|\\-|\\.)(?=\\.\\d|\\d)(?:\\d+)?(?:\\.?\\d*)(?:[de][+-]?\\d+)?\\b\\.?",r:0}]}});hljs.registerLanguage("smali",function(r){var t=["add","and","cmp","cmpg","cmpl","const","div","double","float","goto","if","int","long","move","mul","neg","new","nop","not","or","rem","return","shl","shr","sput","sub","throw","ushr","xor"],n=["aget","aput","array","check","execute","fill","filled","goto/16","goto/32","iget","instance","invoke","iput","monitor","packed","sget","sparse"],s=["transient","constructor","abstract","final","synthetic","public","private","protected","static","bridge","system"];return{aliases:["smali"],c:[{cN:"string",b:'"',e:'"',r:0},r.C("#","$",{r:0}),{cN:"keyword",b:"\\s*\\.end\\s[a-zA-Z0-9]*",r:1},{cN:"keyword",b:"^[ ]*\\.[a-zA-Z]*",r:0},{cN:"keyword",b:"\\s:[a-zA-Z_0-9]*",r:0},{cN:"keyword",b:"\\s("+s.join("|")+")",r:1},{cN:"keyword",b:"\\[",r:0},{cN:"instruction",b:"\\s("+t.join("|")+")\\s",r:1},{cN:"instruction",b:"\\s("+t.join("|")+")((\\-|/)[a-zA-Z0-9]+)+\\s",r:10},{cN:"instruction",b:"\\s("+n.join("|")+")((\\-|/)[a-zA-Z0-9]+)*\\s",r:10},{cN:"class",b:"L[^(;:\n]*;",r:0},{cN:"function",b:'( |->)[^(\n ;"]*\\(',r:0},{cN:"function",b:"\\)",r:0},{cN:"variable",b:"[vp][0-9]+",r:0}]}});hljs.registerLanguage("julia",function(r){var e={keyword:"in abstract baremodule begin bitstype break catch ccall const continue do else elseif end export finally for function global if immutable import importall let local macro module quote return try type typealias using while",literal:"true false ANY ARGS CPU_CORES C_NULL DL_LOAD_PATH DevNull ENDIAN_BOM ENV I|0 Inf Inf16 Inf32 InsertionSort JULIA_HOME LOAD_PATH MS_ASYNC MS_INVALIDATE MS_SYNC MergeSort NaN NaN16 NaN32 OS_NAME QuickSort RTLD_DEEPBIND RTLD_FIRST RTLD_GLOBAL RTLD_LAZY RTLD_LOCAL RTLD_NODELETE RTLD_NOLOAD RTLD_NOW RoundDown RoundFromZero RoundNearest RoundToZero RoundUp STDERR STDIN STDOUT VERSION WORD_SIZE catalan cglobal e eu eulergamma golden im nothing pi γ π φ",built_in:"ASCIIString AbstractArray AbstractRNG AbstractSparseArray Any ArgumentError Array Associative Base64Pipe Bidiagonal BigFloat BigInt BitArray BitMatrix BitVector Bool BoundsError Box CFILE Cchar Cdouble Cfloat Char CharString Cint Clong Clonglong ClusterManager Cmd Coff_t Colon Complex Complex128 Complex32 Complex64 Condition Cptrdiff_t Cshort Csize_t Cssize_t Cuchar Cuint Culong Culonglong Cushort Cwchar_t DArray DataType DenseArray Diagonal Dict DimensionMismatch DirectIndexString Display DivideError DomainError EOFError EachLine Enumerate ErrorException Exception Expr Factorization FileMonitor FileOffset Filter Float16 Float32 Float64 FloatRange FloatingPoint Function GetfieldNode GotoNode Hermitian IO IOBuffer IOStream IPv4 IPv6 InexactError Int Int128 Int16 Int32 Int64 Int8 IntSet Integer InterruptException IntrinsicFunction KeyError LabelNode LambdaStaticData LineNumberNode LoadError LocalProcess MIME MathConst MemoryError MersenneTwister Method MethodError MethodTable Module NTuple NewvarNode Nothing Number ObjectIdDict OrdinalRange OverflowError ParseError PollingFileWatcher ProcessExitedException ProcessGroup Ptr QuoteNode Range Range1 Ranges Rational RawFD Real Regex RegexMatch RemoteRef RepString RevString RopeString RoundingMode Set SharedArray Signed SparseMatrixCSC StackOverflowError Stat StatStruct StepRange String SubArray SubString SymTridiagonal Symbol SymbolNode Symmetric SystemError Task TextDisplay Timer TmStruct TopNode Triangular Tridiagonal Type TypeConstructor TypeError TypeName TypeVar UTF16String UTF32String UTF8String UdpSocket Uint Uint128 Uint16 Uint32 Uint64 Uint8 UndefRefError UndefVarError UniformScaling UnionType UnitRange Unsigned Vararg VersionNumber WString WeakKeyDict WeakRef Woodbury Zip"},t="[A-Za-z_\\u00A1-\\uFFFF][A-Za-z_0-9\\u00A1-\\uFFFF]*",o={l:t,k:e},n={cN:"type-annotation",b:/::/},a={cN:"subtype",b:/<:/},i={cN:"number",b:/(\b0x[\d_]*(\.[\d_]*)?|0x\.\d[\d_]*)p[-+]?\d+|\b0[box][a-fA-F0-9][a-fA-F0-9_]*|(\b\d[\d_]*(\.[\d_]*)?|\.\d[\d_]*)([eEfF][-+]?\d+)?/,r:0},l={cN:"char",b:/'(.|\\[xXuU][a-zA-Z0-9]+)'/},c={cN:"subst",b:/\$\(/,e:/\)/,k:e},u={cN:"variable",b:"\\$"+t},d={cN:"string",c:[r.BE,c,u],v:[{b:/\w*"/,e:/"\w*/},{b:/\w*"""/,e:/"""\w*/}]},g={cN:"string",c:[r.BE,c,u],b:"`",e:"`"},s={cN:"macrocall",b:"@"+t},S={cN:"comment",v:[{b:"#=",e:"=#",r:10},{b:"#",e:"$"}]};return o.c=[i,l,n,a,d,g,s,S,r.HCM],c.c=o.c,o});hljs.registerLanguage("delphi",function(e){var r="exports register file shl array record property for mod while set ally label uses raise not stored class safecall var interface or private static exit index inherited to else stdcall override shr asm far resourcestring finalization packed virtual out and protected library do xorwrite goto near function end div overload object unit begin string on inline repeat until destructor write message program with read initialization except default nil if case cdecl in downto threadvar of try pascal const external constructor type public then implementation finally published procedure",t=[e.CLCM,e.C(/\{/,/\}/,{r:0}),e.C(/\(\*/,/\*\)/,{r:10})],i={cN:"string",b:/'/,e:/'/,c:[{b:/''/}]},c={cN:"string",b:/(#\d+)+/},o={b:e.IR+"\\s*=\\s*class\\s*\\(",rB:!0,c:[e.TM]},n={cN:"function",bK:"function constructor destructor procedure",e:/[:;]/,k:"function constructor|10 destructor|10 procedure|10",c:[e.TM,{cN:"params",b:/\(/,e:/\)/,k:r,c:[i,c]}].concat(t)};return{cI:!0,k:r,i:/"|\$[G-Zg-z]|\/\*|<\/|\|/,c:[i,c,e.NM,o,n].concat(t)}});hljs.registerLanguage("brainfuck",function(r){var n={cN:"literal",b:"[\\+\\-]",r:0};return{aliases:["bf"],c:[r.C("[^\\[\\]\\.,\\+\\-<> \r\n]","[\\[\\]\\.,\\+\\-<> \r\n]",{rE:!0,r:0}),{cN:"title",b:"[\\[\\]]",r:0},{cN:"string",b:"[\\.,]",r:0},{b:/\+\+|\-\-/,rB:!0,c:[n]},n]}});hljs.registerLanguage("ini",function(e){return{cI:!0,i:/\S/,c:[e.C(";","$"),{cN:"title",b:"^\\[",e:"\\]"},{cN:"setting",b:"^[a-z0-9\\[\\]_-]+[ \\t]*=[ \\t]*",e:"$",c:[{cN:"value",eW:!0,k:"on off true false yes no",c:[e.QSM,e.NM],r:0}]}]}});hljs.registerLanguage("json",function(e){var t={literal:"true false null"},i=[e.QSM,e.CNM],l={cN:"value",e:",",eW:!0,eE:!0,c:i,k:t},c={b:"{",e:"}",c:[{cN:"attribute",b:'\\s*"',e:'"\\s*:\\s*',eB:!0,eE:!0,c:[e.BE],i:"\\n",starts:l}],i:"\\S"},n={b:"\\[",e:"\\]",c:[e.inherit(l,{cN:null})],i:"\\S"};return i.splice(i.length,0,c,n),{c:i,k:t,i:"\\S"}});hljs.registerLanguage("powershell",function(e){var t={b:"`[\\s\\S]",r:0},r={cN:"variable",v:[{b:/\$[\w\d][\w\d_:]*/}]},o={cN:"string",b:/"/,e:/"/,c:[t,r,{cN:"variable",b:/\$[A-z]/,e:/[^A-z]/}]},a={cN:"string",b:/'/,e:/'/};return{aliases:["ps"],l:/-?[A-z\.\-]+/,cI:!0,k:{keyword:"if else foreach return function do while until elseif begin for trap data dynamicparam end break throw param continue finally in switch exit filter try process catch",literal:"$null $true $false",built_in:"Add-Content Add-History Add-Member Add-PSSnapin Clear-Content Clear-Item Clear-Item Property Clear-Variable Compare-Object ConvertFrom-SecureString Convert-Path ConvertTo-Html ConvertTo-SecureString Copy-Item Copy-ItemProperty Export-Alias Export-Clixml Export-Console Export-Csv ForEach-Object Format-Custom Format-List Format-Table Format-Wide Get-Acl Get-Alias Get-AuthenticodeSignature Get-ChildItem Get-Command Get-Content Get-Credential Get-Culture Get-Date Get-EventLog Get-ExecutionPolicy Get-Help Get-History Get-Host Get-Item Get-ItemProperty Get-Location Get-Member Get-PfxCertificate Get-Process Get-PSDrive Get-PSProvider Get-PSSnapin Get-Service Get-TraceSource Get-UICulture Get-Unique Get-Variable Get-WmiObject Group-Object Import-Alias Import-Clixml Import-Csv Invoke-Expression Invoke-History Invoke-Item Join-Path Measure-Command Measure-Object Move-Item Move-ItemProperty New-Alias New-Item New-ItemProperty New-Object New-PSDrive New-Service New-TimeSpan New-Variable Out-Default Out-File Out-Host Out-Null Out-Printer Out-String Pop-Location Push-Location Read-Host Remove-Item Remove-ItemProperty Remove-PSDrive Remove-PSSnapin Remove-Variable Rename-Item Rename-ItemProperty Resolve-Path Restart-Service Resume-Service Select-Object Select-String Set-Acl Set-Alias Set-AuthenticodeSignature Set-Content Set-Date Set-ExecutionPolicy Set-Item Set-ItemProperty Set-Location Set-PSDebug Set-Service Set-TraceSource Set-Variable Sort-Object Split-Path Start-Service Start-Sleep Start-Transcript Stop-Process Stop-Service Stop-Transcript Suspend-Service Tee-Object Test-Path Trace-Command Update-FormatData Update-TypeData Where-Object Write-Debug Write-Error Write-Host Write-Output Write-Progress Write-Verbose Write-Warning",operator:"-ne -eq -lt -gt -ge -le -not -like -notlike -match -notmatch -contains -notcontains -in -notin -replace"},c:[e.HCM,e.NM,o,a,r]}});hljs.registerLanguage("gradle",function(e){return{cI:!0,k:{keyword:"task project allprojects subprojects artifacts buildscript configurations dependencies repositories sourceSets description delete from into include exclude source classpath destinationDir includes options sourceCompatibility targetCompatibility group flatDir doLast doFirst flatten todir fromdir ant def abstract break case catch continue default do else extends final finally for if implements instanceof native new private protected public return static switch synchronized throw throws transient try volatile while strictfp package import false null super this true antlrtask checkstyle codenarc copy boolean byte char class double float int interface long short void compile runTime file fileTree abs any append asList asWritable call collect compareTo count div dump each eachByte eachFile eachLine every find findAll flatten getAt getErr getIn getOut getText grep immutable inject inspect intersect invokeMethods isCase join leftShift minus multiply newInputStream newOutputStream newPrintWriter newReader newWriter next plus pop power previous print println push putAt read readBytes readLines reverse reverseEach round size sort splitEachLine step subMap times toInteger toList tokenize upto waitForOrKill withPrintWriter withReader withStream withWriter withWriterAppend write writeLine"},c:[e.CLCM,e.CBCM,e.ASM,e.QSM,e.NM,e.RM]}});hljs.registerLanguage("erb",function(e){return{sL:"xml",subLanguageMode:"continuous",c:[e.C("<%#","%>"),{b:"<%[%=-]?",e:"[%-]?%>",sL:"ruby",eB:!0,eE:!0}]}});hljs.registerLanguage("swift",function(e){var i={keyword:"class deinit enum extension func import init let protocol static struct subscript typealias var break case continue default do else fallthrough if in for return switch where while as dynamicType is new super self Self Type __COLUMN__ __FILE__ __FUNCTION__ __LINE__ associativity didSet get infix inout left mutating none nonmutating operator override postfix precedence prefix right set unowned unowned safe unsafe weak willSet",literal:"true false nil",built_in:"abs advance alignof alignofValue assert bridgeFromObjectiveC bridgeFromObjectiveCUnconditional bridgeToObjectiveC bridgeToObjectiveCUnconditional c contains count countElements countLeadingZeros debugPrint debugPrintln distance dropFirst dropLast dump encodeBitsAsWords enumerate equal false filter find getBridgedObjectiveCType getVaList indices insertionSort isBridgedToObjectiveC isBridgedVerbatimToObjectiveC isUniquelyReferenced join lexicographicalCompare map max maxElement min minElement nil numericCast partition posix print println quickSort reduce reflect reinterpretCast reverse roundUpToAlignment sizeof sizeofValue sort split startsWith strideof strideofValue swap swift toString transcode true underestimateCount unsafeReflect withExtendedLifetime withObjectAtPlusZero withUnsafePointer withUnsafePointerToObject withUnsafePointers withVaList"},t={cN:"type",b:"\\b[A-Z][\\w']*",r:0},n=e.C("/\\*","\\*/",{c:["self"]}),r={cN:"subst",b:/\\\(/,e:"\\)",k:i,c:[]},s={cN:"number",b:"\\b([\\d_]+(\\.[\\deE_]+)?|0x[a-fA-F0-9_]+(\\.[a-fA-F0-9p_]+)?|0b[01_]+|0o[0-7_]+)\\b",r:0},o=e.inherit(e.QSM,{c:[r,e.BE]});return r.c=[s],{k:i,c:[o,e.CLCM,n,t,s,{cN:"func",bK:"func",e:"{",eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/,i:/\(/}),{cN:"generics",b://,i:/>/},{cN:"params",b:/\(/,e:/\)/,endsParent:!0,k:i,c:["self",s,o,e.CBCM,{b:":"}],i:/["']/}],i:/\[|%/},{cN:"class",bK:"struct protocol class extension enum",k:i,e:"\\{",eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/})]},{cN:"preprocessor",b:"(@assignment|@class_protocol|@exported|@final|@lazy|@noreturn|@NSCopying|@NSManaged|@objc|@optional|@required|@auto_closure|@noreturn|@IBAction|@IBDesignable|@IBInspectable|@IBOutlet|@infix|@prefix|@postfix)"}]}});hljs.registerLanguage("lisp",function(b){var e="[a-zA-Z_\\-\\+\\*\\/\\<\\=\\>\\&\\#][a-zA-Z0-9_\\-\\+\\*\\/\\<\\=\\>\\&\\#!]*",c="\\|[^]*?\\|",r="(\\-|\\+)?\\d+(\\.\\d+|\\/\\d+)?((d|e|f|l|s|D|E|F|L|S)(\\+|\\-)?\\d+)?",a={cN:"shebang",b:"^#!",e:"$"},i={cN:"literal",b:"\\b(t{1}|nil)\\b"},l={cN:"number",v:[{b:r,r:0},{b:"#(b|B)[0-1]+(/[0-1]+)?"},{b:"#(o|O)[0-7]+(/[0-7]+)?"},{b:"#(x|X)[0-9a-fA-F]+(/[0-9a-fA-F]+)?"},{b:"#(c|C)\\("+r+" +"+r,e:"\\)"}]},t=b.inherit(b.QSM,{i:null}),d=b.C(";","$",{r:0}),n={cN:"variable",b:"\\*",e:"\\*"},u={cN:"keyword",b:"[:&]"+e},N={b:e,r:0},o={b:c},s={b:"\\(",e:"\\)",c:["self",i,t,l,N]},v={cN:"quoted",c:[l,t,n,u,s,N],v:[{b:"['`]\\(",e:"\\)"},{b:"\\(quote ",e:"\\)",k:"quote"},{b:"'"+c}]},f={cN:"quoted",v:[{b:"'"+e},{b:"#'"+e+"(::"+e+")*"}]},g={cN:"list",b:"\\(\\s*",e:"\\)"},q={eW:!0,r:0};return g.c=[{cN:"keyword",v:[{b:e},{b:c}]},q],q.c=[v,f,g,i,l,t,d,n,u,o,N],{i:/\S/,c:[l,a,i,t,d,v,f,g,N]}});hljs.registerLanguage("rsl",function(e){return{k:{keyword:"float color point normal vector matrix while for if do return else break extern continue",built_in:"abs acos ambient area asin atan atmosphere attribute calculatenormal ceil cellnoise clamp comp concat cos degrees depth Deriv diffuse distance Du Dv environment exp faceforward filterstep floor format fresnel incident length lightsource log match max min mod noise normalize ntransform opposite option phong pnoise pow printf ptlined radians random reflect refract renderinfo round setcomp setxcomp setycomp setzcomp shadow sign sin smoothstep specular specularbrdf spline sqrt step tan texture textureinfo trace transform vtransform xcomp ycomp zcomp"},i:" > >= ` abs acos angle append apply asin assoc assq assv atan boolean? caar cadr call-with-input-file call-with-output-file call-with-values car cdddar cddddr cdr ceiling char->integer char-alphabetic? char-ci<=? char-ci=? char-ci>? char-downcase char-lower-case? char-numeric? char-ready? char-upcase char-upper-case? char-whitespace? char<=? char=? char>? char? close-input-port close-output-port complex? cons cos current-input-port current-output-port denominator display eof-object? eq? equal? eqv? eval even? exact->inexact exact? exp expt floor force gcd imag-part inexact->exact inexact? input-port? integer->char integer? interaction-environment lcm length list list->string list->vector list-ref list-tail list? load log magnitude make-polar make-rectangular make-string make-vector max member memq memv min modulo negative? newline not null-environment null? number->string number? numerator odd? open-input-file open-output-file output-port? pair? peek-char port? positive? procedure? quasiquote quote quotient rational? rationalize read read-char real-part real? remainder reverse round scheme-report-environment set! set-car! set-cdr! sin sqrt string string->list string->number string->symbol string-append string-ci<=? string-ci=? string-ci>? string-copy string-fill! string-length string-ref string-set! string<=? string=? string>? string? substring symbol->string symbol? tan transcript-off transcript-on truncate values vector vector->list vector-fill! vector-length vector-ref vector-set! with-input-from-file with-output-to-file write write-char zero?"},n={cN:"shebang",b:"^#!",e:"$"},c={cN:"literal",b:"(#t|#f|#\\\\"+t+"|#\\\\.)"},l={cN:"number",v:[{b:r,r:0},{b:i,r:0},{b:"#b[0-1]+(/[0-1]+)?"},{b:"#o[0-7]+(/[0-7]+)?"},{b:"#x[0-9a-f]+(/[0-9a-f]+)?"}]},s=e.QSM,o=[e.C(";","$",{r:0}),e.C("#\\|","\\|#")],u={b:t,r:0},p={cN:"variable",b:"'"+t},d={eW:!0,r:0},g={cN:"list",v:[{b:"\\(",e:"\\)"},{b:"\\[",e:"\\]"}],c:[{cN:"keyword",b:t,l:t,k:a},d]};return d.c=[c,l,s,u,p,g].concat(o),{i:/\S/,c:[n,l,s,p,g].concat(o)}});hljs.registerLanguage("stata",function(e){return{aliases:["do","ado"],cI:!0,k:"if else in foreach for forv forva forval forvalu forvalue forvalues by bys bysort xi quietly qui capture about ac ac_7 acprplot acprplot_7 adjust ado adopath adoupdate alpha ameans an ano anov anova anova_estat anova_terms anovadef aorder ap app appe appen append arch arch_dr arch_estat arch_p archlm areg areg_p args arima arima_dr arima_estat arima_p as asmprobit asmprobit_estat asmprobit_lf asmprobit_mfx__dlg asmprobit_p ass asse asser assert avplot avplot_7 avplots avplots_7 bcskew0 bgodfrey binreg bip0_lf biplot bipp_lf bipr_lf bipr_p biprobit bitest bitesti bitowt blogit bmemsize boot bootsamp bootstrap bootstrap_8 boxco_l boxco_p boxcox boxcox_6 boxcox_p bprobit br break brier bro brow brows browse brr brrstat bs bs_7 bsampl_w bsample bsample_7 bsqreg bstat bstat_7 bstat_8 bstrap bstrap_7 ca ca_estat ca_p cabiplot camat canon canon_8 canon_8_p canon_estat canon_p cap caprojection capt captu captur capture cat cc cchart cchart_7 cci cd censobs_table centile cf char chdir checkdlgfiles checkestimationsample checkhlpfiles checksum chelp ci cii cl class classutil clear cli clis clist clo clog clog_lf clog_p clogi clogi_sw clogit clogit_lf clogit_p clogitp clogl_sw cloglog clonevar clslistarray cluster cluster_measures cluster_stop cluster_tree cluster_tree_8 clustermat cmdlog cnr cnre cnreg cnreg_p cnreg_sw cnsreg codebook collaps4 collapse colormult_nb colormult_nw compare compress conf confi confir confirm conren cons const constr constra constrai constrain constraint continue contract copy copyright copysource cor corc corr corr2data corr_anti corr_kmo corr_smc corre correl correla correlat correlate corrgram cou coun count cox cox_p cox_sw coxbase coxhaz coxvar cprplot cprplot_7 crc cret cretu cretur creturn cross cs cscript cscript_log csi ct ct_is ctset ctst_5 ctst_st cttost cumsp cumsp_7 cumul cusum cusum_7 cutil d datasig datasign datasigna datasignat datasignatu datasignatur datasignature datetof db dbeta de dec deco decod decode deff des desc descr descri describ describe destring dfbeta dfgls dfuller di di_g dir dirstats dis discard disp disp_res disp_s displ displa display distinct do doe doed doedi doedit dotplot dotplot_7 dprobit drawnorm drop ds ds_util dstdize duplicates durbina dwstat dydx e ed edi edit egen eivreg emdef en enc enco encod encode eq erase ereg ereg_lf ereg_p ereg_sw ereghet ereghet_glf ereghet_glf_sh ereghet_gp ereghet_ilf ereghet_ilf_sh ereghet_ip eret eretu eretur ereturn err erro error est est_cfexist est_cfname est_clickable est_expand est_hold est_table est_unhold est_unholdok estat estat_default estat_summ estat_vce_only esti estimates etodow etof etomdy ex exi exit expand expandcl fac fact facto factor factor_estat factor_p factor_pca_rotated factor_rotate factormat fcast fcast_compute fcast_graph fdades fdadesc fdadescr fdadescri fdadescrib fdadescribe fdasav fdasave fdause fh_st file open file read file close file filefilter fillin find_hlp_file findfile findit findit_7 fit fl fli flis flist for5_0 form forma format fpredict frac_154 frac_adj frac_chk frac_cox frac_ddp frac_dis frac_dv frac_in frac_mun frac_pp frac_pq frac_pv frac_wgt frac_xo fracgen fracplot fracplot_7 fracpoly fracpred fron_ex fron_hn fron_p fron_tn fron_tn2 frontier ftodate ftoe ftomdy ftowdate g gamhet_glf gamhet_gp gamhet_ilf gamhet_ip gamma gamma_d2 gamma_p gamma_sw gammahet gdi_hexagon gdi_spokes ge gen gene gener genera generat generate genrank genstd genvmean gettoken gl gladder gladder_7 glim_l01 glim_l02 glim_l03 glim_l04 glim_l05 glim_l06 glim_l07 glim_l08 glim_l09 glim_l10 glim_l11 glim_l12 glim_lf glim_mu glim_nw1 glim_nw2 glim_nw3 glim_p glim_v1 glim_v2 glim_v3 glim_v4 glim_v5 glim_v6 glim_v7 glm glm_6 glm_p glm_sw glmpred glo glob globa global glogit glogit_8 glogit_p gmeans gnbre_lf gnbreg gnbreg_5 gnbreg_p gomp_lf gompe_sw gomper_p gompertz gompertzhet gomphet_glf gomphet_glf_sh gomphet_gp gomphet_ilf gomphet_ilf_sh gomphet_ip gphdot gphpen gphprint gprefs gprobi_p gprobit gprobit_8 gr gr7 gr_copy gr_current gr_db gr_describe gr_dir gr_draw gr_draw_replay gr_drop gr_edit gr_editviewopts gr_example gr_example2 gr_export gr_print gr_qscheme gr_query gr_read gr_rename gr_replay gr_save gr_set gr_setscheme gr_table gr_undo gr_use graph graph7 grebar greigen greigen_7 greigen_8 grmeanby grmeanby_7 gs_fileinfo gs_filetype gs_graphinfo gs_stat gsort gwood h hadimvo hareg hausman haver he heck_d2 heckma_p heckman heckp_lf heckpr_p heckprob hel help hereg hetpr_lf hetpr_p hetprob hettest hexdump hilite hist hist_7 histogram hlogit hlu hmeans hotel hotelling hprobit hreg hsearch icd9 icd9_ff icd9p iis impute imtest inbase include inf infi infil infile infix inp inpu input ins insheet insp inspe inspec inspect integ inten intreg intreg_7 intreg_p intrg2_ll intrg_ll intrg_ll2 ipolate iqreg ir irf irf_create irfm iri is_svy is_svysum isid istdize ivprob_1_lf ivprob_lf ivprobit ivprobit_p ivreg ivreg_footnote ivtob_1_lf ivtob_lf ivtobit ivtobit_p jackknife jacknife jknife jknife_6 jknife_8 jkstat joinby kalarma1 kap kap_3 kapmeier kappa kapwgt kdensity kdensity_7 keep ksm ksmirnov ktau kwallis l la lab labe label labelbook ladder levels levelsof leverage lfit lfit_p li lincom line linktest lis list lloghet_glf lloghet_glf_sh lloghet_gp lloghet_ilf lloghet_ilf_sh lloghet_ip llogi_sw llogis_p llogist llogistic llogistichet lnorm_lf lnorm_sw lnorma_p lnormal lnormalhet lnormhet_glf lnormhet_glf_sh lnormhet_gp lnormhet_ilf lnormhet_ilf_sh lnormhet_ip lnskew0 loadingplot loc loca local log logi logis_lf logistic logistic_p logit logit_estat logit_p loglogs logrank loneway lookfor lookup lowess lowess_7 lpredict lrecomp lroc lroc_7 lrtest ls lsens lsens_7 lsens_x lstat ltable ltable_7 ltriang lv lvr2plot lvr2plot_7 m ma mac macr macro makecns man manova manova_estat manova_p manovatest mantel mark markin markout marksample mat mat_capp mat_order mat_put_rr mat_rapp mata mata_clear mata_describe mata_drop mata_matdescribe mata_matsave mata_matuse mata_memory mata_mlib mata_mosave mata_rename mata_which matalabel matcproc matlist matname matr matri matrix matrix_input__dlg matstrik mcc mcci md0_ md1_ md1debug_ md2_ md2debug_ mds mds_estat mds_p mdsconfig mdslong mdsmat mdsshepard mdytoe mdytof me_derd mean means median memory memsize meqparse mer merg merge mfp mfx mhelp mhodds minbound mixed_ll mixed_ll_reparm mkassert mkdir mkmat mkspline ml ml_5 ml_adjs ml_bhhhs ml_c_d ml_check ml_clear ml_cnt ml_debug ml_defd ml_e0 ml_e0_bfgs ml_e0_cycle ml_e0_dfp ml_e0i ml_e1 ml_e1_bfgs ml_e1_bhhh ml_e1_cycle ml_e1_dfp ml_e2 ml_e2_cycle ml_ebfg0 ml_ebfr0 ml_ebfr1 ml_ebh0q ml_ebhh0 ml_ebhr0 ml_ebr0i ml_ecr0i ml_edfp0 ml_edfr0 ml_edfr1 ml_edr0i ml_eds ml_eer0i ml_egr0i ml_elf ml_elf_bfgs ml_elf_bhhh ml_elf_cycle ml_elf_dfp ml_elfi ml_elfs ml_enr0i ml_enrr0 ml_erdu0 ml_erdu0_bfgs ml_erdu0_bhhh ml_erdu0_bhhhq ml_erdu0_cycle ml_erdu0_dfp ml_erdu0_nrbfgs ml_exde ml_footnote ml_geqnr ml_grad0 ml_graph ml_hbhhh ml_hd0 ml_hold ml_init ml_inv ml_log ml_max ml_mlout ml_mlout_8 ml_model ml_nb0 ml_opt ml_p ml_plot ml_query ml_rdgrd ml_repor ml_s_e ml_score ml_searc ml_technique ml_unhold mleval mlf_ mlmatbysum mlmatsum mlog mlogi mlogit mlogit_footnote mlogit_p mlopts mlsum mlvecsum mnl0_ mor more mov move mprobit mprobit_lf mprobit_p mrdu0_ mrdu1_ mvdecode mvencode mvreg mvreg_estat n nbreg nbreg_al nbreg_lf nbreg_p nbreg_sw nestreg net newey newey_7 newey_p news nl nl_7 nl_9 nl_9_p nl_p nl_p_7 nlcom nlcom_p nlexp2 nlexp2_7 nlexp2a nlexp2a_7 nlexp3 nlexp3_7 nlgom3 nlgom3_7 nlgom4 nlgom4_7 nlinit nllog3 nllog3_7 nllog4 nllog4_7 nlog_rd nlogit nlogit_p nlogitgen nlogittree nlpred no nobreak noi nois noisi noisil noisily note notes notes_dlg nptrend numlabel numlist odbc old_ver olo olog ologi ologi_sw ologit ologit_p ologitp on one onew onewa oneway op_colnm op_comp op_diff op_inv op_str opr opro oprob oprob_sw oprobi oprobi_p oprobit oprobitp opts_exclusive order orthog orthpoly ou out outf outfi outfil outfile outs outsh outshe outshee outsheet ovtest pac pac_7 palette parse parse_dissim pause pca pca_8 pca_display pca_estat pca_p pca_rotate pcamat pchart pchart_7 pchi pchi_7 pcorr pctile pentium pergram pergram_7 permute permute_8 personal peto_st pkcollapse pkcross pkequiv pkexamine pkexamine_7 pkshape pksumm pksumm_7 pl plo plot plugin pnorm pnorm_7 poisgof poiss_lf poiss_sw poisso_p poisson poisson_estat post postclose postfile postutil pperron pr prais prais_e prais_e2 prais_p predict predictnl preserve print pro prob probi probit probit_estat probit_p proc_time procoverlay procrustes procrustes_estat procrustes_p profiler prog progr progra program prop proportion prtest prtesti pwcorr pwd q\\s qby qbys qchi qchi_7 qladder qladder_7 qnorm qnorm_7 qqplot qqplot_7 qreg qreg_c qreg_p qreg_sw qu quadchk quantile quantile_7 que quer query range ranksum ratio rchart rchart_7 rcof recast reclink recode reg reg3 reg3_p regdw regr regre regre_p2 regres regres_p regress regress_estat regriv_p remap ren rena renam rename renpfix repeat replace report reshape restore ret retu retur return rm rmdir robvar roccomp roccomp_7 roccomp_8 rocf_lf rocfit rocfit_8 rocgold rocplot rocplot_7 roctab roctab_7 rolling rologit rologit_p rot rota rotat rotate rotatemat rreg rreg_p ru run runtest rvfplot rvfplot_7 rvpplot rvpplot_7 sa safesum sample sampsi sav save savedresults saveold sc sca scal scala scalar scatter scm_mine sco scob_lf scob_p scobi_sw scobit scor score scoreplot scoreplot_help scree screeplot screeplot_help sdtest sdtesti se search separate seperate serrbar serrbar_7 serset set set_defaults sfrancia sh she shel shell shewhart shewhart_7 signestimationsample signrank signtest simul simul_7 simulate simulate_8 sktest sleep slogit slogit_d2 slogit_p smooth snapspan so sor sort spearman spikeplot spikeplot_7 spikeplt spline_x split sqreg sqreg_p sret sretu sretur sreturn ssc st st_ct st_hc st_hcd st_hcd_sh st_is st_issys st_note st_promo st_set st_show st_smpl st_subid stack statsby statsby_8 stbase stci stci_7 stcox stcox_estat stcox_fr stcox_fr_ll stcox_p stcox_sw stcoxkm stcoxkm_7 stcstat stcurv stcurve stcurve_7 stdes stem stepwise stereg stfill stgen stir stjoin stmc stmh stphplot stphplot_7 stphtest stphtest_7 stptime strate strate_7 streg streg_sw streset sts sts_7 stset stsplit stsum sttocc sttoct stvary stweib su suest suest_8 sum summ summa summar summari summariz summarize sunflower sureg survcurv survsum svar svar_p svmat svy svy_disp svy_dreg svy_est svy_est_7 svy_estat svy_get svy_gnbreg_p svy_head svy_header svy_heckman_p svy_heckprob_p svy_intreg_p svy_ivreg_p svy_logistic_p svy_logit_p svy_mlogit_p svy_nbreg_p svy_ologit_p svy_oprobit_p svy_poisson_p svy_probit_p svy_regress_p svy_sub svy_sub_7 svy_x svy_x_7 svy_x_p svydes svydes_8 svygen svygnbreg svyheckman svyheckprob svyintreg svyintreg_7 svyintrg svyivreg svylc svylog_p svylogit svymarkout svymarkout_8 svymean svymlog svymlogit svynbreg svyolog svyologit svyoprob svyoprobit svyopts svypois svypois_7 svypoisson svyprobit svyprobt svyprop svyprop_7 svyratio svyreg svyreg_p svyregress svyset svyset_7 svyset_8 svytab svytab_7 svytest svytotal sw sw_8 swcnreg swcox swereg swilk swlogis swlogit swologit swoprbt swpois swprobit swqreg swtobit swweib symmetry symmi symplot symplot_7 syntax sysdescribe sysdir sysuse szroeter ta tab tab1 tab2 tab_or tabd tabdi tabdis tabdisp tabi table tabodds tabodds_7 tabstat tabu tabul tabula tabulat tabulate te tempfile tempname tempvar tes test testnl testparm teststd tetrachoric time_it timer tis tob tobi tobit tobit_p tobit_sw token tokeni tokeniz tokenize tostring total translate translator transmap treat_ll treatr_p treatreg trim trnb_cons trnb_mean trpoiss_d2 trunc_ll truncr_p truncreg tsappend tset tsfill tsline tsline_ex tsreport tsrevar tsrline tsset tssmooth tsunab ttest ttesti tut_chk tut_wait tutorial tw tware_st two twoway twoway__fpfit_serset twoway__function_gen twoway__histogram_gen twoway__ipoint_serset twoway__ipoints_serset twoway__kdensity_gen twoway__lfit_serset twoway__normgen_gen twoway__pci_serset twoway__qfit_serset twoway__scatteri_serset twoway__sunflower_gen twoway_ksm_serset ty typ type typeof u unab unabbrev unabcmd update us use uselabel var var_mkcompanion var_p varbasic varfcast vargranger varirf varirf_add varirf_cgraph varirf_create varirf_ctable varirf_describe varirf_dir varirf_drop varirf_erase varirf_graph varirf_ograph varirf_rename varirf_set varirf_table varlist varlmar varnorm varsoc varstable varstable_w varstable_w2 varwle vce vec vec_fevd vec_mkphi vec_p vec_p_w vecirf_create veclmar veclmar_w vecnorm vecnorm_w vecrank vecstable verinst vers versi versio version view viewsource vif vwls wdatetof webdescribe webseek webuse weib1_lf weib2_lf weib_lf weib_lf0 weibhet_glf weibhet_glf_sh weibhet_glfa weibhet_glfa_sh weibhet_gp weibhet_ilf weibhet_ilf_sh weibhet_ilfa weibhet_ilfa_sh weibhet_ip weibu_sw weibul_p weibull weibull_c weibull_s weibullhet wh whelp whi which whil while wilc_st wilcoxon win wind windo window winexec wntestb wntestb_7 wntestq xchart xchart_7 xcorr xcorr_7 xi xi_6 xmlsav xmlsave xmluse xpose xsh xshe xshel xshell xt_iis xt_tis xtab_p xtabond xtbin_p xtclog xtcloglog xtcloglog_8 xtcloglog_d2 xtcloglog_pa_p xtcloglog_re_p xtcnt_p xtcorr xtdata xtdes xtfront_p xtfrontier xtgee xtgee_elink xtgee_estat xtgee_makeivar xtgee_p xtgee_plink xtgls xtgls_p xthaus xthausman xtht_p xthtaylor xtile xtint_p xtintreg xtintreg_8 xtintreg_d2 xtintreg_p xtivp_1 xtivp_2 xtivreg xtline xtline_ex xtlogit xtlogit_8 xtlogit_d2 xtlogit_fe_p xtlogit_pa_p xtlogit_re_p xtmixed xtmixed_estat xtmixed_p xtnb_fe xtnb_lf xtnbreg xtnbreg_pa_p xtnbreg_refe_p xtpcse xtpcse_p xtpois xtpoisson xtpoisson_d2 xtpoisson_pa_p xtpoisson_refe_p xtpred xtprobit xtprobit_8 xtprobit_d2 xtprobit_re_p xtps_fe xtps_lf xtps_ren xtps_ren_8 xtrar_p xtrc xtrc_p xtrchh xtrefe_p xtreg xtreg_be xtreg_fe xtreg_ml xtreg_pa_p xtreg_re xtregar xtrere_p xtset xtsf_ll xtsf_llti xtsum xttab xttest0 xttobit xttobit_8 xttobit_p xttrans yx yxview__barlike_draw yxview_area_draw yxview_bar_draw yxview_dot_draw yxview_dropline_draw yxview_function_draw yxview_iarrow_draw yxview_ilabels_draw yxview_normal_draw yxview_pcarrow_draw yxview_pcbarrow_draw yxview_pccapsym_draw yxview_pcscatter_draw yxview_pcspike_draw yxview_rarea_draw yxview_rbar_draw yxview_rbarm_draw yxview_rcap_draw yxview_rcapsym_draw yxview_rconnected_draw yxview_rline_draw yxview_rscatter_draw yxview_rspike_draw yxview_spike_draw yxview_sunflower_draw zap_s zinb zinb_llf zinb_plf zip zip_llf zip_p zip_plf zt_ct_5 zt_hc_5 zt_hcd_5 zt_is_5 zt_iss_5 zt_sho_5 zt_smp_5 ztbase_5 ztcox_5 ztdes_5 ztereg_5 ztfill_5 ztgen_5 ztir_5 ztjoin_5 ztnb ztnb_p ztp ztp_p zts_5 ztset_5 ztspli_5 ztsum_5 zttoct_5 ztvary_5 ztweib_5",c:[{cN:"label",v:[{b:"\\$\\{?[a-zA-Z0-9_]+\\}?"},{b:"`[a-zA-Z0-9_]+'"}]},{cN:"string",v:[{b:'`"[^\r\n]*?"\''},{b:'"[^\r\n"]*"'}]},{cN:"literal",v:[{b:"\\b(abs|acos|asin|atan|atan2|atanh|ceil|cloglog|comb|cos|digamma|exp|floor|invcloglog|invlogit|ln|lnfact|lnfactorial|lngamma|log|log10|max|min|mod|reldif|round|sign|sin|sqrt|sum|tan|tanh|trigamma|trunc|betaden|Binomial|binorm|binormal|chi2|chi2tail|dgammapda|dgammapdada|dgammapdadx|dgammapdx|dgammapdxdx|F|Fden|Ftail|gammaden|gammap|ibeta|invbinomial|invchi2|invchi2tail|invF|invFtail|invgammap|invibeta|invnchi2|invnFtail|invnibeta|invnorm|invnormal|invttail|nbetaden|nchi2|nFden|nFtail|nibeta|norm|normal|normalden|normd|npnchi2|tden|ttail|uniform|abbrev|char|index|indexnot|length|lower|ltrim|match|plural|proper|real|regexm|regexr|regexs|reverse|rtrim|string|strlen|strlower|strltrim|strmatch|strofreal|strpos|strproper|strreverse|strrtrim|strtrim|strupper|subinstr|subinword|substr|trim|upper|word|wordcount|_caller|autocode|byteorder|chop|clip|cond|e|epsdouble|epsfloat|group|inlist|inrange|irecode|matrix|maxbyte|maxdouble|maxfloat|maxint|maxlong|mi|minbyte|mindouble|minfloat|minint|minlong|missing|r|recode|replay|return|s|scalar|d|date|day|dow|doy|halfyear|mdy|month|quarter|week|year|d|daily|dofd|dofh|dofm|dofq|dofw|dofy|h|halfyearly|hofd|m|mofd|monthly|q|qofd|quarterly|tin|twithin|w|weekly|wofd|y|yearly|yh|ym|yofd|yq|yw|cholesky|colnumb|colsof|corr|det|diag|diag0cnt|el|get|hadamard|I|inv|invsym|issym|issymmetric|J|matmissing|matuniform|mreldif|nullmat|rownumb|rowsof|sweep|syminv|trace|vec|vecdiag)(?=\\(|$)"}]},e.C("^[ ]*\\*.*$",!1),e.CLCM,e.CBCM]}});hljs.registerLanguage("asciidoc",function(e){return{aliases:["adoc"],c:[e.C("^/{4,}\\n","\\n/{4,}$",{r:10}),e.C("^//","$",{r:0}),{cN:"title",b:"^\\.\\w.*$"},{b:"^[=\\*]{4,}\\n",e:"\\n^[=\\*]{4,}$",r:10},{cN:"header",b:"^(={1,5}) .+?( \\1)?$",r:10},{cN:"header",b:"^[^\\[\\]\\n]+?\\n[=\\-~\\^\\+]{2,}$",r:10},{cN:"attribute",b:"^:.+?:",e:"\\s",eE:!0,r:10},{cN:"attribute",b:"^\\[.+?\\]$",r:0},{cN:"blockquote",b:"^_{4,}\\n",e:"\\n_{4,}$",r:10},{cN:"code",b:"^[\\-\\.]{4,}\\n",e:"\\n[\\-\\.]{4,}$",r:10},{b:"^\\+{4,}\\n",e:"\\n\\+{4,}$",c:[{b:"<",e:">",sL:"xml",r:0}],r:10},{cN:"bullet",b:"^(\\*+|\\-+|\\.+|[^\\n]+?::)\\s+"},{cN:"label",b:"^(NOTE|TIP|IMPORTANT|WARNING|CAUTION):\\s+",r:10},{cN:"strong",b:"\\B\\*(?![\\*\\s])",e:"(\\n{2}|\\*)",c:[{b:"\\\\*\\w",r:0}]},{cN:"emphasis",b:"\\B'(?!['\\s])",e:"(\\n{2}|')",c:[{b:"\\\\'\\w",r:0}],r:0},{cN:"emphasis",b:"_(?![_\\s])",e:"(\\n{2}|_)",r:0},{cN:"smartquote",v:[{b:"``.+?''"},{b:"`.+?'"}]},{cN:"code",b:"(`.+?`|\\+.+?\\+)",r:0},{cN:"code",b:"^[ \\t]",e:"$",r:0},{cN:"horizontal_rule",b:"^'{3,}[ \\t]*$",r:10},{b:"(link:)?(http|https|ftp|file|irc|image:?):\\S+\\[.*?\\]",rB:!0,c:[{b:"(link|image:?):",r:0},{cN:"link_url",b:"\\w",e:"[^\\[]+",r:0},{cN:"link_label",b:"\\[",e:"\\]",eB:!0,eE:!0,r:0}],r:10}]}});hljs.registerLanguage("php",function(e){var c={cN:"variable",b:"\\$+[a-zA-Z_-ÿ][a-zA-Z0-9_-ÿ]*"},i={cN:"preprocessor",b:/<\?(php)?|\?>/},a={cN:"string",c:[e.BE,i],v:[{b:'b"',e:'"'},{b:"b'",e:"'"},e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},n={v:[e.BNM,e.CNM]};return{aliases:["php3","php4","php5","php6"],cI:!0,k:"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception default die require __FUNCTION__ enddeclare final try switch continue endfor endif declare unset true false trait goto instanceof insteadof __DIR__ __NAMESPACE__ yield finally",c:[e.CLCM,e.HCM,e.C("/\\*","\\*/",{c:[{cN:"phpdoc",b:"\\s@[A-Za-z]+"},i]}),e.C("__halt_compiler.+?;",!1,{eW:!0,k:"__halt_compiler",l:e.UIR}),{cN:"string",b:"<<<['\"]?\\w+['\"]?$",e:"^\\w+;",c:[e.BE]},i,c,{b:/(::|->)+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/},{cN:"function",bK:"function",e:/[;{]/,eE:!0,i:"\\$|\\[|%",c:[e.UTM,{cN:"params",b:"\\(",e:"\\)",c:["self",c,e.CBCM,a,n]}]},{cN:"class",bK:"class interface",e:"{",eE:!0,i:/[:\(\$"]/,c:[{bK:"extends implements"},e.UTM]},{bK:"namespace",e:";",i:/[\.']/,c:[e.UTM]},{bK:"use",e:";",c:[e.UTM]},{b:"=>"},a,n]}});hljs.registerLanguage("java",function(e){var a=e.UIR+"(<"+e.UIR+">)?",t="false synchronized int abstract float private char boolean static null if const for true while long strictfp finally protected import native final void enum else break transient catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private",c="(\\b(0b[01_]+)|\\b0[xX][a-fA-F0-9_]+|(\\b[\\d_]+(\\.[\\d_]*)?|\\.[\\d_]+)([eE][-+]?\\d+)?)[lLfF]?",r={cN:"number",b:c,r:0};return{aliases:["jsp"],k:t,i:/<\//,c:[{cN:"javadoc",b:"/\\*\\*",e:"\\*/",r:0,c:[{cN:"javadoctag",b:"(^|\\s)@[A-Za-z]+"}]},e.CLCM,e.CBCM,e.ASM,e.QSM,{cN:"class",bK:"class interface",e:/[{;=]/,eE:!0,k:"class interface",i:/[:"\[\]]/,c:[{bK:"extends implements"},e.UTM]},{bK:"new throw return",r:0},{cN:"function",b:"("+a+"\\s+)+"+e.UIR+"\\s*\\(",rB:!0,e:/[{;=]/,eE:!0,k:t,c:[{b:e.UIR+"\\s*\\(",rB:!0,r:0,c:[e.UTM]},{cN:"params",b:/\(/,e:/\)/,k:t,r:0,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]},r,{cN:"annotation",b:"@[A-Za-z]+"}]}});hljs.registerLanguage("glsl",function(e){return{k:{keyword:"atomic_uint attribute bool break bvec2 bvec3 bvec4 case centroid coherent const continue default discard dmat2 dmat2x2 dmat2x3 dmat2x4 dmat3 dmat3x2 dmat3x3 dmat3x4 dmat4 dmat4x2 dmat4x3 dmat4x4 do double dvec2 dvec3 dvec4 else flat float for highp if iimage1D iimage1DArray iimage2D iimage2DArray iimage2DMS iimage2DMSArray iimage2DRect iimage3D iimageBuffer iimageCube iimageCubeArray image1D image1DArray image2D image2DArray image2DMS image2DMSArray image2DRect image3D imageBuffer imageCube imageCubeArray in inout int invariant isampler1D isampler1DArray isampler2D isampler2DArray isampler2DMS isampler2DMSArray isampler2DRect isampler3D isamplerBuffer isamplerCube isamplerCubeArray ivec2 ivec3 ivec4 layout lowp mat2 mat2x2 mat2x3 mat2x4 mat3 mat3x2 mat3x3 mat3x4 mat4 mat4x2 mat4x3 mat4x4 mediump noperspective out patch precision readonly restrict return sample sampler1D sampler1DArray sampler1DArrayShadow sampler1DShadow sampler2D sampler2DArray sampler2DArrayShadow sampler2DMS sampler2DMSArray sampler2DRect sampler2DRectShadow sampler2DShadow sampler3D samplerBuffer samplerCube samplerCubeArray samplerCubeArrayShadow samplerCubeShadow smooth struct subroutine switch uimage1D uimage1DArray uimage2D uimage2DArray uimage2DMS uimage2DMSArray uimage2DRect uimage3D uimageBuffer uimageCube uimageCubeArray uint uniform usampler1D usampler1DArray usampler2D usampler2DArray usampler2DMS usampler2DMSArray usampler2DRect usampler3D usamplerBuffer usamplerCube usamplerCubeArray uvec2 uvec3 uvec4 varying vec2 vec3 vec4 void volatile while writeonly",built_in:"gl_BackColor gl_BackLightModelProduct gl_BackLightProduct gl_BackMaterial gl_BackSecondaryColor gl_ClipDistance gl_ClipPlane gl_ClipVertex gl_Color gl_DepthRange gl_EyePlaneQ gl_EyePlaneR gl_EyePlaneS gl_EyePlaneT gl_Fog gl_FogCoord gl_FogFragCoord gl_FragColor gl_FragCoord gl_FragData gl_FragDepth gl_FrontColor gl_FrontFacing gl_FrontLightModelProduct gl_FrontLightProduct gl_FrontMaterial gl_FrontSecondaryColor gl_InstanceID gl_InvocationID gl_Layer gl_LightModel gl_LightSource gl_MaxAtomicCounterBindings gl_MaxAtomicCounterBufferSize gl_MaxClipDistances gl_MaxClipPlanes gl_MaxCombinedAtomicCounterBuffers gl_MaxCombinedAtomicCounters gl_MaxCombinedImageUniforms gl_MaxCombinedImageUnitsAndFragmentOutputs gl_MaxCombinedTextureImageUnits gl_MaxDrawBuffers gl_MaxFragmentAtomicCounterBuffers gl_MaxFragmentAtomicCounters gl_MaxFragmentImageUniforms gl_MaxFragmentInputComponents gl_MaxFragmentUniformComponents gl_MaxFragmentUniformVectors gl_MaxGeometryAtomicCounterBuffers gl_MaxGeometryAtomicCounters gl_MaxGeometryImageUniforms gl_MaxGeometryInputComponents gl_MaxGeometryOutputComponents gl_MaxGeometryOutputVertices gl_MaxGeometryTextureImageUnits gl_MaxGeometryTotalOutputComponents gl_MaxGeometryUniformComponents gl_MaxGeometryVaryingComponents gl_MaxImageSamples gl_MaxImageUnits gl_MaxLights gl_MaxPatchVertices gl_MaxProgramTexelOffset gl_MaxTessControlAtomicCounterBuffers gl_MaxTessControlAtomicCounters gl_MaxTessControlImageUniforms gl_MaxTessControlInputComponents gl_MaxTessControlOutputComponents gl_MaxTessControlTextureImageUnits gl_MaxTessControlTotalOutputComponents gl_MaxTessControlUniformComponents gl_MaxTessEvaluationAtomicCounterBuffers gl_MaxTessEvaluationAtomicCounters gl_MaxTessEvaluationImageUniforms gl_MaxTessEvaluationInputComponents gl_MaxTessEvaluationOutputComponents gl_MaxTessEvaluationTextureImageUnits gl_MaxTessEvaluationUniformComponents gl_MaxTessGenLevel gl_MaxTessPatchComponents gl_MaxTextureCoords gl_MaxTextureImageUnits gl_MaxTextureUnits gl_MaxVaryingComponents gl_MaxVaryingFloats gl_MaxVaryingVectors gl_MaxVertexAtomicCounterBuffers gl_MaxVertexAtomicCounters gl_MaxVertexAttribs gl_MaxVertexImageUniforms gl_MaxVertexOutputComponents gl_MaxVertexTextureImageUnits gl_MaxVertexUniformComponents gl_MaxVertexUniformVectors gl_MaxViewports gl_MinProgramTexelOffsetgl_ModelViewMatrix gl_ModelViewMatrixInverse gl_ModelViewMatrixInverseTranspose gl_ModelViewMatrixTranspose gl_ModelViewProjectionMatrix gl_ModelViewProjectionMatrixInverse gl_ModelViewProjectionMatrixInverseTranspose gl_ModelViewProjectionMatrixTranspose gl_MultiTexCoord0 gl_MultiTexCoord1 gl_MultiTexCoord2 gl_MultiTexCoord3 gl_MultiTexCoord4 gl_MultiTexCoord5 gl_MultiTexCoord6 gl_MultiTexCoord7 gl_Normal gl_NormalMatrix gl_NormalScale gl_ObjectPlaneQ gl_ObjectPlaneR gl_ObjectPlaneS gl_ObjectPlaneT gl_PatchVerticesIn gl_PerVertex gl_Point gl_PointCoord gl_PointSize gl_Position gl_PrimitiveID gl_PrimitiveIDIn gl_ProjectionMatrix gl_ProjectionMatrixInverse gl_ProjectionMatrixInverseTranspose gl_ProjectionMatrixTranspose gl_SampleID gl_SampleMask gl_SampleMaskIn gl_SamplePosition gl_SecondaryColor gl_TessCoord gl_TessLevelInner gl_TessLevelOuter gl_TexCoord gl_TextureEnvColor gl_TextureMatrixInverseTranspose gl_TextureMatrixTranspose gl_Vertex gl_VertexID gl_ViewportIndex gl_in gl_out EmitStreamVertex EmitVertex EndPrimitive EndStreamPrimitive abs acos acosh all any asin asinh atan atanh atomicCounter atomicCounterDecrement atomicCounterIncrement barrier bitCount bitfieldExtract bitfieldInsert bitfieldReverse ceil clamp cos cosh cross dFdx dFdy degrees determinant distance dot equal exp exp2 faceforward findLSB findMSB floatBitsToInt floatBitsToUint floor fma fract frexp ftransform fwidth greaterThan greaterThanEqual imageAtomicAdd imageAtomicAnd imageAtomicCompSwap imageAtomicExchange imageAtomicMax imageAtomicMin imageAtomicOr imageAtomicXor imageLoad imageStore imulExtended intBitsToFloat interpolateAtCentroid interpolateAtOffset interpolateAtSample inverse inversesqrt isinf isnan ldexp length lessThan lessThanEqual log log2 matrixCompMult max memoryBarrier min mix mod modf noise1 noise2 noise3 noise4 normalize not notEqual outerProduct packDouble2x32 packHalf2x16 packSnorm2x16 packSnorm4x8 packUnorm2x16 packUnorm4x8 pow radians reflect refract round roundEven shadow1D shadow1DLod shadow1DProj shadow1DProjLod shadow2D shadow2DLod shadow2DProj shadow2DProjLod sign sin sinh smoothstep sqrt step tan tanh texelFetch texelFetchOffset texture texture1D texture1DLod texture1DProj texture1DProjLod texture2D texture2DLod texture2DProj texture2DProjLod texture3D texture3DLod texture3DProj texture3DProjLod textureCube textureCubeLod textureGather textureGatherOffset textureGatherOffsets textureGrad textureGradOffset textureLod textureLodOffset textureOffset textureProj textureProjGrad textureProjGradOffset textureProjLod textureProjLodOffset textureProjOffset textureQueryLod textureSize transpose trunc uaddCarry uintBitsToFloat umulExtended unpackDouble2x32 unpackHalf2x16 unpackSnorm2x16 unpackSnorm4x8 unpackUnorm2x16 unpackUnorm4x8 usubBorrow gl_TextureMatrix gl_TextureMatrixInverse",literal:"true false"},i:'"',c:[e.CLCM,e.CBCM,e.CNM,{cN:"preprocessor",b:"#",e:"$"}]}});hljs.registerLanguage("lua",function(e){var t="\\[=*\\[",a="\\]=*\\]",r={b:t,e:a,c:["self"]},n=[e.C("--(?!"+t+")","$"),e.C("--"+t,a,{c:[r],r:10})];return{l:e.UIR,k:{keyword:"and break do else elseif end false for if in local nil not or repeat return then true until while",built_in:"_G _VERSION assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstring module next pairs pcall print rawequal rawget rawset require select setfenv setmetatable tonumber tostring type unpack xpcall coroutine debug io math os package string table"},c:n.concat([{cN:"function",bK:"function",e:"\\)",c:[e.inherit(e.TM,{b:"([_a-zA-Z]\\w*\\.)*([_a-zA-Z]\\w*:)?[_a-zA-Z]\\w*"}),{cN:"params",b:"\\(",eW:!0,c:n}].concat(n)},e.CNM,e.ASM,e.QSM,{cN:"string",b:t,e:a,c:[r],r:5}])}});hljs.registerLanguage("protobuf",function(e){return{k:{keyword:"package import option optional required repeated group",built_in:"double float int32 int64 uint32 uint64 sint32 sint64 fixed32 fixed64 sfixed32 sfixed64 bool string bytes",literal:"true false"},c:[e.QSM,e.NM,e.CLCM,{cN:"class",bK:"message enum service",e:/\{/,i:/\n/,c:[e.inherit(e.TM,{starts:{eW:!0,eE:!0}})]},{cN:"function",bK:"rpc",e:/;/,eE:!0,k:"rpc returns"},{cN:"constant",b:/^\s*[A-Z_]+/,e:/\s*=/,eE:!0}]}});hljs.registerLanguage("gcode",function(e){var N="[A-Z_][A-Z0-9_.]*",i="\\%",c={literal:"",built_in:"",keyword:"IF DO WHILE ENDWHILE CALL ENDIF SUB ENDSUB GOTO REPEAT ENDREPEAT EQ LT GT NE GE LE OR XOR"},r={cN:"preprocessor",b:"([O])([0-9]+)"},l=[e.CLCM,e.CBCM,e.C(/\(/,/\)/),e.inherit(e.CNM,{b:"([-+]?([0-9]*\\.?[0-9]+\\.?))|"+e.CNR}),e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null}),{cN:"keyword",b:"([G])([0-9]+\\.?[0-9]?)"},{cN:"title",b:"([M])([0-9]+\\.?[0-9]?)"},{cN:"title",b:"(VC|VS|#)",e:"(\\d+)"},{cN:"title",b:"(VZOFX|VZOFY|VZOFZ)"},{cN:"built_in",b:"(ATAN|ABS|ACOS|ASIN|SIN|COS|EXP|FIX|FUP|ROUND|LN|TAN)(\\[)",e:"([-+]?([0-9]*\\.?[0-9]+\\.?))(\\])"},{cN:"label",v:[{b:"N",e:"\\d+",i:"\\W"}]}];return{aliases:["nc"],cI:!0,l:N,k:c,c:[{cN:"preprocessor",b:i},r].concat(l)}});hljs.registerLanguage("vim",function(e){return{l:/[!#@\w]+/,k:{keyword:"N|0 P|0 X|0 a|0 ab abc abo al am an|0 ar arga argd arge argdo argg argl argu as au aug aun b|0 bN ba bad bd be bel bf bl bm bn bo bp br brea breaka breakd breakl bro bufdo buffers bun bw c|0 cN cNf ca cabc caddb cad caddf cal cat cb cc ccl cd ce cex cf cfir cgetb cgete cg changes chd che checkt cl cla clo cm cmapc cme cn cnew cnf cno cnorea cnoreme co col colo com comc comp con conf cope cp cpf cq cr cs cst cu cuna cunme cw d|0 delm deb debugg delc delf dif diffg diffo diffp diffpu diffs diffthis dig di dl dell dj dli do doautoa dp dr ds dsp e|0 ea ec echoe echoh echom echon el elsei em en endfo endf endt endw ene ex exe exi exu f|0 files filet fin fina fini fir fix fo foldc foldd folddoc foldo for fu g|0 go gr grepa gu gv ha h|0 helpf helpg helpt hi hid his i|0 ia iabc if ij il im imapc ime ino inorea inoreme int is isp iu iuna iunme j|0 ju k|0 keepa kee keepj lN lNf l|0 lad laddb laddf la lan lat lb lc lch lcl lcs le lefta let lex lf lfir lgetb lgete lg lgr lgrepa lh ll lla lli lmak lm lmapc lne lnew lnf ln loadk lo loc lockv lol lope lp lpf lr ls lt lu lua luad luaf lv lvimgrepa lw m|0 ma mak map mapc marks mat me menut mes mk mks mksp mkv mkvie mod mz mzf nbc nb nbs n|0 new nm nmapc nme nn nnoreme noa no noh norea noreme norm nu nun nunme ol o|0 om omapc ome on ono onoreme opt ou ounme ow p|0 profd prof pro promptr pc ped pe perld po popu pp pre prev ps pt ptN ptf ptj ptl ptn ptp ptr pts pu pw py3 python3 py3d py3f py pyd pyf q|0 quita qa r|0 rec red redi redr redraws reg res ret retu rew ri rightb rub rubyd rubyf rund ru rv s|0 sN san sa sal sav sb sbN sba sbf sbl sbm sbn sbp sbr scrip scripte scs se setf setg setl sf sfir sh sim sig sil sl sla sm smap smapc sme sn sni sno snor snoreme sor so spelld spe spelli spellr spellu spellw sp spr sre st sta startg startr star stopi stj sts sun sunm sunme sus sv sw sy synti sync t|0 tN tabN tabc tabdo tabe tabf tabfir tabl tabm tabnew tabn tabo tabp tabr tabs tab ta tags tc tcld tclf te tf th tj tl tm tn to tp tr try ts tu u|0 undoj undol una unh unl unlo unm unme uns up v|0 ve verb vert vim vimgrepa vi viu vie vm vmapc vme vne vn vnoreme vs vu vunme windo w|0 wN wa wh wi winc winp wn wp wq wqa ws wu wv x|0 xa xmapc xm xme xn xnoreme xu xunme y|0 z|0 ~ Next Print append abbreviate abclear aboveleft all amenu anoremenu args argadd argdelete argedit argglobal arglocal argument ascii autocmd augroup aunmenu buffer bNext ball badd bdelete behave belowright bfirst blast bmodified bnext botright bprevious brewind break breakadd breakdel breaklist browse bunload bwipeout change cNext cNfile cabbrev cabclear caddbuffer caddexpr caddfile call catch cbuffer cclose center cexpr cfile cfirst cgetbuffer cgetexpr cgetfile chdir checkpath checktime clist clast close cmap cmapclear cmenu cnext cnewer cnfile cnoremap cnoreabbrev cnoremenu copy colder colorscheme command comclear compiler continue confirm copen cprevious cpfile cquit crewind cscope cstag cunmap cunabbrev cunmenu cwindow delete delmarks debug debuggreedy delcommand delfunction diffupdate diffget diffoff diffpatch diffput diffsplit digraphs display deletel djump dlist doautocmd doautoall deletep drop dsearch dsplit edit earlier echo echoerr echohl echomsg else elseif emenu endif endfor endfunction endtry endwhile enew execute exit exusage file filetype find finally finish first fixdel fold foldclose folddoopen folddoclosed foldopen function global goto grep grepadd gui gvim hardcopy help helpfind helpgrep helptags highlight hide history insert iabbrev iabclear ijump ilist imap imapclear imenu inoremap inoreabbrev inoremenu intro isearch isplit iunmap iunabbrev iunmenu join jumps keepalt keepmarks keepjumps lNext lNfile list laddexpr laddbuffer laddfile last language later lbuffer lcd lchdir lclose lcscope left leftabove lexpr lfile lfirst lgetbuffer lgetexpr lgetfile lgrep lgrepadd lhelpgrep llast llist lmake lmap lmapclear lnext lnewer lnfile lnoremap loadkeymap loadview lockmarks lockvar lolder lopen lprevious lpfile lrewind ltag lunmap luado luafile lvimgrep lvimgrepadd lwindow move mark make mapclear match menu menutranslate messages mkexrc mksession mkspell mkvimrc mkview mode mzscheme mzfile nbclose nbkey nbsart next nmap nmapclear nmenu nnoremap nnoremenu noautocmd noremap nohlsearch noreabbrev noremenu normal number nunmap nunmenu oldfiles open omap omapclear omenu only onoremap onoremenu options ounmap ounmenu ownsyntax print profdel profile promptfind promptrepl pclose pedit perl perldo pop popup ppop preserve previous psearch ptag ptNext ptfirst ptjump ptlast ptnext ptprevious ptrewind ptselect put pwd py3do py3file python pydo pyfile quit quitall qall read recover redo redir redraw redrawstatus registers resize retab return rewind right rightbelow ruby rubydo rubyfile rundo runtime rviminfo substitute sNext sandbox sargument sall saveas sbuffer sbNext sball sbfirst sblast sbmodified sbnext sbprevious sbrewind scriptnames scriptencoding scscope set setfiletype setglobal setlocal sfind sfirst shell simalt sign silent sleep slast smagic smapclear smenu snext sniff snomagic snoremap snoremenu sort source spelldump spellgood spellinfo spellrepall spellundo spellwrong split sprevious srewind stop stag startgreplace startreplace startinsert stopinsert stjump stselect sunhide sunmap sunmenu suspend sview swapname syntax syntime syncbind tNext tabNext tabclose tabedit tabfind tabfirst tablast tabmove tabnext tabonly tabprevious tabrewind tag tcl tcldo tclfile tearoff tfirst throw tjump tlast tmenu tnext topleft tprevious trewind tselect tunmenu undo undojoin undolist unabbreviate unhide unlet unlockvar unmap unmenu unsilent update vglobal version verbose vertical vimgrep vimgrepadd visual viusage view vmap vmapclear vmenu vnew vnoremap vnoremenu vsplit vunmap vunmenu write wNext wall while winsize wincmd winpos wnext wprevious wqall wsverb wundo wviminfo xit xall xmapclear xmap xmenu xnoremap xnoremenu xunmap xunmenu yank",built_in:"abs acos add and append argc argidx argv asin atan atan2 browse browsedir bufexists buflisted bufloaded bufname bufnr bufwinnr byte2line byteidx call ceil changenr char2nr cindent clearmatches col complete complete_add complete_check confirm copy cos cosh count cscope_connection cursor deepcopy delete did_filetype diff_filler diff_hlID empty escape eval eventhandler executable exists exp expand extend feedkeys filereadable filewritable filter finddir findfile float2nr floor fmod fnameescape fnamemodify foldclosed foldclosedend foldlevel foldtext foldtextresult foreground function garbagecollect get getbufline getbufvar getchar getcharmod getcmdline getcmdpos getcmdtype getcwd getfontname getfperm getfsize getftime getftype getline getloclist getmatches getpid getpos getqflist getreg getregtype gettabvar gettabwinvar getwinposx getwinposy getwinvar glob globpath has has_key haslocaldir hasmapto histadd histdel histget histnr hlexists hlID hostname iconv indent index input inputdialog inputlist inputrestore inputsave inputsecret insert invert isdirectory islocked items join keys len libcall libcallnr line line2byte lispindent localtime log log10 luaeval map maparg mapcheck match matchadd matcharg matchdelete matchend matchlist matchstr max min mkdir mode mzeval nextnonblank nr2char or pathshorten pow prevnonblank printf pumvisible py3eval pyeval range readfile reltime reltimestr remote_expr remote_foreground remote_peek remote_read remote_send remove rename repeat resolve reverse round screenattr screenchar screencol screenrow search searchdecl searchpair searchpairpos searchpos server2client serverlist setbufvar setcmdpos setline setloclist setmatches setpos setqflist setreg settabvar settabwinvar setwinvar sha256 shellescape shiftwidth simplify sin sinh sort soundfold spellbadword spellsuggest split sqrt str2float str2nr strchars strdisplaywidth strftime stridx string strlen strpart strridx strtrans strwidth submatch substitute synconcealed synID synIDattr synIDtrans synstack system tabpagebuflist tabpagenr tabpagewinnr tagfiles taglist tan tanh tempname tolower toupper tr trunc type undofile undotree values virtcol visualmode wildmenumode winbufnr wincol winheight winline winnr winrestcmd winrestview winsaveview winwidth writefile xor"},i:/[{:]/,c:[e.NM,e.ASM,{cN:"string",b:/"((\\")|[^"\n])*("|\n)/},{cN:"variable",b:/[bwtglsav]:[\w\d_]*/},{cN:"function",bK:"function function!",e:"$",r:0,c:[e.TM,{cN:"params",b:"\\(",e:"\\)"}]}]}});hljs.registerLanguage("processing",function(e){return{k:{keyword:"BufferedReader PVector PFont PImage PGraphics HashMap boolean byte char color double float int long String Array FloatDict FloatList IntDict IntList JSONArray JSONObject Object StringDict StringList Table TableRow XML false synchronized int abstract float private char boolean static null if const for true while long throw strictfp finally protected import native final return void enum else break transient new catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private",constant:"P2D P3D HALF_PI PI QUARTER_PI TAU TWO_PI",variable:"displayHeight displayWidth mouseY mouseX mousePressed pmouseX pmouseY key keyCode pixels focused frameCount frameRate height width",title:"setup draw",built_in:"size createGraphics beginDraw createShape loadShape PShape arc ellipse line point quad rect triangle bezier bezierDetail bezierPoint bezierTangent curve curveDetail curvePoint curveTangent curveTightness shape shapeMode beginContour beginShape bezierVertex curveVertex endContour endShape quadraticVertex vertex ellipseMode noSmooth rectMode smooth strokeCap strokeJoin strokeWeight mouseClicked mouseDragged mouseMoved mousePressed mouseReleased mouseWheel keyPressed keyPressedkeyReleased keyTyped print println save saveFrame day hour millis minute month second year background clear colorMode fill noFill noStroke stroke alpha blue brightness color green hue lerpColor red saturation modelX modelY modelZ screenX screenY screenZ ambient emissive shininess specular add createImage beginCamera camera endCamera frustum ortho perspective printCamera printProjection cursor frameRate noCursor exit loop noLoop popStyle pushStyle redraw binary boolean byte char float hex int str unbinary unhex join match matchAll nf nfc nfp nfs split splitTokens trim append arrayCopy concat expand reverse shorten sort splice subset box sphere sphereDetail createInput createReader loadBytes loadJSONArray loadJSONObject loadStrings loadTable loadXML open parseXML saveTable selectFolder selectInput beginRaw beginRecord createOutput createWriter endRaw endRecord PrintWritersaveBytes saveJSONArray saveJSONObject saveStream saveStrings saveXML selectOutput popMatrix printMatrix pushMatrix resetMatrix rotate rotateX rotateY rotateZ scale shearX shearY translate ambientLight directionalLight lightFalloff lights lightSpecular noLights normal pointLight spotLight image imageMode loadImage noTint requestImage tint texture textureMode textureWrap blend copy filter get loadPixels set updatePixels blendMode loadShader PShaderresetShader shader createFont loadFont text textFont textAlign textLeading textMode textSize textWidth textAscent textDescent abs ceil constrain dist exp floor lerp log mag map max min norm pow round sq sqrt acos asin atan atan2 cos degrees radians sin tan noise noiseDetail noiseSeed random randomGaussian randomSeed"},c:[e.CLCM,e.CBCM,e.ASM,e.QSM,e.CNM]}});hljs.registerLanguage("mizar",function(e){return{k:"environ vocabularies notations constructors definitions registrations theorems schemes requirements begin end definition registration cluster existence pred func defpred deffunc theorem proof let take assume then thus hence ex for st holds consider reconsider such that and in provided of as from be being by means equals implies iff redefine define now not or attr is mode suppose per cases set thesis contradiction scheme reserve struct correctness compatibility coherence symmetry assymetry reflexivity irreflexivity connectedness uniqueness commutativity idempotence involutiveness projectivity",c:[e.C("::","$")]}});hljs.registerLanguage("vbnet",function(e){return{aliases:["vb"],cI:!0,k:{keyword:"addhandler addressof alias and andalso aggregate ansi as assembly auto binary by byref byval call case catch class compare const continue custom declare default delegate dim distinct do each equals else elseif end enum erase error event exit explicit finally for friend from function get global goto group handles if implements imports in inherits interface into is isfalse isnot istrue join key let lib like loop me mid mod module mustinherit mustoverride mybase myclass namespace narrowing new next not notinheritable notoverridable of off on operator option optional or order orelse overloads overridable overrides paramarray partial preserve private property protected public raiseevent readonly redim rem removehandler resume return select set shadows shared skip static step stop structure strict sub synclock take text then throw to try unicode until using when where while widening with withevents writeonly xor",built_in:"boolean byte cbool cbyte cchar cdate cdec cdbl char cint clng cobj csbyte cshort csng cstr ctype date decimal directcast double gettype getxmlnamespace iif integer long object sbyte short single string trycast typeof uinteger ulong ushort",literal:"true false nothing"},i:"//|{|}|endif|gosub|variant|wend",c:[e.inherit(e.QSM,{c:[{b:'""'}]}),e.C("'","$",{rB:!0,c:[{cN:"xmlDocTag",b:"'''|",c:[e.PWM]},{cN:"xmlDocTag",b:"",c:[e.PWM]}]}),e.CNM,{cN:"preprocessor",b:"#",e:"$",k:"if else elseif end region externalsource"}]}});hljs.registerLanguage("q",function(e){var s={keyword:"do while select delete by update from",constant:"0b 1b",built_in:"neg not null string reciprocal floor ceiling signum mod xbar xlog and or each scan over prior mmu lsq inv md5 ltime gtime count first var dev med cov cor all any rand sums prds mins maxs fills deltas ratios avgs differ prev next rank reverse iasc idesc asc desc msum mcount mavg mdev xrank mmin mmax xprev rotate distinct group where flip type key til get value attr cut set upsert raze union inter except cross sv vs sublist enlist read0 read1 hopen hclose hdel hsym hcount peach system ltrim rtrim trim lower upper ssr view tables views cols xcols keys xkey xcol xasc xdesc fkeys meta lj aj aj0 ij pj asof uj ww wj wj1 fby xgroup ungroup ej save load rsave rload show csv parse eval min max avg wavg wsum sin cos tan sum",typename:"`float `double int `timestamp `timespan `datetime `time `boolean `symbol `char `byte `short `long `real `month `date `minute `second `guid"};return{aliases:["k","kdb"],k:s,l:/\b(`?)[A-Za-z0-9_]+\b/,c:[e.CLCM,e.QSM,e.CNM]}});hljs.registerLanguage("livescript",function(e){var t={keyword:"in if for while finally new do return else break catch instanceof throw try this switch continue typeof delete debugger case default function var with then unless until loop of by when and or is isnt not it that otherwise from to til fallthrough super case default function var void const let enum export import native __hasProp __extends __slice __bind __indexOf",literal:"true false null undefined yes no on off it that void",built_in:"npm require console print module global window document"},s="[A-Za-z$_](?:-[0-9A-Za-z$_]|[0-9A-Za-z$_])*",i=e.inherit(e.TM,{b:s}),n={cN:"subst",b:/#\{/,e:/}/,k:t},r={cN:"subst",b:/#[A-Za-z$_]/,e:/(?:\-[0-9A-Za-z$_]|[0-9A-Za-z$_])*/,k:t},c=[e.BNM,{cN:"number",b:"(\\b0[xX][a-fA-F0-9_]+)|(\\b\\d(\\d|_\\d)*(\\.(\\d(\\d|_\\d)*)?)?(_*[eE]([-+]\\d(_\\d|\\d)*)?)?[_a-z]*)",r:0,starts:{e:"(\\s*/)?",r:0}},{cN:"string",v:[{b:/'''/,e:/'''/,c:[e.BE]},{b:/'/,e:/'/,c:[e.BE]},{b:/"""/,e:/"""/,c:[e.BE,n,r]},{b:/"/,e:/"/,c:[e.BE,n,r]},{b:/\\/,e:/(\s|$)/,eE:!0}]},{cN:"pi",v:[{b:"//",e:"//[gim]*",c:[n,e.HCM]},{b:/\/(?![ *])(\\\/|.)*?\/[gim]*(?=\W|$)/}]},{cN:"property",b:"@"+s},{b:"``",e:"``",eB:!0,eE:!0,sL:"javascript"}];n.c=c;var a={cN:"params",b:"\\(",rB:!0,c:[{b:/\(/,e:/\)/,k:t,c:["self"].concat(c)}]};return{aliases:["ls"],k:t,i:/\/\*/,c:c.concat([e.C("\\/\\*","\\*\\/"),e.HCM,{cN:"function",c:[i,a],rB:!0,v:[{b:"("+s+"\\s*(?:=|:=)\\s*)?(\\(.*\\))?\\s*\\B\\->\\*?",e:"\\->\\*?"},{b:"("+s+"\\s*(?:=|:=)\\s*)?!?(\\(.*\\))?\\s*\\B[-~]{1,2}>\\*?",e:"[-~]{1,2}>\\*?"},{b:"("+s+"\\s*(?:=|:=)\\s*)?(\\(.*\\))?\\s*\\B!?[-~]{1,2}>\\*?",e:"!?[-~]{1,2}>\\*?"}]},{cN:"class",bK:"class",e:"$",i:/[:="\[\]]/,c:[{bK:"extends",eW:!0,i:/[:="\[\]]/,c:[i]},i]},{cN:"attribute",b:s+":",e:":",rB:!0,rE:!0,r:0}])}});hljs.registerLanguage("haxe",function(e){var r="([*]|[a-zA-Z_$][a-zA-Z0-9_$]*)";return{aliases:["hx"],k:{keyword:"break callback case cast catch class continue default do dynamic else enum extends extern for function here if implements import in inline interface never new override package private public return static super switch this throw trace try typedef untyped using var while",literal:"true false null"},c:[e.ASM,e.QSM,e.CLCM,e.CBCM,e.CNM,{cN:"class",bK:"class interface",e:"{",eE:!0,c:[{bK:"extends implements"},e.TM]},{cN:"preprocessor",b:"#",e:"$",k:"if else elseif end error"},{cN:"function",bK:"function",e:"[{;]",eE:!0,i:"\\S",c:[e.TM,{cN:"params",b:"\\(",e:"\\)",c:[e.ASM,e.QSM,e.CLCM,e.CBCM]},{cN:"type",b:":",e:r,r:10}]}]}});hljs.registerLanguage("monkey",function(e){var n={cN:"number",r:0,v:[{b:"[$][a-fA-F0-9]+"},e.NM]};return{cI:!0,k:{keyword:"public private property continue exit extern new try catch eachin not abstract final select case default const local global field end if then else elseif endif while wend repeat until forever for to step next return module inline throw",built_in:"DebugLog DebugStop Error Print ACos ACosr ASin ASinr ATan ATan2 ATan2r ATanr Abs Abs Ceil Clamp Clamp Cos Cosr Exp Floor Log Max Max Min Min Pow Sgn Sgn Sin Sinr Sqrt Tan Tanr Seed PI HALFPI TWOPI",literal:"true false null and or shl shr mod"},c:[e.C("#rem","#end"),e.C("'","$",{r:0}),{cN:"function",bK:"function method",e:"[(=:]|$",i:/\n/,c:[e.UTM]},{cN:"class",bK:"class interface",e:"$",c:[{bK:"extends implements"},e.UTM]},{cN:"variable",b:"\\b(self|super)\\b"},{cN:"preprocessor",bK:"import",e:"$"},{cN:"preprocessor",b:"\\s*#",e:"$",k:"if else elseif endif end then"},{cN:"pi",b:"^\\s*strict\\b"},{bK:"alias",e:"=",c:[e.UTM]},e.QSM,n]}});hljs.registerLanguage("bash",function(e){var t={cN:"variable",v:[{b:/\$[\w\d#@][\w\d_]*/},{b:/\$\{(.*?)}/}]},s={cN:"string",b:/"/,e:/"/,c:[e.BE,t,{cN:"variable",b:/\$\(/,e:/\)/,c:[e.BE]}]},a={cN:"string",b:/'/,e:/'/};return{aliases:["sh","zsh"],l:/-?[a-z\.]+/,k:{keyword:"if then else elif fi for while in do done case esac function",literal:"true false",built_in:"break cd continue eval exec exit export getopts hash pwd readonly return shift test times trap umask unset alias bind builtin caller command declare echo enable help let local logout mapfile printf read readarray source type typeset ulimit unalias set shopt autoload bg bindkey bye cap chdir clone comparguments compcall compctl compdescribe compfiles compgroups compquote comptags comptry compvalues dirs disable disown echotc echoti emulate fc fg float functions getcap getln history integer jobs kill limit log noglob popd print pushd pushln rehash sched setcap setopt stat suspend ttyctl unfunction unhash unlimit unsetopt vared wait whence where which zcompile zformat zftp zle zmodload zparseopts zprof zpty zregexparse zsocket zstyle ztcp",operator:"-ne -eq -lt -gt -f -d -e -s -l -a"},c:[{cN:"shebang",b:/^#![^\n]+sh\s*$/,r:10},{cN:"function",b:/\w[\w\d_]*\s*\(\s*\)\s*\{/,rB:!0,c:[e.inherit(e.TM,{b:/\w[\w\d_]*/})],r:0},e.HCM,e.NM,s,a,t]}});hljs.registerLanguage("erlang",function(e){var r="[a-z'][a-zA-Z0-9_']*",c="("+r+":"+r+"|"+r+")",a={keyword:"after and andalso|10 band begin bnot bor bsl bzr bxor case catch cond div end fun if let not of orelse|10 query receive rem try when xor",literal:"false true"},n=e.C("%","$"),i={cN:"number",b:"\\b(\\d+#[a-fA-F0-9]+|\\d+(\\.\\d+)?([eE][-+]?\\d+)?)",r:0},b={b:"fun\\s+"+r+"/\\d+"},d={b:c+"\\(",e:"\\)",rB:!0,r:0,c:[{cN:"function_name",b:c,r:0},{b:"\\(",e:"\\)",eW:!0,rE:!0,r:0}]},o={cN:"tuple",b:"{",e:"}",r:0},t={cN:"variable",b:"\\b_([A-Z][A-Za-z0-9_]*)?",r:0},l={cN:"variable",b:"[A-Z][a-zA-Z0-9_]*",r:0},f={b:"#"+e.UIR,r:0,rB:!0,c:[{cN:"record_name",b:"#"+e.UIR,r:0},{b:"{",e:"}",r:0}]},s={bK:"fun receive if try case",e:"end",k:a};s.c=[n,b,e.inherit(e.ASM,{cN:""}),s,d,e.QSM,i,o,t,l,f];var u=[n,b,s,d,e.QSM,i,o,t,l,f];d.c[1].c=u,o.c=u,f.c[1].c=u;var v={cN:"params",b:"\\(",e:"\\)",c:u};return{aliases:["erl"],k:a,i:"(",rB:!0,i:"\\(|#|//|/\\*|\\\\|:|;",c:[v,e.inherit(e.TM,{b:r})],starts:{e:";|\\.",k:a,c:u}},n,{cN:"pp",b:"^-",e:"\\.",r:0,eE:!0,rB:!0,l:"-"+e.IR,k:"-module -record -undef -export -ifdef -ifndef -author -copyright -doc -vsn -import -include -include_lib -compile -define -else -endif -file -behaviour -behavior -spec",c:[v]},i,e.QSM,f,t,l,o,{b:/\.$/}]}});hljs.registerLanguage("kotlin",function(e){var a="val var get set class trait object public open private protected final enum if else do while for when break continue throw try catch finally import package is as in return fun override default companion reified inline volatile transient native";return{k:{typename:"Byte Short Char Int Long Boolean Float Double Void Unit Nothing",literal:"true false null",keyword:a},c:[e.CLCM,{cN:"javadoc",b:"/\\*\\*",e:"\\*//*",r:0,c:[{cN:"javadoctag",b:"(^|\\s)@[A-Za-z]+"}]},e.CBCM,{cN:"type",b://,rB:!0,eE:!1,r:0},{cN:"function",bK:"fun",e:"[(]|$",rB:!0,eE:!0,k:a,i:/fun\s+(<.*>)?[^\s\(]+(\s+[^\s\(]+)\s*=/,r:5,c:[{b:e.UIR+"\\s*\\(",rB:!0,r:0,c:[e.UTM]},{cN:"type",b://,k:"reified",r:0},{cN:"params",b:/\(/,e:/\)/,k:a,r:0,i:/\([^\(,\s:]+,/,c:[{cN:"typename",b:/:\s*/,e:/\s*[=\)]/,eB:!0,rE:!0,r:0}]},e.CLCM,e.CBCM]},{cN:"class",bK:"class trait",e:/[:\{(]|$/,eE:!0,i:"extends implements",c:[e.UTM,{cN:"type",b://,eB:!0,eE:!0,r:0},{cN:"typename",b:/[,:]\s*/,e:/[<\(,]|$/,eB:!0,rE:!0}]},{cN:"variable",bK:"var val",e:/\s*[=:$]/,eE:!0},e.QSM,{cN:"shebang",b:"^#!/usr/bin/env",e:"$",i:"\n"},e.CNM]}});hljs.registerLanguage("stylus",function(t){var e={cN:"variable",b:"\\$"+t.IR},o={cN:"hexcolor",b:"#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})",r:10},i=["charset","css","debug","extend","font-face","for","import","include","media","mixin","page","warn","while"],r=["after","before","first-letter","first-line","active","first-child","focus","hover","lang","link","visited"],n=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","mark","menu","nav","object","ol","p","q","quote","samp","section","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],a="[\\.\\s\\n\\[\\:,]",l=["align-content","align-items","align-self","animation","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-timing-function","auto","backface-visibility","background","background-attachment","background-clip","background-color","background-image","background-origin","background-position","background-repeat","background-size","border","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-decoration-break","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","clear","clip","clip-path","color","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","content","counter-increment","counter-reset","cursor","direction","display","empty-cells","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","font","font-family","font-feature-settings","font-kerning","font-language-override","font-size","font-size-adjust","font-stretch","font-style","font-variant","font-variant-ligatures","font-weight","height","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","inherit","initial","justify-content","left","letter-spacing","line-height","list-style","list-style-image","list-style-position","list-style-type","margin","margin-bottom","margin-left","margin-right","margin-top","marks","mask","max-height","max-width","min-height","min-width","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-wrap","overflow-x","overflow-y","padding","padding-bottom","padding-left","padding-right","padding-top","page-break-after","page-break-before","page-break-inside","perspective","perspective-origin","pointer-events","position","quotes","resize","right","tab-size","table-layout","text-align","text-align-last","text-decoration","text-decoration-color","text-decoration-line","text-decoration-style","text-indent","text-overflow","text-rendering","text-shadow","text-transform","text-underline-position","top","transform","transform-origin","transform-style","transition","transition-delay","transition-duration","transition-property","transition-timing-function","unicode-bidi","vertical-align","visibility","white-space","widows","width","word-break","word-spacing","word-wrap","z-index"],d=["\\{","\\}","\\?","(\\bReturn\\b)","(\\bEnd\\b)","(\\bend\\b)",";","#\\s","\\*\\s","===\\s","\\|","%"];return{aliases:["styl"],cI:!1,i:"("+d.join("|")+")",k:"if else for in",c:[t.QSM,t.ASM,t.CLCM,t.CBCM,o,{b:"\\.[a-zA-Z][a-zA-Z0-9_-]*"+a,rB:!0,c:[{cN:"class",b:"\\.[a-zA-Z][a-zA-Z0-9_-]*"}]},{b:"\\#[a-zA-Z][a-zA-Z0-9_-]*"+a,rB:!0,c:[{cN:"id",b:"\\#[a-zA-Z][a-zA-Z0-9_-]*"}]},{b:"\\b("+n.join("|")+")"+a,rB:!0,c:[{cN:"tag",b:"\\b[a-zA-Z][a-zA-Z0-9_-]*"}]},{cN:"pseudo",b:"&?:?:\\b("+r.join("|")+")"+a},{cN:"at_rule",b:"@("+i.join("|")+")\\b"},e,t.CSSNM,t.NM,{cN:"function",b:"\\b[a-zA-Z][a-zA-Z0-9_-]*\\(.*\\)",i:"[\\n]",rB:!0,c:[{cN:"title",b:"\\b[a-zA-Z][a-zA-Z0-9_-]*"},{cN:"params",b:/\(/,e:/\)/,c:[o,e,t.ASM,t.CSSNM,t.NM,t.QSM]}]},{cN:"attribute",b:"\\b("+l.reverse().join("|")+")\\b"}]}});hljs.registerLanguage("css",function(e){var c="[a-zA-Z-][a-zA-Z0-9_-]*",a={cN:"function",b:c+"\\(",rB:!0,eE:!0,e:"\\("},r={cN:"rule",b:/[A-Z\_\.\-]+\s*:/,rB:!0,e:";",eW:!0,c:[{cN:"attribute",b:/\S/,e:":",eE:!0,starts:{cN:"value",eW:!0,eE:!0,c:[a,e.CSSNM,e.QSM,e.ASM,e.CBCM,{cN:"hexcolor",b:"#[0-9A-Fa-f]+"},{cN:"important",b:"!important"}]}}]};return{cI:!0,i:/[=\/|']/,c:[e.CBCM,r,{cN:"id",b:/\#[A-Za-z0-9_-]+/},{cN:"class",b:/\.[A-Za-z0-9_-]+/,r:0},{cN:"attr_selector",b:/\[/,e:/\]/,i:"$"},{cN:"pseudo",b:/:(:)?[a-zA-Z0-9\_\-\+\(\)"']+/},{cN:"at_rule",b:"@(font-face|page)",l:"[a-z-]+",k:"font-face page"},{cN:"at_rule",b:"@",e:"[{;]",c:[{cN:"keyword",b:/\S+/},{b:/\s/,eW:!0,eE:!0,r:0,c:[a,e.ASM,e.QSM,e.CSSNM]}]},{cN:"tag",b:c,r:0},{cN:"rules",b:"{",e:"}",i:/\S/,r:0,c:[e.CBCM,r]}]}});hljs.registerLanguage("puppet",function(e){var s="augeas computer cron exec file filebucket host interface k5login macauthorization mailalias maillist mcx mount nagios_command nagios_contact nagios_contactgroup nagios_host nagios_hostdependency nagios_hostescalation nagios_hostextinfo nagios_hostgroup nagios_service firewall nagios_servicedependency nagios_serviceescalation nagios_serviceextinfo nagios_servicegroup nagios_timeperiod notify package resources router schedule scheduled_task selboolean selmodule service ssh_authorized_key sshkey stage tidy user vlan yumrepo zfs zone zpool",r="alias audit before loglevel noop require subscribe tag owner ensure group mode name|0 changes context force incl lens load_path onlyif provider returns root show_diff type_check en_address ip_address realname command environment hour monute month monthday special target weekday creates cwd ogoutput refresh refreshonly tries try_sleep umask backup checksum content ctime force ignore links mtime purge recurse recurselimit replace selinux_ignore_defaults selrange selrole seltype seluser source souirce_permissions sourceselect validate_cmd validate_replacement allowdupe attribute_membership auth_membership forcelocal gid ia_load_module members system host_aliases ip allowed_trunk_vlans description device_url duplex encapsulation etherchannel native_vlan speed principals allow_root auth_class auth_type authenticate_user k_of_n mechanisms rule session_owner shared options device fstype enable hasrestart directory present absent link atboot blockdevice device dump pass remounts poller_tag use message withpath adminfile allow_virtual allowcdrom category configfiles flavor install_options instance package_settings platform responsefile status uninstall_options vendor unless_system_user unless_uid binary control flags hasstatus manifest pattern restart running start stop allowdupe auths expiry gid groups home iterations key_membership keys managehome membership password password_max_age password_min_age profile_membership profiles project purge_ssh_keys role_membership roles salt shell uid baseurl cost descr enabled enablegroups exclude failovermethod gpgcheck gpgkey http_caching include includepkgs keepalive metadata_expire metalink mirrorlist priority protect proxy proxy_password proxy_username repo_gpgcheck s3_enabled skip_if_unavailable sslcacert sslclientcert sslclientkey sslverify mounted",a={keyword:"and case class default define else elsif false if in import enherits node or true undef unless main settings $string "+s,literal:r,built_in:"architecture augeasversion blockdevices boardmanufacturer boardproductname boardserialnumber cfkey dhcp_servers domain ec2_ ec2_userdata facterversion filesystems ldom fqdn gid hardwareisa hardwaremodel hostname id|0 interfaces ipaddress ipaddress_ ipaddress6 ipaddress6_ iphostnumber is_virtual kernel kernelmajversion kernelrelease kernelversion kernelrelease kernelversion lsbdistcodename lsbdistdescription lsbdistid lsbdistrelease lsbmajdistrelease lsbminordistrelease lsbrelease macaddress macaddress_ macosx_buildversion macosx_productname macosx_productversion macosx_productverson_major macosx_productversion_minor manufacturer memoryfree memorysize netmask metmask_ network_ operatingsystem operatingsystemmajrelease operatingsystemrelease osfamily partitions path physicalprocessorcount processor processorcount productname ps puppetversion rubysitedir rubyversion selinux selinux_config_mode selinux_config_policy selinux_current_mode selinux_current_mode selinux_enforced selinux_policyversion serialnumber sp_ sshdsakey sshecdsakey sshrsakey swapencrypted swapfree swapsize timezone type uniqueid uptime uptime_days uptime_hours uptime_seconds uuid virtual vlans xendomains zfs_version zonenae zones zpool_version"},i=e.C("#","$"),o={cN:"string",c:[e.BE],v:[{b:/'/,e:/'/},{b:/"/,e:/"/}]},n=[o,i,{cN:"keyword",bK:"class",e:"$|;",i:/=/,c:[e.inherit(e.TM,{b:"(::)?[A-Za-z_]\\w*(::\\w+)*"}),i,o]},{cN:"keyword",b:"([a-zA-Z_(::)]+ *\\{)",c:[o,i],r:0},{cN:"keyword",b:"(\\}|\\{)",r:0},{cN:"function",b:"[a-zA-Z_]+\\s*=>"},{cN:"constant",b:"(::)?(\\b[A-Z][a-z_]*(::)?)+",r:0},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0}];return{aliases:["pp"],k:a,c:n}});hljs.registerLanguage("nimrod",function(t){return{aliases:["nim"],k:{keyword:"addr and as asm bind block break|0 case|0 cast const|0 continue|0 converter discard distinct|10 div do elif else|0 end|0 enum|0 except export finally for from generic if|0 import|0 in include|0 interface is isnot|10 iterator|10 let|0 macro method|10 mixin mod nil not notin|10 object|0 of or out proc|10 ptr raise ref|10 return shl shr static template|10 try|0 tuple type|0 using|0 var|0 when while|0 with without xor yield",literal:"shared guarded stdin stdout stderr result|10 true false"},c:[{cN:"decorator",b:/{\./,e:/\.}/,r:10},{cN:"string",b:/[a-zA-Z]\w*"/,e:/"/,c:[{b:/""/}]},{cN:"string",b:/([a-zA-Z]\w*)?"""/,e:/"""/},t.QSM,{cN:"type",b:/\b[A-Z]\w+\b/,r:0},{cN:"type",b:/\b(int|int8|int16|int32|int64|uint|uint8|uint16|uint32|uint64|float|float32|float64|bool|char|string|cstring|pointer|expr|stmt|void|auto|any|range|array|openarray|varargs|seq|set|clong|culong|cchar|cschar|cshort|cint|csize|clonglong|cfloat|cdouble|clongdouble|cuchar|cushort|cuint|culonglong|cstringarray|semistatic)\b/},{cN:"number",b:/\b(0[xX][0-9a-fA-F][_0-9a-fA-F]*)('?[iIuU](8|16|32|64))?/,r:0},{cN:"number",b:/\b(0o[0-7][_0-7]*)('?[iIuUfF](8|16|32|64))?/,r:0},{cN:"number",b:/\b(0(b|B)[01][_01]*)('?[iIuUfF](8|16|32|64))?/,r:0},{cN:"number",b:/\b(\d[_\d]*)('?[iIuUfF](8|16|32|64))?/,r:0},t.HCM]}});hljs.registerLanguage("smalltalk",function(a){var r="[a-z][a-zA-Z0-9_]*",s={cN:"char",b:"\\$.{1}"},c={cN:"symbol",b:"#"+a.UIR};return{aliases:["st"],k:"self super nil true false thisContext",c:[a.C('"','"'),a.ASM,{cN:"class",b:"\\b[A-Z][A-Za-z0-9_]*",r:0},{cN:"method",b:r+":",r:0},a.CNM,c,s,{cN:"localvars",b:"\\|[ ]*"+r+"([ ]+"+r+")*[ ]*\\|",rB:!0,e:/\|/,i:/\S/,c:[{b:"(\\|[ ]*)?"+r}]},{cN:"array",b:"\\#\\(",e:"\\)",c:[a.ASM,s,a.CNM,c]}]}});hljs.registerLanguage("x86asm",function(s){return{cI:!0,l:"\\.?"+s.IR,k:{keyword:"lock rep repe repz repne repnz xaquire xrelease bnd nobnd aaa aad aam aas adc add and arpl bb0_reset bb1_reset bound bsf bsr bswap bt btc btr bts call cbw cdq cdqe clc cld cli clts cmc cmp cmpsb cmpsd cmpsq cmpsw cmpxchg cmpxchg486 cmpxchg8b cmpxchg16b cpuid cpu_read cpu_write cqo cwd cwde daa das dec div dmint emms enter equ f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp femms feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisttp fisub fisubr fld fld1 fldcw fldenv fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnstcw fnstenv fnstsw fpatan fprem fprem1 fptan frndint frstor fsave fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomi fucomip fucomp fucompp fxam fxch fxtract fyl2x fyl2xp1 hlt ibts icebp idiv imul in inc incbin insb insd insw int int01 int1 int03 int3 into invd invpcid invlpg invlpga iret iretd iretq iretw jcxz jecxz jrcxz jmp jmpe lahf lar lds lea leave les lfence lfs lgdt lgs lidt lldt lmsw loadall loadall286 lodsb lodsd lodsq lodsw loop loope loopne loopnz loopz lsl lss ltr mfence monitor mov movd movq movsb movsd movsq movsw movsx movsxd movzx mul mwait neg nop not or out outsb outsd outsw packssdw packsswb packuswb paddb paddd paddsb paddsiw paddsw paddusb paddusw paddw pand pandn pause paveb pavgusb pcmpeqb pcmpeqd pcmpeqw pcmpgtb pcmpgtd pcmpgtw pdistib pf2id pfacc pfadd pfcmpeq pfcmpge pfcmpgt pfmax pfmin pfmul pfrcp pfrcpit1 pfrcpit2 pfrsqit1 pfrsqrt pfsub pfsubr pi2fd pmachriw pmaddwd pmagw pmulhriw pmulhrwa pmulhrwc pmulhw pmullw pmvgezb pmvlzb pmvnzb pmvzb pop popa popad popaw popf popfd popfq popfw por prefetch prefetchw pslld psllq psllw psrad psraw psrld psrlq psrlw psubb psubd psubsb psubsiw psubsw psubusb psubusw psubw punpckhbw punpckhdq punpckhwd punpcklbw punpckldq punpcklwd push pusha pushad pushaw pushf pushfd pushfq pushfw pxor rcl rcr rdshr rdmsr rdpmc rdtsc rdtscp ret retf retn rol ror rdm rsdc rsldt rsm rsts sahf sal salc sar sbb scasb scasd scasq scasw sfence sgdt shl shld shr shrd sidt sldt skinit smi smint smintold smsw stc std sti stosb stosd stosq stosw str sub svdc svldt svts swapgs syscall sysenter sysexit sysret test ud0 ud1 ud2b ud2 ud2a umov verr verw fwait wbinvd wrshr wrmsr xadd xbts xchg xlatb xlat xor cmove cmovz cmovne cmovnz cmova cmovnbe cmovae cmovnb cmovb cmovnae cmovbe cmovna cmovg cmovnle cmovge cmovnl cmovl cmovnge cmovle cmovng cmovc cmovnc cmovo cmovno cmovs cmovns cmovp cmovpe cmovnp cmovpo je jz jne jnz ja jnbe jae jnb jb jnae jbe jna jg jnle jge jnl jl jnge jle jng jc jnc jo jno js jns jpo jnp jpe jp sete setz setne setnz seta setnbe setae setnb setnc setb setnae setcset setbe setna setg setnle setge setnl setl setnge setle setng sets setns seto setno setpe setp setpo setnp addps addss andnps andps cmpeqps cmpeqss cmpleps cmpless cmpltps cmpltss cmpneqps cmpneqss cmpnleps cmpnless cmpnltps cmpnltss cmpordps cmpordss cmpunordps cmpunordss cmpps cmpss comiss cvtpi2ps cvtps2pi cvtsi2ss cvtss2si cvttps2pi cvttss2si divps divss ldmxcsr maxps maxss minps minss movaps movhps movlhps movlps movhlps movmskps movntps movss movups mulps mulss orps rcpps rcpss rsqrtps rsqrtss shufps sqrtps sqrtss stmxcsr subps subss ucomiss unpckhps unpcklps xorps fxrstor fxrstor64 fxsave fxsave64 xgetbv xsetbv xsave xsave64 xsaveopt xsaveopt64 xrstor xrstor64 prefetchnta prefetcht0 prefetcht1 prefetcht2 maskmovq movntq pavgb pavgw pextrw pinsrw pmaxsw pmaxub pminsw pminub pmovmskb pmulhuw psadbw pshufw pf2iw pfnacc pfpnacc pi2fw pswapd maskmovdqu clflush movntdq movnti movntpd movdqa movdqu movdq2q movq2dq paddq pmuludq pshufd pshufhw pshuflw pslldq psrldq psubq punpckhqdq punpcklqdq addpd addsd andnpd andpd cmpeqpd cmpeqsd cmplepd cmplesd cmpltpd cmpltsd cmpneqpd cmpneqsd cmpnlepd cmpnlesd cmpnltpd cmpnltsd cmpordpd cmpordsd cmpunordpd cmpunordsd cmppd comisd cvtdq2pd cvtdq2ps cvtpd2dq cvtpd2pi cvtpd2ps cvtpi2pd cvtps2dq cvtps2pd cvtsd2si cvtsd2ss cvtsi2sd cvtss2sd cvttpd2pi cvttpd2dq cvttps2dq cvttsd2si divpd divsd maxpd maxsd minpd minsd movapd movhpd movlpd movmskpd movupd mulpd mulsd orpd shufpd sqrtpd sqrtsd subpd subsd ucomisd unpckhpd unpcklpd xorpd addsubpd addsubps haddpd haddps hsubpd hsubps lddqu movddup movshdup movsldup clgi stgi vmcall vmclear vmfunc vmlaunch vmload vmmcall vmptrld vmptrst vmread vmresume vmrun vmsave vmwrite vmxoff vmxon invept invvpid pabsb pabsw pabsd palignr phaddw phaddd phaddsw phsubw phsubd phsubsw pmaddubsw pmulhrsw pshufb psignb psignw psignd extrq insertq movntsd movntss lzcnt blendpd blendps blendvpd blendvps dppd dpps extractps insertps movntdqa mpsadbw packusdw pblendvb pblendw pcmpeqq pextrb pextrd pextrq phminposuw pinsrb pinsrd pinsrq pmaxsb pmaxsd pmaxud pmaxuw pminsb pminsd pminud pminuw pmovsxbw pmovsxbd pmovsxbq pmovsxwd pmovsxwq pmovsxdq pmovzxbw pmovzxbd pmovzxbq pmovzxwd pmovzxwq pmovzxdq pmuldq pmulld ptest roundpd roundps roundsd roundss crc32 pcmpestri pcmpestrm pcmpistri pcmpistrm pcmpgtq popcnt getsec pfrcpv pfrsqrtv movbe aesenc aesenclast aesdec aesdeclast aesimc aeskeygenassist vaesenc vaesenclast vaesdec vaesdeclast vaesimc vaeskeygenassist vaddpd vaddps vaddsd vaddss vaddsubpd vaddsubps vandpd vandps vandnpd vandnps vblendpd vblendps vblendvpd vblendvps vbroadcastss vbroadcastsd vbroadcastf128 vcmpeq_ospd vcmpeqpd vcmplt_ospd vcmpltpd vcmple_ospd vcmplepd vcmpunord_qpd vcmpunordpd vcmpneq_uqpd vcmpneqpd vcmpnlt_uspd vcmpnltpd vcmpnle_uspd vcmpnlepd vcmpord_qpd vcmpordpd vcmpeq_uqpd vcmpnge_uspd vcmpngepd vcmpngt_uspd vcmpngtpd vcmpfalse_oqpd vcmpfalsepd vcmpneq_oqpd vcmpge_ospd vcmpgepd vcmpgt_ospd vcmpgtpd vcmptrue_uqpd vcmptruepd vcmplt_oqpd vcmple_oqpd vcmpunord_spd vcmpneq_uspd vcmpnlt_uqpd vcmpnle_uqpd vcmpord_spd vcmpeq_uspd vcmpnge_uqpd vcmpngt_uqpd vcmpfalse_ospd vcmpneq_ospd vcmpge_oqpd vcmpgt_oqpd vcmptrue_uspd vcmppd vcmpeq_osps vcmpeqps vcmplt_osps vcmpltps vcmple_osps vcmpleps vcmpunord_qps vcmpunordps vcmpneq_uqps vcmpneqps vcmpnlt_usps vcmpnltps vcmpnle_usps vcmpnleps vcmpord_qps vcmpordps vcmpeq_uqps vcmpnge_usps vcmpngeps vcmpngt_usps vcmpngtps vcmpfalse_oqps vcmpfalseps vcmpneq_oqps vcmpge_osps vcmpgeps vcmpgt_osps vcmpgtps vcmptrue_uqps vcmptrueps vcmplt_oqps vcmple_oqps vcmpunord_sps vcmpneq_usps vcmpnlt_uqps vcmpnle_uqps vcmpord_sps vcmpeq_usps vcmpnge_uqps vcmpngt_uqps vcmpfalse_osps vcmpneq_osps vcmpge_oqps vcmpgt_oqps vcmptrue_usps vcmpps vcmpeq_ossd vcmpeqsd vcmplt_ossd vcmpltsd vcmple_ossd vcmplesd vcmpunord_qsd vcmpunordsd vcmpneq_uqsd vcmpneqsd vcmpnlt_ussd vcmpnltsd vcmpnle_ussd vcmpnlesd vcmpord_qsd vcmpordsd vcmpeq_uqsd vcmpnge_ussd vcmpngesd vcmpngt_ussd vcmpngtsd vcmpfalse_oqsd vcmpfalsesd vcmpneq_oqsd vcmpge_ossd vcmpgesd vcmpgt_ossd vcmpgtsd vcmptrue_uqsd vcmptruesd vcmplt_oqsd vcmple_oqsd vcmpunord_ssd vcmpneq_ussd vcmpnlt_uqsd vcmpnle_uqsd vcmpord_ssd vcmpeq_ussd vcmpnge_uqsd vcmpngt_uqsd vcmpfalse_ossd vcmpneq_ossd vcmpge_oqsd vcmpgt_oqsd vcmptrue_ussd vcmpsd vcmpeq_osss vcmpeqss vcmplt_osss vcmpltss vcmple_osss vcmpless vcmpunord_qss vcmpunordss vcmpneq_uqss vcmpneqss vcmpnlt_usss vcmpnltss vcmpnle_usss vcmpnless vcmpord_qss vcmpordss vcmpeq_uqss vcmpnge_usss vcmpngess vcmpngt_usss vcmpngtss vcmpfalse_oqss vcmpfalsess vcmpneq_oqss vcmpge_osss vcmpgess vcmpgt_osss vcmpgtss vcmptrue_uqss vcmptruess vcmplt_oqss vcmple_oqss vcmpunord_sss vcmpneq_usss vcmpnlt_uqss vcmpnle_uqss vcmpord_sss vcmpeq_usss vcmpnge_uqss vcmpngt_uqss vcmpfalse_osss vcmpneq_osss vcmpge_oqss vcmpgt_oqss vcmptrue_usss vcmpss vcomisd vcomiss vcvtdq2pd vcvtdq2ps vcvtpd2dq vcvtpd2ps vcvtps2dq vcvtps2pd vcvtsd2si vcvtsd2ss vcvtsi2sd vcvtsi2ss vcvtss2sd vcvtss2si vcvttpd2dq vcvttps2dq vcvttsd2si vcvttss2si vdivpd vdivps vdivsd vdivss vdppd vdpps vextractf128 vextractps vhaddpd vhaddps vhsubpd vhsubps vinsertf128 vinsertps vlddqu vldqqu vldmxcsr vmaskmovdqu vmaskmovps vmaskmovpd vmaxpd vmaxps vmaxsd vmaxss vminpd vminps vminsd vminss vmovapd vmovaps vmovd vmovq vmovddup vmovdqa vmovqqa vmovdqu vmovqqu vmovhlps vmovhpd vmovhps vmovlhps vmovlpd vmovlps vmovmskpd vmovmskps vmovntdq vmovntqq vmovntdqa vmovntpd vmovntps vmovsd vmovshdup vmovsldup vmovss vmovupd vmovups vmpsadbw vmulpd vmulps vmulsd vmulss vorpd vorps vpabsb vpabsw vpabsd vpacksswb vpackssdw vpackuswb vpackusdw vpaddb vpaddw vpaddd vpaddq vpaddsb vpaddsw vpaddusb vpaddusw vpalignr vpand vpandn vpavgb vpavgw vpblendvb vpblendw vpcmpestri vpcmpestrm vpcmpistri vpcmpistrm vpcmpeqb vpcmpeqw vpcmpeqd vpcmpeqq vpcmpgtb vpcmpgtw vpcmpgtd vpcmpgtq vpermilpd vpermilps vperm2f128 vpextrb vpextrw vpextrd vpextrq vphaddw vphaddd vphaddsw vphminposuw vphsubw vphsubd vphsubsw vpinsrb vpinsrw vpinsrd vpinsrq vpmaddwd vpmaddubsw vpmaxsb vpmaxsw vpmaxsd vpmaxub vpmaxuw vpmaxud vpminsb vpminsw vpminsd vpminub vpminuw vpminud vpmovmskb vpmovsxbw vpmovsxbd vpmovsxbq vpmovsxwd vpmovsxwq vpmovsxdq vpmovzxbw vpmovzxbd vpmovzxbq vpmovzxwd vpmovzxwq vpmovzxdq vpmulhuw vpmulhrsw vpmulhw vpmullw vpmulld vpmuludq vpmuldq vpor vpsadbw vpshufb vpshufd vpshufhw vpshuflw vpsignb vpsignw vpsignd vpslldq vpsrldq vpsllw vpslld vpsllq vpsraw vpsrad vpsrlw vpsrld vpsrlq vptest vpsubb vpsubw vpsubd vpsubq vpsubsb vpsubsw vpsubusb vpsubusw vpunpckhbw vpunpckhwd vpunpckhdq vpunpckhqdq vpunpcklbw vpunpcklwd vpunpckldq vpunpcklqdq vpxor vrcpps vrcpss vrsqrtps vrsqrtss vroundpd vroundps vroundsd vroundss vshufpd vshufps vsqrtpd vsqrtps vsqrtsd vsqrtss vstmxcsr vsubpd vsubps vsubsd vsubss vtestps vtestpd vucomisd vucomiss vunpckhpd vunpckhps vunpcklpd vunpcklps vxorpd vxorps vzeroall vzeroupper pclmullqlqdq pclmulhqlqdq pclmullqhqdq pclmulhqhqdq pclmulqdq vpclmullqlqdq vpclmulhqlqdq vpclmullqhqdq vpclmulhqhqdq vpclmulqdq vfmadd132ps vfmadd132pd vfmadd312ps vfmadd312pd vfmadd213ps vfmadd213pd vfmadd123ps vfmadd123pd vfmadd231ps vfmadd231pd vfmadd321ps vfmadd321pd vfmaddsub132ps vfmaddsub132pd vfmaddsub312ps vfmaddsub312pd vfmaddsub213ps vfmaddsub213pd vfmaddsub123ps vfmaddsub123pd vfmaddsub231ps vfmaddsub231pd vfmaddsub321ps vfmaddsub321pd vfmsub132ps vfmsub132pd vfmsub312ps vfmsub312pd vfmsub213ps vfmsub213pd vfmsub123ps vfmsub123pd vfmsub231ps vfmsub231pd vfmsub321ps vfmsub321pd vfmsubadd132ps vfmsubadd132pd vfmsubadd312ps vfmsubadd312pd vfmsubadd213ps vfmsubadd213pd vfmsubadd123ps vfmsubadd123pd vfmsubadd231ps vfmsubadd231pd vfmsubadd321ps vfmsubadd321pd vfnmadd132ps vfnmadd132pd vfnmadd312ps vfnmadd312pd vfnmadd213ps vfnmadd213pd vfnmadd123ps vfnmadd123pd vfnmadd231ps vfnmadd231pd vfnmadd321ps vfnmadd321pd vfnmsub132ps vfnmsub132pd vfnmsub312ps vfnmsub312pd vfnmsub213ps vfnmsub213pd vfnmsub123ps vfnmsub123pd vfnmsub231ps vfnmsub231pd vfnmsub321ps vfnmsub321pd vfmadd132ss vfmadd132sd vfmadd312ss vfmadd312sd vfmadd213ss vfmadd213sd vfmadd123ss vfmadd123sd vfmadd231ss vfmadd231sd vfmadd321ss vfmadd321sd vfmsub132ss vfmsub132sd vfmsub312ss vfmsub312sd vfmsub213ss vfmsub213sd vfmsub123ss vfmsub123sd vfmsub231ss vfmsub231sd vfmsub321ss vfmsub321sd vfnmadd132ss vfnmadd132sd vfnmadd312ss vfnmadd312sd vfnmadd213ss vfnmadd213sd vfnmadd123ss vfnmadd123sd vfnmadd231ss vfnmadd231sd vfnmadd321ss vfnmadd321sd vfnmsub132ss vfnmsub132sd vfnmsub312ss vfnmsub312sd vfnmsub213ss vfnmsub213sd vfnmsub123ss vfnmsub123sd vfnmsub231ss vfnmsub231sd vfnmsub321ss vfnmsub321sd rdfsbase rdgsbase rdrand wrfsbase wrgsbase vcvtph2ps vcvtps2ph adcx adox rdseed clac stac xstore xcryptecb xcryptcbc xcryptctr xcryptcfb xcryptofb montmul xsha1 xsha256 llwpcb slwpcb lwpval lwpins vfmaddpd vfmaddps vfmaddsd vfmaddss vfmaddsubpd vfmaddsubps vfmsubaddpd vfmsubaddps vfmsubpd vfmsubps vfmsubsd vfmsubss vfnmaddpd vfnmaddps vfnmaddsd vfnmaddss vfnmsubpd vfnmsubps vfnmsubsd vfnmsubss vfrczpd vfrczps vfrczsd vfrczss vpcmov vpcomb vpcomd vpcomq vpcomub vpcomud vpcomuq vpcomuw vpcomw vphaddbd vphaddbq vphaddbw vphadddq vphaddubd vphaddubq vphaddubw vphaddudq vphadduwd vphadduwq vphaddwd vphaddwq vphsubbw vphsubdq vphsubwd vpmacsdd vpmacsdqh vpmacsdql vpmacssdd vpmacssdqh vpmacssdql vpmacsswd vpmacssww vpmacswd vpmacsww vpmadcsswd vpmadcswd vpperm vprotb vprotd vprotq vprotw vpshab vpshad vpshaq vpshaw vpshlb vpshld vpshlq vpshlw vbroadcasti128 vpblendd vpbroadcastb vpbroadcastw vpbroadcastd vpbroadcastq vpermd vpermpd vpermps vpermq vperm2i128 vextracti128 vinserti128 vpmaskmovd vpmaskmovq vpsllvd vpsllvq vpsravd vpsrlvd vpsrlvq vgatherdpd vgatherqpd vgatherdps vgatherqps vpgatherdd vpgatherqd vpgatherdq vpgatherqq xabort xbegin xend xtest andn bextr blci blcic blsi blsic blcfill blsfill blcmsk blsmsk blsr blcs bzhi mulx pdep pext rorx sarx shlx shrx tzcnt tzmsk t1mskc valignd valignq vblendmpd vblendmps vbroadcastf32x4 vbroadcastf64x4 vbroadcasti32x4 vbroadcasti64x4 vcompresspd vcompressps vcvtpd2udq vcvtps2udq vcvtsd2usi vcvtss2usi vcvttpd2udq vcvttps2udq vcvttsd2usi vcvttss2usi vcvtudq2pd vcvtudq2ps vcvtusi2sd vcvtusi2ss vexpandpd vexpandps vextractf32x4 vextractf64x4 vextracti32x4 vextracti64x4 vfixupimmpd vfixupimmps vfixupimmsd vfixupimmss vgetexppd vgetexpps vgetexpsd vgetexpss vgetmantpd vgetmantps vgetmantsd vgetmantss vinsertf32x4 vinsertf64x4 vinserti32x4 vinserti64x4 vmovdqa32 vmovdqa64 vmovdqu32 vmovdqu64 vpabsq vpandd vpandnd vpandnq vpandq vpblendmd vpblendmq vpcmpltd vpcmpled vpcmpneqd vpcmpnltd vpcmpnled vpcmpd vpcmpltq vpcmpleq vpcmpneqq vpcmpnltq vpcmpnleq vpcmpq vpcmpequd vpcmpltud vpcmpleud vpcmpnequd vpcmpnltud vpcmpnleud vpcmpud vpcmpequq vpcmpltuq vpcmpleuq vpcmpnequq vpcmpnltuq vpcmpnleuq vpcmpuq vpcompressd vpcompressq vpermi2d vpermi2pd vpermi2ps vpermi2q vpermt2d vpermt2pd vpermt2ps vpermt2q vpexpandd vpexpandq vpmaxsq vpmaxuq vpminsq vpminuq vpmovdb vpmovdw vpmovqb vpmovqd vpmovqw vpmovsdb vpmovsdw vpmovsqb vpmovsqd vpmovsqw vpmovusdb vpmovusdw vpmovusqb vpmovusqd vpmovusqw vpord vporq vprold vprolq vprolvd vprolvq vprord vprorq vprorvd vprorvq vpscatterdd vpscatterdq vpscatterqd vpscatterqq vpsraq vpsravq vpternlogd vpternlogq vptestmd vptestmq vptestnmd vptestnmq vpxord vpxorq vrcp14pd vrcp14ps vrcp14sd vrcp14ss vrndscalepd vrndscaleps vrndscalesd vrndscaless vrsqrt14pd vrsqrt14ps vrsqrt14sd vrsqrt14ss vscalefpd vscalefps vscalefsd vscalefss vscatterdpd vscatterdps vscatterqpd vscatterqps vshuff32x4 vshuff64x2 vshufi32x4 vshufi64x2 kandnw kandw kmovw knotw kortestw korw kshiftlw kshiftrw kunpckbw kxnorw kxorw vpbroadcastmb2q vpbroadcastmw2d vpconflictd vpconflictq vplzcntd vplzcntq vexp2pd vexp2ps vrcp28pd vrcp28ps vrcp28sd vrcp28ss vrsqrt28pd vrsqrt28ps vrsqrt28sd vrsqrt28ss vgatherpf0dpd vgatherpf0dps vgatherpf0qpd vgatherpf0qps vgatherpf1dpd vgatherpf1dps vgatherpf1qpd vgatherpf1qps vscatterpf0dpd vscatterpf0dps vscatterpf0qpd vscatterpf0qps vscatterpf1dpd vscatterpf1dps vscatterpf1qpd vscatterpf1qps prefetchwt1 bndmk bndcl bndcu bndcn bndmov bndldx bndstx sha1rnds4 sha1nexte sha1msg1 sha1msg2 sha256rnds2 sha256msg1 sha256msg2 hint_nop0 hint_nop1 hint_nop2 hint_nop3 hint_nop4 hint_nop5 hint_nop6 hint_nop7 hint_nop8 hint_nop9 hint_nop10 hint_nop11 hint_nop12 hint_nop13 hint_nop14 hint_nop15 hint_nop16 hint_nop17 hint_nop18 hint_nop19 hint_nop20 hint_nop21 hint_nop22 hint_nop23 hint_nop24 hint_nop25 hint_nop26 hint_nop27 hint_nop28 hint_nop29 hint_nop30 hint_nop31 hint_nop32 hint_nop33 hint_nop34 hint_nop35 hint_nop36 hint_nop37 hint_nop38 hint_nop39 hint_nop40 hint_nop41 hint_nop42 hint_nop43 hint_nop44 hint_nop45 hint_nop46 hint_nop47 hint_nop48 hint_nop49 hint_nop50 hint_nop51 hint_nop52 hint_nop53 hint_nop54 hint_nop55 hint_nop56 hint_nop57 hint_nop58 hint_nop59 hint_nop60 hint_nop61 hint_nop62 hint_nop63",literal:"ip eip rip al ah bl bh cl ch dl dh sil dil bpl spl r8b r9b r10b r11b r12b r13b r14b r15b ax bx cx dx si di bp sp r8w r9w r10w r11w r12w r13w r14w r15w eax ebx ecx edx esi edi ebp esp eip r8d r9d r10d r11d r12d r13d r14d r15d rax rbx rcx rdx rsi rdi rbp rsp r8 r9 r10 r11 r12 r13 r14 r15 cs ds es fs gs ss st st0 st1 st2 st3 st4 st5 st6 st7 mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7 xmm8 xmm9 xmm10 xmm11 xmm12 xmm13 xmm14 xmm15 xmm16 xmm17 xmm18 xmm19 xmm20 xmm21 xmm22 xmm23 xmm24 xmm25 xmm26 xmm27 xmm28 xmm29 xmm30 xmm31 ymm0 ymm1 ymm2 ymm3 ymm4 ymm5 ymm6 ymm7 ymm8 ymm9 ymm10 ymm11 ymm12 ymm13 ymm14 ymm15 ymm16 ymm17 ymm18 ymm19 ymm20 ymm21 ymm22 ymm23 ymm24 ymm25 ymm26 ymm27 ymm28 ymm29 ymm30 ymm31 zmm0 zmm1 zmm2 zmm3 zmm4 zmm5 zmm6 zmm7 zmm8 zmm9 zmm10 zmm11 zmm12 zmm13 zmm14 zmm15 zmm16 zmm17 zmm18 zmm19 zmm20 zmm21 zmm22 zmm23 zmm24 zmm25 zmm26 zmm27 zmm28 zmm29 zmm30 zmm31 k0 k1 k2 k3 k4 k5 k6 k7 bnd0 bnd1 bnd2 bnd3 cr0 cr1 cr2 cr3 cr4 cr8 dr0 dr1 dr2 dr3 dr8 tr3 tr4 tr5 tr6 tr7 r0 r1 r2 r3 r4 r5 r6 r7 r0b r1b r2b r3b r4b r5b r6b r7b r0w r1w r2w r3w r4w r5w r6w r7w r0d r1d r2d r3d r4d r5d r6d r7d r0h r1h r2h r3h r0l r1l r2l r3l r4l r5l r6l r7l r8l r9l r10l r11l r12l r13l r14l r15l",pseudo:"db dw dd dq dt ddq do dy dz resb resw resd resq rest resdq reso resy resz incbin equ times",preprocessor:"%define %xdefine %+ %undef %defstr %deftok %assign %strcat %strlen %substr %rotate %elif %else %endif %ifmacro %ifctx %ifidn %ifidni %ifid %ifnum %ifstr %iftoken %ifempty %ifenv %error %warning %fatal %rep %endrep %include %push %pop %repl %pathsearch %depend %use %arg %stacksize %local %line %comment %endcomment .nolist byte word dword qword nosplit rel abs seg wrt strict near far a32 ptr __FILE__ __LINE__ __SECT__ __BITS__ __OUTPUT_FORMAT__ __DATE__ __TIME__ __DATE_NUM__ __TIME_NUM__ __UTC_DATE__ __UTC_TIME__ __UTC_DATE_NUM__ __UTC_TIME_NUM__ __PASS__ struc endstruc istruc at iend align alignb sectalign daz nodaz up down zero default option assume public ",built_in:"bits use16 use32 use64 default section segment absolute extern global common cpu float __utf16__ __utf16le__ __utf16be__ __utf32__ __utf32le__ __utf32be__ __float8__ __float16__ __float32__ __float64__ __float80m__ __float80e__ __float128l__ __float128h__ __Infinity__ __QNaN__ __SNaN__ Inf NaN QNaN SNaN float8 float16 float32 float64 float80m float80e float128l float128h __FLOAT_DAZ__ __FLOAT_ROUND__ __FLOAT__"},c:[s.C(";","$",{r:0}),{cN:"number",b:"\\b(?:([0-9][0-9_]*)?\\.[0-9_]*(?:[eE][+-]?[0-9_]+)?|(0[Xx])?[0-9][0-9_]*\\.?[0-9_]*(?:[pP](?:[+-]?[0-9_]+)?)?)\\b",r:0},{cN:"number",b:"\\$[0-9][0-9A-Fa-f]*",r:0},{cN:"number",b:"\\b(?:[0-9A-Fa-f][0-9A-Fa-f_]*[HhXx]|[0-9][0-9_]*[DdTt]?|[0-7][0-7_]*[QqOo]|[0-1][0-1_]*[BbYy])\\b"},{cN:"number",b:"\\b(?:0[HhXx][0-9A-Fa-f_]+|0[DdTt][0-9_]+|0[QqOo][0-7_]+|0[BbYy][0-1_]+)\\b"},s.QSM,{cN:"string",b:"'",e:"[^\\\\]'",r:0},{cN:"string",b:"`",e:"[^\\\\]`",r:0},{cN:"string",b:"\\.[A-Za-z0-9]+",r:0},{cN:"label",b:"^\\s*[A-Za-z._?][A-Za-z0-9_$#@~.?]*(:|\\s+label)",r:0},{cN:"label",b:"^\\s*%%[A-Za-z0-9_$#@~.?]*:",r:0},{cN:"argument",b:"%[0-9]+",r:0},{cN:"built_in",b:"%!S+",r:0}]}});hljs.registerLanguage("roboconf",function(e){var n="[a-zA-Z-_][^\n{\r\n]+\\{";return{aliases:["graph","instances"],cI:!0,k:"import",c:[{cN:"facet",b:"^facet "+n,e:"}",k:"facet installer exports children extends",c:[e.HCM]},{cN:"instance-of",b:"^instance of "+n,e:"}",k:"name count channels instance-data instance-state instance of",c:[{cN:"keyword",b:"[a-zA-Z-_]+( | )*:"},e.HCM]},{cN:"component",b:"^"+n,e:"}",l:"\\(?[a-zA-Z]+\\)?",k:"installer exports children extends imports facets alias (optional)",c:[{cN:"string",b:"\\.[a-zA-Z-_]+",e:"\\s|,|;",eE:!0},e.HCM]},e.HCM]}});hljs.registerLanguage("ruby",function(e){var c="[a-zA-Z_]\\w*[!?=]?|[-+~]\\@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?",r="and false then defined module in return redo if BEGIN retry end for true self when next until do begin unless END rescue nil else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor",b={cN:"yardoctag",b:"@[A-Za-z]+"},a={cN:"value",b:"#<",e:">"},n=[e.C("#","$",{c:[b]}),e.C("^\\=begin","^\\=end",{c:[b],r:10}),e.C("^__END__","\\n$")],s={cN:"subst",b:"#\\{",e:"}",k:r},t={cN:"string",c:[e.BE,s],v:[{b:/'/,e:/'/},{b:/"/,e:/"/},{b:/`/,e:/`/},{b:"%[qQwWx]?\\(",e:"\\)"},{b:"%[qQwWx]?\\[",e:"\\]"},{b:"%[qQwWx]?{",e:"}"},{b:"%[qQwWx]?<",e:">"},{b:"%[qQwWx]?/",e:"/"},{b:"%[qQwWx]?%",e:"%"},{b:"%[qQwWx]?-",e:"-"},{b:"%[qQwWx]?\\|",e:"\\|"},{b:/\B\?(\\\d{1,3}|\\x[A-Fa-f0-9]{1,2}|\\u[A-Fa-f0-9]{4}|\\?\S)\b/}]},i={cN:"params",b:"\\(",e:"\\)",k:r},d=[t,a,{cN:"class",bK:"class module",e:"$|;",i:/=/,c:[e.inherit(e.TM,{b:"[A-Za-z_]\\w*(::\\w+)*(\\?|\\!)?"}),{cN:"inheritance",b:"<\\s*",c:[{cN:"parent",b:"("+e.IR+"::)?"+e.IR}]}].concat(n)},{cN:"function",bK:"def",e:" |$|;",r:0,c:[e.inherit(e.TM,{b:c}),i].concat(n)},{cN:"constant",b:"(::)?(\\b[A-Z]\\w*(::)?)+",r:0},{cN:"symbol",b:e.UIR+"(\\!|\\?)?:",r:0},{cN:"symbol",b:":",c:[t,{b:c}],r:0},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},{cN:"variable",b:"(\\$\\W)|((\\$|\\@\\@?)(\\w+))"},{b:"("+e.RSR+")\\s*",c:[a,{cN:"regexp",c:[e.BE,s],i:/\n/,v:[{b:"/",e:"/[a-z]*"},{b:"%r{",e:"}[a-z]*"},{b:"%r\\(",e:"\\)[a-z]*"},{b:"%r!",e:"![a-z]*"},{b:"%r\\[",e:"\\][a-z]*"}]}].concat(n),r:0}].concat(n);s.c=d,i.c=d;var o="[>?]>",l="[\\w#]+\\(\\w+\\):\\d+:\\d+>",u="(\\w+-)?\\d+\\.\\d+\\.\\d(p\\d+)?[^>]+>",N=[{b:/^\s*=>/,cN:"status",starts:{e:"$",c:d}},{cN:"prompt",b:"^("+o+"|"+l+"|"+u+")",starts:{e:"$",c:d}}];return{aliases:["rb","gemspec","podspec","thor","irb"],k:r,c:n.concat(N).concat(d)}});hljs.registerLanguage("typescript",function(e){return{aliases:["ts"],k:{keyword:"in if for while finally var new function|0 do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const class public private get set super interface extendsstatic constructor implements enum export import declare type protected",literal:"true false null undefined NaN Infinity",built_in:"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document any number boolean string void"},c:[{cN:"pi",b:/^\s*('|")use strict('|")/,r:0},e.ASM,e.QSM,e.CLCM,e.CBCM,e.CNM,{b:"("+e.RSR+"|\\b(case|return|throw)\\b)\\s*",k:"return throw case",c:[e.CLCM,e.CBCM,e.RM,{b:/;/,r:0,sL:"xml"}],r:0},{cN:"function",bK:"function",e:/\{/,eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/}),{cN:"params",b:/\(/,e:/\)/,c:[e.CLCM,e.CBCM],i:/["'\(]/}],i:/\[|%/,r:0},{cN:"constructor",bK:"constructor",e:/\{/,eE:!0,r:10},{cN:"module",bK:"module",e:/\{/,eE:!0},{cN:"interface",bK:"interface",e:/\{/,eE:!0},{b:/\$[(.]/},{b:"\\."+e.IR,r:0}]}});hljs.registerLanguage("handlebars",function(e){var a="each in with if else unless bindattr action collection debugger log outlet template unbound view yield";return{aliases:["hbs","html.hbs","html.handlebars"],cI:!0,sL:"xml",subLanguageMode:"continuous",c:[{cN:"expression",b:"{{",e:"}}",c:[{cN:"begin-block",b:"#[a-zA-Z- .]+",k:a},{cN:"string",b:'"',e:'"'},{cN:"end-block",b:"\\/[a-zA-Z- .]+",k:a},{cN:"variable",b:"[a-zA-Z-.]+",k:a}]}]}});hljs.registerLanguage("mercury",function(e){var i={keyword:"module use_module import_module include_module end_module initialise mutable initialize finalize finalise interface implementation pred mode func type inst solver any_pred any_func is semidet det nondet multi erroneous failure cc_nondet cc_multi typeclass instance where pragma promise external trace atomic or_else require_complete_switch require_det require_semidet require_multi require_nondet require_cc_multi require_cc_nondet require_erroneous require_failure",pragma:"inline no_inline type_spec source_file fact_table obsolete memo loop_check minimal_model terminates does_not_terminate check_termination promise_equivalent_clauses",preprocessor:"foreign_proc foreign_decl foreign_code foreign_type foreign_import_module foreign_export_enum foreign_export foreign_enum may_call_mercury will_not_call_mercury thread_safe not_thread_safe maybe_thread_safe promise_pure promise_semipure tabled_for_io local untrailed trailed attach_to_io_state can_pass_as_mercury_type stable will_not_throw_exception may_modify_trail will_not_modify_trail may_duplicate may_not_duplicate affects_liveness does_not_affect_liveness doesnt_affect_liveness no_sharing unknown_sharing sharing",built_in:"some all not if then else true fail false try catch catch_any semidet_true semidet_false semidet_fail impure_true impure semipure"},r={cN:"label",b:"XXX",e:"$",eW:!0,r:0},t=e.inherit(e.CLCM,{b:"%"}),_=e.inherit(e.CBCM,{r:0});t.c.push(r),_.c.push(r);var n={cN:"number",b:"0'.\\|0[box][0-9a-fA-F]*"},a=e.inherit(e.ASM,{r:0}),o=e.inherit(e.QSM,{r:0}),l={cN:"constant",b:"\\\\[abfnrtv]\\|\\\\x[0-9a-fA-F]*\\\\\\|%[-+# *.0-9]*[dioxXucsfeEgGp]",r:0};o.c.push(l);var s={cN:"built_in",v:[{b:"<=>"},{b:"<=",r:0},{b:"=>",r:0},{b:"/\\\\"},{b:"\\\\/"}]},c={cN:"built_in",v:[{b:":-\\|-->"},{b:"=",r:0}]};return{aliases:["m","moo"],k:i,c:[s,c,t,_,n,e.NM,a,o,{b:/:-/}]}});hljs.registerLanguage("fix",function(u){return{c:[{b:/[^\u2401\u0001]+/,e:/[\u2401\u0001]/,eE:!0,rB:!0,rE:!1,c:[{b:/([^\u2401\u0001=]+)/,e:/=([^\u2401\u0001=]+)/,rE:!0,rB:!1,cN:"attribute"},{b:/=/,e:/([\u2401\u0001])/,eE:!0,eB:!0,cN:"string"}]}],cI:!0}});hljs.registerLanguage("clojure",function(e){var t={built_in:"def cond apply if-not if-let if not not= = < > <= >= == + / * - rem quot neg? pos? delay? symbol? keyword? true? false? integer? empty? coll? list? set? ifn? fn? associative? sequential? sorted? counted? reversible? number? decimal? class? distinct? isa? float? rational? reduced? ratio? odd? even? char? seq? vector? string? map? nil? contains? zero? instance? not-every? not-any? libspec? -> ->> .. . inc compare do dotimes mapcat take remove take-while drop letfn drop-last take-last drop-while while intern condp case reduced cycle split-at split-with repeat replicate iterate range merge zipmap declare line-seq sort comparator sort-by dorun doall nthnext nthrest partition eval doseq await await-for let agent atom send send-off release-pending-sends add-watch mapv filterv remove-watch agent-error restart-agent set-error-handler error-handler set-error-mode! error-mode shutdown-agents quote var fn loop recur throw try monitor-enter monitor-exit defmacro defn defn- macroexpand macroexpand-1 for dosync and or when when-not when-let comp juxt partial sequence memoize constantly complement identity assert peek pop doto proxy defstruct first rest cons defprotocol cast coll deftype defrecord last butlast sigs reify second ffirst fnext nfirst nnext defmulti defmethod meta with-meta ns in-ns create-ns import refer keys select-keys vals key val rseq name namespace promise into transient persistent! conj! assoc! dissoc! pop! disj! use class type num float double short byte boolean bigint biginteger bigdec print-method print-dup throw-if printf format load compile get-in update-in pr pr-on newline flush read slurp read-line subvec with-open memfn time re-find re-groups rand-int rand mod locking assert-valid-fdecl alias resolve ref deref refset swap! reset! set-validator! compare-and-set! alter-meta! reset-meta! commute get-validator alter ref-set ref-history-count ref-min-history ref-max-history ensure sync io! new next conj set! to-array future future-call into-array aset gen-class reduce map filter find empty hash-map hash-set sorted-map sorted-map-by sorted-set sorted-set-by vec vector seq flatten reverse assoc dissoc list disj get union difference intersection extend extend-type extend-protocol int nth delay count concat chunk chunk-buffer chunk-append chunk-first chunk-rest max min dec unchecked-inc-int unchecked-inc unchecked-dec-inc unchecked-dec unchecked-negate unchecked-add-int unchecked-add unchecked-subtract-int unchecked-subtract chunk-next chunk-cons chunked-seq? prn vary-meta lazy-seq spread list* str find-keyword keyword symbol gensym force rationalize"},r="a-zA-Z_\\-!.?+*=<>&#'",n="["+r+"]["+r+"0-9/;:]*",a="[-+]?\\d+(\\.\\d+)?",o={b:n,r:0},s={cN:"number",b:a,r:0},i=e.inherit(e.QSM,{i:null}),c=e.C(";","$",{r:0}),d={cN:"literal",b:/\b(true|false|nil)\b/},l={cN:"collection",b:"[\\[\\{]",e:"[\\]\\}]"},m={cN:"comment",b:"\\^"+n},p=e.C("\\^\\{","\\}"),u={cN:"attribute",b:"[:]"+n},f={cN:"list",b:"\\(",e:"\\)"},h={eW:!0,r:0},y={k:t,l:n,cN:"keyword",b:n,starts:h},b=[f,i,m,p,c,u,l,s,d,o];return f.c=[e.C("comment",""),y,h],h.c=b,l.c=b,{aliases:["clj"],i:/\S/,c:[f,i,m,p,c,u,l,s,d]}});hljs.registerLanguage("perl",function(e){var t="getpwent getservent quotemeta msgrcv scalar kill dbmclose undef lc ma syswrite tr send umask sysopen shmwrite vec qx utime local oct semctl localtime readpipe do return format read sprintf dbmopen pop getpgrp not getpwnam rewinddir qqfileno qw endprotoent wait sethostent bless s|0 opendir continue each sleep endgrent shutdown dump chomp connect getsockname die socketpair close flock exists index shmgetsub for endpwent redo lstat msgctl setpgrp abs exit select print ref gethostbyaddr unshift fcntl syscall goto getnetbyaddr join gmtime symlink semget splice x|0 getpeername recv log setsockopt cos last reverse gethostbyname getgrnam study formline endhostent times chop length gethostent getnetent pack getprotoent getservbyname rand mkdir pos chmod y|0 substr endnetent printf next open msgsnd readdir use unlink getsockopt getpriority rindex wantarray hex system getservbyport endservent int chr untie rmdir prototype tell listen fork shmread ucfirst setprotoent else sysseek link getgrgid shmctl waitpid unpack getnetbyname reset chdir grep split require caller lcfirst until warn while values shift telldir getpwuid my getprotobynumber delete and sort uc defined srand accept package seekdir getprotobyname semop our rename seek if q|0 chroot sysread setpwent no crypt getc chown sqrt write setnetent setpriority foreach tie sin msgget map stat getlogin unless elsif truncate exec keys glob tied closedirioctl socket readlink eval xor readline binmode setservent eof ord bind alarm pipe atan2 getgrent exp time push setgrent gt lt or ne m|0 break given say state when",r={cN:"subst",b:"[$@]\\{",e:"\\}",k:t},s={b:"->{",e:"}"},n={cN:"variable",v:[{b:/\$\d/},{b:/[\$%@](\^\w\b|#\w+(::\w+)*|{\w+}|\w+(::\w*)*)/},{b:/[\$%@][^\s\w{]/,r:0}]},i=e.C("^(__END__|__DATA__)","\\n$",{r:5}),o=[e.BE,r,n],a=[n,e.HCM,i,e.C("^\\=\\w","\\=cut",{eW:!0}),s,{cN:"string",c:o,v:[{b:"q[qwxr]?\\s*\\(",e:"\\)",r:5},{b:"q[qwxr]?\\s*\\[",e:"\\]",r:5},{b:"q[qwxr]?\\s*\\{",e:"\\}",r:5},{b:"q[qwxr]?\\s*\\|",e:"\\|",r:5},{b:"q[qwxr]?\\s*\\<",e:"\\>",r:5},{b:"qw\\s+q",e:"q",r:5},{b:"'",e:"'",c:[e.BE]},{b:'"',e:'"'},{b:"`",e:"`",c:[e.BE]},{b:"{\\w+}",c:[],r:0},{b:"-?\\w+\\s*\\=\\>",c:[],r:0}]},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},{b:"(\\/\\/|"+e.RSR+"|\\b(split|return|print|reverse|grep)\\b)\\s*",k:"split return print reverse grep",r:0,c:[e.HCM,i,{cN:"regexp",b:"(s|tr|y)/(\\\\.|[^/])*/(\\\\.|[^/])*/[a-z]*",r:10},{cN:"regexp",b:"(m|qr)?/",e:"/[a-z]*",c:[e.BE],r:0}]},{cN:"sub",bK:"sub",e:"(\\s*\\(.*?\\))?[;{]",r:5},{cN:"operator",b:"-\\w\\b",r:0}];return r.c=a,s.c=a,{aliases:["pl"],k:t,c:a}});hljs.registerLanguage("twig",function(e){var t={cN:"params",b:"\\(",e:"\\)"},a="attribute block constant cycle date dump include max min parent random range source template_from_string",r={cN:"function",bK:a,r:0,c:[t]},c={cN:"filter",b:/\|[A-Za-z_]+:?/,k:"abs batch capitalize convert_encoding date date_modify default escape first format join json_encode keys last length lower merge nl2br number_format raw replace reverse round slice sort split striptags title trim upper url_encode",c:[r]},n="autoescape block do embed extends filter flush for if import include macro sandbox set spaceless use verbatim";return n=n+" "+n.split(" ").map(function(e){return"end"+e}).join(" "),{aliases:["craftcms"],cI:!0,sL:"xml",subLanguageMode:"continuous",c:[e.C(/\{#/,/#}/),{cN:"template_tag",b:/\{%/,e:/%}/,k:n,c:[c,r]},{cN:"variable",b:/\{\{/,e:/}}/,c:[c,r]}]}});hljs.registerLanguage("livecodeserver",function(e){var r={cN:"variable",b:"\\b[gtps][A-Z]+[A-Za-z0-9_\\-]*\\b|\\$_[A-Z]+",r:0},t=[e.CBCM,e.HCM,e.C("--","$"),e.C("[^:]//","$")],a=e.inherit(e.TM,{v:[{b:"\\b_*rig[A-Z]+[A-Za-z0-9_\\-]*"},{b:"\\b_[a-z0-9\\-]+"}]}),o=e.inherit(e.TM,{b:"\\b([A-Za-z0-9_\\-]+)\\b"});return{cI:!1,k:{keyword:"$_COOKIE $_FILES $_GET $_GET_BINARY $_GET_RAW $_POST $_POST_BINARY $_POST_RAW $_SESSION $_SERVER codepoint codepoints segment segments codeunit codeunits sentence sentences trueWord trueWords paragraph after byte bytes english the until http forever descending using line real8 with seventh for stdout finally element word words fourth before black ninth sixth characters chars stderr uInt1 uInt1s uInt2 uInt2s stdin string lines relative rel any fifth items from middle mid at else of catch then third it file milliseconds seconds second secs sec int1 int1s int4 int4s internet int2 int2s normal text item last long detailed effective uInt4 uInt4s repeat end repeat URL in try into switch to words https token binfile each tenth as ticks tick system real4 by dateItems without char character ascending eighth whole dateTime numeric short first ftp integer abbreviated abbr abbrev private case while if",constant:"SIX TEN FORMFEED NINE ZERO NONE SPACE FOUR FALSE COLON CRLF PI COMMA ENDOFFILE EOF EIGHT FIVE QUOTE EMPTY ONE TRUE RETURN CR LINEFEED RIGHT BACKSLASH NULL SEVEN TAB THREE TWO six ten formfeed nine zero none space four false colon crlf pi comma endoffile eof eight five quote empty one true return cr linefeed right backslash null seven tab three two RIVERSION RISTATE FILE_READ_MODE FILE_WRITE_MODE FILE_WRITE_MODE DIR_WRITE_MODE FILE_READ_UMASK FILE_WRITE_UMASK DIR_READ_UMASK DIR_WRITE_UMASK",operator:"div mod wrap and or bitAnd bitNot bitOr bitXor among not in a an within contains ends with begins the keys of keys",built_in:"put abs acos aliasReference annuity arrayDecode arrayEncode asin atan atan2 average avg avgDev base64Decode base64Encode baseConvert binaryDecode binaryEncode byteOffset byteToNum cachedURL cachedURLs charToNum cipherNames codepointOffset codepointProperty codepointToNum codeunitOffset commandNames compound compress constantNames cos date dateFormat decompress directories diskSpace DNSServers exp exp1 exp2 exp10 extents files flushEvents folders format functionNames geometricMean global globals hasMemory harmonicMean hostAddress hostAddressToName hostName hostNameToAddress isNumber ISOToMac itemOffset keys len length libURLErrorData libUrlFormData libURLftpCommand libURLLastHTTPHeaders libURLLastRHHeaders libUrlMultipartFormAddPart libUrlMultipartFormData libURLVersion lineOffset ln ln1 localNames log log2 log10 longFilePath lower macToISO matchChunk matchText matrixMultiply max md5Digest median merge millisec millisecs millisecond milliseconds min monthNames nativeCharToNum normalizeText num number numToByte numToChar numToCodepoint numToNativeChar offset open openfiles openProcesses openProcessIDs openSockets paragraphOffset paramCount param params peerAddress pendingMessages platform popStdDev populationStandardDeviation populationVariance popVariance processID random randomBytes replaceText result revCreateXMLTree revCreateXMLTreeFromFile revCurrentRecord revCurrentRecordIsFirst revCurrentRecordIsLast revDatabaseColumnCount revDatabaseColumnIsNull revDatabaseColumnLengths revDatabaseColumnNames revDatabaseColumnNamed revDatabaseColumnNumbered revDatabaseColumnTypes revDatabaseConnectResult revDatabaseCursors revDatabaseID revDatabaseTableNames revDatabaseType revDataFromQuery revdb_closeCursor revdb_columnbynumber revdb_columncount revdb_columnisnull revdb_columnlengths revdb_columnnames revdb_columntypes revdb_commit revdb_connect revdb_connections revdb_connectionerr revdb_currentrecord revdb_cursorconnection revdb_cursorerr revdb_cursors revdb_dbtype revdb_disconnect revdb_execute revdb_iseof revdb_isbof revdb_movefirst revdb_movelast revdb_movenext revdb_moveprev revdb_query revdb_querylist revdb_recordcount revdb_rollback revdb_tablenames revGetDatabaseDriverPath revNumberOfRecords revOpenDatabase revOpenDatabases revQueryDatabase revQueryDatabaseBlob revQueryResult revQueryIsAtStart revQueryIsAtEnd revUnixFromMacPath revXMLAttribute revXMLAttributes revXMLAttributeValues revXMLChildContents revXMLChildNames revXMLCreateTreeFromFileWithNamespaces revXMLCreateTreeWithNamespaces revXMLDataFromXPathQuery revXMLEvaluateXPath revXMLFirstChild revXMLMatchingNode revXMLNextSibling revXMLNodeContents revXMLNumberOfChildren revXMLParent revXMLPreviousSibling revXMLRootNode revXMLRPC_CreateRequest revXMLRPC_Documents revXMLRPC_Error revXMLRPC_GetHost revXMLRPC_GetMethod revXMLRPC_GetParam revXMLText revXMLRPC_Execute revXMLRPC_GetParamCount revXMLRPC_GetParamNode revXMLRPC_GetParamType revXMLRPC_GetPath revXMLRPC_GetPort revXMLRPC_GetProtocol revXMLRPC_GetRequest revXMLRPC_GetResponse revXMLRPC_GetSocket revXMLTree revXMLTrees revXMLValidateDTD revZipDescribeItem revZipEnumerateItems revZipOpenArchives round sampVariance sec secs seconds sentenceOffset sha1Digest shell shortFilePath sin specialFolderPath sqrt standardDeviation statRound stdDev sum sysError systemVersion tan tempName textDecode textEncode tick ticks time to tokenOffset toLower toUpper transpose truewordOffset trunc uniDecode uniEncode upper URLDecode URLEncode URLStatus uuid value variableNames variance version waitDepth weekdayNames wordOffset xsltApplyStylesheet xsltApplyStylesheetFromFile xsltLoadStylesheet xsltLoadStylesheetFromFile add breakpoint cancel clear local variable file word line folder directory URL close socket process combine constant convert create new alias folder directory decrypt delete variable word line folder directory URL dispatch divide do encrypt filter get include intersect kill libURLDownloadToFile libURLFollowHttpRedirects libURLftpUpload libURLftpUploadFile libURLresetAll libUrlSetAuthCallback libURLSetCustomHTTPHeaders libUrlSetExpect100 libURLSetFTPListCommand libURLSetFTPMode libURLSetFTPStopTime libURLSetStatusCallback load multiply socket prepare process post seek rel relative read from process rename replace require resetAll resolve revAddXMLNode revAppendXML revCloseCursor revCloseDatabase revCommitDatabase revCopyFile revCopyFolder revCopyXMLNode revDeleteFolder revDeleteXMLNode revDeleteAllXMLTrees revDeleteXMLTree revExecuteSQL revGoURL revInsertXMLNode revMoveFolder revMoveToFirstRecord revMoveToLastRecord revMoveToNextRecord revMoveToPreviousRecord revMoveToRecord revMoveXMLNode revPutIntoXMLNode revRollBackDatabase revSetDatabaseDriverPath revSetXMLAttribute revXMLRPC_AddParam revXMLRPC_DeleteAllDocuments revXMLAddDTD revXMLRPC_Free revXMLRPC_FreeAll revXMLRPC_DeleteDocument revXMLRPC_DeleteParam revXMLRPC_SetHost revXMLRPC_SetMethod revXMLRPC_SetPort revXMLRPC_SetProtocol revXMLRPC_SetSocket revZipAddItemWithData revZipAddItemWithFile revZipAddUncompressedItemWithData revZipAddUncompressedItemWithFile revZipCancel revZipCloseArchive revZipDeleteItem revZipExtractItemToFile revZipExtractItemToVariable revZipSetProgressCallback revZipRenameItem revZipReplaceItemWithData revZipReplaceItemWithFile revZipOpenArchive send set sort split start stop subtract union unload wait write"},c:[r,{cN:"keyword",b:"\\bend\\sif\\b"},{cN:"function",bK:"function",e:"$",c:[r,o,e.ASM,e.QSM,e.BNM,e.CNM,a]},{cN:"function",bK:"end",e:"$",c:[o,a]},{cN:"command",bK:"command on",e:"$",c:[r,o,e.ASM,e.QSM,e.BNM,e.CNM,a]},{cN:"command",bK:"end",e:"$",c:[o,a]},{cN:"preprocessor",b:"<\\?rev|<\\?lc|<\\?livecode",r:10},{cN:"preprocessor",b:"<\\?"},{cN:"preprocessor",b:"\\?>"},e.ASM,e.QSM,e.BNM,e.CNM,a].concat(t),i:";$|^\\[|^="}});hljs.registerLanguage("step21",function(e){var r="[A-Z_][A-Z0-9_.]*",i="END-ISO-10303-21;",l={literal:"",built_in:"",keyword:"HEADER ENDSEC DATA"},s={cN:"preprocessor",b:"ISO-10303-21;",r:10},t=[e.CLCM,e.CBCM,e.C("/\\*\\*!","\\*/"),e.CNM,e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null}),{cN:"string",b:"'",e:"'"},{cN:"label",v:[{b:"#",e:"\\d+",i:"\\W"}]}];return{aliases:["p21","step","stp"],cI:!0,l:r,k:l,c:[{cN:"preprocessor",b:i,r:10},s].concat(t)}});hljs.registerLanguage("cpp",function(t){var i={keyword:"false int float while private char catch export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const struct for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using true class asm case typeid short reinterpret_cast|10 default double register explicit signed typename try this switch continue wchar_t inline delete alignof char16_t char32_t constexpr decltype noexcept nullptr static_assert thread_local restrict _Bool complex _Complex _Imaginary intmax_t uintmax_t int8_t uint8_t int16_t uint16_t int32_t uint32_t int64_t uint64_t int_least8_t uint_least8_t int_least16_t uint_least16_t int_least32_t uint_least32_t int_least64_t uint_least64_t int_fast8_t uint_fast8_t int_fast16_t uint_fast16_t int_fast32_t uint_fast32_t int_fast64_t uint_fast64_t intptr_t uintptr_t atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong atomic_wchar_t atomic_char16_t atomic_char32_t atomic_intmax_t atomic_uintmax_t atomic_intptr_t atomic_uintptr_t atomic_size_t atomic_ptrdiff_t atomic_int_least8_t atomic_int_least16_t atomic_int_least32_t atomic_int_least64_t atomic_uint_least8_t atomic_uint_least16_t atomic_uint_least32_t atomic_uint_least64_t atomic_int_fast8_t atomic_int_fast16_t atomic_int_fast32_t atomic_int_fast64_t atomic_uint_fast8_t atomic_uint_fast16_t atomic_uint_fast32_t atomic_uint_fast64_t",built_in:"std string cin cout cerr clog stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap array shared_ptr abort abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf"};return{aliases:["c","cc","h","c++","h++","hpp"],k:i,i:""]',k:"include",i:"\\n"},t.CLCM]},{b:"\\b(deque|list|queue|stack|vector|map|set|bitset|multiset|multimap|unordered_map|unordered_set|unordered_multiset|unordered_multimap|array)\\s*<",e:">",k:i,c:["self"]},{b:t.IR+"::",k:i},{bK:"new throw return else",r:0},{cN:"function",b:"("+t.IR+"\\s+)+"+t.IR+"\\s*\\(",rB:!0,e:/[{;=]/,eE:!0,k:i,c:[{b:t.IR+"\\s*\\(",rB:!0,c:[t.TM],r:0},{cN:"params",b:/\(/,e:/\)/,k:i,r:0,c:[t.CBCM]},t.CLCM,t.CBCM]}]}});hljs.registerLanguage("vala",function(e){return{k:{keyword:"char uchar unichar int uint long ulong short ushort int8 int16 int32 int64 uint8 uint16 uint32 uint64 float double bool struct enum string void weak unowned owned async signal static abstract interface override while do for foreach else switch case break default return try catch public private protected internal using new this get set const stdout stdin stderr var",built_in:"DBus GLib CCode Gee Object",literal:"false true null"},c:[{cN:"class",bK:"class interface delegate namespace",e:"{",eE:!0,i:"[^,:\\n\\s\\.]",c:[e.UTM]},e.CLCM,e.CBCM,{cN:"string",b:'"""',e:'"""',r:5},e.ASM,e.QSM,e.CNM,{cN:"preprocessor",b:"^#",e:"$",r:2},{cN:"constant",b:" [A-Z_]+ ",r:0}]}});hljs.registerLanguage("http",function(t){return{aliases:["https"],i:"\\S",c:[{cN:"status",b:"^HTTP/[0-9\\.]+",e:"$",c:[{cN:"number",b:"\\b\\d{3}\\b"}]},{cN:"request",b:"^[A-Z]+ (.*?) HTTP/[0-9\\.]+$",rB:!0,e:"$",c:[{cN:"string",b:" ",e:" ",eB:!0,eE:!0}]},{cN:"attribute",b:"^\\w",e:": ",eE:!0,i:"\\n|\\s|=",starts:{cN:"string",e:"$"}},{b:"\\n\\n",starts:{sL:"",eW:!0}}]}});hljs.registerLanguage("avrasm",function(r){return{cI:!0,l:"\\.?"+r.IR,k:{keyword:"adc add adiw and andi asr bclr bld brbc brbs brcc brcs break breq brge brhc brhs brid brie brlo brlt brmi brne brpl brsh brtc brts brvc brvs bset bst call cbi cbr clc clh cli cln clr cls clt clv clz com cp cpc cpi cpse dec eicall eijmp elpm eor fmul fmuls fmulsu icall ijmp in inc jmp ld ldd ldi lds lpm lsl lsr mov movw mul muls mulsu neg nop or ori out pop push rcall ret reti rjmp rol ror sbc sbr sbrc sbrs sec seh sbi sbci sbic sbis sbiw sei sen ser ses set sev sez sleep spm st std sts sub subi swap tst wdr",built_in:"r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 r16 r17 r18 r19 r20 r21 r22 r23 r24 r25 r26 r27 r28 r29 r30 r31 x|0 xh xl y|0 yh yl z|0 zh zl ucsr1c udr1 ucsr1a ucsr1b ubrr1l ubrr1h ucsr0c ubrr0h tccr3c tccr3a tccr3b tcnt3h tcnt3l ocr3ah ocr3al ocr3bh ocr3bl ocr3ch ocr3cl icr3h icr3l etimsk etifr tccr1c ocr1ch ocr1cl twcr twdr twar twsr twbr osccal xmcra xmcrb eicra spmcsr spmcr portg ddrg ping portf ddrf sreg sph spl xdiv rampz eicrb eimsk gimsk gicr eifr gifr timsk tifr mcucr mcucsr tccr0 tcnt0 ocr0 assr tccr1a tccr1b tcnt1h tcnt1l ocr1ah ocr1al ocr1bh ocr1bl icr1h icr1l tccr2 tcnt2 ocr2 ocdr wdtcr sfior eearh eearl eedr eecr porta ddra pina portb ddrb pinb portc ddrc pinc portd ddrd pind spdr spsr spcr udr0 ucsr0a ucsr0b ubrr0l acsr admux adcsr adch adcl porte ddre pine pinf",preprocessor:".byte .cseg .db .def .device .dseg .dw .endmacro .equ .eseg .exit .include .list .listmac .macro .nolist .org .set"},c:[r.CBCM,r.C(";","$",{r:0}),r.CNM,r.BNM,{cN:"number",b:"\\b(\\$[a-zA-Z0-9]+|0o[0-7]+)"},r.QSM,{cN:"string",b:"'",e:"[^\\\\]'",i:"[^\\\\][^']"},{cN:"label",b:"^[A-Za-z0-9_.$]+:"},{cN:"preprocessor",b:"#",e:"$"},{cN:"localvars",b:"@[0-9]+"}]}});hljs.registerLanguage("aspectj",function(e){var t="false synchronized int abstract float private char boolean static null if const for true while long throw strictfp finally protected import native final return void enum else extends implements break transient new catch instanceof byte super volatile case assert short package default double public try this switch continue throws privileged aspectOf adviceexecution proceed cflowbelow cflow initialization preinitialization staticinitialization withincode target within execution getWithinTypeName handler thisJoinPoint thisJoinPointStaticPart thisEnclosingJoinPointStaticPart declare parents warning error soft precedence thisAspectInstance",i="get set args call";return{k:t,i:/<\//,c:[{cN:"javadoc",b:"/\\*\\*",e:"\\*/",r:0,c:[{cN:"javadoctag",b:"(^|\\s)@[A-Za-z]+"}]},e.CLCM,e.CBCM,e.ASM,e.QSM,{cN:"aspect",bK:"aspect",e:/[{;=]/,eE:!0,i:/[:;"\[\]]/,c:[{bK:"extends implements pertypewithin perthis pertarget percflowbelow percflow issingleton"},e.UTM,{b:/\([^\)]*/,e:/[)]+/,k:t+" "+i,eE:!1}]},{cN:"class",bK:"class interface",e:/[{;=]/,eE:!0,r:0,k:"class interface",i:/[:"\[\]]/,c:[{bK:"extends implements"},e.UTM]},{bK:"pointcut after before around throwing returning",e:/[)]/,eE:!1,i:/["\[\]]/,c:[{b:e.UIR+"\\s*\\(",rB:!0,c:[e.UTM]}]},{b:/[:]/,rB:!0,e:/[{;]/,r:0,eE:!1,k:t,i:/["\[\]]/,c:[{b:e.UIR+"\\s*\\(",k:t+" "+i},e.QSM]},{bK:"new throw",r:0},{cN:"function",b:/\w+ +\w+(\.)?\w+\s*\([^\)]*\)\s*((throws)[\w\s,]+)?[\{;]/,rB:!0,e:/[{;=]/,k:t,eE:!0,c:[{b:e.UIR+"\\s*\\(",rB:!0,r:0,c:[e.UTM]},{cN:"params",b:/\(/,e:/\)/,r:0,k:t,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]},e.CNM,{cN:"annotation",b:"@[A-Za-z]+"}]}});hljs.registerLanguage("rib",function(e){return{k:"ArchiveRecord AreaLightSource Atmosphere Attribute AttributeBegin AttributeEnd Basis Begin Blobby Bound Clipping ClippingPlane Color ColorSamples ConcatTransform Cone CoordinateSystem CoordSysTransform CropWindow Curves Cylinder DepthOfField Detail DetailRange Disk Displacement Display End ErrorHandler Exposure Exterior Format FrameAspectRatio FrameBegin FrameEnd GeneralPolygon GeometricApproximation Geometry Hider Hyperboloid Identity Illuminate Imager Interior LightSource MakeCubeFaceEnvironment MakeLatLongEnvironment MakeShadow MakeTexture Matte MotionBegin MotionEnd NuPatch ObjectBegin ObjectEnd ObjectInstance Opacity Option Orientation Paraboloid Patch PatchMesh Perspective PixelFilter PixelSamples PixelVariance Points PointsGeneralPolygons PointsPolygons Polygon Procedural Projection Quantize ReadArchive RelativeDetail ReverseOrientation Rotate Scale ScreenWindow ShadingInterpolation ShadingRate Shutter Sides Skew SolidBegin SolidEnd Sphere SubdivisionMesh Surface TextureCoordinates Torus Transform TransformBegin TransformEnd TransformPoints Translate TrimCurve WorldBegin WorldEnd",i:">>|\.\.\.) /},b={cN:"string",c:[e.BE],v:[{b:/(u|b)?r?'''/,e:/'''/,c:[r],r:10},{b:/(u|b)?r?"""/,e:/"""/,c:[r],r:10},{b:/(u|r|ur)'/,e:/'/,r:10},{b:/(u|r|ur)"/,e:/"/,r:10},{b:/(b|br)'/,e:/'/},{b:/(b|br)"/,e:/"/},e.ASM,e.QSM]},l={cN:"number",r:0,v:[{b:e.BNR+"[lLjJ]?"},{b:"\\b(0o[0-7]+)[lLjJ]?"},{b:e.CNR+"[lLjJ]?"}]},c={cN:"params",b:/\(/,e:/\)/,c:["self",r,l,b]};return{aliases:["py","gyp"],k:{keyword:"and elif is global as in if from raise for except finally print import pass return exec else break not with class assert yield try while continue del or def lambda nonlocal|10 None True False",built_in:"Ellipsis NotImplemented"},i:/(<\/|->|\?)/,c:[r,l,b,e.HCM,{v:[{cN:"function",bK:"def",r:10},{cN:"class",bK:"class"}],e:/:/,i:/[${=;\n,]/,c:[e.UTM,c]},{cN:"decorator",b:/@/,e:/$/},{b:/\b(print|exec)\(/}]}});hljs.registerLanguage("axapta",function(e){return{k:"false int abstract private char boolean static null if for true while long throw finally protected final return void enum else break new catch byte super case short default double public try this switch continue reverse firstfast firstonly forupdate nofetch sum avg minof maxof count order group by asc desc index hint like dispaly edit client server ttsbegin ttscommit str real date container anytype common div mod",c:[e.CLCM,e.CBCM,e.ASM,e.QSM,e.CNM,{cN:"preprocessor",b:"#",e:"$"},{cN:"class",bK:"class interface",e:"{",eE:!0,i:":",c:[{bK:"extends implements"},e.UTM]}]}});hljs.registerLanguage("nix",function(e){var t={keyword:"rec with let in inherit assert if else then",constant:"true false or and null",built_in:"import abort baseNameOf dirOf isNull builtins map removeAttrs throw toString derivation"},i={cN:"subst",b:/\$\{/,e:/}/,k:t},r={cN:"variable",b:/[a-zA-Z0-9-_]+(\s*=)/},n={cN:"string",b:"''",e:"''",c:[i]},s={cN:"string",b:'"',e:'"',c:[i]},a=[e.NM,e.HCM,e.CBCM,n,s,r];return i.c=a,{aliases:["nixos"],k:t,c:a}});hljs.registerLanguage("diff",function(e){return{aliases:["patch"],c:[{cN:"chunk",r:10,v:[{b:/^@@ +\-\d+,\d+ +\+\d+,\d+ +@@$/},{b:/^\*\*\* +\d+,\d+ +\*\*\*\*$/},{b:/^\-\-\- +\d+,\d+ +\-\-\-\-$/}]},{cN:"header",v:[{b:/Index: /,e:/$/},{b:/=====/,e:/=====$/},{b:/^\-\-\-/,e:/$/},{b:/^\*{3} /,e:/$/},{b:/^\+\+\+/,e:/$/},{b:/\*{5}/,e:/\*{5}$/}]},{cN:"addition",b:"^\\+",e:"$"},{cN:"deletion",b:"^\\-",e:"$"},{cN:"change",b:"^\\!",e:"$"}]}});hljs.registerLanguage("parser3",function(r){var e=r.C("{","}",{c:["self"]});return{sL:"xml",r:0,c:[r.C("^#","$"),r.C("\\^rem{","}",{r:10,c:[e]}),{cN:"preprocessor",b:"^@(?:BASE|USE|CLASS|OPTIONS)$",r:10},{cN:"title",b:"@[\\w\\-]+\\[[\\w^;\\-]*\\](?:\\[[\\w^;\\-]*\\])?(?:.*)$"},{cN:"variable",b:"\\$\\{?[\\w\\-\\.\\:]+\\}?"},{cN:"keyword",b:"\\^[\\w\\-\\.\\:]+"},{cN:"number",b:"\\^#[0-9a-fA-F]+"},r.CNM]}});hljs.registerLanguage("django",function(e){var t={cN:"filter",b:/\|[A-Za-z]+:?/,k:"truncatewords removetags linebreaksbr yesno get_digit timesince random striptags filesizeformat escape linebreaks length_is ljust rjust cut urlize fix_ampersands title floatformat capfirst pprint divisibleby add make_list unordered_list urlencode timeuntil urlizetrunc wordcount stringformat linenumbers slice date dictsort dictsortreversed default_if_none pluralize lower join center default truncatewords_html upper length phone2numeric wordwrap time addslashes slugify first escapejs force_escape iriencode last safe safeseq truncatechars localize unlocalize localtime utc timezone",c:[{cN:"argument",b:/"/,e:/"/},{cN:"argument",b:/'/,e:/'/}]};return{aliases:["jinja"],cI:!0,sL:"xml",subLanguageMode:"continuous",c:[e.C(/\{%\s*comment\s*%}/,/\{%\s*endcomment\s*%}/),e.C(/\{#/,/#}/),{cN:"template_tag",b:/\{%/,e:/%}/,k:"comment endcomment load templatetag ifchanged endifchanged if endif firstof for endfor in ifnotequal endifnotequal widthratio extends include spaceless endspaceless regroup by as ifequal endifequal ssi now with cycle url filter endfilter debug block endblock else autoescape endautoescape csrf_token empty elif endwith static trans blocktrans endblocktrans get_static_prefix get_media_prefix plural get_current_language language get_available_languages get_current_language_bidi get_language_info get_language_info_list localize endlocalize localtime endlocaltime timezone endtimezone get_current_timezone verbatim",c:[t]},{cN:"variable",b:/\{\{/,e:/}}/,c:[t]}]}});hljs.registerLanguage("rust",function(e){var t=e.inherit(e.CBCM);return t.c.push("self"),{aliases:["rs"],k:{keyword:"alignof as be box break const continue crate do else enum extern false fn for if impl in let loop match mod mut offsetof once priv proc pub pure ref return self sizeof static struct super trait true type typeof unsafe unsized use virtual while yield int i8 i16 i32 i64 uint u8 u32 u64 float f32 f64 str char bool",built_in:"assert! assert_eq! bitflags! bytes! cfg! col! concat! concat_idents! debug_assert! debug_assert_eq! env! panic! file! format! format_args! include_bin! include_str! line! local_data_key! module_path! option_env! print! println! select! stringify! try! unimplemented! unreachable! vec! write! writeln!"},l:e.IR+"!?",i:""}]}});hljs.registerLanguage("vhdl",function(e){var t="\\d(_|\\d)*",r="[eE][-+]?"+t,n=t+"(\\."+t+")?("+r+")?",o="\\w+",i=t+"#"+o+"(\\."+o+")?#("+r+")?",a="\\b("+i+"|"+n+")";return{cI:!0,k:{keyword:"abs access after alias all and architecture array assert attribute begin block body buffer bus case component configuration constant context cover disconnect downto default else elsif end entity exit fairness file for force function generate generic group guarded if impure in inertial inout is label library linkage literal loop map mod nand new next nor not null of on open or others out package port postponed procedure process property protected pure range record register reject release rem report restrict restrict_guarantee return rol ror select sequence severity shared signal sla sll sra srl strong subtype then to transport type unaffected units until use variable vmode vprop vunit wait when while with xnor xor",typename:"boolean bit character severity_level integer time delay_length natural positive string bit_vector file_open_kind file_open_status std_ulogic std_ulogic_vector std_logic std_logic_vector unsigned signed boolean_vector integer_vector real_vector time_vector"},i:"{",c:[e.CBCM,e.C("--","$"),e.QSM,{cN:"number",b:a,r:0},{cN:"literal",b:"'(U|X|0|1|Z|W|L|H|-)'",c:[e.BE]},{cN:"attribute",b:"'[A-Za-z](_?[A-Za-z0-9])*",c:[e.BE]}]}});hljs.registerLanguage("ocaml",function(e){return{aliases:["ml"],k:{keyword:"and as assert asr begin class constraint do done downto else end exception external for fun function functor if in include inherit! inherit initializer land lazy let lor lsl lsr lxor match method!|10 method mod module mutable new object of open! open or private rec sig struct then to try type val! val virtual when while with parser value",built_in:"array bool bytes char exn|5 float int int32 int64 list lazy_t|5 nativeint|5 string unit in_channel out_channel ref",literal:"true false"},i:/\/\/|>>/,l:"[a-z_]\\w*!?",c:[{cN:"literal",b:"\\[(\\|\\|)?\\]|\\(\\)"},e.C("\\(\\*","\\*\\)",{c:["self"]}),{cN:"symbol",b:"'[A-Za-z_](?!')[\\w']*"},{cN:"tag",b:"`[A-Z][\\w']*"},{cN:"type",b:"\\b[A-Z][\\w']*",r:0},{b:"[a-z_]\\w*'[\\w']*"},e.inherit(e.ASM,{cN:"char",r:0}),e.inherit(e.QSM,{i:null}),{cN:"number",b:"\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)",r:0},{b:/[-=]>/}]}});hljs.registerLanguage("cmake",function(e){return{aliases:["cmake.in"],cI:!0,k:{keyword:"add_custom_command add_custom_target add_definitions add_dependencies add_executable add_library add_subdirectory add_test aux_source_directory break build_command cmake_minimum_required cmake_policy configure_file create_test_sourcelist define_property else elseif enable_language enable_testing endforeach endfunction endif endmacro endwhile execute_process export find_file find_library find_package find_path find_program fltk_wrap_ui foreach function get_cmake_property get_directory_property get_filename_component get_property get_source_file_property get_target_property get_test_property if include include_directories include_external_msproject include_regular_expression install link_directories load_cache load_command macro mark_as_advanced message option output_required_files project qt_wrap_cpp qt_wrap_ui remove_definitions return separate_arguments set set_directory_properties set_property set_source_files_properties set_target_properties set_tests_properties site_name source_group string target_link_libraries try_compile try_run unset variable_watch while build_name exec_program export_library_dependencies install_files install_programs install_targets link_libraries make_directory remove subdir_depends subdirs use_mangled_mesa utility_source variable_requires write_file qt5_use_modules qt5_use_package qt5_wrap_cpp on off true false and or",operator:"equal less greater strless strgreater strequal matches"},c:[{cN:"envvar",b:"\\${",e:"}"},e.HCM,e.QSM,e.NM]}});hljs.registerLanguage("1c",function(c){var e="[a-zA-Zа-яА-Я][a-zA-Z0-9_а-яА-Я]*",r="возврат дата для если и или иначе иначеесли исключение конецесли конецпопытки конецпроцедуры конецфункции конеццикла константа не перейти перем перечисление по пока попытка прервать продолжить процедура строка тогда фс функция цикл число экспорт",t="ansitooem oemtoansi ввестивидсубконто ввестидату ввестизначение ввестиперечисление ввестипериод ввестиплансчетов ввестистроку ввестичисло вопрос восстановитьзначение врег выбранныйплансчетов вызватьисключение датагод датамесяц датачисло добавитьмесяц завершитьработусистемы заголовоксистемы записьжурналарегистрации запуститьприложение зафиксироватьтранзакцию значениевстроку значениевстрокувнутр значениевфайл значениеизстроки значениеизстрокивнутр значениеизфайла имякомпьютера имяпользователя каталогвременныхфайлов каталогиб каталогпользователя каталогпрограммы кодсимв командасистемы конгода конецпериодаби конецрассчитанногопериодаби конецстандартногоинтервала конквартала конмесяца коннедели лев лог лог10 макс максимальноеколичествосубконто мин монопольныйрежим названиеинтерфейса названиенабораправ назначитьвид назначитьсчет найти найтипомеченныенаудаление найтиссылки началопериодаби началостандартногоинтервала начатьтранзакцию начгода начквартала начмесяца начнедели номерднягода номерднянедели номернеделигода нрег обработкаожидания окр описаниеошибки основнойжурналрасчетов основнойплансчетов основнойязык открытьформу открытьформумодально отменитьтранзакцию очиститьокносообщений периодстр полноеимяпользователя получитьвремята получитьдатута получитьдокументта получитьзначенияотбора получитьпозициюта получитьпустоезначение получитьта прав праводоступа предупреждение префиксавтонумерации пустаястрока пустоезначение рабочаядаттьпустоезначение рабочаядата разделительстраниц разделительстрок разм разобратьпозициюдокумента рассчитатьрегистрына рассчитатьрегистрыпо сигнал симв символтабуляции создатьобъект сокрл сокрлп сокрп сообщить состояние сохранитьзначение сред статусвозврата стрдлина стрзаменить стрколичествострок стрполучитьстроку стрчисловхождений сформироватьпозициюдокумента счетпокоду текущаядата текущеевремя типзначения типзначениястр удалитьобъекты установитьтана установитьтапо фиксшаблон формат цел шаблон",i={cN:"dquote",b:'""'},n={cN:"string",b:'"',e:'"|$',c:[i]},a={cN:"string",b:"\\|",e:'"|$',c:[i]};return{cI:!0,l:e,k:{keyword:r,built_in:t},c:[c.CLCM,c.NM,n,a,{cN:"function",b:"(процедура|функция)",e:"$",l:e,k:"процедура функция",c:[c.inherit(c.TM,{b:e}),{cN:"tail",eW:!0,c:[{cN:"params",b:"\\(",e:"\\)",l:e,k:"знач",c:[n,a]},{cN:"export",b:"экспорт",eW:!0,l:e,k:"экспорт",c:[c.CLCM]}]},c.CLCM]},{cN:"preprocessor",b:"#",e:"$"},{cN:"date",b:"'\\d{2}\\.\\d{2}\\.(\\d{2}|\\d{4})'"}]}});hljs.registerLanguage("tcl",function(e){return{aliases:["tk"],k:"after append apply array auto_execok auto_import auto_load auto_mkindex auto_mkindex_old auto_qualify auto_reset bgerror binary break catch cd chan clock close concat continue dde dict encoding eof error eval exec exit expr fblocked fconfigure fcopy file fileevent filename flush for foreach format gets glob global history http if incr info interp join lappend|10 lassign|10 lindex|10 linsert|10 list llength|10 load lrange|10 lrepeat|10 lreplace|10 lreverse|10 lsearch|10 lset|10 lsort|10 mathfunc mathop memory msgcat namespace open package parray pid pkg::create pkg_mkIndex platform platform::shell proc puts pwd read refchan regexp registry regsub|10 rename return safe scan seek set socket source split string subst switch tcl_endOfWord tcl_findLibrary tcl_startOfNextWord tcl_startOfPreviousWord tcl_wordBreakAfter tcl_wordBreakBefore tcltest tclvars tell time tm trace unknown unload unset update uplevel upvar variable vwait while",c:[e.C(";[ \\t]*#","$"),e.C("^[ \\t]*#","$"),{bK:"proc",e:"[\\{]",eE:!0,c:[{cN:"symbol",b:"[ \\t\\n\\r]+(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*",e:"[ \\t\\n\\r]",eW:!0,eE:!0}]},{cN:"variable",eE:!0,v:[{b:"\\$(\\{)?(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*\\(([a-zA-Z0-9_])*\\)",e:"[^a-zA-Z0-9_\\}\\$]"},{b:"\\$(\\{)?(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*",e:"(\\))?[^a-zA-Z0-9_\\}\\$]"}]},{cN:"string",c:[e.BE],v:[e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},{cN:"number",v:[e.BNM,e.CNM]}]}});hljs.registerLanguage("groovy",function(e){return{k:{typename:"byte short char int long boolean float double void",literal:"true false null",keyword:"def as in assert trait super this abstract static volatile transient public private protected synchronized final class interface enum if else for while switch case break default continue throw throws try catch finally implements extends new import package return instanceof"},c:[e.CLCM,{cN:"javadoc",b:"/\\*\\*",e:"\\*//*",r:0,c:[{cN:"javadoctag",b:"(^|\\s)@[A-Za-z]+"}]},e.CBCM,{cN:"string",b:'"""',e:'"""'},{cN:"string",b:"'''",e:"'''"},{cN:"string",b:"\\$/",e:"/\\$",r:10},e.ASM,{cN:"regexp",b:/~?\/[^\/\n]+\//,c:[e.BE]},e.QSM,{cN:"shebang",b:"^#!/usr/bin/env",e:"$",i:"\n"},e.BNM,{cN:"class",bK:"class interface trait enum",e:"{",i:":",c:[{bK:"extends implements"},e.UTM]},e.CNM,{cN:"annotation",b:"@[A-Za-z]+"},{cN:"string",b:/[^\?]{0}[A-Za-z0-9_$]+ *:/},{b:/\?/,e:/\:/},{cN:"label",b:"^\\s*[A-Za-z0-9_$]+:",r:0}]}});hljs.registerLanguage("erlang-repl",function(r){return{k:{special_functions:"spawn spawn_link self",reserved:"after and andalso|10 band begin bnot bor bsl bsr bxor case catch cond div end fun if let not of or orelse|10 query receive rem try when xor"},c:[{cN:"prompt",b:"^[0-9]+> ",r:10},r.C("%","$"),{cN:"number",b:"\\b(\\d+#[a-fA-F0-9]+|\\d+(\\.\\d+)?([eE][-+]?\\d+)?)",r:0},r.ASM,r.QSM,{cN:"constant",b:"\\?(::)?([A-Z]\\w*(::)?)+"},{cN:"arrow",b:"->"},{cN:"ok",b:"ok"},{cN:"exclamation_mark",b:"!"},{cN:"function_or_atom",b:"(\\b[a-z'][a-zA-Z0-9_']*:[a-z'][a-zA-Z0-9_']*)|(\\b[a-z'][a-zA-Z0-9_']*)",r:0},{cN:"variable",b:"[A-Z][a-zA-Z0-9_']*",r:0}]}});hljs.registerLanguage("nginx",function(e){var r={cN:"variable",v:[{b:/\$\d+/},{b:/\$\{/,e:/}/},{b:"[\\$\\@]"+e.UIR}]},b={eW:!0,l:"[a-z/_]+",k:{built_in:"on off yes no true false none blocked debug info notice warn error crit select break last permanent redirect kqueue rtsig epoll poll /dev/poll"},r:0,i:"=>",c:[e.HCM,{cN:"string",c:[e.BE,r],v:[{b:/"/,e:/"/},{b:/'/,e:/'/}]},{cN:"url",b:"([a-z]+):/",e:"\\s",eW:!0,eE:!0,c:[r]},{cN:"regexp",c:[e.BE,r],v:[{b:"\\s\\^",e:"\\s|{|;",rE:!0},{b:"~\\*?\\s+",e:"\\s|{|;",rE:!0},{b:"\\*(\\.[a-z\\-]+)+"},{b:"([a-z\\-]+\\.)+\\*"}]},{cN:"number",b:"\\b\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?\\b"},{cN:"number",b:"\\b\\d+[kKmMgGdshdwy]*\\b",r:0},r]};return{aliases:["nginxconf"],c:[e.HCM,{b:e.UIR+"\\s",e:";|{",rB:!0,c:[{cN:"title",b:e.UIR,starts:b}],r:0}],i:"[^\\s\\}]"}});hljs.registerLanguage("mathematica",function(e){return{aliases:["mma"],l:"(\\$|\\b)"+e.IR+"\\b",k:"AbelianGroup Abort AbortKernels AbortProtect Above Abs Absolute AbsoluteCorrelation AbsoluteCorrelationFunction AbsoluteCurrentValue AbsoluteDashing AbsoluteFileName AbsoluteOptions AbsolutePointSize AbsoluteThickness AbsoluteTime AbsoluteTiming AccountingForm Accumulate Accuracy AccuracyGoal ActionDelay ActionMenu ActionMenuBox ActionMenuBoxOptions Active ActiveItem ActiveStyle AcyclicGraphQ AddOnHelpPath AddTo AdjacencyGraph AdjacencyList AdjacencyMatrix AdjustmentBox AdjustmentBoxOptions AdjustTimeSeriesForecast AffineTransform After AiryAi AiryAiPrime AiryAiZero AiryBi AiryBiPrime AiryBiZero AlgebraicIntegerQ AlgebraicNumber AlgebraicNumberDenominator AlgebraicNumberNorm AlgebraicNumberPolynomial AlgebraicNumberTrace AlgebraicRules AlgebraicRulesData Algebraics AlgebraicUnitQ Alignment AlignmentMarker AlignmentPoint All AllowedDimensions AllowGroupClose AllowInlineCells AllowKernelInitialization AllowReverseGroupClose AllowScriptLevelChange AlphaChannel AlternatingGroup AlternativeHypothesis Alternatives AmbientLight Analytic AnchoredSearch And AndersonDarlingTest AngerJ AngleBracket AngularGauge Animate AnimationCycleOffset AnimationCycleRepetitions AnimationDirection AnimationDisplayTime AnimationRate AnimationRepetitions AnimationRunning Animator AnimatorBox AnimatorBoxOptions AnimatorElements Annotation Annuity AnnuityDue Antialiasing Antisymmetric Apart ApartSquareFree Appearance AppearanceElements AppellF1 Append AppendTo Apply ArcCos ArcCosh ArcCot ArcCoth ArcCsc ArcCsch ArcSec ArcSech ArcSin ArcSinDistribution ArcSinh ArcTan ArcTanh Arg ArgMax ArgMin ArgumentCountQ ARIMAProcess ArithmeticGeometricMean ARMAProcess ARProcess Array ArrayComponents ArrayDepth ArrayFlatten ArrayPad ArrayPlot ArrayQ ArrayReshape ArrayRules Arrays Arrow Arrow3DBox ArrowBox Arrowheads AspectRatio AspectRatioFixed Assert Assuming Assumptions AstronomicalData Asynchronous AsynchronousTaskObject AsynchronousTasks AtomQ Attributes AugmentedSymmetricPolynomial AutoAction AutoDelete AutoEvaluateEvents AutoGeneratedPackage AutoIndent AutoIndentSpacings AutoItalicWords AutoloadPath AutoMatch Automatic AutomaticImageSize AutoMultiplicationSymbol AutoNumberFormatting AutoOpenNotebooks AutoOpenPalettes AutorunSequencing AutoScaling AutoScroll AutoSpacing AutoStyleOptions AutoStyleWords Axes AxesEdge AxesLabel AxesOrigin AxesStyle Axis BabyMonsterGroupB Back Background BackgroundTasksSettings Backslash Backsubstitution Backward Band BandpassFilter BandstopFilter BarabasiAlbertGraphDistribution BarChart BarChart3D BarLegend BarlowProschanImportance BarnesG BarOrigin BarSpacing BartlettHannWindow BartlettWindow BaseForm Baseline BaselinePosition BaseStyle BatesDistribution BattleLemarieWavelet Because BeckmannDistribution Beep Before Begin BeginDialogPacket BeginFrontEndInteractionPacket BeginPackage BellB BellY Below BenfordDistribution BeniniDistribution BenktanderGibratDistribution BenktanderWeibullDistribution BernoulliB BernoulliDistribution BernoulliGraphDistribution BernoulliProcess BernsteinBasis BesselFilterModel BesselI BesselJ BesselJZero BesselK BesselY BesselYZero Beta BetaBinomialDistribution BetaDistribution BetaNegativeBinomialDistribution BetaPrimeDistribution BetaRegularized BetweennessCentrality BezierCurve BezierCurve3DBox BezierCurve3DBoxOptions BezierCurveBox BezierCurveBoxOptions BezierFunction BilateralFilter Binarize BinaryFormat BinaryImageQ BinaryRead BinaryReadList BinaryWrite BinCounts BinLists Binomial BinomialDistribution BinomialProcess BinormalDistribution BiorthogonalSplineWavelet BipartiteGraphQ BirnbaumImportance BirnbaumSaundersDistribution BitAnd BitClear BitGet BitLength BitNot BitOr BitSet BitShiftLeft BitShiftRight BitXor Black BlackmanHarrisWindow BlackmanNuttallWindow BlackmanWindow Blank BlankForm BlankNullSequence BlankSequence Blend Block BlockRandom BlomqvistBeta BlomqvistBetaTest Blue Blur BodePlot BohmanWindow Bold Bookmarks Boole BooleanConsecutiveFunction BooleanConvert BooleanCountingFunction BooleanFunction BooleanGraph BooleanMaxterms BooleanMinimize BooleanMinterms Booleans BooleanTable BooleanVariables BorderDimensions BorelTannerDistribution Bottom BottomHatTransform BoundaryStyle Bounds Box BoxBaselineShift BoxData BoxDimensions Boxed Boxes BoxForm BoxFormFormatTypes BoxFrame BoxID BoxMargins BoxMatrix BoxRatios BoxRotation BoxRotationPoint BoxStyle BoxWhiskerChart Bra BracketingBar BraKet BrayCurtisDistance BreadthFirstScan Break Brown BrownForsytheTest BrownianBridgeProcess BrowserCategory BSplineBasis BSplineCurve BSplineCurve3DBox BSplineCurveBox BSplineCurveBoxOptions BSplineFunction BSplineSurface BSplineSurface3DBox BubbleChart BubbleChart3D BubbleScale BubbleSizes BulletGauge BusinessDayQ ButterflyGraph ButterworthFilterModel Button ButtonBar ButtonBox ButtonBoxOptions ButtonCell ButtonContents ButtonData ButtonEvaluator ButtonExpandable ButtonFrame ButtonFunction ButtonMargins ButtonMinHeight ButtonNote ButtonNotebook ButtonSource ButtonStyle ButtonStyleMenuListing Byte ByteCount ByteOrdering C CachedValue CacheGraphics CalendarData CalendarType CallPacket CanberraDistance Cancel CancelButton CandlestickChart Cap CapForm CapitalDifferentialD CardinalBSplineBasis CarmichaelLambda Cases Cashflow Casoratian Catalan CatalanNumber Catch CauchyDistribution CauchyWindow CayleyGraph CDF CDFDeploy CDFInformation CDFWavelet Ceiling Cell CellAutoOverwrite CellBaseline CellBoundingBox CellBracketOptions CellChangeTimes CellContents CellContext CellDingbat CellDynamicExpression CellEditDuplicate CellElementsBoundingBox CellElementSpacings CellEpilog CellEvaluationDuplicate CellEvaluationFunction CellEventActions CellFrame CellFrameColor CellFrameLabelMargins CellFrameLabels CellFrameMargins CellGroup CellGroupData CellGrouping CellGroupingRules CellHorizontalScrolling CellID CellLabel CellLabelAutoDelete CellLabelMargins CellLabelPositioning CellMargins CellObject CellOpen CellPrint CellProlog Cells CellSize CellStyle CellTags CellularAutomaton CensoredDistribution Censoring Center CenterDot CentralMoment CentralMomentGeneratingFunction CForm ChampernowneNumber ChanVeseBinarize Character CharacterEncoding CharacterEncodingsPath CharacteristicFunction CharacteristicPolynomial CharacterRange Characters ChartBaseStyle ChartElementData ChartElementDataFunction ChartElementFunction ChartElements ChartLabels ChartLayout ChartLegends ChartStyle Chebyshev1FilterModel Chebyshev2FilterModel ChebyshevDistance ChebyshevT ChebyshevU Check CheckAbort CheckAll Checkbox CheckboxBar CheckboxBox CheckboxBoxOptions ChemicalData ChessboardDistance ChiDistribution ChineseRemainder ChiSquareDistribution ChoiceButtons ChoiceDialog CholeskyDecomposition Chop Circle CircleBox CircleDot CircleMinus CirclePlus CircleTimes CirculantGraph CityData Clear ClearAll ClearAttributes ClearSystemCache ClebschGordan ClickPane Clip ClipboardNotebook ClipFill ClippingStyle ClipPlanes ClipRange Clock ClockGauge ClockwiseContourIntegral Close Closed CloseKernels ClosenessCentrality Closing ClosingAutoSave ClosingEvent ClusteringComponents CMYKColor Coarse Coefficient CoefficientArrays CoefficientDomain CoefficientList CoefficientRules CoifletWavelet Collect Colon ColonForm ColorCombine ColorConvert ColorData ColorDataFunction ColorFunction ColorFunctionScaling Colorize ColorNegate ColorOutput ColorProfileData ColorQuantize ColorReplace ColorRules ColorSelectorSettings ColorSeparate ColorSetter ColorSetterBox ColorSetterBoxOptions ColorSlider ColorSpace Column ColumnAlignments ColumnBackgrounds ColumnForm ColumnLines ColumnsEqual ColumnSpacings ColumnWidths CommonDefaultFormatTypes Commonest CommonestFilter CommonUnits CommunityBoundaryStyle CommunityGraphPlot CommunityLabels CommunityRegionStyle CompatibleUnitQ CompilationOptions CompilationTarget Compile Compiled CompiledFunction Complement CompleteGraph CompleteGraphQ CompleteKaryTree CompletionsListPacket Complex Complexes ComplexExpand ComplexInfinity ComplexityFunction ComponentMeasurements ComponentwiseContextMenu Compose ComposeList ComposeSeries Composition CompoundExpression CompoundPoissonDistribution CompoundPoissonProcess CompoundRenewalProcess Compress CompressedData Condition ConditionalExpression Conditioned Cone ConeBox ConfidenceLevel ConfidenceRange ConfidenceTransform ConfigurationPath Congruent Conjugate ConjugateTranspose Conjunction Connect ConnectedComponents ConnectedGraphQ ConnesWindow ConoverTest ConsoleMessage ConsoleMessagePacket ConsolePrint Constant ConstantArray Constants ConstrainedMax ConstrainedMin ContentPadding ContentsBoundingBox ContentSelectable ContentSize Context ContextMenu Contexts ContextToFilename ContextToFileName Continuation Continue ContinuedFraction ContinuedFractionK ContinuousAction ContinuousMarkovProcess ContinuousTimeModelQ ContinuousWaveletData ContinuousWaveletTransform ContourDetect ContourGraphics ContourIntegral ContourLabels ContourLines ContourPlot ContourPlot3D Contours ContourShading ContourSmoothing ContourStyle ContraharmonicMean Control ControlActive ControlAlignment ControllabilityGramian ControllabilityMatrix ControllableDecomposition ControllableModelQ ControllerDuration ControllerInformation ControllerInformationData ControllerLinking ControllerManipulate ControllerMethod ControllerPath ControllerState ControlPlacement ControlsRendering ControlType Convergents ConversionOptions ConversionRules ConvertToBitmapPacket ConvertToPostScript ConvertToPostScriptPacket Convolve ConwayGroupCo1 ConwayGroupCo2 ConwayGroupCo3 CoordinateChartData CoordinatesToolOptions CoordinateTransform CoordinateTransformData CoprimeQ Coproduct CopulaDistribution Copyable CopyDirectory CopyFile CopyTag CopyToClipboard CornerFilter CornerNeighbors Correlation CorrelationDistance CorrelationFunction CorrelationTest Cos Cosh CoshIntegral CosineDistance CosineWindow CosIntegral Cot Coth Count CounterAssignments CounterBox CounterBoxOptions CounterClockwiseContourIntegral CounterEvaluator CounterFunction CounterIncrements CounterStyle CounterStyleMenuListing CountRoots CountryData Covariance CovarianceEstimatorFunction CovarianceFunction CoxianDistribution CoxIngersollRossProcess CoxModel CoxModelFit CramerVonMisesTest CreateArchive CreateDialog CreateDirectory CreateDocument CreateIntermediateDirectories CreatePalette CreatePalettePacket CreateScheduledTask CreateTemporary CreateWindow CriticalityFailureImportance CriticalitySuccessImportance CriticalSection Cross CrossingDetect CrossMatrix Csc Csch CubeRoot Cubics Cuboid CuboidBox Cumulant CumulantGeneratingFunction Cup CupCap Curl CurlyDoubleQuote CurlyQuote CurrentImage CurrentlySpeakingPacket CurrentValue CurvatureFlowFilter CurveClosed Cyan CycleGraph CycleIndexPolynomial Cycles CyclicGroup Cyclotomic Cylinder CylinderBox CylindricalDecomposition D DagumDistribution DamerauLevenshteinDistance DampingFactor Darker Dashed Dashing DataCompression DataDistribution DataRange DataReversed Date DateDelimiters DateDifference DateFunction DateList DateListLogPlot DateListPlot DatePattern DatePlus DateRange DateString DateTicksFormat DaubechiesWavelet DavisDistribution DawsonF DayCount DayCountConvention DayMatchQ DayName DayPlus DayRange DayRound DeBruijnGraph Debug DebugTag Decimal DeclareKnownSymbols DeclarePackage Decompose Decrement DedekindEta Default DefaultAxesStyle DefaultBaseStyle DefaultBoxStyle DefaultButton DefaultColor DefaultControlPlacement DefaultDuplicateCellStyle DefaultDuration DefaultElement DefaultFaceGridsStyle DefaultFieldHintStyle DefaultFont DefaultFontProperties DefaultFormatType DefaultFormatTypeForStyle DefaultFrameStyle DefaultFrameTicksStyle DefaultGridLinesStyle DefaultInlineFormatType DefaultInputFormatType DefaultLabelStyle DefaultMenuStyle DefaultNaturalLanguage DefaultNewCellStyle DefaultNewInlineCellStyle DefaultNotebook DefaultOptions DefaultOutputFormatType DefaultStyle DefaultStyleDefinitions DefaultTextFormatType DefaultTextInlineFormatType DefaultTicksStyle DefaultTooltipStyle DefaultValues Defer DefineExternal DefineInputStreamMethod DefineOutputStreamMethod Definition Degree DegreeCentrality DegreeGraphDistribution DegreeLexicographic DegreeReverseLexicographic Deinitialization Del Deletable Delete DeleteBorderComponents DeleteCases DeleteContents DeleteDirectory DeleteDuplicates DeleteFile DeleteSmallComponents DeleteWithContents DeletionWarning Delimiter DelimiterFlashTime DelimiterMatching Delimiters Denominator DensityGraphics DensityHistogram DensityPlot DependentVariables Deploy Deployed Depth DepthFirstScan Derivative DerivativeFilter DescriptorStateSpace DesignMatrix Det DGaussianWavelet DiacriticalPositioning Diagonal DiagonalMatrix Dialog DialogIndent DialogInput DialogLevel DialogNotebook DialogProlog DialogReturn DialogSymbols Diamond DiamondMatrix DiceDissimilarity DictionaryLookup DifferenceDelta DifferenceOrder DifferenceRoot DifferenceRootReduce Differences DifferentialD DifferentialRoot DifferentialRootReduce DifferentiatorFilter DigitBlock DigitBlockMinimum DigitCharacter DigitCount DigitQ DihedralGroup Dilation Dimensions DiracComb DiracDelta DirectedEdge DirectedEdges DirectedGraph DirectedGraphQ DirectedInfinity Direction Directive Directory DirectoryName DirectoryQ DirectoryStack DirichletCharacter DirichletConvolve DirichletDistribution DirichletL DirichletTransform DirichletWindow DisableConsolePrintPacket DiscreteChirpZTransform DiscreteConvolve DiscreteDelta DiscreteHadamardTransform DiscreteIndicator DiscreteLQEstimatorGains DiscreteLQRegulatorGains DiscreteLyapunovSolve DiscreteMarkovProcess DiscretePlot DiscretePlot3D DiscreteRatio DiscreteRiccatiSolve DiscreteShift DiscreteTimeModelQ DiscreteUniformDistribution DiscreteVariables DiscreteWaveletData DiscreteWaveletPacketTransform DiscreteWaveletTransform Discriminant Disjunction Disk DiskBox DiskMatrix Dispatch DispersionEstimatorFunction Display DisplayAllSteps DisplayEndPacket DisplayFlushImagePacket DisplayForm DisplayFunction DisplayPacket DisplayRules DisplaySetSizePacket DisplayString DisplayTemporary DisplayWith DisplayWithRef DisplayWithVariable DistanceFunction DistanceTransform Distribute Distributed DistributedContexts DistributeDefinitions DistributionChart DistributionDomain DistributionFitTest DistributionParameterAssumptions DistributionParameterQ Dithering Div Divergence Divide DivideBy Dividers Divisible Divisors DivisorSigma DivisorSum DMSList DMSString Do DockedCells DocumentNotebook DominantColors DOSTextFormat Dot DotDashed DotEqual Dotted DoubleBracketingBar DoubleContourIntegral DoubleDownArrow DoubleLeftArrow DoubleLeftRightArrow DoubleLeftTee DoubleLongLeftArrow DoubleLongLeftRightArrow DoubleLongRightArrow DoubleRightArrow DoubleRightTee DoubleUpArrow DoubleUpDownArrow DoubleVerticalBar DoublyInfinite Down DownArrow DownArrowBar DownArrowUpArrow DownLeftRightVector DownLeftTeeVector DownLeftVector DownLeftVectorBar DownRightTeeVector DownRightVector DownRightVectorBar Downsample DownTee DownTeeArrow DownValues DragAndDrop DrawEdges DrawFrontFaces DrawHighlighted Drop DSolve Dt DualLinearProgramming DualSystemsModel DumpGet DumpSave DuplicateFreeQ Dynamic DynamicBox DynamicBoxOptions DynamicEvaluationTimeout DynamicLocation DynamicModule DynamicModuleBox DynamicModuleBoxOptions DynamicModuleParent DynamicModuleValues DynamicName DynamicNamespace DynamicReference DynamicSetting DynamicUpdating DynamicWrapper DynamicWrapperBox DynamicWrapperBoxOptions E EccentricityCentrality EdgeAdd EdgeBetweennessCentrality EdgeCapacity EdgeCapForm EdgeColor EdgeConnectivity EdgeCost EdgeCount EdgeCoverQ EdgeDashing EdgeDelete EdgeDetect EdgeForm EdgeIndex EdgeJoinForm EdgeLabeling EdgeLabels EdgeLabelStyle EdgeList EdgeOpacity EdgeQ EdgeRenderingFunction EdgeRules EdgeShapeFunction EdgeStyle EdgeThickness EdgeWeight Editable EditButtonSettings EditCellTagsSettings EditDistance EffectiveInterest Eigensystem Eigenvalues EigenvectorCentrality Eigenvectors Element ElementData Eliminate EliminationOrder EllipticE EllipticExp EllipticExpPrime EllipticF EllipticFilterModel EllipticK EllipticLog EllipticNomeQ EllipticPi EllipticReducedHalfPeriods EllipticTheta EllipticThetaPrime EmitSound EmphasizeSyntaxErrors EmpiricalDistribution Empty EmptyGraphQ EnableConsolePrintPacket Enabled Encode End EndAdd EndDialogPacket EndFrontEndInteractionPacket EndOfFile EndOfLine EndOfString EndPackage EngineeringForm Enter EnterExpressionPacket EnterTextPacket Entropy EntropyFilter Environment Epilog Equal EqualColumns EqualRows EqualTilde EquatedTo Equilibrium EquirippleFilterKernel Equivalent Erf Erfc Erfi ErlangB ErlangC ErlangDistribution Erosion ErrorBox ErrorBoxOptions ErrorNorm ErrorPacket ErrorsDialogSettings EstimatedDistribution EstimatedProcess EstimatorGains EstimatorRegulator EuclideanDistance EulerE EulerGamma EulerianGraphQ EulerPhi Evaluatable Evaluate Evaluated EvaluatePacket EvaluationCell EvaluationCompletionAction EvaluationElements EvaluationMode EvaluationMonitor EvaluationNotebook EvaluationObject EvaluationOrder Evaluator EvaluatorNames EvenQ EventData EventEvaluator EventHandler EventHandlerTag EventLabels ExactBlackmanWindow ExactNumberQ ExactRootIsolation ExampleData Except ExcludedForms ExcludePods Exclusions ExclusionsStyle Exists Exit ExitDialog Exp Expand ExpandAll ExpandDenominator ExpandFileName ExpandNumerator Expectation ExpectationE ExpectedValue ExpGammaDistribution ExpIntegralE ExpIntegralEi Exponent ExponentFunction ExponentialDistribution ExponentialFamily ExponentialGeneratingFunction ExponentialMovingAverage ExponentialPowerDistribution ExponentPosition ExponentStep Export ExportAutoReplacements ExportPacket ExportString Expression ExpressionCell ExpressionPacket ExpToTrig ExtendedGCD Extension ExtentElementFunction ExtentMarkers ExtentSize ExternalCall ExternalDataCharacterEncoding Extract ExtractArchive ExtremeValueDistribution FaceForm FaceGrids FaceGridsStyle Factor FactorComplete Factorial Factorial2 FactorialMoment FactorialMomentGeneratingFunction FactorialPower FactorInteger FactorList FactorSquareFree FactorSquareFreeList FactorTerms FactorTermsList Fail FailureDistribution False FARIMAProcess FEDisableConsolePrintPacket FeedbackSector FeedbackSectorStyle FeedbackType FEEnableConsolePrintPacket Fibonacci FieldHint FieldHintStyle FieldMasked FieldSize File FileBaseName FileByteCount FileDate FileExistsQ FileExtension FileFormat FileHash FileInformation FileName FileNameDepth FileNameDialogSettings FileNameDrop FileNameJoin FileNames FileNameSetter FileNameSplit FileNameTake FilePrint FileType FilledCurve FilledCurveBox Filling FillingStyle FillingTransform FilterRules FinancialBond FinancialData FinancialDerivative FinancialIndicator Find FindArgMax FindArgMin FindClique FindClusters FindCurvePath FindDistributionParameters FindDivisions FindEdgeCover FindEdgeCut FindEulerianCycle FindFaces FindFile FindFit FindGeneratingFunction FindGeoLocation FindGeometricTransform FindGraphCommunities FindGraphIsomorphism FindGraphPartition FindHamiltonianCycle FindIndependentEdgeSet FindIndependentVertexSet FindInstance FindIntegerNullVector FindKClan FindKClique FindKClub FindKPlex FindLibrary FindLinearRecurrence FindList FindMaximum FindMaximumFlow FindMaxValue FindMinimum FindMinimumCostFlow FindMinimumCut FindMinValue FindPermutation FindPostmanTour FindProcessParameters FindRoot FindSequenceFunction FindSettings FindShortestPath FindShortestTour FindThreshold FindVertexCover FindVertexCut Fine FinishDynamic FiniteAbelianGroupCount FiniteGroupCount FiniteGroupData First FirstPassageTimeDistribution FischerGroupFi22 FischerGroupFi23 FischerGroupFi24Prime FisherHypergeometricDistribution FisherRatioTest FisherZDistribution Fit FitAll FittedModel FixedPoint FixedPointList FlashSelection Flat Flatten FlattenAt FlatTopWindow FlipView Floor FlushPrintOutputPacket Fold FoldList Font FontColor FontFamily FontForm FontName FontOpacity FontPostScriptName FontProperties FontReencoding FontSize FontSlant FontSubstitutions FontTracking FontVariations FontWeight For ForAll Format FormatRules FormatType FormatTypeAutoConvert FormatValues FormBox FormBoxOptions FortranForm Forward ForwardBackward Fourier FourierCoefficient FourierCosCoefficient FourierCosSeries FourierCosTransform FourierDCT FourierDCTFilter FourierDCTMatrix FourierDST FourierDSTMatrix FourierMatrix FourierParameters FourierSequenceTransform FourierSeries FourierSinCoefficient FourierSinSeries FourierSinTransform FourierTransform FourierTrigSeries FractionalBrownianMotionProcess FractionalPart FractionBox FractionBoxOptions FractionLine Frame FrameBox FrameBoxOptions Framed FrameInset FrameLabel Frameless FrameMargins FrameStyle FrameTicks FrameTicksStyle FRatioDistribution FrechetDistribution FreeQ FrequencySamplingFilterKernel FresnelC FresnelS Friday FrobeniusNumber FrobeniusSolve FromCharacterCode FromCoefficientRules FromContinuedFraction FromDate FromDigits FromDMS Front FrontEndDynamicExpression FrontEndEventActions FrontEndExecute FrontEndObject FrontEndResource FrontEndResourceString FrontEndStackSize FrontEndToken FrontEndTokenExecute FrontEndValueCache FrontEndVersion FrontFaceColor FrontFaceOpacity Full FullAxes FullDefinition FullForm FullGraphics FullOptions FullSimplify Function FunctionExpand FunctionInterpolation FunctionSpace FussellVeselyImportance GaborFilter GaborMatrix GaborWavelet GainMargins GainPhaseMargins Gamma GammaDistribution GammaRegularized GapPenalty Gather GatherBy GaugeFaceElementFunction GaugeFaceStyle GaugeFrameElementFunction GaugeFrameSize GaugeFrameStyle GaugeLabels GaugeMarkers GaugeStyle GaussianFilter GaussianIntegers GaussianMatrix GaussianWindow GCD GegenbauerC General GeneralizedLinearModelFit GenerateConditions GeneratedCell GeneratedParameters GeneratingFunction Generic GenericCylindricalDecomposition GenomeData GenomeLookup GeodesicClosing GeodesicDilation GeodesicErosion GeodesicOpening GeoDestination GeodesyData GeoDirection GeoDistance GeoGridPosition GeometricBrownianMotionProcess GeometricDistribution GeometricMean GeometricMeanFilter GeometricTransformation GeometricTransformation3DBox GeometricTransformation3DBoxOptions GeometricTransformationBox GeometricTransformationBoxOptions GeoPosition GeoPositionENU GeoPositionXYZ GeoProjectionData GestureHandler GestureHandlerTag Get GetBoundingBoxSizePacket GetContext GetEnvironment GetFileName GetFrontEndOptionsDataPacket GetLinebreakInformationPacket GetMenusPacket GetPageBreakInformationPacket Glaisher GlobalClusteringCoefficient GlobalPreferences GlobalSession Glow GoldenRatio GompertzMakehamDistribution GoodmanKruskalGamma GoodmanKruskalGammaTest Goto Grad Gradient GradientFilter GradientOrientationFilter Graph GraphAssortativity GraphCenter GraphComplement GraphData GraphDensity GraphDiameter GraphDifference GraphDisjointUnion GraphDistance GraphDistanceMatrix GraphElementData GraphEmbedding GraphHighlight GraphHighlightStyle GraphHub Graphics Graphics3D Graphics3DBox Graphics3DBoxOptions GraphicsArray GraphicsBaseline GraphicsBox GraphicsBoxOptions GraphicsColor GraphicsColumn GraphicsComplex GraphicsComplex3DBox GraphicsComplex3DBoxOptions GraphicsComplexBox GraphicsComplexBoxOptions GraphicsContents GraphicsData GraphicsGrid GraphicsGridBox GraphicsGroup GraphicsGroup3DBox GraphicsGroup3DBoxOptions GraphicsGroupBox GraphicsGroupBoxOptions GraphicsGrouping GraphicsHighlightColor GraphicsRow GraphicsSpacing GraphicsStyle GraphIntersection GraphLayout GraphLinkEfficiency GraphPeriphery GraphPlot GraphPlot3D GraphPower GraphPropertyDistribution GraphQ GraphRadius GraphReciprocity GraphRoot GraphStyle GraphUnion Gray GrayLevel GreatCircleDistance Greater GreaterEqual GreaterEqualLess GreaterFullEqual GreaterGreater GreaterLess GreaterSlantEqual GreaterTilde Green Grid GridBaseline GridBox GridBoxAlignment GridBoxBackground GridBoxDividers GridBoxFrame GridBoxItemSize GridBoxItemStyle GridBoxOptions GridBoxSpacings GridCreationSettings GridDefaultElement GridElementStyleOptions GridFrame GridFrameMargins GridGraph GridLines GridLinesStyle GroebnerBasis GroupActionBase GroupCentralizer GroupElementFromWord GroupElementPosition GroupElementQ GroupElements GroupElementToWord GroupGenerators GroupMultiplicationTable GroupOrbits GroupOrder GroupPageBreakWithin GroupSetwiseStabilizer GroupStabilizer GroupStabilizerChain Gudermannian GumbelDistribution HaarWavelet HadamardMatrix HalfNormalDistribution HamiltonianGraphQ HammingDistance HammingWindow HankelH1 HankelH2 HankelMatrix HannPoissonWindow HannWindow HaradaNortonGroupHN HararyGraph HarmonicMean HarmonicMeanFilter HarmonicNumber Hash HashTable Haversine HazardFunction Head HeadCompose Heads HeavisideLambda HeavisidePi HeavisideTheta HeldGroupHe HeldPart HelpBrowserLookup HelpBrowserNotebook HelpBrowserSettings HermiteDecomposition HermiteH HermitianMatrixQ HessenbergDecomposition Hessian HexadecimalCharacter Hexahedron HexahedronBox HexahedronBoxOptions HiddenSurface HighlightGraph HighlightImage HighpassFilter HigmanSimsGroupHS HilbertFilter HilbertMatrix Histogram Histogram3D HistogramDistribution HistogramList HistogramTransform HistogramTransformInterpolation HitMissTransform HITSCentrality HodgeDual HoeffdingD HoeffdingDTest Hold HoldAll HoldAllComplete HoldComplete HoldFirst HoldForm HoldPattern HoldRest HolidayCalendar HomeDirectory HomePage Horizontal HorizontalForm HorizontalGauge HorizontalScrollPosition HornerForm HotellingTSquareDistribution HoytDistribution HTMLSave Hue HumpDownHump HumpEqual HurwitzLerchPhi HurwitzZeta HyperbolicDistribution HypercubeGraph HyperexponentialDistribution Hyperfactorial Hypergeometric0F1 Hypergeometric0F1Regularized Hypergeometric1F1 Hypergeometric1F1Regularized Hypergeometric2F1 Hypergeometric2F1Regularized HypergeometricDistribution HypergeometricPFQ HypergeometricPFQRegularized HypergeometricU Hyperlink HyperlinkCreationSettings Hyphenation HyphenationOptions HypoexponentialDistribution HypothesisTestData I Identity IdentityMatrix If IgnoreCase Im Image Image3D Image3DSlices ImageAccumulate ImageAdd ImageAdjust ImageAlign ImageApply ImageAspectRatio ImageAssemble ImageCache ImageCacheValid ImageCapture ImageChannels ImageClip ImageColorSpace ImageCompose ImageConvolve ImageCooccurrence ImageCorners ImageCorrelate ImageCorrespondingPoints ImageCrop ImageData ImageDataPacket ImageDeconvolve ImageDemosaic ImageDifference ImageDimensions ImageDistance ImageEffect ImageFeatureTrack ImageFileApply ImageFileFilter ImageFileScan ImageFilter ImageForestingComponents ImageForwardTransformation ImageHistogram ImageKeypoints ImageLevels ImageLines ImageMargins ImageMarkers ImageMeasurements ImageMultiply ImageOffset ImagePad ImagePadding ImagePartition ImagePeriodogram ImagePerspectiveTransformation ImageQ ImageRangeCache ImageReflect ImageRegion ImageResize ImageResolution ImageRotate ImageRotated ImageScaled ImageScan ImageSize ImageSizeAction ImageSizeCache ImageSizeMultipliers ImageSizeRaw ImageSubtract ImageTake ImageTransformation ImageTrim ImageType ImageValue ImageValuePositions Implies Import ImportAutoReplacements ImportString ImprovementImportance In IncidenceGraph IncidenceList IncidenceMatrix IncludeConstantBasis IncludeFileExtension IncludePods IncludeSingularTerm Increment Indent IndentingNewlineSpacings IndentMaxFraction IndependenceTest IndependentEdgeSetQ IndependentUnit IndependentVertexSetQ Indeterminate IndexCreationOptions Indexed IndexGraph IndexTag Inequality InexactNumberQ InexactNumbers Infinity Infix Information Inherited InheritScope Initialization InitializationCell InitializationCellEvaluation InitializationCellWarning InlineCounterAssignments InlineCounterIncrements InlineRules Inner Inpaint Input InputAliases InputAssumptions InputAutoReplacements InputField InputFieldBox InputFieldBoxOptions InputForm InputGrouping InputNamePacket InputNotebook InputPacket InputSettings InputStream InputString InputStringPacket InputToBoxFormPacket Insert InsertionPointObject InsertResults Inset Inset3DBox Inset3DBoxOptions InsetBox InsetBoxOptions Install InstallService InString Integer IntegerDigits IntegerExponent IntegerLength IntegerPart IntegerPartitions IntegerQ Integers IntegerString Integral Integrate Interactive InteractiveTradingChart Interlaced Interleaving InternallyBalancedDecomposition InterpolatingFunction InterpolatingPolynomial Interpolation InterpolationOrder InterpolationPoints InterpolationPrecision Interpretation InterpretationBox InterpretationBoxOptions InterpretationFunction InterpretTemplate InterquartileRange Interrupt InterruptSettings Intersection Interval IntervalIntersection IntervalMemberQ IntervalUnion Inverse InverseBetaRegularized InverseCDF InverseChiSquareDistribution InverseContinuousWaveletTransform InverseDistanceTransform InverseEllipticNomeQ InverseErf InverseErfc InverseFourier InverseFourierCosTransform InverseFourierSequenceTransform InverseFourierSinTransform InverseFourierTransform InverseFunction InverseFunctions InverseGammaDistribution InverseGammaRegularized InverseGaussianDistribution InverseGudermannian InverseHaversine InverseJacobiCD InverseJacobiCN InverseJacobiCS InverseJacobiDC InverseJacobiDN InverseJacobiDS InverseJacobiNC InverseJacobiND InverseJacobiNS InverseJacobiSC InverseJacobiSD InverseJacobiSN InverseLaplaceTransform InversePermutation InverseRadon InverseSeries InverseSurvivalFunction InverseWaveletTransform InverseWeierstrassP InverseZTransform Invisible InvisibleApplication InvisibleTimes IrreduciblePolynomialQ IsolatingInterval IsomorphicGraphQ IsotopeData Italic Item ItemBox ItemBoxOptions ItemSize ItemStyle ItoProcess JaccardDissimilarity JacobiAmplitude Jacobian JacobiCD JacobiCN JacobiCS JacobiDC JacobiDN JacobiDS JacobiNC JacobiND JacobiNS JacobiP JacobiSC JacobiSD JacobiSN JacobiSymbol JacobiZeta JankoGroupJ1 JankoGroupJ2 JankoGroupJ3 JankoGroupJ4 JarqueBeraALMTest JohnsonDistribution Join Joined JoinedCurve JoinedCurveBox JoinForm JordanDecomposition JordanModelDecomposition K KagiChart KaiserBesselWindow KaiserWindow KalmanEstimator KalmanFilter KarhunenLoeveDecomposition KaryTree KatzCentrality KCoreComponents KDistribution KelvinBei KelvinBer KelvinKei KelvinKer KendallTau KendallTauTest KernelExecute KernelMixtureDistribution KernelObject Kernels Ket Khinchin KirchhoffGraph KirchhoffMatrix KleinInvariantJ KnightTourGraph KnotData KnownUnitQ KolmogorovSmirnovTest KroneckerDelta KroneckerModelDecomposition KroneckerProduct KroneckerSymbol KuiperTest KumaraswamyDistribution Kurtosis KuwaharaFilter Label Labeled LabeledSlider LabelingFunction LabelStyle LaguerreL LambdaComponents LambertW LanczosWindow LandauDistribution Language LanguageCategory LaplaceDistribution LaplaceTransform Laplacian LaplacianFilter LaplacianGaussianFilter Large Larger Last Latitude LatitudeLongitude LatticeData LatticeReduce Launch LaunchKernels LayeredGraphPlot LayerSizeFunction LayoutInformation LCM LeafCount LeapYearQ LeastSquares LeastSquaresFilterKernel Left LeftArrow LeftArrowBar LeftArrowRightArrow LeftDownTeeVector LeftDownVector LeftDownVectorBar LeftRightArrow LeftRightVector LeftTee LeftTeeArrow LeftTeeVector LeftTriangle LeftTriangleBar LeftTriangleEqual LeftUpDownVector LeftUpTeeVector LeftUpVector LeftUpVectorBar LeftVector LeftVectorBar LegendAppearance Legended LegendFunction LegendLabel LegendLayout LegendMargins LegendMarkers LegendMarkerSize LegendreP LegendreQ LegendreType Length LengthWhile LerchPhi Less LessEqual LessEqualGreater LessFullEqual LessGreater LessLess LessSlantEqual LessTilde LetterCharacter LetterQ Level LeveneTest LeviCivitaTensor LevyDistribution Lexicographic LibraryFunction LibraryFunctionError LibraryFunctionInformation LibraryFunctionLoad LibraryFunctionUnload LibraryLoad LibraryUnload LicenseID LiftingFilterData LiftingWaveletTransform LightBlue LightBrown LightCyan Lighter LightGray LightGreen Lighting LightingAngle LightMagenta LightOrange LightPink LightPurple LightRed LightSources LightYellow Likelihood Limit LimitsPositioning LimitsPositioningTokens LindleyDistribution Line Line3DBox LinearFilter LinearFractionalTransform LinearModelFit LinearOffsetFunction LinearProgramming LinearRecurrence LinearSolve LinearSolveFunction LineBox LineBreak LinebreakAdjustments LineBreakChart LineBreakWithin LineColor LineForm LineGraph LineIndent LineIndentMaxFraction LineIntegralConvolutionPlot LineIntegralConvolutionScale LineLegend LineOpacity LineSpacing LineWrapParts LinkActivate LinkClose LinkConnect LinkConnectedQ LinkCreate LinkError LinkFlush LinkFunction LinkHost LinkInterrupt LinkLaunch LinkMode LinkObject LinkOpen LinkOptions LinkPatterns LinkProtocol LinkRead LinkReadHeld LinkReadyQ Links LinkWrite LinkWriteHeld LiouvilleLambda List Listable ListAnimate ListContourPlot ListContourPlot3D ListConvolve ListCorrelate ListCurvePathPlot ListDeconvolve ListDensityPlot Listen ListFourierSequenceTransform ListInterpolation ListLineIntegralConvolutionPlot ListLinePlot ListLogLinearPlot ListLogLogPlot ListLogPlot ListPicker ListPickerBox ListPickerBoxBackground ListPickerBoxOptions ListPlay ListPlot ListPlot3D ListPointPlot3D ListPolarPlot ListQ ListStreamDensityPlot ListStreamPlot ListSurfacePlot3D ListVectorDensityPlot ListVectorPlot ListVectorPlot3D ListZTransform Literal LiteralSearch LocalClusteringCoefficient LocalizeVariables LocationEquivalenceTest LocationTest Locator LocatorAutoCreate LocatorBox LocatorBoxOptions LocatorCentering LocatorPane LocatorPaneBox LocatorPaneBoxOptions LocatorRegion Locked Log Log10 Log2 LogBarnesG LogGamma LogGammaDistribution LogicalExpand LogIntegral LogisticDistribution LogitModelFit LogLikelihood LogLinearPlot LogLogisticDistribution LogLogPlot LogMultinormalDistribution LogNormalDistribution LogPlot LogRankTest LogSeriesDistribution LongEqual Longest LongestAscendingSequence LongestCommonSequence LongestCommonSequencePositions LongestCommonSubsequence LongestCommonSubsequencePositions LongestMatch LongForm Longitude LongLeftArrow LongLeftRightArrow LongRightArrow Loopback LoopFreeGraphQ LowerCaseQ LowerLeftArrow LowerRightArrow LowerTriangularize LowpassFilter LQEstimatorGains LQGRegulator LQOutputRegulatorGains LQRegulatorGains LUBackSubstitution LucasL LuccioSamiComponents LUDecomposition LyapunovSolve LyonsGroupLy MachineID MachineName MachineNumberQ MachinePrecision MacintoshSystemPageSetup Magenta Magnification Magnify MainSolve MaintainDynamicCaches Majority MakeBoxes MakeExpression MakeRules MangoldtLambda ManhattanDistance Manipulate Manipulator MannWhitneyTest MantissaExponent Manual Map MapAll MapAt MapIndexed MAProcess MapThread MarcumQ MardiaCombinedTest MardiaKurtosisTest MardiaSkewnessTest MarginalDistribution MarkovProcessProperties Masking MatchingDissimilarity MatchLocalNameQ MatchLocalNames MatchQ Material MathematicaNotation MathieuC MathieuCharacteristicA MathieuCharacteristicB MathieuCharacteristicExponent MathieuCPrime MathieuGroupM11 MathieuGroupM12 MathieuGroupM22 MathieuGroupM23 MathieuGroupM24 MathieuS MathieuSPrime MathMLForm MathMLText Matrices MatrixExp MatrixForm MatrixFunction MatrixLog MatrixPlot MatrixPower MatrixQ MatrixRank Max MaxBend MaxDetect MaxExtraBandwidths MaxExtraConditions MaxFeatures MaxFilter Maximize MaxIterations MaxMemoryUsed MaxMixtureKernels MaxPlotPoints MaxPoints MaxRecursion MaxStableDistribution MaxStepFraction MaxSteps MaxStepSize MaxValue MaxwellDistribution McLaughlinGroupMcL Mean MeanClusteringCoefficient MeanDegreeConnectivity MeanDeviation MeanFilter MeanGraphDistance MeanNeighborDegree MeanShift MeanShiftFilter Median MedianDeviation MedianFilter Medium MeijerG MeixnerDistribution MemberQ MemoryConstrained MemoryInUse Menu MenuAppearance MenuCommandKey MenuEvaluator MenuItem MenuPacket MenuSortingValue MenuStyle MenuView MergeDifferences Mesh MeshFunctions MeshRange MeshShading MeshStyle Message MessageDialog MessageList MessageName MessageOptions MessagePacket Messages MessagesNotebook MetaCharacters MetaInformation Method MethodOptions MexicanHatWavelet MeyerWavelet Min MinDetect MinFilter MinimalPolynomial MinimalStateSpaceModel Minimize Minors MinRecursion MinSize MinStableDistribution Minus MinusPlus MinValue Missing MissingDataMethod MittagLefflerE MixedRadix MixedRadixQuantity MixtureDistribution Mod Modal Mode Modular ModularLambda Module Modulus MoebiusMu Moment Momentary MomentConvert MomentEvaluate MomentGeneratingFunction Monday Monitor MonomialList MonomialOrder MonsterGroupM MorletWavelet MorphologicalBinarize MorphologicalBranchPoints MorphologicalComponents MorphologicalEulerNumber MorphologicalGraph MorphologicalPerimeter MorphologicalTransform Most MouseAnnotation MouseAppearance MouseAppearanceTag MouseButtons Mouseover MousePointerNote MousePosition MovingAverage MovingMedian MoyalDistribution MultiedgeStyle MultilaunchWarning MultiLetterItalics MultiLetterStyle MultilineFunction Multinomial MultinomialDistribution MultinormalDistribution MultiplicativeOrder Multiplicity Multiselection MultivariateHypergeometricDistribution MultivariatePoissonDistribution MultivariateTDistribution N NakagamiDistribution NameQ Names NamespaceBox Nand NArgMax NArgMin NBernoulliB NCache NDSolve NDSolveValue Nearest NearestFunction NeedCurrentFrontEndPackagePacket NeedCurrentFrontEndSymbolsPacket NeedlemanWunschSimilarity Needs Negative NegativeBinomialDistribution NegativeMultinomialDistribution NeighborhoodGraph Nest NestedGreaterGreater NestedLessLess NestedScriptRules NestList NestWhile NestWhileList NevilleThetaC NevilleThetaD NevilleThetaN NevilleThetaS NewPrimitiveStyle NExpectation Next NextPrime NHoldAll NHoldFirst NHoldRest NicholsGridLines NicholsPlot NIntegrate NMaximize NMaxValue NMinimize NMinValue NominalVariables NonAssociative NoncentralBetaDistribution NoncentralChiSquareDistribution NoncentralFRatioDistribution NoncentralStudentTDistribution NonCommutativeMultiply NonConstants None NonlinearModelFit NonlocalMeansFilter NonNegative NonPositive Nor NorlundB Norm Normal NormalDistribution NormalGrouping Normalize NormalizedSquaredEuclideanDistance NormalsFunction NormFunction Not NotCongruent NotCupCap NotDoubleVerticalBar Notebook NotebookApply NotebookAutoSave NotebookClose NotebookConvertSettings NotebookCreate NotebookCreateReturnObject NotebookDefault NotebookDelete NotebookDirectory NotebookDynamicExpression NotebookEvaluate NotebookEventActions NotebookFileName NotebookFind NotebookFindReturnObject NotebookGet NotebookGetLayoutInformationPacket NotebookGetMisspellingsPacket NotebookInformation NotebookInterfaceObject NotebookLocate NotebookObject NotebookOpen NotebookOpenReturnObject NotebookPath NotebookPrint NotebookPut NotebookPutReturnObject NotebookRead NotebookResetGeneratedCells Notebooks NotebookSave NotebookSaveAs NotebookSelection NotebookSetupLayoutInformationPacket NotebooksMenu NotebookWrite NotElement NotEqualTilde NotExists NotGreater NotGreaterEqual NotGreaterFullEqual NotGreaterGreater NotGreaterLess NotGreaterSlantEqual NotGreaterTilde NotHumpDownHump NotHumpEqual NotLeftTriangle NotLeftTriangleBar NotLeftTriangleEqual NotLess NotLessEqual NotLessFullEqual NotLessGreater NotLessLess NotLessSlantEqual NotLessTilde NotNestedGreaterGreater NotNestedLessLess NotPrecedes NotPrecedesEqual NotPrecedesSlantEqual NotPrecedesTilde NotReverseElement NotRightTriangle NotRightTriangleBar NotRightTriangleEqual NotSquareSubset NotSquareSubsetEqual NotSquareSuperset NotSquareSupersetEqual NotSubset NotSubsetEqual NotSucceeds NotSucceedsEqual NotSucceedsSlantEqual NotSucceedsTilde NotSuperset NotSupersetEqual NotTilde NotTildeEqual NotTildeFullEqual NotTildeTilde NotVerticalBar NProbability NProduct NProductFactors NRoots NSolve NSum NSumTerms Null NullRecords NullSpace NullWords Number NumberFieldClassNumber NumberFieldDiscriminant NumberFieldFundamentalUnits NumberFieldIntegralBasis NumberFieldNormRepresentatives NumberFieldRegulator NumberFieldRootsOfUnity NumberFieldSignature NumberForm NumberFormat NumberMarks NumberMultiplier NumberPadding NumberPoint NumberQ NumberSeparator NumberSigns NumberString Numerator NumericFunction NumericQ NuttallWindow NValues NyquistGridLines NyquistPlot O ObservabilityGramian ObservabilityMatrix ObservableDecomposition ObservableModelQ OddQ Off Offset OLEData On ONanGroupON OneIdentity Opacity Open OpenAppend Opener OpenerBox OpenerBoxOptions OpenerView OpenFunctionInspectorPacket Opening OpenRead OpenSpecialOptions OpenTemporary OpenWrite Operate OperatingSystem OptimumFlowData Optional OptionInspectorSettings OptionQ Options OptionsPacket OptionsPattern OptionValue OptionValueBox OptionValueBoxOptions Or Orange Order OrderDistribution OrderedQ Ordering Orderless OrnsteinUhlenbeckProcess Orthogonalize Out Outer OutputAutoOverwrite OutputControllabilityMatrix OutputControllableModelQ OutputForm OutputFormData OutputGrouping OutputMathEditExpression OutputNamePacket OutputResponse OutputSizeLimit OutputStream Over OverBar OverDot Overflow OverHat Overlaps Overlay OverlayBox OverlayBoxOptions Overscript OverscriptBox OverscriptBoxOptions OverTilde OverVector OwenT OwnValues PackingMethod PaddedForm Padding PadeApproximant PadLeft PadRight PageBreakAbove PageBreakBelow PageBreakWithin PageFooterLines PageFooters PageHeaderLines PageHeaders PageHeight PageRankCentrality PageWidth PairedBarChart PairedHistogram PairedSmoothHistogram PairedTTest PairedZTest PaletteNotebook PalettePath Pane PaneBox PaneBoxOptions Panel PanelBox PanelBoxOptions Paneled PaneSelector PaneSelectorBox PaneSelectorBoxOptions PaperWidth ParabolicCylinderD ParagraphIndent ParagraphSpacing ParallelArray ParallelCombine ParallelDo ParallelEvaluate Parallelization Parallelize ParallelMap ParallelNeeds ParallelProduct ParallelSubmit ParallelSum ParallelTable ParallelTry Parameter ParameterEstimator ParameterMixtureDistribution ParameterVariables ParametricFunction ParametricNDSolve ParametricNDSolveValue ParametricPlot ParametricPlot3D ParentConnect ParentDirectory ParentForm Parenthesize ParentList ParetoDistribution Part PartialCorrelationFunction PartialD ParticleData Partition PartitionsP PartitionsQ ParzenWindow PascalDistribution PassEventsDown PassEventsUp Paste PasteBoxFormInlineCells PasteButton Path PathGraph PathGraphQ Pattern PatternSequence PatternTest PauliMatrix PaulWavelet Pause PausedTime PDF PearsonChiSquareTest PearsonCorrelationTest PearsonDistribution PerformanceGoal PeriodicInterpolation Periodogram PeriodogramArray PermutationCycles PermutationCyclesQ PermutationGroup PermutationLength PermutationList PermutationListQ PermutationMax PermutationMin PermutationOrder PermutationPower PermutationProduct PermutationReplace Permutations PermutationSupport Permute PeronaMalikFilter Perpendicular PERTDistribution PetersenGraph PhaseMargins Pi Pick PIDData PIDDerivativeFilter PIDFeedforward PIDTune Piecewise PiecewiseExpand PieChart PieChart3D PillaiTrace PillaiTraceTest Pink Pivoting PixelConstrained PixelValue PixelValuePositions Placed Placeholder PlaceholderReplace Plain PlanarGraphQ Play PlayRange Plot Plot3D Plot3Matrix PlotDivision PlotJoined PlotLabel PlotLayout PlotLegends PlotMarkers PlotPoints PlotRange PlotRangeClipping PlotRangePadding PlotRegion PlotStyle Plus PlusMinus Pochhammer PodStates PodWidth Point Point3DBox PointBox PointFigureChart PointForm PointLegend PointSize PoissonConsulDistribution PoissonDistribution PoissonProcess PoissonWindow PolarAxes PolarAxesOrigin PolarGridLines PolarPlot PolarTicks PoleZeroMarkers PolyaAeppliDistribution PolyGamma Polygon Polygon3DBox Polygon3DBoxOptions PolygonBox PolygonBoxOptions PolygonHoleScale PolygonIntersections PolygonScale PolyhedronData PolyLog PolynomialExtendedGCD PolynomialForm PolynomialGCD PolynomialLCM PolynomialMod PolynomialQ PolynomialQuotient PolynomialQuotientRemainder PolynomialReduce PolynomialRemainder Polynomials PopupMenu PopupMenuBox PopupMenuBoxOptions PopupView PopupWindow Position Positive PositiveDefiniteMatrixQ PossibleZeroQ Postfix PostScript Power PowerDistribution PowerExpand PowerMod PowerModList PowerSpectralDensity PowersRepresentations PowerSymmetricPolynomial Precedence PrecedenceForm Precedes PrecedesEqual PrecedesSlantEqual PrecedesTilde Precision PrecisionGoal PreDecrement PredictionRoot PreemptProtect PreferencesPath Prefix PreIncrement Prepend PrependTo PreserveImageOptions Previous PriceGraphDistribution PrimaryPlaceholder Prime PrimeNu PrimeOmega PrimePi PrimePowerQ PrimeQ Primes PrimeZetaP PrimitiveRoot PrincipalComponents PrincipalValue Print PrintAction PrintForm PrintingCopies PrintingOptions PrintingPageRange PrintingStartingPageNumber PrintingStyleEnvironment PrintPrecision PrintTemporary Prism PrismBox PrismBoxOptions PrivateCellOptions PrivateEvaluationOptions PrivateFontOptions PrivateFrontEndOptions PrivateNotebookOptions PrivatePaths Probability ProbabilityDistribution ProbabilityPlot ProbabilityPr ProbabilityScalePlot ProbitModelFit ProcessEstimator ProcessParameterAssumptions ProcessParameterQ ProcessStateDomain ProcessTimeDomain Product ProductDistribution ProductLog ProgressIndicator ProgressIndicatorBox ProgressIndicatorBoxOptions Projection Prolog PromptForm Properties Property PropertyList PropertyValue Proportion Proportional Protect Protected ProteinData Pruning PseudoInverse Purple Put PutAppend Pyramid PyramidBox PyramidBoxOptions QBinomial QFactorial QGamma QHypergeometricPFQ QPochhammer QPolyGamma QRDecomposition QuadraticIrrationalQ Quantile QuantilePlot Quantity QuantityForm QuantityMagnitude QuantityQ QuantityUnit Quartics QuartileDeviation Quartiles QuartileSkewness QueueingNetworkProcess QueueingProcess QueueProperties Quiet Quit Quotient QuotientRemainder RadialityCentrality RadicalBox RadicalBoxOptions RadioButton RadioButtonBar RadioButtonBox RadioButtonBoxOptions Radon RamanujanTau RamanujanTauL RamanujanTauTheta RamanujanTauZ Random RandomChoice RandomComplex RandomFunction RandomGraph RandomImage RandomInteger RandomPermutation RandomPrime RandomReal RandomSample RandomSeed RandomVariate RandomWalkProcess Range RangeFilter RangeSpecification RankedMax RankedMin Raster Raster3D Raster3DBox Raster3DBoxOptions RasterArray RasterBox RasterBoxOptions Rasterize RasterSize Rational RationalFunctions Rationalize Rationals Ratios Raw RawArray RawBoxes RawData RawMedium RayleighDistribution Re Read ReadList ReadProtected Real RealBlockDiagonalForm RealDigits RealExponent Reals Reap Record RecordLists RecordSeparators Rectangle RectangleBox RectangleBoxOptions RectangleChart RectangleChart3D RecurrenceFilter RecurrenceTable RecurringDigitsForm Red Reduce RefBox ReferenceLineStyle ReferenceMarkers ReferenceMarkerStyle Refine ReflectionMatrix ReflectionTransform Refresh RefreshRate RegionBinarize RegionFunction RegionPlot RegionPlot3D RegularExpression Regularization Reinstall Release ReleaseHold ReliabilityDistribution ReliefImage ReliefPlot Remove RemoveAlphaChannel RemoveAsynchronousTask Removed RemoveInputStreamMethod RemoveOutputStreamMethod RemoveProperty RemoveScheduledTask RenameDirectory RenameFile RenderAll RenderingOptions RenewalProcess RenkoChart Repeated RepeatedNull RepeatedString Replace ReplaceAll ReplaceHeldPart ReplaceImageValue ReplaceList ReplacePart ReplacePixelValue ReplaceRepeated Resampling Rescale RescalingTransform ResetDirectory ResetMenusPacket ResetScheduledTask Residue Resolve Rest Resultant ResumePacket Return ReturnExpressionPacket ReturnInputFormPacket ReturnPacket ReturnTextPacket Reverse ReverseBiorthogonalSplineWavelet ReverseElement ReverseEquilibrium ReverseGraph ReverseUpEquilibrium RevolutionAxis RevolutionPlot3D RGBColor RiccatiSolve RiceDistribution RidgeFilter RiemannR RiemannSiegelTheta RiemannSiegelZ Riffle Right RightArrow RightArrowBar RightArrowLeftArrow RightCosetRepresentative RightDownTeeVector RightDownVector RightDownVectorBar RightTee RightTeeArrow RightTeeVector RightTriangle RightTriangleBar RightTriangleEqual RightUpDownVector RightUpTeeVector RightUpVector RightUpVectorBar RightVector RightVectorBar RiskAchievementImportance RiskReductionImportance RogersTanimotoDissimilarity Root RootApproximant RootIntervals RootLocusPlot RootMeanSquare RootOfUnityQ RootReduce Roots RootSum Rotate RotateLabel RotateLeft RotateRight RotationAction RotationBox RotationBoxOptions RotationMatrix RotationTransform Round RoundImplies RoundingRadius Row RowAlignments RowBackgrounds RowBox RowHeights RowLines RowMinHeight RowReduce RowsEqual RowSpacings RSolve RudvalisGroupRu Rule RuleCondition RuleDelayed RuleForm RulerUnits Run RunScheduledTask RunThrough RuntimeAttributes RuntimeOptions RussellRaoDissimilarity SameQ SameTest SampleDepth SampledSoundFunction SampledSoundList SampleRate SamplingPeriod SARIMAProcess SARMAProcess SatisfiabilityCount SatisfiabilityInstances SatisfiableQ Saturday Save Saveable SaveAutoDelete SaveDefinitions SawtoothWave Scale Scaled ScaleDivisions ScaledMousePosition ScaleOrigin ScalePadding ScaleRanges ScaleRangeStyle ScalingFunctions ScalingMatrix ScalingTransform Scan ScheduledTaskActiveQ ScheduledTaskData ScheduledTaskObject ScheduledTasks SchurDecomposition ScientificForm ScreenRectangle ScreenStyleEnvironment ScriptBaselineShifts ScriptLevel ScriptMinSize ScriptRules ScriptSizeMultipliers Scrollbars ScrollingOptions ScrollPosition Sec Sech SechDistribution SectionGrouping SectorChart SectorChart3D SectorOrigin SectorSpacing SeedRandom Select Selectable SelectComponents SelectedCells SelectedNotebook Selection SelectionAnimate SelectionCell SelectionCellCreateCell SelectionCellDefaultStyle SelectionCellParentStyle SelectionCreateCell SelectionDebuggerTag SelectionDuplicateCell SelectionEvaluate SelectionEvaluateCreateCell SelectionMove SelectionPlaceholder SelectionSetStyle SelectWithContents SelfLoops SelfLoopStyle SemialgebraicComponentInstances SendMail Sequence SequenceAlignment SequenceForm SequenceHold SequenceLimit Series SeriesCoefficient SeriesData SessionTime Set SetAccuracy SetAlphaChannel SetAttributes Setbacks SetBoxFormNamesPacket SetDelayed SetDirectory SetEnvironment SetEvaluationNotebook SetFileDate SetFileLoadingContext SetNotebookStatusLine SetOptions SetOptionsPacket SetPrecision SetProperty SetSelectedNotebook SetSharedFunction SetSharedVariable SetSpeechParametersPacket SetStreamPosition SetSystemOptions Setter SetterBar SetterBox SetterBoxOptions Setting SetValue Shading Shallow ShannonWavelet ShapiroWilkTest Share Sharpen ShearingMatrix ShearingTransform ShenCastanMatrix Short ShortDownArrow Shortest ShortestMatch ShortestPathFunction ShortLeftArrow ShortRightArrow ShortUpArrow Show ShowAutoStyles ShowCellBracket ShowCellLabel ShowCellTags ShowClosedCellArea ShowContents ShowControls ShowCursorTracker ShowGroupOpenCloseIcon ShowGroupOpener ShowInvisibleCharacters ShowPageBreaks ShowPredictiveInterface ShowSelection ShowShortBoxForm ShowSpecialCharacters ShowStringCharacters ShowSyntaxStyles ShrinkingDelay ShrinkWrapBoundingBox SiegelTheta SiegelTukeyTest Sign Signature SignedRankTest SignificanceLevel SignPadding SignTest SimilarityRules SimpleGraph SimpleGraphQ Simplify Sin Sinc SinghMaddalaDistribution SingleEvaluation SingleLetterItalics SingleLetterStyle SingularValueDecomposition SingularValueList SingularValuePlot SingularValues Sinh SinhIntegral SinIntegral SixJSymbol Skeleton SkeletonTransform SkellamDistribution Skewness SkewNormalDistribution Skip SliceDistribution Slider Slider2D Slider2DBox Slider2DBoxOptions SliderBox SliderBoxOptions SlideView Slot SlotSequence Small SmallCircle Smaller SmithDelayCompensator SmithWatermanSimilarity SmoothDensityHistogram SmoothHistogram SmoothHistogram3D SmoothKernelDistribution SocialMediaData Socket SokalSneathDissimilarity Solve SolveAlways SolveDelayed Sort SortBy Sound SoundAndGraphics SoundNote SoundVolume Sow Space SpaceForm Spacer Spacings Span SpanAdjustments SpanCharacterRounding SpanFromAbove SpanFromBoth SpanFromLeft SpanLineThickness SpanMaxSize SpanMinSize SpanningCharacters SpanSymmetric SparseArray SpatialGraphDistribution Speak SpeakTextPacket SpearmanRankTest SpearmanRho Spectrogram SpectrogramArray Specularity SpellingCorrection SpellingDictionaries SpellingDictionariesPath SpellingOptions SpellingSuggestionsPacket Sphere SphereBox SphericalBesselJ SphericalBesselY SphericalHankelH1 SphericalHankelH2 SphericalHarmonicY SphericalPlot3D SphericalRegion SpheroidalEigenvalue SpheroidalJoiningFactor SpheroidalPS SpheroidalPSPrime SpheroidalQS SpheroidalQSPrime SpheroidalRadialFactor SpheroidalS1 SpheroidalS1Prime SpheroidalS2 SpheroidalS2Prime Splice SplicedDistribution SplineClosed SplineDegree SplineKnots SplineWeights Split SplitBy SpokenString Sqrt SqrtBox SqrtBoxOptions Square SquaredEuclideanDistance SquareFreeQ SquareIntersection SquaresR SquareSubset SquareSubsetEqual SquareSuperset SquareSupersetEqual SquareUnion SquareWave StabilityMargins StabilityMarginsStyle StableDistribution Stack StackBegin StackComplete StackInhibit StandardDeviation StandardDeviationFilter StandardForm Standardize StandbyDistribution Star StarGraph StartAsynchronousTask StartingStepSize StartOfLine StartOfString StartScheduledTask StartupSound StateDimensions StateFeedbackGains StateOutputEstimator StateResponse StateSpaceModel StateSpaceRealization StateSpaceTransform StationaryDistribution StationaryWaveletPacketTransform StationaryWaveletTransform StatusArea StatusCentrality StepMonitor StieltjesGamma StirlingS1 StirlingS2 StopAsynchronousTask StopScheduledTask StrataVariables StratonovichProcess StreamColorFunction StreamColorFunctionScaling StreamDensityPlot StreamPlot StreamPoints StreamPosition Streams StreamScale StreamStyle String StringBreak StringByteCount StringCases StringCount StringDrop StringExpression StringForm StringFormat StringFreeQ StringInsert StringJoin StringLength StringMatchQ StringPosition StringQ StringReplace StringReplaceList StringReplacePart StringReverse StringRotateLeft StringRotateRight StringSkeleton StringSplit StringTake StringToStream StringTrim StripBoxes StripOnInput StripWrapperBoxes StrokeForm StructuralImportance StructuredArray StructuredSelection StruveH StruveL Stub StudentTDistribution Style StyleBox StyleBoxAutoDelete StyleBoxOptions StyleData StyleDefinitions StyleForm StyleKeyMapping StyleMenuListing StyleNameDialogSettings StyleNames StylePrint StyleSheetPath Subfactorial Subgraph SubMinus SubPlus SubresultantPolynomialRemainders SubresultantPolynomials Subresultants Subscript SubscriptBox SubscriptBoxOptions Subscripted Subset SubsetEqual Subsets SubStar Subsuperscript SubsuperscriptBox SubsuperscriptBoxOptions Subtract SubtractFrom SubValues Succeeds SucceedsEqual SucceedsSlantEqual SucceedsTilde SuchThat Sum SumConvergence Sunday SuperDagger SuperMinus SuperPlus Superscript SuperscriptBox SuperscriptBoxOptions Superset SupersetEqual SuperStar Surd SurdForm SurfaceColor SurfaceGraphics SurvivalDistribution SurvivalFunction SurvivalModel SurvivalModelFit SuspendPacket SuzukiDistribution SuzukiGroupSuz SwatchLegend Switch Symbol SymbolName SymletWavelet Symmetric SymmetricGroup SymmetricMatrixQ SymmetricPolynomial SymmetricReduction Symmetrize SymmetrizedArray SymmetrizedArrayRules SymmetrizedDependentComponents SymmetrizedIndependentComponents SymmetrizedReplacePart SynchronousInitialization SynchronousUpdating Syntax SyntaxForm SyntaxInformation SyntaxLength SyntaxPacket SyntaxQ SystemDialogInput SystemException SystemHelpPath SystemInformation SystemInformationData SystemOpen SystemOptions SystemsModelDelay SystemsModelDelayApproximate SystemsModelDelete SystemsModelDimensions SystemsModelExtract SystemsModelFeedbackConnect SystemsModelLabels SystemsModelOrder SystemsModelParallelConnect SystemsModelSeriesConnect SystemsModelStateFeedbackConnect SystemStub Tab TabFilling Table TableAlignments TableDepth TableDirections TableForm TableHeadings TableSpacing TableView TableViewBox TabSpacings TabView TabViewBox TabViewBoxOptions TagBox TagBoxNote TagBoxOptions TaggingRules TagSet TagSetDelayed TagStyle TagUnset Take TakeWhile Tally Tan Tanh TargetFunctions TargetUnits TautologyQ TelegraphProcess TemplateBox TemplateBoxOptions TemplateSlotSequence TemporalData Temporary TemporaryVariable TensorContract TensorDimensions TensorExpand TensorProduct TensorQ TensorRank TensorReduce TensorSymmetry TensorTranspose TensorWedge Tetrahedron TetrahedronBox TetrahedronBoxOptions TeXForm TeXSave Text Text3DBox Text3DBoxOptions TextAlignment TextBand TextBoundingBox TextBox TextCell TextClipboardType TextData TextForm TextJustification TextLine TextPacket TextParagraph TextRecognize TextRendering TextStyle Texture TextureCoordinateFunction TextureCoordinateScaling Therefore ThermometerGauge Thick Thickness Thin Thinning ThisLink ThompsonGroupTh Thread ThreeJSymbol Threshold Through Throw Thumbnail Thursday Ticks TicksStyle Tilde TildeEqual TildeFullEqual TildeTilde TimeConstrained TimeConstraint Times TimesBy TimeSeriesForecast TimeSeriesInvertibility TimeUsed TimeValue TimeZone Timing Tiny TitleGrouping TitsGroupT ToBoxes ToCharacterCode ToColor ToContinuousTimeModel ToDate ToDiscreteTimeModel ToeplitzMatrix ToExpression ToFileName Together Toggle ToggleFalse Toggler TogglerBar TogglerBox TogglerBoxOptions ToHeldExpression ToInvertibleTimeSeries TokenWords Tolerance ToLowerCase ToNumberField TooBig Tooltip TooltipBox TooltipBoxOptions TooltipDelay TooltipStyle Top TopHatTransform TopologicalSort ToRadicals ToRules ToString Total TotalHeight TotalVariationFilter TotalWidth TouchscreenAutoZoom TouchscreenControlPlacement ToUpperCase Tr Trace TraceAbove TraceAction TraceBackward TraceDepth TraceDialog TraceForward TraceInternal TraceLevel TraceOff TraceOn TraceOriginal TracePrint TraceScan TrackedSymbols TradingChart TraditionalForm TraditionalFunctionNotation TraditionalNotation TraditionalOrder TransferFunctionCancel TransferFunctionExpand TransferFunctionFactor TransferFunctionModel TransferFunctionPoles TransferFunctionTransform TransferFunctionZeros TransformationFunction TransformationFunctions TransformationMatrix TransformedDistribution TransformedField Translate TranslationTransform TransparentColor Transpose TreeForm TreeGraph TreeGraphQ TreePlot TrendStyle TriangleWave TriangularDistribution Trig TrigExpand TrigFactor TrigFactorList Trigger TrigReduce TrigToExp TrimmedMean True TrueQ TruncatedDistribution TsallisQExponentialDistribution TsallisQGaussianDistribution TTest Tube TubeBezierCurveBox TubeBezierCurveBoxOptions TubeBox TubeBSplineCurveBox TubeBSplineCurveBoxOptions Tuesday TukeyLambdaDistribution TukeyWindow Tuples TuranGraph TuringMachine Transparent UnateQ Uncompress Undefined UnderBar Underflow Underlined Underoverscript UnderoverscriptBox UnderoverscriptBoxOptions Underscript UnderscriptBox UnderscriptBoxOptions UndirectedEdge UndirectedGraph UndirectedGraphQ UndocumentedTestFEParserPacket UndocumentedTestGetSelectionPacket Unequal Unevaluated UniformDistribution UniformGraphDistribution UniformSumDistribution Uninstall Union UnionPlus Unique UnitBox UnitConvert UnitDimensions Unitize UnitRootTest UnitSimplify UnitStep UnitTriangle UnitVector Unprotect UnsameQ UnsavedVariables Unset UnsetShared UntrackedVariables Up UpArrow UpArrowBar UpArrowDownArrow Update UpdateDynamicObjects UpdateDynamicObjectsSynchronous UpdateInterval UpDownArrow UpEquilibrium UpperCaseQ UpperLeftArrow UpperRightArrow UpperTriangularize Upsample UpSet UpSetDelayed UpTee UpTeeArrow UpValues URL URLFetch URLFetchAsynchronous URLSave URLSaveAsynchronous UseGraphicsRange Using UsingFrontEnd V2Get ValidationLength Value ValueBox ValueBoxOptions ValueForm ValueQ ValuesData Variables Variance VarianceEquivalenceTest VarianceEstimatorFunction VarianceGammaDistribution VarianceTest VectorAngle VectorColorFunction VectorColorFunctionScaling VectorDensityPlot VectorGlyphData VectorPlot VectorPlot3D VectorPoints VectorQ Vectors VectorScale VectorStyle Vee Verbatim Verbose VerboseConvertToPostScriptPacket VerifyConvergence VerifySolutions VerifyTestAssumptions Version VersionNumber VertexAdd VertexCapacity VertexColors VertexComponent VertexConnectivity VertexCoordinateRules VertexCoordinates VertexCorrelationSimilarity VertexCosineSimilarity VertexCount VertexCoverQ VertexDataCoordinates VertexDegree VertexDelete VertexDiceSimilarity VertexEccentricity VertexInComponent VertexInDegree VertexIndex VertexJaccardSimilarity VertexLabeling VertexLabels VertexLabelStyle VertexList VertexNormals VertexOutComponent VertexOutDegree VertexQ VertexRenderingFunction VertexReplace VertexShape VertexShapeFunction VertexSize VertexStyle VertexTextureCoordinates VertexWeight Vertical VerticalBar VerticalForm VerticalGauge VerticalSeparator VerticalSlider VerticalTilde ViewAngle ViewCenter ViewMatrix ViewPoint ViewPointSelectorSettings ViewPort ViewRange ViewVector ViewVertical VirtualGroupData Visible VisibleCell VoigtDistribution VonMisesDistribution WaitAll WaitAsynchronousTask WaitNext WaitUntil WakebyDistribution WalleniusHypergeometricDistribution WaringYuleDistribution WatershedComponents WatsonUSquareTest WattsStrogatzGraphDistribution WaveletBestBasis WaveletFilterCoefficients WaveletImagePlot WaveletListPlot WaveletMapIndexed WaveletMatrixPlot WaveletPhi WaveletPsi WaveletScale WaveletScalogram WaveletThreshold WeaklyConnectedComponents WeaklyConnectedGraphQ WeakStationarity WeatherData WeberE Wedge Wednesday WeibullDistribution WeierstrassHalfPeriods WeierstrassInvariants WeierstrassP WeierstrassPPrime WeierstrassSigma WeierstrassZeta WeightedAdjacencyGraph WeightedAdjacencyMatrix WeightedData WeightedGraphQ Weights WelchWindow WheelGraph WhenEvent Which While White Whitespace WhitespaceCharacter WhittakerM WhittakerW WienerFilter WienerProcess WignerD WignerSemicircleDistribution WilksW WilksWTest WindowClickSelect WindowElements WindowFloating WindowFrame WindowFrameElements WindowMargins WindowMovable WindowOpacity WindowSelected WindowSize WindowStatusArea WindowTitle WindowToolbars WindowWidth With WolframAlpha WolframAlphaDate WolframAlphaQuantity WolframAlphaResult Word WordBoundary WordCharacter WordData WordSearch WordSeparators WorkingPrecision Write WriteString Wronskian XMLElement XMLObject Xnor Xor Yellow YuleDissimilarity ZernikeR ZeroSymmetric ZeroTest ZeroWidthTimes Zeta ZetaZero ZipfDistribution ZTest ZTransform $Aborted $ActivationGroupID $ActivationKey $ActivationUserRegistered $AddOnsDirectory $AssertFunction $Assumptions $AsynchronousTask $BaseDirectory $BatchInput $BatchOutput $BoxForms $ByteOrdering $Canceled $CharacterEncoding $CharacterEncodings $CommandLine $CompilationTarget $ConditionHold $ConfiguredKernels $Context $ContextPath $ControlActiveSetting $CreationDate $CurrentLink $DateStringFormat $DefaultFont $DefaultFrontEnd $DefaultImagingDevice $DefaultPath $Display $DisplayFunction $DistributedContexts $DynamicEvaluation $Echo $Epilog $ExportFormats $Failed $FinancialDataSource $FormatType $FrontEnd $FrontEndSession $GeoLocation $HistoryLength $HomeDirectory $HTTPCookies $IgnoreEOF $ImagingDevices $ImportFormats $InitialDirectory $Input $InputFileName $InputStreamMethods $Inspector $InstallationDate $InstallationDirectory $InterfaceEnvironment $IterationLimit $KernelCount $KernelID $Language $LaunchDirectory $LibraryPath $LicenseExpirationDate $LicenseID $LicenseProcesses $LicenseServer $LicenseSubprocesses $LicenseType $Line $Linked $LinkSupported $LoadedFiles $MachineAddresses $MachineDomain $MachineDomains $MachineEpsilon $MachineID $MachineName $MachinePrecision $MachineType $MaxExtraPrecision $MaxLicenseProcesses $MaxLicenseSubprocesses $MaxMachineNumber $MaxNumber $MaxPiecewiseCases $MaxPrecision $MaxRootDegree $MessageGroups $MessageList $MessagePrePrint $Messages $MinMachineNumber $MinNumber $MinorReleaseNumber $MinPrecision $ModuleNumber $NetworkLicense $NewMessage $NewSymbol $Notebooks $NumberMarks $Off $OperatingSystem $Output $OutputForms $OutputSizeLimit $OutputStreamMethods $Packages $ParentLink $ParentProcessID $PasswordFile $PatchLevelID $Path $PathnameSeparator $PerformanceGoal $PipeSupported $Post $Pre $PreferencesDirectory $PrePrint $PreRead $PrintForms $PrintLiteral $ProcessID $ProcessorCount $ProcessorType $ProductInformation $ProgramName $RandomState $RecursionLimit $ReleaseNumber $RootDirectory $ScheduledTask $ScriptCommandLine $SessionID $SetParentLink $SharedFunctions $SharedVariables $SoundDisplay $SoundDisplayFunction $SuppressInputFormHeads $SynchronousEvaluation $SyntaxHandler $System $SystemCharacterEncoding $SystemID $SystemWordLength $TemporaryDirectory $TemporaryPrefix $TextStyle $TimedOut $TimeUnit $TimeZone $TopDirectory $TraceOff $TraceOn $TracePattern $TracePostAction $TracePreAction $Urgent $UserAddOnsDirectory $UserBaseDirectory $UserDocumentsDirectory $UserName $Version $VersionNumber", -c:[{cN:"comment",b:/\(\*/,e:/\*\)/},e.ASM,e.QSM,e.CNM,{cN:"list",b:/\{/,e:/\}/,i:/:/}]}});hljs.registerLanguage("fsharp",function(e){var t={b:"<",e:">",c:[e.inherit(e.TM,{b:/'[a-zA-Z0-9_]+/})]};return{aliases:["fs"],k:"yield! return! let! do!abstract and as assert base begin class default delegate do done downcast downto elif else end exception extern false finally for fun function global if in inherit inline interface internal lazy let match member module mutable namespace new null of open or override private public rec return sig static struct then to true try type upcast use val void when while with yield",c:[{cN:"string",b:'@"',e:'"',c:[{b:'""'}]},{cN:"string",b:'"""',e:'"""'},e.C("\\(\\*","\\*\\)"),{cN:"class",bK:"type",e:"\\(|=|$",eE:!0,c:[e.UTM,t]},{cN:"annotation",b:"\\[<",e:">\\]",r:10},{cN:"attribute",b:"\\B('[A-Za-z])\\b",c:[e.BE]},e.CLCM,e.inherit(e.QSM,{i:null}),e.CNM]}});hljs.registerLanguage("verilog",function(e){return{aliases:["v"],cI:!0,k:{keyword:"always and assign begin buf bufif0 bufif1 case casex casez cmos deassign default defparam disable edge else end endcase endfunction endmodule endprimitive endspecify endtable endtask event for force forever fork function if ifnone initial inout input join macromodule module nand negedge nmos nor not notif0 notif1 or output parameter pmos posedge primitive pulldown pullup rcmos release repeat rnmos rpmos rtran rtranif0 rtranif1 specify specparam table task timescale tran tranif0 tranif1 wait while xnor xor",typename:"highz0 highz1 integer large medium pull0 pull1 real realtime reg scalared signed small strong0 strong1 supply0 supply0 supply1 supply1 time tri tri0 tri1 triand trior trireg vectored wand weak0 weak1 wire wor"},c:[e.CBCM,e.CLCM,e.QSM,{cN:"number",b:"\\b(\\d+'(b|h|o|d|B|H|O|D))?[0-9xzXZ]+",c:[e.BE],r:0},{cN:"typename",b:"\\.\\w+",r:0},{cN:"value",b:"#\\((?!parameter).+\\)"},{cN:"keyword",b:"\\+|-|\\*|/|%|<|>|=|#|`|\\!|&|\\||@|:|\\^|~|\\{|\\}",r:0}]}});hljs.registerLanguage("dos",function(e){var r=e.C(/@?rem\b/,/$/,{r:10}),t={cN:"label",b:"^\\s*[A-Za-z._?][A-Za-z0-9_$#@~.?]*(:|\\s+label)",r:0};return{aliases:["bat","cmd"],cI:!0,k:{flow:"if else goto for in do call exit not exist errorlevel defined",operator:"equ neq lss leq gtr geq",keyword:"shift cd dir echo setlocal endlocal set pause copy",stream:"prn nul lpt3 lpt2 lpt1 con com4 com3 com2 com1 aux",winutils:"ping net ipconfig taskkill xcopy ren del",built_in:"append assoc at attrib break cacls cd chcp chdir chkdsk chkntfs cls cmd color comp compact convert date dir diskcomp diskcopy doskey erase fs find findstr format ftype graftabl help keyb label md mkdir mode more move path pause print popd pushd promt rd recover rem rename replace restore rmdir shiftsort start subst time title tree type ver verify vol"},c:[{cN:"envvar",b:/%%[^ ]|%[^ ]+?%|![^ ]+?!/},{cN:"function",b:t.b,e:"goto:eof",c:[e.inherit(e.TM,{b:"([_a-zA-Z]\\w*\\.)*([_a-zA-Z]\\w*:)?[_a-zA-Z]\\w*"}),r]},{cN:"number",b:"\\b\\d+",r:0},r]}});hljs.registerLanguage("gherkin",function(e){return{aliases:["feature"],k:"Feature Background Ability Business Need Scenario Scenarios Scenario Outline Scenario Template Examples Given And Then But When",c:[{cN:"keyword",b:"\\*"},e.C("@[^@\r\n ]+","$"),{cN:"string",b:"\\|",e:"\\$"},{cN:"variable",b:"<",e:">"},e.HCM,{cN:"string",b:'"""',e:'"""'},e.QSM]}});hljs.registerLanguage("xml",function(t){var e="[A-Za-z0-9\\._:-]+",s={b:/<\?(php)?(?!\w)/,e:/\?>/,sL:"php",subLanguageMode:"continuous"},c={eW:!0,i:/]+/}]}]}]};return{aliases:["html","xhtml","rss","atom","xsl","plist"],cI:!0,c:[{cN:"doctype",b:"",r:10,c:[{b:"\\[",e:"\\]"}]},t.C("",{r:10}),{cN:"cdata",b:"<\\!\\[CDATA\\[",e:"\\]\\]>",r:10},{cN:"tag",b:"|$)",e:">",k:{title:"style"},c:[c],starts:{e:"",rE:!0,sL:"css"}},{cN:"tag",b:"|$)",e:">",k:{title:"script"},c:[c],starts:{e:"",rE:!0,sL:""}},s,{cN:"pi",b:/<\?\w+/,e:/\?>/,r:10},{cN:"tag",b:"",c:[{cN:"title",b:/[^ \/><\n\t]+/,r:0},c]}]}});hljs.registerLanguage("autohotkey",function(e){var r={cN:"escape",b:"`[\\s\\S]"},c=e.C(";","$",{r:0}),n=[{cN:"built_in",b:"A_[a-zA-Z0-9]+"},{cN:"built_in",bK:"ComSpec Clipboard ClipboardAll ErrorLevel"}];return{cI:!0,k:{keyword:"Break Continue Else Gosub If Loop Return While",literal:"A true false NOT AND OR"},c:n.concat([r,e.inherit(e.QSM,{c:[r]}),c,{cN:"number",b:e.NR,r:0},{cN:"var_expand",b:"%",e:"%",i:"\\n",c:[r]},{cN:"label",c:[r],v:[{b:'^[^\\n";]+::(?!=)'},{b:'^[^\\n";]+:(?!=)',r:0}]},{b:",\\s*,",r:10}])}});hljs.registerLanguage("r",function(e){var r="([a-zA-Z]|\\.[a-zA-Z.])[a-zA-Z0-9._]*";return{c:[e.HCM,{b:r,l:r,k:{keyword:"function if in break next repeat else for return switch while try tryCatch stop warning require library attach detach source setMethod setGeneric setGroupGeneric setClass ...",literal:"NULL NA TRUE FALSE T F Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10"},r:0},{cN:"number",b:"0[xX][0-9a-fA-F]+[Li]?\\b",r:0},{cN:"number",b:"\\d+(?:[eE][+\\-]?\\d*)?L\\b",r:0},{cN:"number",b:"\\d+\\.(?!\\d)(?:i\\b)?",r:0},{cN:"number",b:"\\d+(?:\\.\\d*)?(?:[eE][+\\-]?\\d*)?i?\\b",r:0},{cN:"number",b:"\\.\\d+(?:[eE][+\\-]?\\d*)?i?\\b",r:0},{b:"`",e:"`",r:0},{cN:"string",c:[e.BE],v:[{b:'"',e:'"'},{b:"'",e:"'"}]}]}});hljs.registerLanguage("cs",function(e){var r="abstract as base bool break byte case catch char checked const continue decimal dynamic default delegate do double else enum event explicit extern false finally fixed float for foreach goto if implicit in int interface internal is lock long null when object operator out override params private protected public readonly ref sbyte sealed short sizeof stackalloc static string struct switch this true try typeof uint ulong unchecked unsafe ushort using virtual volatile void while async protected public private internal ascending descending from get group into join let orderby partial select set value var where yield",t=e.IR+"(<"+e.IR+">)?";return{aliases:["csharp"],k:r,i:/::/,c:[e.C("///","$",{rB:!0,c:[{cN:"xmlDocTag",v:[{b:"///",r:0},{b:""},{b:""}]}]}),e.CLCM,e.CBCM,{cN:"preprocessor",b:"#",e:"$",k:"if else elif endif define undef warning error line region endregion pragma checksum"},{cN:"string",b:'@"',e:'"',c:[{b:'""'}]},e.ASM,e.QSM,e.CNM,{bK:"class namespace interface",e:/[{;=]/,i:/[^\s:]/,c:[e.TM,e.CLCM,e.CBCM]},{bK:"new return throw await",r:0},{cN:"function",b:"("+t+"\\s+)+"+e.IR+"\\s*\\(",rB:!0,e:/[{;=]/,eE:!0,k:r,c:[{b:e.IR+"\\s*\\(",rB:!0,c:[e.TM],r:0},{cN:"params",b:/\(/,e:/\)/,k:r,r:0,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]}]}});hljs.registerLanguage("nsis",function(e){var t={cN:"symbol",b:"\\$(ADMINTOOLS|APPDATA|CDBURN_AREA|CMDLINE|COMMONFILES32|COMMONFILES64|COMMONFILES|COOKIES|DESKTOP|DOCUMENTS|EXEDIR|EXEFILE|EXEPATH|FAVORITES|FONTS|HISTORY|HWNDPARENT|INSTDIR|INTERNET_CACHE|LANGUAGE|LOCALAPPDATA|MUSIC|NETHOOD|OUTDIR|PICTURES|PLUGINSDIR|PRINTHOOD|PROFILE|PROGRAMFILES32|PROGRAMFILES64|PROGRAMFILES|QUICKLAUNCH|RECENT|RESOURCES_LOCALIZED|RESOURCES|SENDTO|SMPROGRAMS|SMSTARTUP|STARTMENU|SYSDIR|TEMP|TEMPLATES|VIDEOS|WINDIR)"},n={cN:"constant",b:"\\$+{[a-zA-Z0-9_]+}"},i={cN:"variable",b:"\\$+[a-zA-Z0-9_]+",i:"\\(\\){}"},r={cN:"constant",b:"\\$+\\([a-zA-Z0-9_]+\\)"},o={cN:"params",b:"(ARCHIVE|FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_NORMAL|FILE_ATTRIBUTE_OFFLINE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_SYSTEM|FILE_ATTRIBUTE_TEMPORARY|HKCR|HKCU|HKDD|HKEY_CLASSES_ROOT|HKEY_CURRENT_CONFIG|HKEY_CURRENT_USER|HKEY_DYN_DATA|HKEY_LOCAL_MACHINE|HKEY_PERFORMANCE_DATA|HKEY_USERS|HKLM|HKPD|HKU|IDABORT|IDCANCEL|IDIGNORE|IDNO|IDOK|IDRETRY|IDYES|MB_ABORTRETRYIGNORE|MB_DEFBUTTON1|MB_DEFBUTTON2|MB_DEFBUTTON3|MB_DEFBUTTON4|MB_ICONEXCLAMATION|MB_ICONINFORMATION|MB_ICONQUESTION|MB_ICONSTOP|MB_OK|MB_OKCANCEL|MB_RETRYCANCEL|MB_RIGHT|MB_RTLREADING|MB_SETFOREGROUND|MB_TOPMOST|MB_USERICON|MB_YESNO|NORMAL|OFFLINE|READONLY|SHCTX|SHELL_CONTEXT|SYSTEM|TEMPORARY)"},l={cN:"constant",b:"\\!(addincludedir|addplugindir|appendfile|cd|define|delfile|echo|else|endif|error|execute|finalize|getdllversionsystem|ifdef|ifmacrodef|ifmacrondef|ifndef|if|include|insertmacro|macroend|macro|makensis|packhdr|searchparse|searchreplace|tempfile|undef|verbose|warning)"};return{cI:!1,k:{keyword:"Abort AddBrandingImage AddSize AllowRootDirInstall AllowSkipFiles AutoCloseWindow BGFont BGGradient BrandingText BringToFront Call CallInstDLL Caption ChangeUI CheckBitmap ClearErrors CompletedText ComponentText CopyFiles CRCCheck CreateDirectory CreateFont CreateShortCut Delete DeleteINISec DeleteINIStr DeleteRegKey DeleteRegValue DetailPrint DetailsButtonText DirText DirVar DirVerify EnableWindow EnumRegKey EnumRegValue Exch Exec ExecShell ExecWait ExpandEnvStrings File FileBufSize FileClose FileErrorText FileOpen FileRead FileReadByte FileReadUTF16LE FileReadWord FileSeek FileWrite FileWriteByte FileWriteUTF16LE FileWriteWord FindClose FindFirst FindNext FindWindow FlushINI FunctionEnd GetCurInstType GetCurrentAddress GetDlgItem GetDLLVersion GetDLLVersionLocal GetErrorLevel GetFileTime GetFileTimeLocal GetFullPathName GetFunctionAddress GetInstDirError GetLabelAddress GetTempFileName Goto HideWindow Icon IfAbort IfErrors IfFileExists IfRebootFlag IfSilent InitPluginsDir InstallButtonText InstallColors InstallDir InstallDirRegKey InstProgressFlags InstType InstTypeGetText InstTypeSetText IntCmp IntCmpU IntFmt IntOp IsWindow LangString LicenseBkColor LicenseData LicenseForceSelection LicenseLangString LicenseText LoadLanguageFile LockWindow LogSet LogText ManifestDPIAware ManifestSupportedOS MessageBox MiscButtonText Name Nop OutFile Page PageCallbacks PageExEnd Pop Push Quit ReadEnvStr ReadINIStr ReadRegDWORD ReadRegStr Reboot RegDLL Rename RequestExecutionLevel ReserveFile Return RMDir SearchPath SectionEnd SectionGetFlags SectionGetInstTypes SectionGetSize SectionGetText SectionGroupEnd SectionIn SectionSetFlags SectionSetInstTypes SectionSetSize SectionSetText SendMessage SetAutoClose SetBrandingImage SetCompress SetCompressor SetCompressorDictSize SetCtlColors SetCurInstType SetDatablockOptimize SetDateSave SetDetailsPrint SetDetailsView SetErrorLevel SetErrors SetFileAttributes SetFont SetOutPath SetOverwrite SetPluginUnload SetRebootFlag SetRegView SetShellVarContext SetSilent ShowInstDetails ShowUninstDetails ShowWindow SilentInstall SilentUnInstall Sleep SpaceTexts StrCmp StrCmpS StrCpy StrLen SubCaption SubSectionEnd Unicode UninstallButtonText UninstallCaption UninstallIcon UninstallSubCaption UninstallText UninstPage UnRegDLL Var VIAddVersionKey VIFileVersion VIProductVersion WindowIcon WriteINIStr WriteRegBin WriteRegDWORD WriteRegExpandStr WriteRegStr WriteUninstaller XPStyle",literal:"admin all auto both colored current false force hide highest lastused leave listonly none normal notset off on open print show silent silentlog smooth textonly true user "},c:[e.HCM,e.CBCM,{cN:"string",b:'"',e:'"',i:"\\n",c:[{cN:"symbol",b:"\\$(\\\\(n|r|t)|\\$)"},t,n,i,r]},e.C(";","$",{r:0}),{cN:"function",bK:"Function PageEx Section SectionGroup SubSection",e:"$"},l,n,i,r,o,e.NM,{cN:"literal",b:e.IR+"::"+e.IR}]}});hljs.registerLanguage("less",function(e){var r="[\\w-]+",t="("+r+"|@{"+r+"})",a=[],c=[],n=function(e){return{cN:"string",b:"~?"+e+".*?"+e}},i=function(e,r,t){return{cN:e,b:r,r:t}},s=function(r,t,a){return e.inherit({cN:r,b:t+"\\(",e:"\\(",rB:!0,eE:!0,r:0},a)},b={b:"\\(",e:"\\)",c:c,r:0};c.push(e.CLCM,e.CBCM,n("'"),n('"'),e.CSSNM,i("hexcolor","#[0-9A-Fa-f]+\\b"),s("function","(url|data-uri)",{starts:{cN:"string",e:"[\\)\\n]",eE:!0}}),s("function",r),b,i("variable","@@?"+r,10),i("variable","@{"+r+"}"),i("built_in","~?`[^`]*?`"),{cN:"attribute",b:r+"\\s*:",e:":",rB:!0,eE:!0});var o=c.concat({b:"{",e:"}",c:a}),u={bK:"when",eW:!0,c:[{bK:"and not"}].concat(c)},C={cN:"attribute",b:t,e:":",eE:!0,c:[e.CLCM,e.CBCM],i:/\S/,starts:{e:"[;}]",rE:!0,c:c,i:"[<=$]"}},l={cN:"at_rule",b:"@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\b",starts:{e:"[;{}]",rE:!0,c:c,r:0}},d={cN:"variable",v:[{b:"@"+r+"\\s*:",r:15},{b:"@"+r}],starts:{e:"[;}]",rE:!0,c:o}},p={v:[{b:"[\\.#:&\\[]",e:"[;{}]"},{b:t+"[^;]*{",e:"{"}],rB:!0,rE:!0,i:"[<='$\"]",c:[e.CLCM,e.CBCM,u,i("keyword","all\\b"),i("variable","@{"+r+"}"),i("tag",t+"%?",0),i("id","#"+t),i("class","\\."+t,0),i("keyword","&",0),s("pseudo",":not"),s("keyword",":extend"),i("pseudo","::?"+t),{cN:"attr_selector",b:"\\[",e:"\\]"},{b:"\\(",e:"\\)",c:o},{b:"!important"}]};return a.push(e.CLCM,e.CBCM,l,d,p,C),{cI:!0,i:"[=>'/<($\"]",c:a}});hljs.registerLanguage("pf",function(t){var o={cN:"variable",b:/\$[\w\d#@][\w\d_]*/},e={cN:"variable",b://};return{aliases:["pf.conf"],l:/[a-z0-9_<>-]+/,k:{built_in:"block match pass load anchor|5 antispoof|10 set table",keyword:"in out log quick on rdomain inet inet6 proto from port os to routeallow-opts divert-packet divert-reply divert-to flags group icmp-typeicmp6-type label once probability recieved-on rtable prio queuetos tag tagged user keep fragment for os dropaf-to|10 binat-to|10 nat-to|10 rdr-to|10 bitmask least-stats random round-robinsource-hash static-portdup-to reply-to route-toparent bandwidth default min max qlimitblock-policy debug fingerprints hostid limit loginterface optimizationreassemble ruleset-optimization basic none profile skip state-defaultsstate-policy timeoutconst counters persistno modulate synproxy state|5 floating if-bound no-sync pflow|10 sloppysource-track global rule max-src-nodes max-src-states max-src-connmax-src-conn-rate overload flushscrub|5 max-mss min-ttl no-df|10 random-id",literal:"all any no-route self urpf-failed egress|5 unknown"},c:[t.HCM,t.NM,t.QSM,o,e]}});hljs.registerLanguage("lasso",function(e){var r="[a-zA-Z_][a-zA-Z0-9_.]*",a="<\\?(lasso(script)?|=)",t="\\]|\\?>",s={literal:"true false none minimal full all void and or not bw nbw ew new cn ncn lt lte gt gte eq neq rx nrx ft",built_in:"array date decimal duration integer map pair string tag xml null boolean bytes keyword list locale queue set stack staticarray local var variable global data self inherited",keyword:"error_code error_msg error_pop error_push error_reset cache database_names database_schemanames database_tablenames define_tag define_type email_batch encode_set html_comment handle handle_error header if inline iterate ljax_target link link_currentaction link_currentgroup link_currentrecord link_detail link_firstgroup link_firstrecord link_lastgroup link_lastrecord link_nextgroup link_nextrecord link_prevgroup link_prevrecord log loop namespace_using output_none portal private protect records referer referrer repeating resultset rows search_args search_arguments select sort_args sort_arguments thread_atomic value_list while abort case else if_empty if_false if_null if_true loop_abort loop_continue loop_count params params_up return return_value run_children soap_definetag soap_lastrequest soap_lastresponse tag_name ascending average by define descending do equals frozen group handle_failure import in into join let match max min on order parent protected provide public require returnhome skip split_thread sum take thread to trait type where with yield yieldhome"},n=e.C("",{r:0}),o={cN:"preprocessor",b:"\\[noprocess\\]",starts:{cN:"markup",e:"\\[/noprocess\\]",rE:!0,c:[n]}},i={cN:"preprocessor",b:"\\[/noprocess|"+a},l={cN:"variable",b:"'"+r+"'"},c=[e.CLCM,{cN:"javadoc",b:"/\\*\\*!",e:"\\*/",c:[e.PWM]},e.CBCM,e.inherit(e.CNM,{b:e.CNR+"|(-?infinity|nan)\\b"}),e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null}),{cN:"string",b:"`",e:"`"},{cN:"variable",v:[{b:"[#$]"+r},{b:"#",e:"\\d+",i:"\\W"}]},{cN:"tag",b:"::\\s*",e:r,i:"\\W"},{cN:"attribute",v:[{b:"-"+e.UIR,r:0},{b:"(\\.\\.\\.)"}]},{cN:"subst",v:[{b:"->\\s*",c:[l]},{b:":=|/(?!\\w)=?|[-+*%=<>&|!?\\\\]+",r:0}]},{cN:"built_in",b:"\\.\\.?\\s*",r:0,c:[l]},{cN:"class",bK:"define",rE:!0,e:"\\(|=>",c:[e.inherit(e.TM,{b:e.UIR+"(=(?!>))?"})]}];return{aliases:["ls","lassoscript"],cI:!0,l:r+"|&[lg]t;",k:s,c:[{cN:"preprocessor",b:t,r:0,starts:{cN:"markup",e:"\\[|"+a,rE:!0,r:0,c:[n]}},o,i,{cN:"preprocessor",b:"\\[no_square_brackets",starts:{e:"\\[/no_square_brackets\\]",l:r+"|&[lg]t;",k:s,c:[{cN:"preprocessor",b:t,r:0,starts:{cN:"markup",e:"\\[noprocess\\]|"+a,rE:!0,c:[n]}},o,i].concat(c)}},{cN:"preprocessor",b:"\\[",r:0},{cN:"shebang",b:"^#!.+lasso9\\b",r:10}].concat(c)}});hljs.registerLanguage("prolog",function(c){var r={cN:"atom",b:/[a-z][A-Za-z0-9_]*/,r:0},b={cN:"name",v:[{b:/[A-Z][a-zA-Z0-9_]*/},{b:/_[A-Za-z0-9_]*/}],r:0},a={b:/\(/,e:/\)/,r:0},e={b:/\[/,e:/\]/},n={cN:"comment",b:/%/,e:/$/,c:[c.PWM]},t={cN:"string",b:/`/,e:/`/,c:[c.BE]},g={cN:"string",b:/0\'(\\\'|.)/},N={cN:"string",b:/0\'\\s/},o={b:/:-/},s=[r,b,a,o,e,n,c.CBCM,c.QSM,c.ASM,t,g,N,c.CNM];return a.c=s,e.c=s,{c:s.concat([{b:/\.$/}])}});hljs.registerLanguage("oxygene",function(e){var r="abstract add and array as asc aspect assembly async begin break block by case class concat const copy constructor continue create default delegate desc distinct div do downto dynamic each else empty end ensure enum equals event except exit extension external false final finalize finalizer finally flags for forward from function future global group has if implementation implements implies in index inherited inline interface into invariants is iterator join locked locking loop matching method mod module namespace nested new nil not notify nullable of old on operator or order out override parallel params partial pinned private procedure property protected public queryable raise read readonly record reintroduce remove repeat require result reverse sealed select self sequence set shl shr skip static step soft take then to true try tuple type union unit unsafe until uses using var virtual raises volatile where while with write xor yield await mapped deprecated stdcall cdecl pascal register safecall overload library platform reference packed strict published autoreleasepool selector strong weak unretained",t=e.C("{","}",{r:0}),a=e.C("\\(\\*","\\*\\)",{r:10}),n={cN:"string",b:"'",e:"'",c:[{b:"''"}]},o={cN:"string",b:"(#\\d+)+"},i={cN:"function",bK:"function constructor destructor procedure method",e:"[:;]",k:"function constructor|10 destructor|10 procedure|10 method|10",c:[e.TM,{cN:"params",b:"\\(",e:"\\)",k:r,c:[n,o]},t,a]};return{cI:!0,k:r,i:'("|\\$[G-Zg-z]|\\/\\*||->)',c:[t,a,e.CLCM,n,o,e.NM,i,{cN:"class",b:"=\\bclass\\b",e:"end;",k:r,c:[n,o,t,a,e.CLCM,i]}]}});hljs.registerLanguage("applescript",function(e){var t=e.inherit(e.QSM,{i:""}),r={cN:"params",b:"\\(",e:"\\)",c:["self",e.CNM,t]},o=e.C("--","$"),n=e.C("\\(\\*","\\*\\)",{c:["self",o]}),a=[o,n,e.HCM];return{aliases:["osascript"],k:{keyword:"about above after against and around as at back before beginning behind below beneath beside between but by considering contain contains continue copy div does eighth else end equal equals error every exit fifth first for fourth from front get given global if ignoring in into is it its last local me middle mod my ninth not of on onto or over prop property put ref reference repeat returning script second set seventh since sixth some tell tenth that the|0 then third through thru timeout times to transaction try until where while whose with without",constant:"AppleScript false linefeed return pi quote result space tab true",type:"alias application boolean class constant date file integer list number real record string text",command:"activate beep count delay launch log offset read round run say summarize write",property:"character characters contents day frontmost id item length month name paragraph paragraphs rest reverse running time version weekday word words year"},c:[t,e.CNM,{cN:"type",b:"\\bPOSIX file\\b"},{cN:"command",b:"\\b(clipboard info|the clipboard|info for|list (disks|folder)|mount volume|path to|(close|open for) access|(get|set) eof|current date|do shell script|get volume settings|random number|set volume|system attribute|system info|time to GMT|(load|run|store) script|scripting components|ASCII (character|number)|localized string|choose (application|color|file|file name|folder|from list|remote application|URL)|display (alert|dialog))\\b|^\\s*return\\b"},{cN:"constant",b:"\\b(text item delimiters|current application|missing value)\\b"},{cN:"keyword",b:"\\b(apart from|aside from|instead of|out of|greater than|isn't|(doesn't|does not) (equal|come before|come after|contain)|(greater|less) than( or equal)?|(starts?|ends|begins?) with|contained by|comes (before|after)|a (ref|reference))\\b"},{cN:"property",b:"\\b(POSIX path|(date|time) string|quoted form)\\b"},{cN:"function_start",bK:"on",i:"[${=;\\n]",c:[e.UTM,r]}].concat(a),i:"//|->|=>"}});hljs.registerLanguage("makefile",function(e){var a={cN:"variable",b:/\$\(/,e:/\)/,c:[e.BE]};return{aliases:["mk","mak"],c:[e.HCM,{b:/^\w+\s*\W*=/,rB:!0,r:0,starts:{cN:"constant",e:/\s*\W*=/,eE:!0,starts:{e:/$/,r:0,c:[a]}}},{cN:"title",b:/^[\w]+:\s*$/},{cN:"phony",b:/^\.PHONY:/,e:/$/,k:".PHONY",l:/[\.\w]+/},{b:/^\t+/,e:/$/,r:0,c:[e.QSM,a]}]}});hljs.registerLanguage("dust",function(e){var a="if eq ne lt lte gt gte select default math sep";return{aliases:["dst"],cI:!0,sL:"xml",subLanguageMode:"continuous",c:[{cN:"expression",b:"{",e:"}",r:0,c:[{cN:"begin-block",b:"#[a-zA-Z- .]+",k:a},{cN:"string",b:'"',e:'"'},{cN:"end-block",b:"\\/[a-zA-Z- .]+",k:a},{cN:"variable",b:"[a-zA-Z-.]+",k:a,r:0}]}]}});hljs.registerLanguage("clojure-repl",function(e){return{c:[{cN:"prompt",b:/^([\w.-]+|\s*#_)=>/,starts:{e:/$/,sL:"clojure",subLanguageMode:"continuous"}}]}});hljs.registerLanguage("dart",function(e){var t={cN:"subst",b:"\\$\\{",e:"}",k:"true false null this is new super"},r={cN:"string",v:[{b:"r'''",e:"'''"},{b:'r"""',e:'"""'},{b:"r'",e:"'",i:"\\n"},{b:'r"',e:'"',i:"\\n"},{b:"'''",e:"'''",c:[e.BE,t]},{b:'"""',e:'"""',c:[e.BE,t]},{b:"'",e:"'",i:"\\n",c:[e.BE,t]},{b:'"',e:'"',i:"\\n",c:[e.BE,t]}]};t.c=[e.CNM,r];var n={keyword:"assert break case catch class const continue default do else enum extends false final finally for if in is new null rethrow return super switch this throw true try var void while with",literal:"abstract as dynamic export external factory get implements import library operator part set static typedef",built_in:"print Comparable DateTime Duration Function Iterable Iterator List Map Match Null Object Pattern RegExp Set Stopwatch String StringBuffer StringSink Symbol Type Uri bool double int num document window querySelector querySelectorAll Element ElementList"};return{k:n,c:[r,{cN:"dartdoc",b:"/\\*\\*",e:"\\*/",sL:"markdown",subLanguageMode:"continuous"},{cN:"dartdoc",b:"///",e:"$",sL:"markdown",subLanguageMode:"continuous"},e.CLCM,e.CBCM,{cN:"class",bK:"class interface",e:"{",eE:!0,c:[{bK:"extends implements"},e.UTM]},e.CNM,{cN:"annotation",b:"@[A-Za-z]+"},{b:"=>"}]}}); \ No newline at end of file diff --git a/docs/js/html5shiv.min.js b/docs/js/html5shiv.min.js new file mode 100644 index 0000000..1a01c94 --- /dev/null +++ b/docs/js/html5shiv.min.js @@ -0,0 +1,4 @@ +/** +* @preserve HTML5 Shiv 3.7.3 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed +*/ +!function(a,b){function c(a,b){var c=a.createElement("p"),d=a.getElementsByTagName("head")[0]||a.documentElement;return c.innerHTML="x",d.insertBefore(c.lastChild,d.firstChild)}function d(){var a=t.elements;return"string"==typeof a?a.split(" "):a}function e(a,b){var c=t.elements;"string"!=typeof c&&(c=c.join(" ")),"string"!=typeof a&&(a=a.join(" ")),t.elements=c+" "+a,j(b)}function f(a){var b=s[a[q]];return b||(b={},r++,a[q]=r,s[r]=b),b}function g(a,c,d){if(c||(c=b),l)return c.createElement(a);d||(d=f(c));var e;return e=d.cache[a]?d.cache[a].cloneNode():p.test(a)?(d.cache[a]=d.createElem(a)).cloneNode():d.createElem(a),!e.canHaveChildren||o.test(a)||e.tagUrn?e:d.frag.appendChild(e)}function h(a,c){if(a||(a=b),l)return a.createDocumentFragment();c=c||f(a);for(var e=c.frag.cloneNode(),g=0,h=d(),i=h.length;i>g;g++)e.createElement(h[g]);return e}function i(a,b){b.cache||(b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag()),a.createElement=function(c){return t.shivMethods?g(c,a,b):b.createElem(c)},a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+d().join().replace(/[\w\-:]+/g,function(a){return b.createElem(a),b.frag.createElement(a),'c("'+a+'")'})+");return n}")(t,b.frag)}function j(a){a||(a=b);var d=f(a);return!t.shivCSS||k||d.hasCSS||(d.hasCSS=!!c(a,"article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}mark{background:#FF0;color:#000}template{display:none}")),l||i(a,d),a}var k,l,m="3.7.3",n=a.html5||{},o=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,p=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,q="_html5shiv",r=0,s={};!function(){try{var a=b.createElement("a");a.innerHTML="",k="hidden"in a,l=1==a.childNodes.length||function(){b.createElement("a");var a=b.createDocumentFragment();return"undefined"==typeof a.cloneNode||"undefined"==typeof a.createDocumentFragment||"undefined"==typeof a.createElement}()}catch(c){k=!0,l=!0}}();var t={elements:n.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output picture progress section summary template time video",version:m,shivCSS:n.shivCSS!==!1,supportsUnknownElements:l,shivMethods:n.shivMethods!==!1,type:"default",shivDocument:j,createElement:g,createDocumentFragment:h,addElements:e};a.html5=t,j(b),"object"==typeof module&&module.exports&&(module.exports=t)}("undefined"!=typeof window?window:this,document); diff --git a/docs/js/jquery-2.1.1.min.js b/docs/js/jquery-2.1.1.min.js deleted file mode 100644 index dc93a13..0000000 --- a/docs/js/jquery-2.1.1.min.js +++ /dev/null @@ -1,4 +0,0 @@ -/*! jQuery v2.1.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license */ -!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l=a.document,m="2.1.1",n=function(a,b){return new n.fn.init(a,b)},o=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,p=/^-ms-/,q=/-([\da-z])/gi,r=function(a,b){return b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:"",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=n.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return n.each(this,a,b)},map:function(a){return this.pushStack(n.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},n.extend=n.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||n.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(a=arguments[h]))for(b in a)c=g[b],d=a[b],g!==d&&(j&&d&&(n.isPlainObject(d)||(e=n.isArray(d)))?(e?(e=!1,f=c&&n.isArray(c)?c:[]):f=c&&n.isPlainObject(c)?c:{},g[b]=n.extend(j,f,d)):void 0!==d&&(g[b]=d));return g},n.extend({expando:"jQuery"+(m+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===n.type(a)},isArray:Array.isArray,isWindow:function(a){return null!=a&&a===a.window},isNumeric:function(a){return!n.isArray(a)&&a-parseFloat(a)>=0},isPlainObject:function(a){return"object"!==n.type(a)||a.nodeType||n.isWindow(a)?!1:a.constructor&&!j.call(a.constructor.prototype,"isPrototypeOf")?!1:!0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(a){var b,c=eval;a=n.trim(a),a&&(1===a.indexOf("use strict")?(b=l.createElement("script"),b.text=a,l.head.appendChild(b).parentNode.removeChild(b)):c(a))},camelCase:function(a){return a.replace(p,"ms-").replace(q,r)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=s(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(o,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(s(Object(a))?n.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){return null==b?-1:g.call(b,a,c)},merge:function(a,b){for(var c=+b.length,d=0,e=a.length;c>d;d++)a[e++]=b[d];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=s(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof b&&(c=a[b],b=a,a=c),n.isFunction(a)?(e=d.call(arguments,2),f=function(){return a.apply(b||this,e.concat(d.call(arguments)))},f.guid=a.guid=a.guid||n.guid++,f):void 0},now:Date.now,support:k}),n.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function s(a){var b=a.length,c=n.type(a);return"function"===c||n.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var t=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+-new Date,v=a.document,w=0,x=0,y=gb(),z=gb(),A=gb(),B=function(a,b){return a===b&&(l=!0),0},C="undefined",D=1<<31,E={}.hasOwnProperty,F=[],G=F.pop,H=F.push,I=F.push,J=F.slice,K=F.indexOf||function(a){for(var b=0,c=this.length;c>b;b++)if(this[b]===a)return b;return-1},L="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",N="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",O=N.replace("w","w#"),P="\\["+M+"*("+N+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+O+"))|)"+M+"*\\]",Q=":("+N+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+P+")*)|.*)\\)|)",R=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),S=new RegExp("^"+M+"*,"+M+"*"),T=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=new RegExp("="+M+"*([^\\]'\"]*?)"+M+"*\\]","g"),V=new RegExp(Q),W=new RegExp("^"+O+"$"),X={ID:new RegExp("^#("+N+")"),CLASS:new RegExp("^\\.("+N+")"),TAG:new RegExp("^("+N.replace("w","w*")+")"),ATTR:new RegExp("^"+P),PSEUDO:new RegExp("^"+Q),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+L+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/^(?:input|select|textarea|button)$/i,Z=/^h\d$/i,$=/^[^{]+\{\s*\[native \w/,_=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ab=/[+~]/,bb=/'|\\/g,cb=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),db=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)};try{I.apply(F=J.call(v.childNodes),v.childNodes),F[v.childNodes.length].nodeType}catch(eb){I={apply:F.length?function(a,b){H.apply(a,J.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function fb(a,b,d,e){var f,h,j,k,l,o,r,s,w,x;if((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,d=d||[],!a||"string"!=typeof a)return d;if(1!==(k=b.nodeType)&&9!==k)return[];if(p&&!e){if(f=_.exec(a))if(j=f[1]){if(9===k){if(h=b.getElementById(j),!h||!h.parentNode)return d;if(h.id===j)return d.push(h),d}else if(b.ownerDocument&&(h=b.ownerDocument.getElementById(j))&&t(b,h)&&h.id===j)return d.push(h),d}else{if(f[2])return I.apply(d,b.getElementsByTagName(a)),d;if((j=f[3])&&c.getElementsByClassName&&b.getElementsByClassName)return I.apply(d,b.getElementsByClassName(j)),d}if(c.qsa&&(!q||!q.test(a))){if(s=r=u,w=b,x=9===k&&a,1===k&&"object"!==b.nodeName.toLowerCase()){o=g(a),(r=b.getAttribute("id"))?s=r.replace(bb,"\\$&"):b.setAttribute("id",s),s="[id='"+s+"'] ",l=o.length;while(l--)o[l]=s+qb(o[l]);w=ab.test(a)&&ob(b.parentNode)||b,x=o.join(",")}if(x)try{return I.apply(d,w.querySelectorAll(x)),d}catch(y){}finally{r||b.removeAttribute("id")}}}return i(a.replace(R,"$1"),b,d,e)}function gb(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function hb(a){return a[u]=!0,a}function ib(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function jb(a,b){var c=a.split("|"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function kb(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||D)-(~a.sourceIndex||D);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function lb(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function mb(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function nb(a){return hb(function(b){return b=+b,hb(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function ob(a){return a&&typeof a.getElementsByTagName!==C&&a}c=fb.support={},f=fb.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=fb.setDocument=function(a){var b,e=a?a.ownerDocument||a:v,g=e.defaultView;return e!==n&&9===e.nodeType&&e.documentElement?(n=e,o=e.documentElement,p=!f(e),g&&g!==g.top&&(g.addEventListener?g.addEventListener("unload",function(){m()},!1):g.attachEvent&&g.attachEvent("onunload",function(){m()})),c.attributes=ib(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ib(function(a){return a.appendChild(e.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=$.test(e.getElementsByClassName)&&ib(function(a){return a.innerHTML="
",a.firstChild.className="i",2===a.getElementsByClassName("i").length}),c.getById=ib(function(a){return o.appendChild(a).id=u,!e.getElementsByName||!e.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if(typeof b.getElementById!==C&&p){var c=b.getElementById(a);return c&&c.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){var c=typeof a.getAttributeNode!==C&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return typeof b.getElementsByTagName!==C?b.getElementsByTagName(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return typeof b.getElementsByClassName!==C&&p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=$.test(e.querySelectorAll))&&(ib(function(a){a.innerHTML="",a.querySelectorAll("[msallowclip^='']").length&&q.push("[*^$]="+M+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+M+"*(?:value|"+L+")"),a.querySelectorAll(":checked").length||q.push(":checked")}),ib(function(a){var b=e.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+M+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=$.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ib(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",Q)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=$.test(o.compareDocumentPosition),t=b||$.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===e||a.ownerDocument===v&&t(v,a)?-1:b===e||b.ownerDocument===v&&t(v,b)?1:k?K.call(k,a)-K.call(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,f=a.parentNode,g=b.parentNode,h=[a],i=[b];if(!f||!g)return a===e?-1:b===e?1:f?-1:g?1:k?K.call(k,a)-K.call(k,b):0;if(f===g)return kb(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)i.unshift(c);while(h[d]===i[d])d++;return d?kb(h[d],i[d]):h[d]===v?-1:i[d]===v?1:0},e):n},fb.matches=function(a,b){return fb(a,null,null,b)},fb.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(U,"='$1']"),!(!c.matchesSelector||!p||r&&r.test(b)||q&&q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return fb(b,n,null,[a]).length>0},fb.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},fb.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&E.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},fb.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},fb.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=fb.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=fb.selectors={cacheLength:50,createPseudo:hb,match:X,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(cb,db),a[3]=(a[3]||a[4]||a[5]||"").replace(cb,db),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||fb.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&fb.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return X.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&V.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(cb,db).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+M+")"+a+"("+M+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||typeof a.getAttribute!==C&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=fb.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){k=q[u]||(q[u]={}),j=k[a]||[],n=j[0]===w&&j[1],m=j[0]===w&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[w,n,m];break}}else if(s&&(j=(b[u]||(b[u]={}))[a])&&j[0]===w)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(s&&((l[u]||(l[u]={}))[a]=[w,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||fb.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?hb(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=K.call(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:hb(function(a){var b=[],c=[],d=h(a.replace(R,"$1"));return d[u]?hb(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:hb(function(a){return function(b){return fb(a,b).length>0}}),contains:hb(function(a){return function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:hb(function(a){return W.test(a||"")||fb.error("unsupported lang: "+a),a=a.replace(cb,db).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Z.test(a.nodeName)},input:function(a){return Y.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:nb(function(){return[0]}),last:nb(function(a,b){return[b-1]}),eq:nb(function(a,b,c){return[0>c?c+b:c]}),even:nb(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:nb(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:nb(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:nb(function(a,b,c){for(var d=0>c?c+b:c;++db;b++)d+=a[b].value;return d}function rb(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(i=b[u]||(b[u]={}),(h=i[d])&&h[0]===w&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function sb(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function tb(a,b,c){for(var d=0,e=b.length;e>d;d++)fb(a,b[d],c);return c}function ub(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function vb(a,b,c,d,e,f){return d&&!d[u]&&(d=vb(d)),e&&!e[u]&&(e=vb(e,f)),hb(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||tb(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:ub(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=ub(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?K.call(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=ub(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):I.apply(g,r)})}function wb(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=rb(function(a){return a===b},h,!0),l=rb(function(a){return K.call(b,a)>-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d))}];f>i;i++)if(c=d.relative[a[i].type])m=[rb(sb(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return vb(i>1&&sb(m),i>1&&qb(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(R,"$1"),c,e>i&&wb(a.slice(i,e)),f>e&&wb(a=a.slice(e)),f>e&&qb(a))}m.push(c)}return sb(m)}function xb(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,m,o,p=0,q="0",r=f&&[],s=[],t=j,u=f||e&&d.find.TAG("*",k),v=w+=null==t?1:Math.random()||.1,x=u.length;for(k&&(j=g!==n&&g);q!==x&&null!=(l=u[q]);q++){if(e&&l){m=0;while(o=a[m++])if(o(l,g,h)){i.push(l);break}k&&(w=v)}c&&((l=!o&&l)&&p--,f&&r.push(l))}if(p+=q,c&&q!==p){m=0;while(o=b[m++])o(r,s,g,h);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=G.call(i));s=ub(s)}I.apply(i,s),k&&!f&&s.length>0&&p+b.length>1&&fb.uniqueSort(i)}return k&&(w=v,j=t),r};return c?hb(f):f}return h=fb.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=wb(b[c]),f[u]?d.push(f):e.push(f);f=A(a,xb(e,d)),f.selector=a}return f},i=fb.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(cb,db),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=X.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(cb,db),ab.test(j[0].type)&&ob(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&qb(j),!a)return I.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,ab.test(a)&&ob(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ib(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ib(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||jb("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ib(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||jb("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ib(function(a){return null==a.getAttribute("disabled")})||jb(L,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),fb}(a);n.find=t,n.expr=t.selectors,n.expr[":"]=n.expr.pseudos,n.unique=t.uniqueSort,n.text=t.getText,n.isXMLDoc=t.isXML,n.contains=t.contains;var u=n.expr.match.needsContext,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^.[^:#\[\.,]*$/;function x(a,b,c){if(n.isFunction(b))return n.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return n.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(w.test(b))return n.filter(b,a,c);b=n.filter(b,a)}return n.grep(a,function(a){return g.call(b,a)>=0!==c})}n.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?n.find.matchesSelector(d,a)?[d]:[]:n.find.matches(a,n.grep(b,function(a){return 1===a.nodeType}))},n.fn.extend({find:function(a){var b,c=this.length,d=[],e=this;if("string"!=typeof a)return this.pushStack(n(a).filter(function(){for(b=0;c>b;b++)if(n.contains(e[b],this))return!0}));for(b=0;c>b;b++)n.find(a,e[b],d);return d=this.pushStack(c>1?n.unique(d):d),d.selector=this.selector?this.selector+" "+a:a,d},filter:function(a){return this.pushStack(x(this,a||[],!1))},not:function(a){return this.pushStack(x(this,a||[],!0))},is:function(a){return!!x(this,"string"==typeof a&&u.test(a)?n(a):a||[],!1).length}});var y,z=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,A=n.fn.init=function(a,b){var c,d;if(!a)return this;if("string"==typeof a){if(c="<"===a[0]&&">"===a[a.length-1]&&a.length>=3?[null,a,null]:z.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||y).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof n?b[0]:b,n.merge(this,n.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:l,!0)),v.test(c[1])&&n.isPlainObject(b))for(c in b)n.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}return d=l.getElementById(c[2]),d&&d.parentNode&&(this.length=1,this[0]=d),this.context=l,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):n.isFunction(a)?"undefined"!=typeof y.ready?y.ready(a):a(n):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),n.makeArray(a,this))};A.prototype=n.fn,y=n(l);var B=/^(?:parents|prev(?:Until|All))/,C={children:!0,contents:!0,next:!0,prev:!0};n.extend({dir:function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&n(a).is(c))break;d.push(a)}return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),n.fn.extend({has:function(a){var b=n(a,this),c=b.length;return this.filter(function(){for(var a=0;c>a;a++)if(n.contains(this,b[a]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=u.test(a)||"string"!=typeof a?n(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&n.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?n.unique(f):f)},index:function(a){return a?"string"==typeof a?g.call(n(a),this[0]):g.call(this,a.jquery?a[0]:a):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(n.unique(n.merge(this.get(),n(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function D(a,b){while((a=a[b])&&1!==a.nodeType);return a}n.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return n.dir(a,"parentNode")},parentsUntil:function(a,b,c){return n.dir(a,"parentNode",c)},next:function(a){return D(a,"nextSibling")},prev:function(a){return D(a,"previousSibling")},nextAll:function(a){return n.dir(a,"nextSibling")},prevAll:function(a){return n.dir(a,"previousSibling")},nextUntil:function(a,b,c){return n.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return n.dir(a,"previousSibling",c)},siblings:function(a){return n.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return n.sibling(a.firstChild)},contents:function(a){return a.contentDocument||n.merge([],a.childNodes)}},function(a,b){n.fn[a]=function(c,d){var e=n.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=n.filter(d,e)),this.length>1&&(C[a]||n.unique(e),B.test(a)&&e.reverse()),this.pushStack(e)}});var E=/\S+/g,F={};function G(a){var b=F[a]={};return n.each(a.match(E)||[],function(a,c){b[c]=!0}),b}n.Callbacks=function(a){a="string"==typeof a?F[a]||G(a):n.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(b=a.memory&&l,c=!0,g=e||0,e=0,f=h.length,d=!0;h&&f>g;g++)if(h[g].apply(l[0],l[1])===!1&&a.stopOnFalse){b=!1;break}d=!1,h&&(i?i.length&&j(i.shift()):b?h=[]:k.disable())},k={add:function(){if(h){var c=h.length;!function g(b){n.each(b,function(b,c){var d=n.type(c);"function"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&"string"!==d&&g(c)})}(arguments),d?f=h.length:b&&(e=c,j(b))}return this},remove:function(){return h&&n.each(arguments,function(a,b){var c;while((c=n.inArray(b,h,c))>-1)h.splice(c,1),d&&(f>=c&&f--,g>=c&&g--)}),this},has:function(a){return a?n.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],f=0,this},disable:function(){return h=i=b=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,b||k.disable(),this},locked:function(){return!i},fireWith:function(a,b){return!h||c&&!i||(b=b||[],b=[a,b.slice?b.slice():b],d?i.push(b):j(b)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!c}};return k},n.extend({Deferred:function(a){var b=[["resolve","done",n.Callbacks("once memory"),"resolved"],["reject","fail",n.Callbacks("once memory"),"rejected"],["notify","progress",n.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return n.Deferred(function(c){n.each(b,function(b,f){var g=n.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&n.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?n.extend(a,d):d}},e={};return d.pipe=d.then,n.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=d.call(arguments),e=c.length,f=1!==e||a&&n.isFunction(a.promise)?e:0,g=1===f?a:n.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&n.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var H;n.fn.ready=function(a){return n.ready.promise().done(a),this},n.extend({isReady:!1,readyWait:1,holdReady:function(a){a?n.readyWait++:n.ready(!0)},ready:function(a){(a===!0?--n.readyWait:n.isReady)||(n.isReady=!0,a!==!0&&--n.readyWait>0||(H.resolveWith(l,[n]),n.fn.triggerHandler&&(n(l).triggerHandler("ready"),n(l).off("ready"))))}});function I(){l.removeEventListener("DOMContentLoaded",I,!1),a.removeEventListener("load",I,!1),n.ready()}n.ready.promise=function(b){return H||(H=n.Deferred(),"complete"===l.readyState?setTimeout(n.ready):(l.addEventListener("DOMContentLoaded",I,!1),a.addEventListener("load",I,!1))),H.promise(b)},n.ready.promise();var J=n.access=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===n.type(c)){e=!0;for(h in c)n.access(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,n.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(n(a),c)})),b))for(;i>h;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f};n.acceptData=function(a){return 1===a.nodeType||9===a.nodeType||!+a.nodeType};function K(){Object.defineProperty(this.cache={},0,{get:function(){return{}}}),this.expando=n.expando+Math.random()}K.uid=1,K.accepts=n.acceptData,K.prototype={key:function(a){if(!K.accepts(a))return 0;var b={},c=a[this.expando];if(!c){c=K.uid++;try{b[this.expando]={value:c},Object.defineProperties(a,b)}catch(d){b[this.expando]=c,n.extend(a,b)}}return this.cache[c]||(this.cache[c]={}),c},set:function(a,b,c){var d,e=this.key(a),f=this.cache[e];if("string"==typeof b)f[b]=c;else if(n.isEmptyObject(f))n.extend(this.cache[e],b);else for(d in b)f[d]=b[d];return f},get:function(a,b){var c=this.cache[this.key(a)];return void 0===b?c:c[b]},access:function(a,b,c){var d;return void 0===b||b&&"string"==typeof b&&void 0===c?(d=this.get(a,b),void 0!==d?d:this.get(a,n.camelCase(b))):(this.set(a,b,c),void 0!==c?c:b)},remove:function(a,b){var c,d,e,f=this.key(a),g=this.cache[f];if(void 0===b)this.cache[f]={};else{n.isArray(b)?d=b.concat(b.map(n.camelCase)):(e=n.camelCase(b),b in g?d=[b,e]:(d=e,d=d in g?[d]:d.match(E)||[])),c=d.length;while(c--)delete g[d[c]]}},hasData:function(a){return!n.isEmptyObject(this.cache[a[this.expando]]||{})},discard:function(a){a[this.expando]&&delete this.cache[a[this.expando]]}};var L=new K,M=new K,N=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,O=/([A-Z])/g;function P(a,b,c){var d;if(void 0===c&&1===a.nodeType)if(d="data-"+b.replace(O,"-$1").toLowerCase(),c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:N.test(c)?n.parseJSON(c):c}catch(e){}M.set(a,b,c)}else c=void 0;return c}n.extend({hasData:function(a){return M.hasData(a)||L.hasData(a)},data:function(a,b,c){return M.access(a,b,c)},removeData:function(a,b){M.remove(a,b) -},_data:function(a,b,c){return L.access(a,b,c)},_removeData:function(a,b){L.remove(a,b)}}),n.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=M.get(f),1===f.nodeType&&!L.get(f,"hasDataAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=n.camelCase(d.slice(5)),P(f,d,e[d])));L.set(f,"hasDataAttrs",!0)}return e}return"object"==typeof a?this.each(function(){M.set(this,a)}):J(this,function(b){var c,d=n.camelCase(a);if(f&&void 0===b){if(c=M.get(f,a),void 0!==c)return c;if(c=M.get(f,d),void 0!==c)return c;if(c=P(f,d,void 0),void 0!==c)return c}else this.each(function(){var c=M.get(this,d);M.set(this,d,b),-1!==a.indexOf("-")&&void 0!==c&&M.set(this,a,b)})},null,b,arguments.length>1,null,!0)},removeData:function(a){return this.each(function(){M.remove(this,a)})}}),n.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=L.get(a,b),c&&(!d||n.isArray(c)?d=L.access(a,b,n.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=n.queue(a,b),d=c.length,e=c.shift(),f=n._queueHooks(a,b),g=function(){n.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return L.get(a,c)||L.access(a,c,{empty:n.Callbacks("once memory").add(function(){L.remove(a,[b+"queue",c])})})}}),n.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.lengthx",k.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue}();var U="undefined";k.focusinBubbles="onfocusin"in a;var V=/^key/,W=/^(?:mouse|pointer|contextmenu)|click/,X=/^(?:focusinfocus|focusoutblur)$/,Y=/^([^.]*)(?:\.(.+)|)$/;function Z(){return!0}function $(){return!1}function _(){try{return l.activeElement}catch(a){}}n.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=L.get(a);if(r){c.handler&&(f=c,c=f.handler,e=f.selector),c.guid||(c.guid=n.guid++),(i=r.events)||(i=r.events={}),(g=r.handle)||(g=r.handle=function(b){return typeof n!==U&&n.event.triggered!==b.type?n.event.dispatch.apply(a,arguments):void 0}),b=(b||"").match(E)||[""],j=b.length;while(j--)h=Y.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o&&(l=n.event.special[o]||{},o=(e?l.delegateType:l.bindType)||o,l=n.event.special[o]||{},k=n.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&n.expr.match.needsContext.test(e),namespace:p.join(".")},f),(m=i[o])||(m=i[o]=[],m.delegateCount=0,l.setup&&l.setup.call(a,d,p,g)!==!1||a.addEventListener&&a.addEventListener(o,g,!1)),l.add&&(l.add.call(a,k),k.handler.guid||(k.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,k):m.push(k),n.event.global[o]=!0)}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=L.hasData(a)&&L.get(a);if(r&&(i=r.events)){b=(b||"").match(E)||[""],j=b.length;while(j--)if(h=Y.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=n.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,m=i[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),g=f=m.length;while(f--)k=m[f],!e&&q!==k.origType||c&&c.guid!==k.guid||h&&!h.test(k.namespace)||d&&d!==k.selector&&("**"!==d||!k.selector)||(m.splice(f,1),k.selector&&m.delegateCount--,l.remove&&l.remove.call(a,k));g&&!m.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||n.removeEvent(a,o,r.handle),delete i[o])}else for(o in i)n.event.remove(a,o+b[j],c,d,!0);n.isEmptyObject(i)&&(delete r.handle,L.remove(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,m,o,p=[d||l],q=j.call(b,"type")?b.type:b,r=j.call(b,"namespace")?b.namespace.split("."):[];if(g=h=d=d||l,3!==d.nodeType&&8!==d.nodeType&&!X.test(q+n.event.triggered)&&(q.indexOf(".")>=0&&(r=q.split("."),q=r.shift(),r.sort()),k=q.indexOf(":")<0&&"on"+q,b=b[n.expando]?b:new n.Event(q,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=r.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+r.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:n.makeArray(c,[b]),o=n.event.special[q]||{},e||!o.trigger||o.trigger.apply(d,c)!==!1)){if(!e&&!o.noBubble&&!n.isWindow(d)){for(i=o.delegateType||q,X.test(i+q)||(g=g.parentNode);g;g=g.parentNode)p.push(g),h=g;h===(d.ownerDocument||l)&&p.push(h.defaultView||h.parentWindow||a)}f=0;while((g=p[f++])&&!b.isPropagationStopped())b.type=f>1?i:o.bindType||q,m=(L.get(g,"events")||{})[b.type]&&L.get(g,"handle"),m&&m.apply(g,c),m=k&&g[k],m&&m.apply&&n.acceptData(g)&&(b.result=m.apply(g,c),b.result===!1&&b.preventDefault());return b.type=q,e||b.isDefaultPrevented()||o._default&&o._default.apply(p.pop(),c)!==!1||!n.acceptData(d)||k&&n.isFunction(d[q])&&!n.isWindow(d)&&(h=d[k],h&&(d[k]=null),n.event.triggered=q,d[q](),n.event.triggered=void 0,h&&(d[k]=h)),b.result}},dispatch:function(a){a=n.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(L.get(this,"events")||{})[a.type]||[],k=n.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=n.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,c=0;while((g=f.handlers[c++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(g.namespace))&&(a.handleObj=g,a.data=g.data,e=((n.event.special[g.origType]||{}).handle||g.handler).apply(f.elem,i),void 0!==e&&(a.result=e)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&(!a.button||"click"!==a.type))for(;i!==this;i=i.parentNode||this)if(i.disabled!==!0||"click"!==a.type){for(d=[],c=0;h>c;c++)f=b[c],e=f.selector+" ",void 0===d[e]&&(d[e]=f.needsContext?n(e,this).index(i)>=0:n.find(e,this,null,[i]).length),d[e]&&d.push(f);d.length&&g.push({elem:i,handlers:d})}return h]*)\/>/gi,bb=/<([\w:]+)/,cb=/<|&#?\w+;/,db=/<(?:script|style|link)/i,eb=/checked\s*(?:[^=]|=\s*.checked.)/i,fb=/^$|\/(?:java|ecma)script/i,gb=/^true\/(.*)/,hb=/^\s*\s*$/g,ib={option:[1,""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};ib.optgroup=ib.option,ib.tbody=ib.tfoot=ib.colgroup=ib.caption=ib.thead,ib.th=ib.td;function jb(a,b){return n.nodeName(a,"table")&&n.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function kb(a){return a.type=(null!==a.getAttribute("type"))+"/"+a.type,a}function lb(a){var b=gb.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function mb(a,b){for(var c=0,d=a.length;d>c;c++)L.set(a[c],"globalEval",!b||L.get(b[c],"globalEval"))}function nb(a,b){var c,d,e,f,g,h,i,j;if(1===b.nodeType){if(L.hasData(a)&&(f=L.access(a),g=L.set(b,f),j=f.events)){delete g.handle,g.events={};for(e in j)for(c=0,d=j[e].length;d>c;c++)n.event.add(b,e,j[e][c])}M.hasData(a)&&(h=M.access(a),i=n.extend({},h),M.set(b,i))}}function ob(a,b){var c=a.getElementsByTagName?a.getElementsByTagName(b||"*"):a.querySelectorAll?a.querySelectorAll(b||"*"):[];return void 0===b||b&&n.nodeName(a,b)?n.merge([a],c):c}function pb(a,b){var c=b.nodeName.toLowerCase();"input"===c&&T.test(a.type)?b.checked=a.checked:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}n.extend({clone:function(a,b,c){var d,e,f,g,h=a.cloneNode(!0),i=n.contains(a.ownerDocument,a);if(!(k.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||n.isXMLDoc(a)))for(g=ob(h),f=ob(a),d=0,e=f.length;e>d;d++)pb(f[d],g[d]);if(b)if(c)for(f=f||ob(a),g=g||ob(h),d=0,e=f.length;e>d;d++)nb(f[d],g[d]);else nb(a,h);return g=ob(h,"script"),g.length>0&&mb(g,!i&&ob(a,"script")),h},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,k=b.createDocumentFragment(),l=[],m=0,o=a.length;o>m;m++)if(e=a[m],e||0===e)if("object"===n.type(e))n.merge(l,e.nodeType?[e]:e);else if(cb.test(e)){f=f||k.appendChild(b.createElement("div")),g=(bb.exec(e)||["",""])[1].toLowerCase(),h=ib[g]||ib._default,f.innerHTML=h[1]+e.replace(ab,"<$1>")+h[2],j=h[0];while(j--)f=f.lastChild;n.merge(l,f.childNodes),f=k.firstChild,f.textContent=""}else l.push(b.createTextNode(e));k.textContent="",m=0;while(e=l[m++])if((!d||-1===n.inArray(e,d))&&(i=n.contains(e.ownerDocument,e),f=ob(k.appendChild(e),"script"),i&&mb(f),c)){j=0;while(e=f[j++])fb.test(e.type||"")&&c.push(e)}return k},cleanData:function(a){for(var b,c,d,e,f=n.event.special,g=0;void 0!==(c=a[g]);g++){if(n.acceptData(c)&&(e=c[L.expando],e&&(b=L.cache[e]))){if(b.events)for(d in b.events)f[d]?n.event.remove(c,d):n.removeEvent(c,d,b.handle);L.cache[e]&&delete L.cache[e]}delete M.cache[c[M.expando]]}}}),n.fn.extend({text:function(a){return J(this,function(a){return void 0===a?n.text(this):this.empty().each(function(){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&(this.textContent=a)})},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=jb(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=jb(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?n.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||n.cleanData(ob(c)),c.parentNode&&(b&&n.contains(c.ownerDocument,c)&&mb(ob(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++)1===a.nodeType&&(n.cleanData(ob(a,!1)),a.textContent="");return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return n.clone(this,a,b)})},html:function(a){return J(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a&&1===b.nodeType)return b.innerHTML;if("string"==typeof a&&!db.test(a)&&!ib[(bb.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(ab,"<$1>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(n.cleanData(ob(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,n.cleanData(ob(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,l=this.length,m=this,o=l-1,p=a[0],q=n.isFunction(p);if(q||l>1&&"string"==typeof p&&!k.checkClone&&eb.test(p))return this.each(function(c){var d=m.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(l&&(c=n.buildFragment(a,this[0].ownerDocument,!1,this),d=c.firstChild,1===c.childNodes.length&&(c=d),d)){for(f=n.map(ob(c,"script"),kb),g=f.length;l>j;j++)h=c,j!==o&&(h=n.clone(h,!0,!0),g&&n.merge(f,ob(h,"script"))),b.call(this[j],h,j);if(g)for(i=f[f.length-1].ownerDocument,n.map(f,lb),j=0;g>j;j++)h=f[j],fb.test(h.type||"")&&!L.access(h,"globalEval")&&n.contains(i,h)&&(h.src?n._evalUrl&&n._evalUrl(h.src):n.globalEval(h.textContent.replace(hb,"")))}return this}}),n.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){n.fn[a]=function(a){for(var c,d=[],e=n(a),g=e.length-1,h=0;g>=h;h++)c=h===g?this:this.clone(!0),n(e[h])[b](c),f.apply(d,c.get());return this.pushStack(d)}});var qb,rb={};function sb(b,c){var d,e=n(c.createElement(b)).appendTo(c.body),f=a.getDefaultComputedStyle&&(d=a.getDefaultComputedStyle(e[0]))?d.display:n.css(e[0],"display");return e.detach(),f}function tb(a){var b=l,c=rb[a];return c||(c=sb(a,b),"none"!==c&&c||(qb=(qb||n("